zeroc-ice-x64-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-x64-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,28 @@
|
|
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 `ObjectAdapterF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::T_ObjectAdapter)
|
26
|
+
T_ObjectAdapter = ::Ice::__declareLocalClass('::Ice::ObjectAdapter')
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,53 @@
|
|
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 `ObjectFactory.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::ObjectFactory_mixin)
|
26
|
+
module ObjectFactory_mixin
|
27
|
+
|
28
|
+
#
|
29
|
+
# Operation signatures.
|
30
|
+
#
|
31
|
+
# def create(type)
|
32
|
+
# def destroy()
|
33
|
+
|
34
|
+
def inspect
|
35
|
+
::Ice::__stringify(self, T_ObjectFactory)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
class ObjectFactory
|
39
|
+
include ObjectFactory_mixin
|
40
|
+
|
41
|
+
def ObjectFactory.ice_staticId()
|
42
|
+
'::Ice::ObjectFactory'
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
if not defined?(::Ice::T_ObjectFactory)
|
47
|
+
T_ObjectFactory = ::Ice::__declareLocalClass('::Ice::ObjectFactory')
|
48
|
+
end
|
49
|
+
|
50
|
+
T_ObjectFactory.defineClass(ObjectFactory, -1, true, false, nil, [], [])
|
51
|
+
ObjectFactory_mixin::ICE_TYPE = T_ObjectFactory
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,28 @@
|
|
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 `ObjectFactoryF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::T_ObjectFactory)
|
26
|
+
T_ObjectFactory = ::Ice::__declareLocalClass('::Ice::ObjectFactory')
|
27
|
+
end
|
28
|
+
end
|
data/lib/Ice/Plugin.rb
ADDED
@@ -0,0 +1,87 @@
|
|
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 `Plugin.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/LoggerF.rb'
|
23
|
+
require 'Ice/BuiltinSequences.rb'
|
24
|
+
|
25
|
+
module Ice
|
26
|
+
|
27
|
+
if not defined?(::Ice::Plugin_mixin)
|
28
|
+
module Plugin_mixin
|
29
|
+
|
30
|
+
#
|
31
|
+
# Operation signatures.
|
32
|
+
#
|
33
|
+
# def initialize()
|
34
|
+
# def destroy()
|
35
|
+
|
36
|
+
def inspect
|
37
|
+
::Ice::__stringify(self, T_Plugin)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
class Plugin
|
41
|
+
include Plugin_mixin
|
42
|
+
|
43
|
+
def Plugin.ice_staticId()
|
44
|
+
'::Ice::Plugin'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
if not defined?(::Ice::T_Plugin)
|
49
|
+
T_Plugin = ::Ice::__declareLocalClass('::Ice::Plugin')
|
50
|
+
end
|
51
|
+
|
52
|
+
T_Plugin.defineClass(Plugin, -1, true, false, nil, [], [])
|
53
|
+
Plugin_mixin::ICE_TYPE = T_Plugin
|
54
|
+
end
|
55
|
+
|
56
|
+
if not defined?(::Ice::PluginManager_mixin)
|
57
|
+
module PluginManager_mixin
|
58
|
+
|
59
|
+
#
|
60
|
+
# Operation signatures.
|
61
|
+
#
|
62
|
+
# def initializePlugins()
|
63
|
+
# def getPlugins()
|
64
|
+
# def getPlugin(name)
|
65
|
+
# def addPlugin(name, pi)
|
66
|
+
# def destroy()
|
67
|
+
|
68
|
+
def inspect
|
69
|
+
::Ice::__stringify(self, T_PluginManager)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
class PluginManager
|
73
|
+
include PluginManager_mixin
|
74
|
+
|
75
|
+
def PluginManager.ice_staticId()
|
76
|
+
'::Ice::PluginManager'
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
if not defined?(::Ice::T_PluginManager)
|
81
|
+
T_PluginManager = ::Ice::__declareLocalClass('::Ice::PluginManager')
|
82
|
+
end
|
83
|
+
|
84
|
+
T_PluginManager.defineClass(PluginManager, -1, true, false, nil, [], [])
|
85
|
+
PluginManager_mixin::ICE_TYPE = T_PluginManager
|
86
|
+
end
|
87
|
+
end
|
data/lib/Ice/PluginF.rb
ADDED
@@ -0,0 +1,32 @@
|
|
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 `PluginF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::T_Plugin)
|
26
|
+
T_Plugin = ::Ice::__declareLocalClass('::Ice::Plugin')
|
27
|
+
end
|
28
|
+
|
29
|
+
if not defined?(::Ice::T_PluginManager)
|
30
|
+
T_PluginManager = ::Ice::__declareLocalClass('::Ice::PluginManager')
|
31
|
+
end
|
32
|
+
end
|
data/lib/Ice/Process.rb
ADDED
@@ -0,0 +1,93 @@
|
|
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 `Process.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::Process_mixin)
|
26
|
+
module Process_mixin
|
27
|
+
include ::Ice::Object_mixin
|
28
|
+
|
29
|
+
def ice_ids(current=nil)
|
30
|
+
['::Ice::Object', '::Ice::Process']
|
31
|
+
end
|
32
|
+
|
33
|
+
def ice_id(current=nil)
|
34
|
+
'::Ice::Process'
|
35
|
+
end
|
36
|
+
|
37
|
+
#
|
38
|
+
# Operation signatures.
|
39
|
+
#
|
40
|
+
# def shutdown(current=nil)
|
41
|
+
# def writeMessage(message, fd, current=nil)
|
42
|
+
|
43
|
+
def inspect
|
44
|
+
::Ice::__stringify(self, T_Process)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
class Process
|
48
|
+
include Process_mixin
|
49
|
+
|
50
|
+
def Process.ice_staticId()
|
51
|
+
'::Ice::Process'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
module ProcessPrx_mixin
|
55
|
+
|
56
|
+
def shutdown(_ctx=nil)
|
57
|
+
Process_mixin::OP_shutdown.invoke(self, [], _ctx)
|
58
|
+
end
|
59
|
+
|
60
|
+
def writeMessage(message, fd, _ctx=nil)
|
61
|
+
Process_mixin::OP_writeMessage.invoke(self, [message, fd], _ctx)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
class ProcessPrx < ::Ice::ObjectPrx
|
65
|
+
include ProcessPrx_mixin
|
66
|
+
|
67
|
+
def ProcessPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
68
|
+
ice_checkedCast(proxy, '::Ice::Process', facetOrCtx, _ctx)
|
69
|
+
end
|
70
|
+
|
71
|
+
def ProcessPrx.uncheckedCast(proxy, facet=nil)
|
72
|
+
ice_uncheckedCast(proxy, facet)
|
73
|
+
end
|
74
|
+
def ProcessPrx.ice_staticId()
|
75
|
+
'::Ice::Process'
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
if not defined?(::Ice::T_Process)
|
80
|
+
T_Process = ::Ice::__declareClass('::Ice::Process')
|
81
|
+
T_ProcessPrx = ::Ice::__declareProxy('::Ice::Process')
|
82
|
+
end
|
83
|
+
|
84
|
+
T_Process.defineClass(Process, -1, true, false, nil, [], [])
|
85
|
+
Process_mixin::ICE_TYPE = T_Process
|
86
|
+
|
87
|
+
T_ProcessPrx.defineProxy(ProcessPrx, T_Process)
|
88
|
+
ProcessPrx::ICE_TYPE = T_ProcessPrx
|
89
|
+
|
90
|
+
Process_mixin::OP_shutdown = ::Ice::__defineOperation('shutdown', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [], [], nil, [])
|
91
|
+
Process_mixin::OP_writeMessage = ::Ice::__defineOperation('writeMessage', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0], [::Ice::T_int, false, 0]], [], nil, [])
|
92
|
+
end
|
93
|
+
end
|
data/lib/Ice/ProcessF.rb
ADDED
@@ -0,0 +1,29 @@
|
|
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 `ProcessF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::T_Process)
|
26
|
+
T_Process = ::Ice::__declareClass('::Ice::Process')
|
27
|
+
T_ProcessPrx = ::Ice::__declareProxy('::Ice::Process')
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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 `Properties.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/PropertiesAdmin.rb'
|
23
|
+
|
24
|
+
module Ice
|
25
|
+
|
26
|
+
if not defined?(::Ice::Properties_mixin)
|
27
|
+
module Properties_mixin
|
28
|
+
|
29
|
+
#
|
30
|
+
# Operation signatures.
|
31
|
+
#
|
32
|
+
# def getProperty(key)
|
33
|
+
# def getPropertyWithDefault(key, value)
|
34
|
+
# def getPropertyAsInt(key)
|
35
|
+
# def getPropertyAsIntWithDefault(key, value)
|
36
|
+
# def getPropertyAsList(key)
|
37
|
+
# def getPropertyAsListWithDefault(key, value)
|
38
|
+
# def getPropertiesForPrefix(prefix)
|
39
|
+
# def setProperty(key, value)
|
40
|
+
# def getCommandLineOptions()
|
41
|
+
# def parseCommandLineOptions(prefix, options)
|
42
|
+
# def parseIceCommandLineOptions(options)
|
43
|
+
# def load(file)
|
44
|
+
# def _clone()
|
45
|
+
|
46
|
+
def inspect
|
47
|
+
::Ice::__stringify(self, T_Properties)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
class Properties
|
51
|
+
include Properties_mixin
|
52
|
+
|
53
|
+
def Properties.ice_staticId()
|
54
|
+
'::Ice::Properties'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
if not defined?(::Ice::T_Properties)
|
59
|
+
T_Properties = ::Ice::__declareLocalClass('::Ice::Properties')
|
60
|
+
end
|
61
|
+
|
62
|
+
T_Properties.defineClass(Properties, -1, true, false, nil, [], [])
|
63
|
+
Properties_mixin::ICE_TYPE = T_Properties
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,104 @@
|
|
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 `PropertiesAdmin.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/BuiltinSequences.rb'
|
23
|
+
|
24
|
+
module Ice
|
25
|
+
|
26
|
+
if not defined?(::Ice::T_PropertyDict)
|
27
|
+
T_PropertyDict = ::Ice::__defineDictionary('::Ice::PropertyDict', ::Ice::T_string, ::Ice::T_string)
|
28
|
+
end
|
29
|
+
|
30
|
+
if not defined?(::Ice::PropertiesAdmin_mixin)
|
31
|
+
module PropertiesAdmin_mixin
|
32
|
+
include ::Ice::Object_mixin
|
33
|
+
|
34
|
+
def ice_ids(current=nil)
|
35
|
+
['::Ice::Object', '::Ice::PropertiesAdmin']
|
36
|
+
end
|
37
|
+
|
38
|
+
def ice_id(current=nil)
|
39
|
+
'::Ice::PropertiesAdmin'
|
40
|
+
end
|
41
|
+
|
42
|
+
#
|
43
|
+
# Operation signatures.
|
44
|
+
#
|
45
|
+
# def getProperty(key, current=nil)
|
46
|
+
# def getPropertiesForPrefix(prefix, current=nil)
|
47
|
+
# def setProperties(newProperties, current=nil)
|
48
|
+
|
49
|
+
def inspect
|
50
|
+
::Ice::__stringify(self, T_PropertiesAdmin)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
class PropertiesAdmin
|
54
|
+
include PropertiesAdmin_mixin
|
55
|
+
|
56
|
+
def PropertiesAdmin.ice_staticId()
|
57
|
+
'::Ice::PropertiesAdmin'
|
58
|
+
end
|
59
|
+
end
|
60
|
+
module PropertiesAdminPrx_mixin
|
61
|
+
|
62
|
+
def getProperty(key, _ctx=nil)
|
63
|
+
PropertiesAdmin_mixin::OP_getProperty.invoke(self, [key], _ctx)
|
64
|
+
end
|
65
|
+
|
66
|
+
def getPropertiesForPrefix(prefix, _ctx=nil)
|
67
|
+
PropertiesAdmin_mixin::OP_getPropertiesForPrefix.invoke(self, [prefix], _ctx)
|
68
|
+
end
|
69
|
+
|
70
|
+
def setProperties(newProperties, _ctx=nil)
|
71
|
+
PropertiesAdmin_mixin::OP_setProperties.invoke(self, [newProperties], _ctx)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
class PropertiesAdminPrx < ::Ice::ObjectPrx
|
75
|
+
include PropertiesAdminPrx_mixin
|
76
|
+
|
77
|
+
def PropertiesAdminPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
|
78
|
+
ice_checkedCast(proxy, '::Ice::PropertiesAdmin', facetOrCtx, _ctx)
|
79
|
+
end
|
80
|
+
|
81
|
+
def PropertiesAdminPrx.uncheckedCast(proxy, facet=nil)
|
82
|
+
ice_uncheckedCast(proxy, facet)
|
83
|
+
end
|
84
|
+
def PropertiesAdminPrx.ice_staticId()
|
85
|
+
'::Ice::PropertiesAdmin'
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
if not defined?(::Ice::T_PropertiesAdmin)
|
90
|
+
T_PropertiesAdmin = ::Ice::__declareClass('::Ice::PropertiesAdmin')
|
91
|
+
T_PropertiesAdminPrx = ::Ice::__declareProxy('::Ice::PropertiesAdmin')
|
92
|
+
end
|
93
|
+
|
94
|
+
T_PropertiesAdmin.defineClass(PropertiesAdmin, -1, true, false, nil, [], [])
|
95
|
+
PropertiesAdmin_mixin::ICE_TYPE = T_PropertiesAdmin
|
96
|
+
|
97
|
+
T_PropertiesAdminPrx.defineProxy(PropertiesAdminPrx, T_PropertiesAdmin)
|
98
|
+
PropertiesAdminPrx::ICE_TYPE = T_PropertiesAdminPrx
|
99
|
+
|
100
|
+
PropertiesAdmin_mixin::OP_getProperty = ::Ice::__defineOperation('getProperty', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], [::Ice::T_string, false, 0], [])
|
101
|
+
PropertiesAdmin_mixin::OP_getPropertiesForPrefix = ::Ice::__defineOperation('getPropertiesForPrefix', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], [::Ice::T_PropertyDict, false, 0], [])
|
102
|
+
PropertiesAdmin_mixin::OP_setProperties = ::Ice::__defineOperation('setProperties', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_PropertyDict, false, 0]], [], nil, [])
|
103
|
+
end
|
104
|
+
end
|