1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
var Ice = require("../Ice/ModuleRegistry").Ice;
Ice.__M.require(module, ["../Ice/Class"]);
//
// NOTE: the protocol instance class is a bit different from other
// language mappinps since it also provides the secure property for
// the tranport. Since we don't support SSL but still want to be able
// to parse SSL endpoints, we simply re-use the TCP endpoint with a
// different protocol instance to support SSL endpoints.
//
// If SSL endpoints attributes were to diverge from TCP endpoints or
// if we want to support SSL, we'd have to change this and instead, do
// like in other mappings: have a separate implementation for the SSL
// endpoint and suppress the secure member of the protocol instance
// class bellow.
//
var ProtocolInstance = Ice.Class({
__init__: function(instance, type, protocol, secure)
{
this._instance = instance;
this._traceLevel = instance.traceLevels().network;
this._traceCategory = instance.traceLevels().networkCat;
this._logger = instance.initializationData().logger;
this._properties = instance.initializationData().properties;
this._type = type;
this._protocol = protocol;
this._secure = secure;
},
traceLevel: function()
{
return this._traceLevel;
},
traceCategory: function()
{
return this._traceCategory;
},
logger: function()
{
return this._logger;
},
protocol: function()
{
return this._protocol;
},
type: function()
{
return this._type;
},
secure: function()
{
return this._secure;
},
properties: function()
{
return this._properties;
},
defaultHost: function()
{
return this._instance.defaultsAndOverrides().defaultHost;
},
defaultSourceAddress: function()
{
return this._instance.defaultsAndOverrides().defaultSourceAddress;
},
defaultEncoding: function()
{
return this._instance.defaultsAndOverrides().defaultEncoding;
},
defaultTimeout: function()
{
return this._instance.defaultsAndOverrides().defaultTimeout;
},
messageSizeMax: function()
{
return this._instance.messageSizeMax();
}
});
Ice.ProtocolInstance = ProtocolInstance;
module.exports.Ice = Ice;
|