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
|
// **********************************************************************
//
// 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",
"../Ice/Endpoint",
]);
var Class = Ice.Class;
var EndpointI = Class(Ice.Endpoint, {
toString: function()
{
//
// WARNING: Certain features, such as proxy validation in Glacier2,
// depend on the format of proxy strings. Changes to toString() and
// methods called to generate parts of the reference string could break
// these features. Please review for all features that depend on the
// format of proxyToString() before changing this and related code.
//
return this.protocol() + this.options();
},
initWithOptions: function(args)
{
var unknown = [];
var i;
var str = "`" + this.protocol();
for(i = 0; i < args.length; ++i)
{
if(args[i].search(/[ \t\n\r]+/) !== -1)
{
str += " \"" + args[i] + "\"";
}
else
{
str += " " + args[i];
}
}
str += "'";
i = 0;
while(i < args.length)
{
var option = args[i++];
if(option.length < 2 || option.charAt(0) != '-')
{
unknown.push(option);
continue;
}
var argument = null;
if(i < args.length && args[i].charAt(0) != '-')
{
argument = args[i++];
}
if(!this.checkOption(option, argument, str))
{
unknown.push(option);
if(argument !== null)
{
unknown.push(argument);
}
}
}
args.length = 0;
for(i = 0; i < unknown.length; i++)
{
args.push(unknown[i]);
}
},
//
// Compare endpoints for sorting purposes
//
equals: function(p)
{
if(!(p instanceof EndpointI))
{
return false;
}
return this.compareTo(p) === 0;
},
checkOption: function()
{
return false;
}
});
Ice.EndpointI = EndpointI;
module.exports.Ice = Ice;
|