zeroc-ice-x86-mingw 3.6b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ICE_LICENSE +54 -0
- data/LICENSE +339 -0
- data/bin/slice2rb +17 -0
- data/ice-x86-mingw.gemspec +41 -0
- data/lib/Glacier2.rb +12 -0
- data/lib/Glacier2/Metrics.rb +99 -0
- data/lib/Glacier2/PermissionsVerifier.rb +168 -0
- data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
- data/lib/Glacier2/Router.rb +141 -0
- data/lib/Glacier2/RouterF.rb +29 -0
- data/lib/Glacier2/SSLInfo.rb +79 -0
- data/lib/Glacier2/Session.rb +470 -0
- data/lib/Ice.rb +659 -0
- data/lib/Ice/BuiltinSequences.rb +64 -0
- data/lib/Ice/Communicator.rb +93 -0
- data/lib/Ice/CommunicatorF.rb +28 -0
- data/lib/Ice/Connection.rb +414 -0
- data/lib/Ice/ConnectionF.rb +36 -0
- data/lib/Ice/Current.rb +152 -0
- data/lib/Ice/Endpoint.rb +265 -0
- data/lib/Ice/EndpointF.rb +52 -0
- data/lib/Ice/EndpointTypes.rb +77 -0
- data/lib/Ice/FacetMap.rb +28 -0
- data/lib/Ice/Identity.rb +70 -0
- data/lib/Ice/ImplicitContext.rb +59 -0
- data/lib/Ice/ImplicitContextF.rb +28 -0
- data/lib/Ice/Instrumentation.rb +425 -0
- data/lib/Ice/InstrumentationF.rb +35 -0
- data/lib/Ice/LocalException.rb +1081 -0
- data/lib/Ice/Locator.rb +314 -0
- data/lib/Ice/LocatorF.rb +34 -0
- data/lib/Ice/Logger.rb +57 -0
- data/lib/Ice/LoggerF.rb +28 -0
- data/lib/Ice/Metrics.rb +696 -0
- data/lib/Ice/ObjectAdapterF.rb +28 -0
- data/lib/Ice/ObjectFactory.rb +53 -0
- data/lib/Ice/ObjectFactoryF.rb +28 -0
- data/lib/Ice/Plugin.rb +87 -0
- data/lib/Ice/PluginF.rb +32 -0
- data/lib/Ice/Process.rb +93 -0
- data/lib/Ice/ProcessF.rb +29 -0
- data/lib/Ice/Properties.rb +65 -0
- data/lib/Ice/PropertiesAdmin.rb +104 -0
- data/lib/Ice/PropertiesF.rb +33 -0
- data/lib/Ice/Router.rb +163 -0
- data/lib/Ice/RouterF.rb +29 -0
- data/lib/Ice/SliceChecksumDict.rb +28 -0
- data/lib/Ice/Version.rb +100 -0
- data/lib/IceBox.rb +10 -0
- data/lib/IceBox/IceBox.rb +272 -0
- data/lib/IceGrid.rb +17 -0
- data/lib/IceGrid/Admin.rb +1076 -0
- data/lib/IceGrid/Descriptor.rb +1505 -0
- data/lib/IceGrid/Exception.rb +401 -0
- data/lib/IceGrid/FileParser.rb +105 -0
- data/lib/IceGrid/Locator.rb +105 -0
- data/lib/IceGrid/Observer.rb +571 -0
- data/lib/IceGrid/Query.rb +168 -0
- data/lib/IceGrid/Registry.rb +120 -0
- data/lib/IceGrid/Session.rb +114 -0
- data/lib/IceGrid/UserAccountMapper.rb +101 -0
- data/lib/IcePatch2.rb +10 -0
- data/lib/IcePatch2/FileInfo.rb +75 -0
- data/lib/IcePatch2/FileServer.rb +141 -0
- data/lib/IceRuby.so +0 -0
- data/lib/IceStorm.rb +11 -0
- data/lib/IceStorm/IceStorm.rb +463 -0
- data/lib/IceStorm/Metrics.rb +155 -0
- data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
- data/slice/Freeze/CatalogData.ice +49 -0
- data/slice/Freeze/Connection.ice +111 -0
- data/slice/Freeze/ConnectionF.ice +20 -0
- data/slice/Freeze/DB.ice +37 -0
- data/slice/Freeze/Evictor.ice +339 -0
- data/slice/Freeze/EvictorF.ice +22 -0
- data/slice/Freeze/EvictorStorage.ice +72 -0
- data/slice/Freeze/Exception.ice +100 -0
- data/slice/Freeze/Transaction.ice +57 -0
- data/slice/Freeze/TransactionalEvictor.ice +50 -0
- data/slice/Glacier2/Metrics.ice +77 -0
- data/slice/Glacier2/PermissionsVerifier.ice +105 -0
- data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
- data/slice/Glacier2/Router.ice +178 -0
- data/slice/Glacier2/RouterF.ice +20 -0
- data/slice/Glacier2/SSLInfo.ice +50 -0
- data/slice/Glacier2/Session.ice +273 -0
- data/slice/Ice/BuiltinSequences.ice +48 -0
- data/slice/Ice/Communicator.ice +567 -0
- data/slice/Ice/CommunicatorF.ice +20 -0
- data/slice/Ice/Connection.ice +323 -0
- data/slice/Ice/ConnectionF.ice +22 -0
- data/slice/Ice/Current.ice +160 -0
- data/slice/Ice/Endpoint.ice +227 -0
- data/slice/Ice/EndpointF.ice +32 -0
- data/slice/Ice/EndpointTypes.ice +38 -0
- data/slice/Ice/FacetMap.ice +25 -0
- data/slice/Ice/Identity.ice +59 -0
- data/slice/Ice/ImplicitContext.ice +109 -0
- data/slice/Ice/ImplicitContextF.ice +20 -0
- data/slice/Ice/Instrumentation.ice +499 -0
- data/slice/Ice/InstrumentationF.ice +26 -0
- data/slice/Ice/LocalException.ice +1015 -0
- data/slice/Ice/Locator.ice +227 -0
- data/slice/Ice/LocatorF.ice +21 -0
- data/slice/Ice/Logger.ice +86 -0
- data/slice/Ice/LoggerF.ice +20 -0
- data/slice/Ice/Metrics.ice +422 -0
- data/slice/Ice/ObjectAdapter.ice +673 -0
- data/slice/Ice/ObjectAdapterF.ice +20 -0
- data/slice/Ice/ObjectFactory.ice +60 -0
- data/slice/Ice/ObjectFactoryF.ice +20 -0
- data/slice/Ice/Plugin.ice +117 -0
- data/slice/Ice/PluginF.ice +21 -0
- data/slice/Ice/Process.ice +54 -0
- data/slice/Ice/ProcessF.ice +20 -0
- data/slice/Ice/Properties.ice +228 -0
- data/slice/Ice/PropertiesAdmin.ice +75 -0
- data/slice/Ice/PropertiesF.ice +21 -0
- data/slice/Ice/RemoteLogger.ice +232 -0
- data/slice/Ice/Router.ice +83 -0
- data/slice/Ice/RouterF.ice +20 -0
- data/slice/Ice/ServantLocator.ice +117 -0
- data/slice/Ice/ServantLocatorF.ice +20 -0
- data/slice/Ice/SliceChecksumDict.ice +25 -0
- data/slice/Ice/Version.ice +39 -0
- data/slice/IceBox/IceBox.ice +194 -0
- data/slice/IceDiscovery/IceDiscovery.ice +32 -0
- data/slice/IceGrid/Admin.ice +1578 -0
- data/slice/IceGrid/Descriptor.ice +1079 -0
- data/slice/IceGrid/Discovery.ice +73 -0
- data/slice/IceGrid/Exception.ice +383 -0
- data/slice/IceGrid/FileParser.ice +61 -0
- data/slice/IceGrid/Locator.ice +56 -0
- data/slice/IceGrid/Observer.ice +394 -0
- data/slice/IceGrid/PluginFacade.ice +316 -0
- data/slice/IceGrid/Query.ice +130 -0
- data/slice/IceGrid/Registry.ice +138 -0
- data/slice/IceGrid/Session.ice +124 -0
- data/slice/IceGrid/UserAccountMapper.ice +58 -0
- data/slice/IcePatch2/FileInfo.ice +49 -0
- data/slice/IcePatch2/FileServer.ice +129 -0
- data/slice/IceSSL/ConnectionInfo.ice +34 -0
- data/slice/IceSSL/EndpointInfo.ice +41 -0
- data/slice/IceStorm/IceStorm.ice +405 -0
- data/slice/IceStorm/Metrics.ice +71 -0
- metadata +207 -0
@@ -0,0 +1,105 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `Locator.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/Locator.rb'
|
23
|
+
|
24
|
+
module IceGrid
|
25
|
+
|
26
|
+
if not defined?(::IceGrid::T_Registry)
|
27
|
+
T_Registry = ::Ice::__declareClass('::IceGrid::Registry')
|
28
|
+
T_RegistryPrx = ::Ice::__declareProxy('::IceGrid::Registry')
|
29
|
+
end
|
30
|
+
|
31
|
+
if not defined?(::IceGrid::T_Query)
|
32
|
+
T_Query = ::Ice::__declareClass('::IceGrid::Query')
|
33
|
+
T_QueryPrx = ::Ice::__declareProxy('::IceGrid::Query')
|
34
|
+
end
|
35
|
+
|
36
|
+
if not defined?(::IceGrid::Locator_mixin)
|
37
|
+
module Locator_mixin
|
38
|
+
include ::Ice::Object_mixin
|
39
|
+
|
40
|
+
def ice_ids(current=nil)
|
41
|
+
['::Ice::Locator', '::Ice::Object', '::IceGrid::Locator']
|
42
|
+
end
|
43
|
+
|
44
|
+
def ice_id(current=nil)
|
45
|
+
'::IceGrid::Locator'
|
46
|
+
end
|
47
|
+
|
48
|
+
#
|
49
|
+
# Operation signatures.
|
50
|
+
#
|
51
|
+
# def getLocalRegistry(current=nil)
|
52
|
+
# def getLocalQuery(current=nil)
|
53
|
+
|
54
|
+
def inspect
|
55
|
+
::Ice::__stringify(self, T_Locator)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
class Locator
|
59
|
+
include Locator_mixin
|
60
|
+
|
61
|
+
def Locator.ice_staticId()
|
62
|
+
'::IceGrid::Locator'
|
63
|
+
end
|
64
|
+
end
|
65
|
+
module LocatorPrx_mixin
|
66
|
+
include ::Ice::LocatorPrx_mixin
|
67
|
+
|
68
|
+
def getLocalRegistry(_ctx=nil)
|
69
|
+
Locator_mixin::OP_getLocalRegistry.invoke(self, [], _ctx)
|
70
|
+
end
|
71
|
+
|
72
|
+
def getLocalQuery(_ctx=nil)
|
73
|
+
Locator_mixin::OP_getLocalQuery.invoke(self, [], _ctx)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
class LocatorPrx < ::Ice::ObjectPrx
|
77
|
+
include LocatorPrx_mixin
|
78
|
+
|
79
|
+
def LocatorPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
80
|
+
ice_checkedCast(proxy, '::IceGrid::Locator', facetOrCtx, _ctx)
|
81
|
+
end
|
82
|
+
|
83
|
+
def LocatorPrx.uncheckedCast(proxy, facet=nil)
|
84
|
+
ice_uncheckedCast(proxy, facet)
|
85
|
+
end
|
86
|
+
def LocatorPrx.ice_staticId()
|
87
|
+
'::IceGrid::Locator'
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
if not defined?(::IceGrid::T_Locator)
|
92
|
+
T_Locator = ::Ice::__declareClass('::IceGrid::Locator')
|
93
|
+
T_LocatorPrx = ::Ice::__declareProxy('::IceGrid::Locator')
|
94
|
+
end
|
95
|
+
|
96
|
+
T_Locator.defineClass(Locator, -1, true, false, nil, [::Ice::T_Locator], [])
|
97
|
+
Locator_mixin::ICE_TYPE = T_Locator
|
98
|
+
|
99
|
+
T_LocatorPrx.defineProxy(LocatorPrx, T_Locator)
|
100
|
+
LocatorPrx::ICE_TYPE = T_LocatorPrx
|
101
|
+
|
102
|
+
Locator_mixin::OP_getLocalRegistry = ::Ice::__defineOperation('getLocalRegistry', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::IceGrid::T_RegistryPrx, false, 0], [])
|
103
|
+
Locator_mixin::OP_getLocalQuery = ::Ice::__defineOperation('getLocalQuery', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::IceGrid::T_QueryPrx, false, 0], [])
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,571 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `Observer.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Glacier2/Session.rb'
|
23
|
+
require 'IceGrid/Exception.rb'
|
24
|
+
require 'IceGrid/Descriptor.rb'
|
25
|
+
require 'IceGrid/Admin.rb'
|
26
|
+
|
27
|
+
module IceGrid
|
28
|
+
|
29
|
+
if not defined?(::IceGrid::ServerDynamicInfo)
|
30
|
+
class ServerDynamicInfo
|
31
|
+
def initialize(id='', state=::IceGrid::ServerState::Inactive, pid=0, enabled=false)
|
32
|
+
@id = id
|
33
|
+
@state = state
|
34
|
+
@pid = pid
|
35
|
+
@enabled = enabled
|
36
|
+
end
|
37
|
+
|
38
|
+
def hash
|
39
|
+
_h = 0
|
40
|
+
_h = 5 * _h + @id.hash
|
41
|
+
_h = 5 * _h + @state.hash
|
42
|
+
_h = 5 * _h + @pid.hash
|
43
|
+
_h = 5 * _h + @enabled.hash
|
44
|
+
_h % 0x7fffffff
|
45
|
+
end
|
46
|
+
|
47
|
+
def ==(other)
|
48
|
+
return false if
|
49
|
+
@id != other.id or
|
50
|
+
@state != other.state or
|
51
|
+
@pid != other.pid or
|
52
|
+
@enabled != other.enabled
|
53
|
+
true
|
54
|
+
end
|
55
|
+
|
56
|
+
def eql?(other)
|
57
|
+
return other.class == self.class && other == self
|
58
|
+
end
|
59
|
+
|
60
|
+
def inspect
|
61
|
+
::Ice::__stringify(self, T_ServerDynamicInfo)
|
62
|
+
end
|
63
|
+
|
64
|
+
attr_accessor :id, :state, :pid, :enabled
|
65
|
+
end
|
66
|
+
|
67
|
+
T_ServerDynamicInfo = ::Ice::__defineStruct('::IceGrid::ServerDynamicInfo', ServerDynamicInfo, [
|
68
|
+
["id", ::Ice::T_string],
|
69
|
+
["state", ::IceGrid::T_ServerState],
|
70
|
+
["pid", ::Ice::T_int],
|
71
|
+
["enabled", ::Ice::T_bool]
|
72
|
+
])
|
73
|
+
end
|
74
|
+
|
75
|
+
if not defined?(::IceGrid::T_ServerDynamicInfoSeq)
|
76
|
+
T_ServerDynamicInfoSeq = ::Ice::__defineSequence('::IceGrid::ServerDynamicInfoSeq', ::IceGrid::T_ServerDynamicInfo)
|
77
|
+
end
|
78
|
+
|
79
|
+
if not defined?(::IceGrid::AdapterDynamicInfo)
|
80
|
+
class AdapterDynamicInfo
|
81
|
+
def initialize(id='', proxy=nil)
|
82
|
+
@id = id
|
83
|
+
@proxy = proxy
|
84
|
+
end
|
85
|
+
|
86
|
+
def hash
|
87
|
+
_h = 0
|
88
|
+
_h = 5 * _h + @id.hash
|
89
|
+
_h = 5 * _h + @proxy.hash
|
90
|
+
_h % 0x7fffffff
|
91
|
+
end
|
92
|
+
|
93
|
+
def ==(other)
|
94
|
+
return false if
|
95
|
+
@id != other.id or
|
96
|
+
@proxy != other.proxy
|
97
|
+
true
|
98
|
+
end
|
99
|
+
|
100
|
+
def eql?(other)
|
101
|
+
return other.class == self.class && other == self
|
102
|
+
end
|
103
|
+
|
104
|
+
def inspect
|
105
|
+
::Ice::__stringify(self, T_AdapterDynamicInfo)
|
106
|
+
end
|
107
|
+
|
108
|
+
attr_accessor :id, :proxy
|
109
|
+
end
|
110
|
+
|
111
|
+
T_AdapterDynamicInfo = ::Ice::__defineStruct('::IceGrid::AdapterDynamicInfo', AdapterDynamicInfo, [
|
112
|
+
["id", ::Ice::T_string],
|
113
|
+
["proxy", ::Ice::T_ObjectPrx]
|
114
|
+
])
|
115
|
+
end
|
116
|
+
|
117
|
+
if not defined?(::IceGrid::T_AdapterDynamicInfoSeq)
|
118
|
+
T_AdapterDynamicInfoSeq = ::Ice::__defineSequence('::IceGrid::AdapterDynamicInfoSeq', ::IceGrid::T_AdapterDynamicInfo)
|
119
|
+
end
|
120
|
+
|
121
|
+
if not defined?(::IceGrid::NodeDynamicInfo)
|
122
|
+
class NodeDynamicInfo
|
123
|
+
def initialize(info=::IceGrid::NodeInfo.new, servers=nil, adapters=nil)
|
124
|
+
@info = info
|
125
|
+
@servers = servers
|
126
|
+
@adapters = adapters
|
127
|
+
end
|
128
|
+
|
129
|
+
def hash
|
130
|
+
_h = 0
|
131
|
+
_h = 5 * _h + @info.hash
|
132
|
+
_h = 5 * _h + @servers.hash
|
133
|
+
_h = 5 * _h + @adapters.hash
|
134
|
+
_h % 0x7fffffff
|
135
|
+
end
|
136
|
+
|
137
|
+
def ==(other)
|
138
|
+
return false if
|
139
|
+
@info != other.info or
|
140
|
+
@servers != other.servers or
|
141
|
+
@adapters != other.adapters
|
142
|
+
true
|
143
|
+
end
|
144
|
+
|
145
|
+
def eql?(other)
|
146
|
+
return other.class == self.class && other == self
|
147
|
+
end
|
148
|
+
|
149
|
+
def inspect
|
150
|
+
::Ice::__stringify(self, T_NodeDynamicInfo)
|
151
|
+
end
|
152
|
+
|
153
|
+
attr_accessor :info, :servers, :adapters
|
154
|
+
end
|
155
|
+
|
156
|
+
T_NodeDynamicInfo = ::Ice::__defineStruct('::IceGrid::NodeDynamicInfo', NodeDynamicInfo, [
|
157
|
+
["info", ::IceGrid::T_NodeInfo],
|
158
|
+
["servers", ::IceGrid::T_ServerDynamicInfoSeq],
|
159
|
+
["adapters", ::IceGrid::T_AdapterDynamicInfoSeq]
|
160
|
+
])
|
161
|
+
end
|
162
|
+
|
163
|
+
if not defined?(::IceGrid::T_NodeDynamicInfoSeq)
|
164
|
+
T_NodeDynamicInfoSeq = ::Ice::__defineSequence('::IceGrid::NodeDynamicInfoSeq', ::IceGrid::T_NodeDynamicInfo)
|
165
|
+
end
|
166
|
+
|
167
|
+
if not defined?(::IceGrid::NodeObserver_mixin)
|
168
|
+
module NodeObserver_mixin
|
169
|
+
include ::Ice::Object_mixin
|
170
|
+
|
171
|
+
def ice_ids(current=nil)
|
172
|
+
['::Ice::Object', '::IceGrid::NodeObserver']
|
173
|
+
end
|
174
|
+
|
175
|
+
def ice_id(current=nil)
|
176
|
+
'::IceGrid::NodeObserver'
|
177
|
+
end
|
178
|
+
|
179
|
+
#
|
180
|
+
# Operation signatures.
|
181
|
+
#
|
182
|
+
# def nodeInit(nodes, current=nil)
|
183
|
+
# def nodeUp(node, current=nil)
|
184
|
+
# def nodeDown(name, current=nil)
|
185
|
+
# def updateServer(node, updatedInfo, current=nil)
|
186
|
+
# def updateAdapter(node, updatedInfo, current=nil)
|
187
|
+
|
188
|
+
def inspect
|
189
|
+
::Ice::__stringify(self, T_NodeObserver)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
class NodeObserver
|
193
|
+
include NodeObserver_mixin
|
194
|
+
|
195
|
+
def NodeObserver.ice_staticId()
|
196
|
+
'::IceGrid::NodeObserver'
|
197
|
+
end
|
198
|
+
end
|
199
|
+
module NodeObserverPrx_mixin
|
200
|
+
|
201
|
+
def nodeInit(nodes, _ctx=nil)
|
202
|
+
NodeObserver_mixin::OP_nodeInit.invoke(self, [nodes], _ctx)
|
203
|
+
end
|
204
|
+
|
205
|
+
def nodeUp(node, _ctx=nil)
|
206
|
+
NodeObserver_mixin::OP_nodeUp.invoke(self, [node], _ctx)
|
207
|
+
end
|
208
|
+
|
209
|
+
def nodeDown(name, _ctx=nil)
|
210
|
+
NodeObserver_mixin::OP_nodeDown.invoke(self, [name], _ctx)
|
211
|
+
end
|
212
|
+
|
213
|
+
def updateServer(node, updatedInfo, _ctx=nil)
|
214
|
+
NodeObserver_mixin::OP_updateServer.invoke(self, [node, updatedInfo], _ctx)
|
215
|
+
end
|
216
|
+
|
217
|
+
def updateAdapter(node, updatedInfo, _ctx=nil)
|
218
|
+
NodeObserver_mixin::OP_updateAdapter.invoke(self, [node, updatedInfo], _ctx)
|
219
|
+
end
|
220
|
+
end
|
221
|
+
class NodeObserverPrx < ::Ice::ObjectPrx
|
222
|
+
include NodeObserverPrx_mixin
|
223
|
+
|
224
|
+
def NodeObserverPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
225
|
+
ice_checkedCast(proxy, '::IceGrid::NodeObserver', facetOrCtx, _ctx)
|
226
|
+
end
|
227
|
+
|
228
|
+
def NodeObserverPrx.uncheckedCast(proxy, facet=nil)
|
229
|
+
ice_uncheckedCast(proxy, facet)
|
230
|
+
end
|
231
|
+
def NodeObserverPrx.ice_staticId()
|
232
|
+
'::IceGrid::NodeObserver'
|
233
|
+
end
|
234
|
+
end
|
235
|
+
|
236
|
+
if not defined?(::IceGrid::T_NodeObserver)
|
237
|
+
T_NodeObserver = ::Ice::__declareClass('::IceGrid::NodeObserver')
|
238
|
+
T_NodeObserverPrx = ::Ice::__declareProxy('::IceGrid::NodeObserver')
|
239
|
+
end
|
240
|
+
|
241
|
+
T_NodeObserver.defineClass(NodeObserver, -1, true, false, nil, [], [])
|
242
|
+
NodeObserver_mixin::ICE_TYPE = T_NodeObserver
|
243
|
+
|
244
|
+
T_NodeObserverPrx.defineProxy(NodeObserverPrx, T_NodeObserver)
|
245
|
+
NodeObserverPrx::ICE_TYPE = T_NodeObserverPrx
|
246
|
+
|
247
|
+
NodeObserver_mixin::OP_nodeInit = ::Ice::__defineOperation('nodeInit', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_NodeDynamicInfoSeq, false, 0]], [], nil, [])
|
248
|
+
NodeObserver_mixin::OP_nodeUp = ::Ice::__defineOperation('nodeUp', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_NodeDynamicInfo, false, 0]], [], nil, [])
|
249
|
+
NodeObserver_mixin::OP_nodeDown = ::Ice::__defineOperation('nodeDown', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], nil, [])
|
250
|
+
NodeObserver_mixin::OP_updateServer = ::Ice::__defineOperation('updateServer', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0], [::IceGrid::T_ServerDynamicInfo, false, 0]], [], nil, [])
|
251
|
+
NodeObserver_mixin::OP_updateAdapter = ::Ice::__defineOperation('updateAdapter', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0], [::IceGrid::T_AdapterDynamicInfo, false, 0]], [], nil, [])
|
252
|
+
end
|
253
|
+
|
254
|
+
if not defined?(::IceGrid::ApplicationObserver_mixin)
|
255
|
+
module ApplicationObserver_mixin
|
256
|
+
include ::Ice::Object_mixin
|
257
|
+
|
258
|
+
def ice_ids(current=nil)
|
259
|
+
['::Ice::Object', '::IceGrid::ApplicationObserver']
|
260
|
+
end
|
261
|
+
|
262
|
+
def ice_id(current=nil)
|
263
|
+
'::IceGrid::ApplicationObserver'
|
264
|
+
end
|
265
|
+
|
266
|
+
#
|
267
|
+
# Operation signatures.
|
268
|
+
#
|
269
|
+
# def applicationInit(serial, applications, current=nil)
|
270
|
+
# def applicationAdded(serial, desc, current=nil)
|
271
|
+
# def applicationRemoved(serial, name, current=nil)
|
272
|
+
# def applicationUpdated(serial, desc, current=nil)
|
273
|
+
|
274
|
+
def inspect
|
275
|
+
::Ice::__stringify(self, T_ApplicationObserver)
|
276
|
+
end
|
277
|
+
end
|
278
|
+
class ApplicationObserver
|
279
|
+
include ApplicationObserver_mixin
|
280
|
+
|
281
|
+
def ApplicationObserver.ice_staticId()
|
282
|
+
'::IceGrid::ApplicationObserver'
|
283
|
+
end
|
284
|
+
end
|
285
|
+
module ApplicationObserverPrx_mixin
|
286
|
+
|
287
|
+
def applicationInit(serial, applications, _ctx=nil)
|
288
|
+
ApplicationObserver_mixin::OP_applicationInit.invoke(self, [serial, applications], _ctx)
|
289
|
+
end
|
290
|
+
|
291
|
+
def applicationAdded(serial, desc, _ctx=nil)
|
292
|
+
ApplicationObserver_mixin::OP_applicationAdded.invoke(self, [serial, desc], _ctx)
|
293
|
+
end
|
294
|
+
|
295
|
+
def applicationRemoved(serial, name, _ctx=nil)
|
296
|
+
ApplicationObserver_mixin::OP_applicationRemoved.invoke(self, [serial, name], _ctx)
|
297
|
+
end
|
298
|
+
|
299
|
+
def applicationUpdated(serial, desc, _ctx=nil)
|
300
|
+
ApplicationObserver_mixin::OP_applicationUpdated.invoke(self, [serial, desc], _ctx)
|
301
|
+
end
|
302
|
+
end
|
303
|
+
class ApplicationObserverPrx < ::Ice::ObjectPrx
|
304
|
+
include ApplicationObserverPrx_mixin
|
305
|
+
|
306
|
+
def ApplicationObserverPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
307
|
+
ice_checkedCast(proxy, '::IceGrid::ApplicationObserver', facetOrCtx, _ctx)
|
308
|
+
end
|
309
|
+
|
310
|
+
def ApplicationObserverPrx.uncheckedCast(proxy, facet=nil)
|
311
|
+
ice_uncheckedCast(proxy, facet)
|
312
|
+
end
|
313
|
+
def ApplicationObserverPrx.ice_staticId()
|
314
|
+
'::IceGrid::ApplicationObserver'
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
if not defined?(::IceGrid::T_ApplicationObserver)
|
319
|
+
T_ApplicationObserver = ::Ice::__declareClass('::IceGrid::ApplicationObserver')
|
320
|
+
T_ApplicationObserverPrx = ::Ice::__declareProxy('::IceGrid::ApplicationObserver')
|
321
|
+
end
|
322
|
+
|
323
|
+
T_ApplicationObserver.defineClass(ApplicationObserver, -1, true, false, nil, [], [])
|
324
|
+
ApplicationObserver_mixin::ICE_TYPE = T_ApplicationObserver
|
325
|
+
|
326
|
+
T_ApplicationObserverPrx.defineProxy(ApplicationObserverPrx, T_ApplicationObserver)
|
327
|
+
ApplicationObserverPrx::ICE_TYPE = T_ApplicationObserverPrx
|
328
|
+
|
329
|
+
ApplicationObserver_mixin::OP_applicationInit = ::Ice::__defineOperation('applicationInit', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_int, false, 0], [::IceGrid::T_ApplicationInfoSeq, false, 0]], [], nil, [])
|
330
|
+
ApplicationObserver_mixin::OP_applicationAdded = ::Ice::__defineOperation('applicationAdded', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_int, false, 0], [::IceGrid::T_ApplicationInfo, false, 0]], [], nil, [])
|
331
|
+
ApplicationObserver_mixin::OP_applicationRemoved = ::Ice::__defineOperation('applicationRemoved', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], [], nil, [])
|
332
|
+
ApplicationObserver_mixin::OP_applicationUpdated = ::Ice::__defineOperation('applicationUpdated', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_int, false, 0], [::IceGrid::T_ApplicationUpdateInfo, false, 0]], [], nil, [])
|
333
|
+
end
|
334
|
+
|
335
|
+
if not defined?(::IceGrid::AdapterObserver_mixin)
|
336
|
+
module AdapterObserver_mixin
|
337
|
+
include ::Ice::Object_mixin
|
338
|
+
|
339
|
+
def ice_ids(current=nil)
|
340
|
+
['::Ice::Object', '::IceGrid::AdapterObserver']
|
341
|
+
end
|
342
|
+
|
343
|
+
def ice_id(current=nil)
|
344
|
+
'::IceGrid::AdapterObserver'
|
345
|
+
end
|
346
|
+
|
347
|
+
#
|
348
|
+
# Operation signatures.
|
349
|
+
#
|
350
|
+
# def adapterInit(adpts, current=nil)
|
351
|
+
# def adapterAdded(info, current=nil)
|
352
|
+
# def adapterUpdated(info, current=nil)
|
353
|
+
# def adapterRemoved(id, current=nil)
|
354
|
+
|
355
|
+
def inspect
|
356
|
+
::Ice::__stringify(self, T_AdapterObserver)
|
357
|
+
end
|
358
|
+
end
|
359
|
+
class AdapterObserver
|
360
|
+
include AdapterObserver_mixin
|
361
|
+
|
362
|
+
def AdapterObserver.ice_staticId()
|
363
|
+
'::IceGrid::AdapterObserver'
|
364
|
+
end
|
365
|
+
end
|
366
|
+
module AdapterObserverPrx_mixin
|
367
|
+
|
368
|
+
def adapterInit(adpts, _ctx=nil)
|
369
|
+
AdapterObserver_mixin::OP_adapterInit.invoke(self, [adpts], _ctx)
|
370
|
+
end
|
371
|
+
|
372
|
+
def adapterAdded(info, _ctx=nil)
|
373
|
+
AdapterObserver_mixin::OP_adapterAdded.invoke(self, [info], _ctx)
|
374
|
+
end
|
375
|
+
|
376
|
+
def adapterUpdated(info, _ctx=nil)
|
377
|
+
AdapterObserver_mixin::OP_adapterUpdated.invoke(self, [info], _ctx)
|
378
|
+
end
|
379
|
+
|
380
|
+
def adapterRemoved(id, _ctx=nil)
|
381
|
+
AdapterObserver_mixin::OP_adapterRemoved.invoke(self, [id], _ctx)
|
382
|
+
end
|
383
|
+
end
|
384
|
+
class AdapterObserverPrx < ::Ice::ObjectPrx
|
385
|
+
include AdapterObserverPrx_mixin
|
386
|
+
|
387
|
+
def AdapterObserverPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
388
|
+
ice_checkedCast(proxy, '::IceGrid::AdapterObserver', facetOrCtx, _ctx)
|
389
|
+
end
|
390
|
+
|
391
|
+
def AdapterObserverPrx.uncheckedCast(proxy, facet=nil)
|
392
|
+
ice_uncheckedCast(proxy, facet)
|
393
|
+
end
|
394
|
+
def AdapterObserverPrx.ice_staticId()
|
395
|
+
'::IceGrid::AdapterObserver'
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
if not defined?(::IceGrid::T_AdapterObserver)
|
400
|
+
T_AdapterObserver = ::Ice::__declareClass('::IceGrid::AdapterObserver')
|
401
|
+
T_AdapterObserverPrx = ::Ice::__declareProxy('::IceGrid::AdapterObserver')
|
402
|
+
end
|
403
|
+
|
404
|
+
T_AdapterObserver.defineClass(AdapterObserver, -1, true, false, nil, [], [])
|
405
|
+
AdapterObserver_mixin::ICE_TYPE = T_AdapterObserver
|
406
|
+
|
407
|
+
T_AdapterObserverPrx.defineProxy(AdapterObserverPrx, T_AdapterObserver)
|
408
|
+
AdapterObserverPrx::ICE_TYPE = T_AdapterObserverPrx
|
409
|
+
|
410
|
+
AdapterObserver_mixin::OP_adapterInit = ::Ice::__defineOperation('adapterInit', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_AdapterInfoSeq, false, 0]], [], nil, [])
|
411
|
+
AdapterObserver_mixin::OP_adapterAdded = ::Ice::__defineOperation('adapterAdded', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_AdapterInfo, false, 0]], [], nil, [])
|
412
|
+
AdapterObserver_mixin::OP_adapterUpdated = ::Ice::__defineOperation('adapterUpdated', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_AdapterInfo, false, 0]], [], nil, [])
|
413
|
+
AdapterObserver_mixin::OP_adapterRemoved = ::Ice::__defineOperation('adapterRemoved', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], nil, [])
|
414
|
+
end
|
415
|
+
|
416
|
+
if not defined?(::IceGrid::ObjectObserver_mixin)
|
417
|
+
module ObjectObserver_mixin
|
418
|
+
include ::Ice::Object_mixin
|
419
|
+
|
420
|
+
def ice_ids(current=nil)
|
421
|
+
['::Ice::Object', '::IceGrid::ObjectObserver']
|
422
|
+
end
|
423
|
+
|
424
|
+
def ice_id(current=nil)
|
425
|
+
'::IceGrid::ObjectObserver'
|
426
|
+
end
|
427
|
+
|
428
|
+
#
|
429
|
+
# Operation signatures.
|
430
|
+
#
|
431
|
+
# def objectInit(objects, current=nil)
|
432
|
+
# def objectAdded(info, current=nil)
|
433
|
+
# def objectUpdated(info, current=nil)
|
434
|
+
# def objectRemoved(id, current=nil)
|
435
|
+
|
436
|
+
def inspect
|
437
|
+
::Ice::__stringify(self, T_ObjectObserver)
|
438
|
+
end
|
439
|
+
end
|
440
|
+
class ObjectObserver
|
441
|
+
include ObjectObserver_mixin
|
442
|
+
|
443
|
+
def ObjectObserver.ice_staticId()
|
444
|
+
'::IceGrid::ObjectObserver'
|
445
|
+
end
|
446
|
+
end
|
447
|
+
module ObjectObserverPrx_mixin
|
448
|
+
|
449
|
+
def objectInit(objects, _ctx=nil)
|
450
|
+
ObjectObserver_mixin::OP_objectInit.invoke(self, [objects], _ctx)
|
451
|
+
end
|
452
|
+
|
453
|
+
def objectAdded(info, _ctx=nil)
|
454
|
+
ObjectObserver_mixin::OP_objectAdded.invoke(self, [info], _ctx)
|
455
|
+
end
|
456
|
+
|
457
|
+
def objectUpdated(info, _ctx=nil)
|
458
|
+
ObjectObserver_mixin::OP_objectUpdated.invoke(self, [info], _ctx)
|
459
|
+
end
|
460
|
+
|
461
|
+
def objectRemoved(id, _ctx=nil)
|
462
|
+
ObjectObserver_mixin::OP_objectRemoved.invoke(self, [id], _ctx)
|
463
|
+
end
|
464
|
+
end
|
465
|
+
class ObjectObserverPrx < ::Ice::ObjectPrx
|
466
|
+
include ObjectObserverPrx_mixin
|
467
|
+
|
468
|
+
def ObjectObserverPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
469
|
+
ice_checkedCast(proxy, '::IceGrid::ObjectObserver', facetOrCtx, _ctx)
|
470
|
+
end
|
471
|
+
|
472
|
+
def ObjectObserverPrx.uncheckedCast(proxy, facet=nil)
|
473
|
+
ice_uncheckedCast(proxy, facet)
|
474
|
+
end
|
475
|
+
def ObjectObserverPrx.ice_staticId()
|
476
|
+
'::IceGrid::ObjectObserver'
|
477
|
+
end
|
478
|
+
end
|
479
|
+
|
480
|
+
if not defined?(::IceGrid::T_ObjectObserver)
|
481
|
+
T_ObjectObserver = ::Ice::__declareClass('::IceGrid::ObjectObserver')
|
482
|
+
T_ObjectObserverPrx = ::Ice::__declareProxy('::IceGrid::ObjectObserver')
|
483
|
+
end
|
484
|
+
|
485
|
+
T_ObjectObserver.defineClass(ObjectObserver, -1, true, false, nil, [], [])
|
486
|
+
ObjectObserver_mixin::ICE_TYPE = T_ObjectObserver
|
487
|
+
|
488
|
+
T_ObjectObserverPrx.defineProxy(ObjectObserverPrx, T_ObjectObserver)
|
489
|
+
ObjectObserverPrx::ICE_TYPE = T_ObjectObserverPrx
|
490
|
+
|
491
|
+
ObjectObserver_mixin::OP_objectInit = ::Ice::__defineOperation('objectInit', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_ObjectInfoSeq, false, 0]], [], nil, [])
|
492
|
+
ObjectObserver_mixin::OP_objectAdded = ::Ice::__defineOperation('objectAdded', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_ObjectInfo, false, 0]], [], nil, [])
|
493
|
+
ObjectObserver_mixin::OP_objectUpdated = ::Ice::__defineOperation('objectUpdated', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_ObjectInfo, false, 0]], [], nil, [])
|
494
|
+
ObjectObserver_mixin::OP_objectRemoved = ::Ice::__defineOperation('objectRemoved', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_Identity, false, 0]], [], nil, [])
|
495
|
+
end
|
496
|
+
|
497
|
+
if not defined?(::IceGrid::RegistryObserver_mixin)
|
498
|
+
module RegistryObserver_mixin
|
499
|
+
include ::Ice::Object_mixin
|
500
|
+
|
501
|
+
def ice_ids(current=nil)
|
502
|
+
['::Ice::Object', '::IceGrid::RegistryObserver']
|
503
|
+
end
|
504
|
+
|
505
|
+
def ice_id(current=nil)
|
506
|
+
'::IceGrid::RegistryObserver'
|
507
|
+
end
|
508
|
+
|
509
|
+
#
|
510
|
+
# Operation signatures.
|
511
|
+
#
|
512
|
+
# def registryInit(registries, current=nil)
|
513
|
+
# def registryUp(node, current=nil)
|
514
|
+
# def registryDown(name, current=nil)
|
515
|
+
|
516
|
+
def inspect
|
517
|
+
::Ice::__stringify(self, T_RegistryObserver)
|
518
|
+
end
|
519
|
+
end
|
520
|
+
class RegistryObserver
|
521
|
+
include RegistryObserver_mixin
|
522
|
+
|
523
|
+
def RegistryObserver.ice_staticId()
|
524
|
+
'::IceGrid::RegistryObserver'
|
525
|
+
end
|
526
|
+
end
|
527
|
+
module RegistryObserverPrx_mixin
|
528
|
+
|
529
|
+
def registryInit(registries, _ctx=nil)
|
530
|
+
RegistryObserver_mixin::OP_registryInit.invoke(self, [registries], _ctx)
|
531
|
+
end
|
532
|
+
|
533
|
+
def registryUp(node, _ctx=nil)
|
534
|
+
RegistryObserver_mixin::OP_registryUp.invoke(self, [node], _ctx)
|
535
|
+
end
|
536
|
+
|
537
|
+
def registryDown(name, _ctx=nil)
|
538
|
+
RegistryObserver_mixin::OP_registryDown.invoke(self, [name], _ctx)
|
539
|
+
end
|
540
|
+
end
|
541
|
+
class RegistryObserverPrx < ::Ice::ObjectPrx
|
542
|
+
include RegistryObserverPrx_mixin
|
543
|
+
|
544
|
+
def RegistryObserverPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
545
|
+
ice_checkedCast(proxy, '::IceGrid::RegistryObserver', facetOrCtx, _ctx)
|
546
|
+
end
|
547
|
+
|
548
|
+
def RegistryObserverPrx.uncheckedCast(proxy, facet=nil)
|
549
|
+
ice_uncheckedCast(proxy, facet)
|
550
|
+
end
|
551
|
+
def RegistryObserverPrx.ice_staticId()
|
552
|
+
'::IceGrid::RegistryObserver'
|
553
|
+
end
|
554
|
+
end
|
555
|
+
|
556
|
+
if not defined?(::IceGrid::T_RegistryObserver)
|
557
|
+
T_RegistryObserver = ::Ice::__declareClass('::IceGrid::RegistryObserver')
|
558
|
+
T_RegistryObserverPrx = ::Ice::__declareProxy('::IceGrid::RegistryObserver')
|
559
|
+
end
|
560
|
+
|
561
|
+
T_RegistryObserver.defineClass(RegistryObserver, -1, true, false, nil, [], [])
|
562
|
+
RegistryObserver_mixin::ICE_TYPE = T_RegistryObserver
|
563
|
+
|
564
|
+
T_RegistryObserverPrx.defineProxy(RegistryObserverPrx, T_RegistryObserver)
|
565
|
+
RegistryObserverPrx::ICE_TYPE = T_RegistryObserverPrx
|
566
|
+
|
567
|
+
RegistryObserver_mixin::OP_registryInit = ::Ice::__defineOperation('registryInit', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_RegistryInfoSeq, false, 0]], [], nil, [])
|
568
|
+
RegistryObserver_mixin::OP_registryUp = ::Ice::__defineOperation('registryUp', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::IceGrid::T_RegistryInfo, false, 0]], [], nil, [])
|
569
|
+
RegistryObserver_mixin::OP_registryDown = ::Ice::__defineOperation('registryDown', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], nil, [])
|
570
|
+
end
|
571
|
+
end
|