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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
const Ice = require("../Ice/ModuleRegistry").Ice;
Ice._ModuleRegistry.require(module,
[
"../Ice/FormatType",
"../Ice/EndpointTypes",
"../Ice/Protocol",
"../Ice/LocalException"
]);
const FormatType = Ice.FormatType;
const EndpointSelectionType = Ice.EndpointSelectionType;
const Protocol = Ice.Protocol;
class DefaultsAndOverrides
{
constructor(properties, logger)
{
this.defaultProtocol = properties.getPropertyWithDefault("Ice.Default.Protocol",
Ice.TcpTransceiver !== null ? "tcp" : "ws");
let value = properties.getProperty("Ice.Default.Host");
this.defaultHost = value.length > 0 ? value : null;
value = properties.getProperty("Ice.Default.SourceAddress");
this.defaultSourceAddress = value.length > 0 ? value : null;
value = properties.getProperty("Ice.Override.Timeout");
if(value.length > 0)
{
this.overrideTimeout = true;
this.overrideTimeoutValue = properties.getPropertyAsInt("Ice.Override.Timeout");
if(this.overrideTimeoutValue < 1 && this.overrideTimeoutValue !== -1)
{
this.overrideTimeoutValue = -1;
logger.warning("invalid value for Ice.Override.Timeout `" +
properties.getProperty("Ice.Override.Timeout") + "': defaulting to -1");
}
}
else
{
this.overrideTimeout = false;
this.overrideTimeoutValue = -1;
}
value = properties.getProperty("Ice.Override.ConnectTimeout");
if(value.length > 0)
{
this.overrideConnectTimeout = true;
this.overrideConnectTimeoutValue = properties.getPropertyAsInt("Ice.Override.ConnectTimeout");
if(this.overrideConnectTimeoutValue < 1 && this.overrideConnectTimeoutValue !== -1)
{
this.overrideConnectTimeoutValue = -1;
logger.warning("invalid value for Ice.Override.ConnectTimeout `" +
properties.getProperty("Ice.Override.ConnectTimeout") + "': defaulting to -1");
}
}
else
{
this.overrideConnectTimeout = false;
this.overrideConnectTimeoutValue = -1;
}
value = properties.getProperty("Ice.Override.CloseTimeout");
if(value.length > 0)
{
this.overrideCloseTimeout = true;
this.overrideCloseTimeoutValue = properties.getPropertyAsInt("Ice.Override.CloseTimeout");
if(this.overrideCloseTimeoutValue < 1 && this.overrideCloseTimeoutValue !== -1)
{
this.overrideCloseTimeoutValue = -1;
logger.warning("invalid value for Ice.Override.CloseTimeout `" +
properties.getProperty("Ice.Override.CloseTimeout") + "': defaulting to -1");
}
}
else
{
this.overrideCloseTimeout = false;
this.overrideCloseTimeoutValue = -1;
}
this.overrideSecure = false;
value = properties.getPropertyWithDefault("Ice.Default.EndpointSelection", "Random");
if(value === "Random")
{
this.defaultEndpointSelection = EndpointSelectionType.Random;
}
else if(value === "Ordered")
{
this.defaultEndpointSelection = EndpointSelectionType.Ordered;
}
else
{
const ex = new Ice.EndpointSelectionTypeParseException();
ex.str = "illegal value `" + value + "'; expected `Random' or `Ordered'";
throw ex;
}
this.defaultTimeout = properties.getPropertyAsIntWithDefault("Ice.Default.Timeout", 60000);
if(this.defaultTimeout < 1 && this.defaultTimeout !== -1)
{
this.defaultTimeout = 60000;
logger.warning("invalid value for Ice.Default.Timeout `" + properties.getProperty("Ice.Default.Timeout") +
"': defaulting to 60000");
}
this.defaultLocatorCacheTimeout = properties.getPropertyAsIntWithDefault("Ice.Default.LocatorCacheTimeout", -1);
if(this.defaultLocatorCacheTimeout < -1)
{
this.defaultLocatorCacheTimeout = -1;
logger.warning("invalid value for Ice.Default.LocatorCacheTimeout `" +
properties.getProperty("Ice.Default.LocatorCacheTimeout") + "': defaulting to -1");
}
this.defaultInvocationTimeout = properties.getPropertyAsIntWithDefault("Ice.Default.InvocationTimeout", -1);
if(this.defaultInvocationTimeout < 1 && this.defaultInvocationTimeout !== -1)
{
this.defaultInvocationTimeout = -1;
logger.warning("invalid value for Ice.Default.InvocationTimeout `" +
properties.getProperty("Ice.Default.InvocationTimeout") + "': defaulting to -1");
}
this.defaultPreferSecure = properties.getPropertyAsIntWithDefault("Ice.Default.PreferSecure", 0) > 0;
value = properties.getPropertyWithDefault("Ice.Default.EncodingVersion",
Ice.encodingVersionToString(Protocol.currentEncoding));
this.defaultEncoding = Ice.stringToEncodingVersion(value);
Protocol.checkSupportedEncoding(this.defaultEncoding);
const slicedFormat = properties.getPropertyAsIntWithDefault("Ice.Default.SlicedFormat", 0) > 0;
this.defaultFormat = slicedFormat ? FormatType.SlicedFormat : FormatType.CompactFormat;
}
}
Ice.DefaultsAndOverrides = DefaultsAndOverrides;
module.exports.Ice = Ice;
|