zeroc-ice 3.8.2 → 3.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/dist/IceRuby/Communicator.cpp +26 -9
- data/dist/IceRuby/Config.h +0 -12
- data/dist/IceRuby/Connection.cpp +18 -9
- data/dist/IceRuby/DefaultSliceLoader.h +1 -1
- data/dist/IceRuby/Endpoint.cpp +21 -8
- data/dist/IceRuby/Operation.cpp +7 -5
- data/dist/IceRuby/Properties.cpp +3 -4
- data/dist/IceRuby/Proxy.cpp +11 -19
- data/dist/IceRuby/RubySliceLoader.cpp +1 -1
- data/dist/IceRuby/RubySliceLoader.h +6 -0
- data/dist/IceRuby/Types.cpp +162 -138
- data/dist/IceRuby/Types.h +68 -28
- data/dist/IceRuby/Util.cpp +14 -78
- data/dist/IceRuby/Util.h +7 -17
- data/dist/ice/cpp/include/Ice/Communicator.h +31 -8
- data/dist/ice/cpp/include/Ice/Config.h +2 -2
- data/dist/ice/cpp/include/Ice/Connection.h +24 -8
- data/dist/ice/cpp/include/Ice/CtrlCHandler.h +1 -1
- data/dist/ice/cpp/include/Ice/Demangle.h +1 -1
- data/dist/ice/cpp/include/Ice/Endpoint.h +4 -4
- data/dist/ice/cpp/include/Ice/Initialize.h +4 -4
- data/dist/ice/cpp/include/Ice/InputStream.h +5 -5
- data/dist/ice/cpp/include/Ice/Instrumentation.h +13 -7
- data/dist/ice/cpp/include/Ice/LocalExceptions.h +5 -5
- data/dist/ice/cpp/include/Ice/Logger.h +7 -0
- data/dist/ice/cpp/include/Ice/LoggerUtil.h +1 -1
- data/dist/ice/cpp/include/Ice/Object.h +10 -8
- data/dist/ice/cpp/include/Ice/ObjectAdapter.h +1 -1
- data/dist/ice/cpp/include/Ice/OutgoingAsync.h +5 -2
- data/dist/ice/cpp/include/Ice/OutgoingResponse.h +2 -1
- data/dist/ice/cpp/include/Ice/OutputStream.h +7 -6
- data/dist/ice/cpp/include/Ice/PluginFactory.h +1 -1
- data/dist/ice/cpp/include/Ice/Properties.h +3 -3
- data/dist/ice/cpp/include/Ice/Proxy.h +192 -50
- data/dist/ice/cpp/include/Ice/SSL/ClientAuthenticationOptions.h +3 -3
- data/dist/ice/cpp/include/Ice/SSL/EndpointInfo.h +1 -1
- data/dist/ice/cpp/include/Ice/SSL/ServerAuthenticationOptions.h +5 -5
- data/dist/ice/cpp/include/Ice/ServantLocator.h +1 -1
- data/dist/ice/cpp/include/Ice/Service.h +2 -5
- data/dist/ice/cpp/include/Ice/SliceLoader.h +1 -1
- data/dist/ice/cpp/include/Ice/SlicedData.h +5 -3
- data/dist/ice/cpp/include/Ice/StreamHelpers.h +1 -1
- data/dist/ice/cpp/include/Ice/StreamableTraits.h +2 -2
- data/dist/ice/cpp/include/Ice/StringConverter.h +2 -3
- data/dist/ice/cpp/include/Ice/StringUtil.h +2 -7
- data/dist/ice/cpp/include/Ice/UUID.h +1 -0
- data/dist/ice/cpp/include/Ice/Value.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/BuiltinSequences.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Context.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/EndpointTypes.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Identity.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Locator.h +50 -14
- data/dist/ice/cpp/include/generated/Ice/LocatorRegistry.h +38 -11
- data/dist/ice/cpp/include/generated/Ice/Metrics.h +94 -39
- data/dist/ice/cpp/include/generated/Ice/OperationMode.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Process.h +34 -8
- data/dist/ice/cpp/include/generated/Ice/PropertiesAdmin.h +42 -11
- data/dist/ice/cpp/include/generated/Ice/PropertyDict.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/RemoteLogger.h +93 -40
- data/dist/ice/cpp/include/generated/Ice/ReplyStatus.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Router.h +50 -14
- data/dist/ice/cpp/include/generated/Ice/SliceChecksumDict.h +2 -2
- data/dist/ice/cpp/include/generated/Ice/Version.h +2 -2
- data/dist/ice/cpp/include/generated/IceDiscovery/Lookup.h +66 -14
- data/dist/ice/cpp/include/generated/IceLocatorDiscovery/Lookup.h +34 -8
- data/dist/ice/cpp/src/Ice/AddDefaultPluginFactories_all.cpp +1 -1
- data/dist/ice/cpp/src/Ice/Base64.cpp +47 -137
- data/dist/ice/cpp/src/Ice/Base64.h +2 -2
- data/dist/ice/cpp/src/Ice/BatchRequestQueue.cpp +28 -13
- data/dist/ice/cpp/src/Ice/BatchRequestQueue.h +5 -1
- data/dist/ice/cpp/src/Ice/Buffer.cpp +1 -1
- data/dist/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +1 -1
- data/dist/ice/cpp/src/Ice/CollocatedRequestHandler.h +1 -1
- data/dist/ice/cpp/src/Ice/Communicator.cpp +4 -3
- data/dist/ice/cpp/src/Ice/CommunicatorFlushBatchAsync.cpp +8 -0
- data/dist/ice/cpp/src/Ice/ConnectRequestHandler.cpp +5 -15
- data/dist/ice/cpp/src/Ice/ConnectRequestHandler.h +1 -1
- data/dist/ice/cpp/src/Ice/ConnectionFactory.cpp +6 -8
- data/dist/ice/cpp/src/Ice/ConnectionFactory.h +0 -3
- data/dist/ice/cpp/src/Ice/ConnectionI.cpp +94 -99
- data/dist/ice/cpp/src/Ice/ConnectionI.h +11 -8
- data/dist/ice/cpp/src/Ice/ConsoleUtil.cpp +1 -1
- data/dist/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +10 -14
- data/dist/ice/cpp/src/Ice/EndpointI.h +1 -1
- data/dist/ice/cpp/src/Ice/FileUtil.cpp +12 -12
- data/dist/ice/cpp/src/Ice/FixedRequestHandler.cpp +1 -1
- data/dist/ice/cpp/src/Ice/FixedRequestHandler.h +1 -1
- data/dist/ice/cpp/src/Ice/HttpParser.h +0 -2
- data/dist/ice/cpp/src/Ice/IdleTimeoutTransceiverDecorator.cpp +6 -3
- data/dist/ice/cpp/src/Ice/IncomingRequest.cpp +1 -3
- data/dist/ice/cpp/src/Ice/InputStream.cpp +23 -19
- data/dist/ice/cpp/src/Ice/Instance.cpp +73 -50
- data/dist/ice/cpp/src/Ice/Instance.h +1 -6
- data/dist/ice/cpp/src/Ice/LocalExceptions.cpp +1 -1
- data/dist/ice/cpp/src/Ice/LocatorInfo.cpp +2 -2
- data/dist/ice/cpp/src/Ice/LoggerAdminI.cpp +13 -18
- data/dist/ice/cpp/src/Ice/LoggerI.cpp +1 -1
- data/dist/ice/cpp/src/Ice/LoggerI.h +2 -2
- data/dist/ice/cpp/src/Ice/MetricsAdminI.h +6 -1
- data/dist/ice/cpp/src/Ice/MetricsObserverI.h +22 -18
- data/dist/ice/cpp/src/Ice/NativePropertiesAdmin.cpp +5 -2
- data/dist/ice/cpp/src/Ice/Network.cpp +168 -103
- data/dist/ice/cpp/src/Ice/Network.h +12 -7
- data/dist/ice/cpp/src/Ice/NetworkProxy.cpp +17 -6
- data/dist/ice/cpp/src/Ice/NetworkProxy.h +2 -1
- data/dist/ice/cpp/src/Ice/Object.cpp +1 -1
- data/dist/ice/cpp/src/Ice/ObjectAdapterI.cpp +56 -19
- data/dist/ice/cpp/src/Ice/OpaqueEndpointI.cpp +10 -10
- data/dist/ice/cpp/src/Ice/Options.cpp +7 -2
- data/dist/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
- data/dist/ice/cpp/src/Ice/OutputStream.cpp +4 -4
- data/dist/ice/cpp/src/Ice/PluginManagerI.cpp +7 -1
- data/dist/ice/cpp/src/Ice/Properties.cpp +26 -16
- data/dist/ice/cpp/src/Ice/PropertyUtil.cpp +1 -1
- data/dist/ice/cpp/src/Ice/ProtocolInstance.cpp +0 -11
- data/dist/ice/cpp/src/Ice/ProtocolInstance.h +1 -2
- data/dist/ice/cpp/src/Ice/Proxy.cpp +9 -1
- data/dist/ice/cpp/src/Ice/ProxyAsync.cpp +110 -13
- data/dist/ice/cpp/src/Ice/Random.cpp +68 -7
- data/dist/ice/cpp/src/Ice/Random.h +6 -2
- data/dist/ice/cpp/src/Ice/Reference.cpp +22 -11
- data/dist/ice/cpp/src/Ice/Reference.h +3 -0
- data/dist/ice/cpp/src/Ice/ReferenceFactory.cpp +10 -0
- data/dist/ice/cpp/src/Ice/RequestHandler.h +3 -1
- data/dist/ice/cpp/src/Ice/RequestHandlerCache.cpp +1 -1
- data/dist/ice/cpp/src/Ice/RequestHandlerCache.h +1 -1
- data/dist/ice/cpp/src/Ice/ResourceConfig.h +3 -3
- data/dist/ice/cpp/src/Ice/RetryQueue.cpp +8 -12
- data/dist/ice/cpp/src/Ice/SHA1.cpp +11 -11
- data/dist/ice/cpp/src/Ice/SSL/DistinguishedName.cpp +0 -6
- data/dist/ice/cpp/src/Ice/SSL/DistinguishedName.h +0 -6
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLEngine.cpp +15 -1
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLTransceiverI.cpp +77 -27
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLTransceiverI.h +2 -1
- data/dist/ice/cpp/src/Ice/SSL/RFC2253.cpp +2 -2
- data/dist/ice/cpp/src/Ice/SSL/SSLUtil.cpp +39 -34
- data/dist/ice/cpp/src/Ice/SSL/SchannelEngine.cpp +130 -52
- data/dist/ice/cpp/src/Ice/SSL/SchannelTransceiverI.cpp +64 -33
- data/dist/ice/cpp/src/Ice/SSL/SchannelTransceiverI.h +0 -1
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportEngine.cpp +3 -3
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportTransceiverI.cpp +9 -3
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportUtil.cpp +73 -51
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportUtil.h +0 -8
- data/dist/ice/cpp/src/Ice/Selector.cpp +13 -11
- data/dist/ice/cpp/src/Ice/ServantManager.cpp +3 -3
- data/dist/ice/cpp/src/Ice/Service.cpp +33 -115
- data/dist/ice/cpp/src/Ice/StreamSocket.cpp +33 -40
- data/dist/ice/cpp/src/Ice/StreamSocket.h +4 -4
- data/dist/ice/cpp/src/Ice/StringConverter.cpp +1 -1
- data/dist/ice/cpp/src/Ice/StringUtil.cpp +12 -21
- data/dist/ice/cpp/src/Ice/SysLoggerI.cpp +136 -100
- data/dist/ice/cpp/src/Ice/SysLoggerI.h +7 -3
- data/dist/ice/cpp/src/Ice/SystemdJournalI.cpp +1 -1
- data/dist/ice/cpp/src/Ice/TcpAcceptor.cpp +7 -7
- data/dist/ice/cpp/src/Ice/TcpAcceptor.h +2 -1
- data/dist/ice/cpp/src/Ice/TcpBufSize.h +40 -0
- data/dist/ice/cpp/src/Ice/TcpConnector.cpp +5 -2
- data/dist/ice/cpp/src/Ice/TcpConnector.h +2 -0
- data/dist/ice/cpp/src/Ice/TcpTransceiver.cpp +6 -2
- data/dist/ice/cpp/src/Ice/ThreadPool.cpp +2 -8
- data/dist/ice/cpp/src/Ice/ThreadPool.h +0 -2
- data/dist/ice/cpp/src/Ice/Timer.cpp +7 -3
- data/dist/ice/cpp/src/Ice/UUID.cpp +1 -2
- data/dist/ice/cpp/src/Ice/UdpEndpointI.cpp +4 -1
- data/dist/ice/cpp/src/Ice/UdpTransceiver.cpp +136 -123
- data/dist/ice/cpp/src/Ice/UdpTransceiver.h +3 -4
- data/dist/ice/cpp/src/Ice/WSTransceiver.cpp +96 -27
- data/dist/ice/cpp/src/Ice/WSTransceiver.h +1 -1
- data/dist/ice/cpp/src/Ice/generated/BuiltinSequences.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Context.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/EndpointTypes.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Identity.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Locator.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/LocatorRegistry.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Metrics.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/OperationMode.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Process.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/PropertiesAdmin.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/PropertyDict.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/RemoteLogger.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/ReplyStatus.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Router.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/SliceChecksumDict.cpp +2 -2
- data/dist/ice/cpp/src/Ice/generated/Version.cpp +2 -2
- data/dist/ice/cpp/src/IceDiscovery/LookupI.cpp +47 -9
- data/dist/ice/cpp/src/IceDiscovery/LookupI.h +8 -3
- data/dist/ice/cpp/src/IceDiscovery/generated/Lookup.cpp +2 -2
- data/dist/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +43 -14
- data/dist/ice/cpp/src/IceLocatorDiscovery/generated/Lookup.cpp +2 -2
- data/dist/ice/cpp/src/Slice/DocCommentParser.cpp +26 -20
- data/dist/ice/cpp/src/Slice/DocCommentParser.h +2 -2
- data/dist/ice/cpp/src/Slice/FileTracker.cpp +3 -11
- data/dist/ice/cpp/src/Slice/FileTracker.h +0 -2
- data/dist/ice/cpp/src/Slice/Grammar.cpp +211 -210
- data/dist/ice/cpp/src/Slice/MetadataValidation.cpp +10 -9
- data/dist/ice/cpp/src/Slice/Parser.cpp +28 -20
- data/dist/ice/cpp/src/Slice/Parser.h +3 -4
- data/dist/ice/cpp/src/Slice/Preprocessor.cpp +3 -11
- data/dist/ice/cpp/src/Slice/Preprocessor.h +0 -2
- data/dist/ice/cpp/src/Slice/Scanner.cpp +3 -3
- data/dist/ice/cpp/src/Slice/SliceUtil.cpp +197 -114
- data/dist/ice/cpp/src/Slice/StringLiteralUtil.cpp +0 -2
- data/dist/ice/cpp/src/Slice/Util.h +21 -9
- data/dist/ice/cpp/src/slice2rb/Ruby.cpp +7 -3
- data/dist/ice/cpp/src/slice2rb/RubyUtil.cpp +16 -12
- data/dist/ice/cpp/src/slice2rb/RubyUtil.h +3 -3
- data/dist/ice/slice/Glacier2/Router.ice +3 -3
- data/dist/ice/slice/Ice/Metrics.ice +6 -5
- data/dist/ice/slice/Ice/RemoteLogger.ice +5 -5
- data/dist/ice/slice/IceGrid/Admin.ice +9 -9
- data/dist/ice/slice/IceGrid/Descriptor.ice +5 -5
- data/dist/ice/slice/IceStorm/Metrics.ice +1 -1
- data/dist/lib/Glacier2/Metrics.rb +1 -1
- data/dist/lib/Glacier2/PermissionsVerifier.rb +1 -1
- data/dist/lib/Glacier2/Router.rb +2 -2
- data/dist/lib/Glacier2/SSLInfo.rb +1 -1
- data/dist/lib/Glacier2/Session.rb +1 -1
- data/dist/lib/Ice/BuiltinSequences.rb +1 -1
- data/dist/lib/Ice/CompressBatch.rb +1 -2
- data/dist/lib/Ice/Context.rb +1 -1
- data/dist/lib/Ice/EndpointSelectionType.rb +1 -2
- data/dist/lib/Ice/EndpointTypes.rb +1 -1
- data/dist/lib/Ice/Identity.rb +1 -1
- data/dist/lib/Ice/IdentitySpaceship.rb +1 -0
- data/dist/lib/Ice/Locator.rb +1 -1
- data/dist/lib/Ice/LocatorRegistry.rb +1 -1
- data/dist/lib/Ice/Metrics.rb +1 -1
- data/dist/lib/Ice/OperationMode.rb +2 -3
- data/dist/lib/Ice/Process.rb +1 -1
- data/dist/lib/Ice/PropertiesAdmin.rb +1 -1
- data/dist/lib/Ice/PropertyDict.rb +1 -1
- data/dist/lib/Ice/RemoteLogger.rb +2 -3
- data/dist/lib/Ice/ReplyStatus.rb +2 -3
- data/dist/lib/Ice/Router.rb +1 -1
- data/dist/lib/Ice/SliceChecksumDict.rb +1 -1
- data/dist/lib/Ice/SliceUtil.rb +2 -2
- data/dist/lib/Ice/Struct.rb +1 -0
- data/dist/lib/Ice/ToStringMode.rb +1 -2
- data/dist/lib/Ice/Value.rb +2 -2
- data/dist/lib/Ice/Version.rb +1 -1
- data/dist/lib/IceBox/ServiceManager.rb +1 -1
- data/dist/lib/IceGrid/Admin.rb +3 -4
- data/dist/lib/IceGrid/Descriptor.rb +1 -1
- data/dist/lib/IceGrid/Exception.rb +1 -1
- data/dist/lib/IceGrid/FileParser.rb +1 -1
- data/dist/lib/IceGrid/Registry.rb +2 -3
- data/dist/lib/IceGrid/Session.rb +2 -2
- data/dist/lib/IceGrid/UserAccountMapper.rb +1 -1
- data/dist/lib/IceStorm/IceStorm.rb +1 -1
- data/dist/lib/IceStorm/Metrics.rb +1 -1
- data/extconf.rb +1 -1
- data/ice.gemspec +3 -3
- metadata +4 -5
- data/dist/ice/cpp/src/Ice/DLLMain.cpp +0 -40
- data/dist/ice/cpp/src/Ice/UndefSysMacros.h +0 -37
|
@@ -93,7 +93,7 @@ module Ice
|
|
|
93
93
|
/// (send all trace categories).
|
|
94
94
|
/// @param messageMax The maximum number of log messages (of all types) to be provided to
|
|
95
95
|
/// {@link RemoteLogger::init}. A negative value requests all messages available.
|
|
96
|
-
/// @throws RemoteLoggerAlreadyAttachedException Thrown
|
|
96
|
+
/// @throws RemoteLoggerAlreadyAttachedException Thrown when this remote logger is already attached to this admin
|
|
97
97
|
/// object.
|
|
98
98
|
void attachRemoteLogger(
|
|
99
99
|
RemoteLogger* prx,
|
|
@@ -110,13 +110,13 @@ module Ice
|
|
|
110
110
|
/// Retrieves recently logged log messages.
|
|
111
111
|
/// @param messageTypes The list of message types that the caller wishes to receive. An empty list means no
|
|
112
112
|
/// filtering (send all message types).
|
|
113
|
-
/// @param traceCategories The categories of traces that caller
|
|
114
|
-
/// @p messageTypes is not empty and does not include trace. An empty list means no filtering (send
|
|
115
|
-
/// categories).
|
|
113
|
+
/// @param traceCategories The categories of traces that the caller wishes to receive. This parameter is
|
|
114
|
+
/// ignored if @p messageTypes is not empty and does not include trace. An empty list means no filtering (send
|
|
115
|
+
/// all trace categories).
|
|
116
116
|
/// @param messageMax The maximum number of log messages (of all types) to be returned. A negative value
|
|
117
117
|
/// requests all messages available.
|
|
118
118
|
/// @param prefix The prefix of the associated local logger.
|
|
119
|
-
/// @return The
|
|
119
|
+
/// @return The log messages.
|
|
120
120
|
LogMessageSeq getLog(
|
|
121
121
|
LogMessageTypeSeq messageTypes,
|
|
122
122
|
StringSeq traceCategories,
|
|
@@ -120,10 +120,10 @@ module IceGrid
|
|
|
120
120
|
/// The network name of the host running this node.
|
|
121
121
|
string hostname;
|
|
122
122
|
|
|
123
|
-
/// The
|
|
123
|
+
/// The operating system release level.
|
|
124
124
|
string release;
|
|
125
125
|
|
|
126
|
-
/// The
|
|
126
|
+
/// The operating system version.
|
|
127
127
|
string version;
|
|
128
128
|
|
|
129
129
|
/// The machine hardware type.
|
|
@@ -349,9 +349,9 @@ module IceGrid
|
|
|
349
349
|
void instantiateServer(string application, string node, ServerInstanceDescriptor desc)
|
|
350
350
|
throws AccessDeniedException, ApplicationNotExistException, DeploymentException;
|
|
351
351
|
|
|
352
|
-
/// Gets an application
|
|
352
|
+
/// Gets information about an application.
|
|
353
353
|
/// @param name The application name.
|
|
354
|
-
/// @return The application
|
|
354
|
+
/// @return The application information.
|
|
355
355
|
/// @throws ApplicationNotExistException Thrown when the application doesn't exist.
|
|
356
356
|
["cpp:const"]
|
|
357
357
|
idempotent ApplicationInfo getApplicationInfo(string name)
|
|
@@ -660,7 +660,7 @@ module IceGrid
|
|
|
660
660
|
/// message doesn't exceed the given size.
|
|
661
661
|
/// @param lines The lines read from the file. If there was nothing to read from the file since the last call to
|
|
662
662
|
/// read, an empty sequence is returned. The last line of the sequence is always incomplete (and therefore no
|
|
663
|
-
/// newline character should be added when writing the last line to the
|
|
663
|
+
/// newline character should be added when writing the last line to the output device).
|
|
664
664
|
/// @return `true` if EOF is encountered.
|
|
665
665
|
/// @throws FileNotAvailableException Thrown when the implementation failed to read from the file.
|
|
666
666
|
bool read(int size, out Ice::StringSeq lines)
|
|
@@ -798,7 +798,7 @@ module IceGrid
|
|
|
798
798
|
/// @param info The details of the new adapter.
|
|
799
799
|
void adapterAdded(AdapterInfo info);
|
|
800
800
|
|
|
801
|
-
|
|
801
|
+
/// Notifies the observer that a dynamically-registered adapter was updated.
|
|
802
802
|
/// @param info The details of the updated adapter.
|
|
803
803
|
void adapterUpdated(AdapterInfo info);
|
|
804
804
|
|
|
@@ -867,9 +867,9 @@ module IceGrid
|
|
|
867
867
|
/// session.
|
|
868
868
|
/// @param registryObs The registry observer identity.
|
|
869
869
|
/// @param nodeObs The node observer identity.
|
|
870
|
-
/// @param appObs The application observer.
|
|
871
|
-
/// @param adptObs The adapter observer.
|
|
872
|
-
/// @param objObs The object observer.
|
|
870
|
+
/// @param appObs The application observer identity.
|
|
871
|
+
/// @param adptObs The adapter observer identity.
|
|
872
|
+
/// @param objObs The object observer identity.
|
|
873
873
|
/// @throws ObserverAlreadyRegisteredException Thrown when an observer is already registered with this registry.
|
|
874
874
|
idempotent void setObserversByIdentity(
|
|
875
875
|
Ice::Identity registryObs,
|
|
@@ -87,7 +87,7 @@ module IceGrid
|
|
|
87
87
|
["deprecated:This field is provided for schema compatibility. It is no longer used."]
|
|
88
88
|
bool registerProcess = false;
|
|
89
89
|
|
|
90
|
-
/// When `true`, the lifetime of this object adapter is the same
|
|
90
|
+
/// When `true`, the lifetime of this object adapter is the same as the server lifetime. This information is
|
|
91
91
|
/// used by the IceGrid node to figure out the server state: the server is active when all its "server lifetime"
|
|
92
92
|
/// adapters are active.
|
|
93
93
|
bool serverLifetime;
|
|
@@ -265,7 +265,7 @@ module IceGrid
|
|
|
265
265
|
/// A mapping of template identifier to template descriptor.
|
|
266
266
|
dictionary<string, TemplateDescriptor> TemplateDescriptorDict;
|
|
267
267
|
|
|
268
|
-
/// Describes an IceBox service.
|
|
268
|
+
/// Describes an IceBox service instance.
|
|
269
269
|
struct ServiceInstanceDescriptor
|
|
270
270
|
{
|
|
271
271
|
/// The template used by this instance. It's empty when this instance does not use a template.
|
|
@@ -425,7 +425,7 @@ module IceGrid
|
|
|
425
425
|
/// The name of the node to update.
|
|
426
426
|
string name;
|
|
427
427
|
|
|
428
|
-
/// The updated description (or null if the description wasn't updated.
|
|
428
|
+
/// The updated description (or null if the description wasn't updated).
|
|
429
429
|
BoxedString description;
|
|
430
430
|
|
|
431
431
|
/// The variables to update.
|
|
@@ -501,13 +501,13 @@ module IceGrid
|
|
|
501
501
|
/// The server templates to update.
|
|
502
502
|
TemplateDescriptorDict serverTemplates;
|
|
503
503
|
|
|
504
|
-
/// The IDs of the server
|
|
504
|
+
/// The IDs of the server templates to remove.
|
|
505
505
|
Ice::StringSeq removeServerTemplates;
|
|
506
506
|
|
|
507
507
|
/// The service templates to update.
|
|
508
508
|
TemplateDescriptorDict serviceTemplates;
|
|
509
509
|
|
|
510
|
-
/// The IDs of the service
|
|
510
|
+
/// The IDs of the service templates to remove.
|
|
511
511
|
Ice::StringSeq removeServiceTemplates;
|
|
512
512
|
|
|
513
513
|
/// The application nodes to update.
|
data/dist/lib/Glacier2/Router.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'Router.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -65,7 +65,7 @@ module ::Glacier2
|
|
|
65
65
|
RouterPrx_mixin::OP_createSession = Ice::__defineOperation('createSession', 'createSession', Ice::OperationMode::Normal, nil, [[Ice::T_string, false, 0], [Ice::T_string, false, 0]], [], [::Glacier2::T_SessionPrx, false, 0], [::Glacier2::T_PermissionDeniedException, ::Glacier2::T_CannotCreateSessionException], false)
|
|
66
66
|
RouterPrx_mixin::OP_createSessionFromSecureConnection = Ice::__defineOperation('createSessionFromSecureConnection', 'createSessionFromSecureConnection', Ice::OperationMode::Normal, nil, [], [], [::Glacier2::T_SessionPrx, false, 0], [::Glacier2::T_PermissionDeniedException, ::Glacier2::T_CannotCreateSessionException], false)
|
|
67
67
|
RouterPrx_mixin::OP_refreshSession = Ice::__defineOperation('refreshSession', 'refreshSession', Ice::OperationMode::Normal, nil, [], [], nil, [::Glacier2::T_SessionNotExistException], false)
|
|
68
|
-
RouterPrx_mixin::OP_refreshSession.deprecate("As
|
|
68
|
+
RouterPrx_mixin::OP_refreshSession.deprecate("As\sof\sIce\s3.8,\sthis\soperation\sno\slonger\skeeps\sthe\ssession\salive;\sit\sonly\sverifies\sthat\sthe\ssession\sexists.")
|
|
69
69
|
RouterPrx_mixin::OP_destroySession = Ice::__defineOperation('destroySession', 'destroySession', Ice::OperationMode::Normal, nil, [], [], nil, [::Glacier2::T_SessionNotExistException], false)
|
|
70
70
|
RouterPrx_mixin::OP_getSessionTimeout = Ice::__defineOperation('getSessionTimeout', 'getSessionTimeout', Ice::OperationMode::Idempotent, nil, [], [], [Ice::T_long, false, 0], [], false)
|
|
71
71
|
RouterPrx_mixin::OP_getACMTimeout = Ice::__defineOperation('getACMTimeout', 'getACMTimeout', Ice::OperationMode::Idempotent, nil, [], [], [Ice::T_int, false, 0], [], false)
|
data/dist/lib/Ice/Context.rb
CHANGED
data/dist/lib/Ice/Identity.rb
CHANGED
data/dist/lib/Ice/Locator.rb
CHANGED
data/dist/lib/Ice/Metrics.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'OperationMode.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -28,8 +28,7 @@ module ::Ice
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def <=>(other)
|
|
31
|
-
other.is_a?(OperationMode)
|
|
32
|
-
@value <=> other.to_i
|
|
31
|
+
@value <=> other.to_i if other.is_a?(OperationMode)
|
|
33
32
|
end
|
|
34
33
|
|
|
35
34
|
def hash
|
data/dist/lib/Ice/Process.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'RemoteLogger.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -29,8 +29,7 @@ module ::Ice
|
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def <=>(other)
|
|
32
|
-
other.is_a?(LogMessageType)
|
|
33
|
-
@value <=> other.to_i
|
|
32
|
+
@value <=> other.to_i if other.is_a?(LogMessageType)
|
|
34
33
|
end
|
|
35
34
|
|
|
36
35
|
def hash
|
data/dist/lib/Ice/ReplyStatus.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'ReplyStatus.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -28,8 +28,7 @@ module ::Ice
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def <=>(other)
|
|
31
|
-
other.is_a?(ReplyStatus)
|
|
32
|
-
@value <=> other.to_i
|
|
31
|
+
@value <=> other.to_i if other.is_a?(ReplyStatus)
|
|
33
32
|
end
|
|
34
33
|
|
|
35
34
|
def hash
|
data/dist/lib/Ice/Router.rb
CHANGED
data/dist/lib/Ice/SliceUtil.rb
CHANGED
|
@@ -8,8 +8,8 @@ module Ice
|
|
|
8
8
|
# Get the grand-parent of the directory containing this file (Ice/SliceUtil.rb).
|
|
9
9
|
rbHome = File::join(File::dirname(__FILE__), "../..")
|
|
10
10
|
|
|
11
|
-
# For an installation from a
|
|
12
|
-
# "ruby" directory.
|
|
11
|
+
# For an installation from a binary tarball, rbHome is the installation root and the "slice" directory is a
|
|
12
|
+
# sibling of the "ruby" directory.
|
|
13
13
|
dir = File::join(rbHome, "slice")
|
|
14
14
|
if File::exist?(dir)
|
|
15
15
|
return File::expand_path(dir)
|
data/dist/lib/Ice/Struct.rb
CHANGED
data/dist/lib/Ice/Value.rb
CHANGED
|
@@ -7,6 +7,7 @@ module Ice
|
|
|
7
7
|
def inspect
|
|
8
8
|
::Ice::__stringify(self, self.class::ICE_TYPE)
|
|
9
9
|
end
|
|
10
|
+
alias to_s inspect
|
|
10
11
|
|
|
11
12
|
def ice_id()
|
|
12
13
|
self.class::ICE_ID
|
|
@@ -66,8 +67,7 @@ module Ice
|
|
|
66
67
|
end
|
|
67
68
|
|
|
68
69
|
def <=>(other)
|
|
69
|
-
other.is_a?(FormatType)
|
|
70
|
-
@val <=> other.to_i
|
|
70
|
+
@val <=> other.to_i if other.is_a?(FormatType)
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
def hash
|
data/dist/lib/Ice/Version.rb
CHANGED
data/dist/lib/IceGrid/Admin.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'Admin.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -35,8 +35,7 @@ module ::IceGrid
|
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
def <=>(other)
|
|
38
|
-
other.is_a?(ServerState)
|
|
39
|
-
@value <=> other.to_i
|
|
38
|
+
@value <=> other.to_i if other.is_a?(ServerState)
|
|
40
39
|
end
|
|
41
40
|
|
|
42
41
|
def hash
|
|
@@ -1189,7 +1188,7 @@ module ::IceGrid
|
|
|
1189
1188
|
T_AdminSessionPrx.defineProxy(AdminSessionPrx, nil, [::Glacier2::T_SessionPrx])
|
|
1190
1189
|
|
|
1191
1190
|
AdminSessionPrx_mixin::OP_keepAlive = Ice::__defineOperation('keepAlive', 'keepAlive', Ice::OperationMode::Idempotent, nil, [], [], nil, [], false)
|
|
1192
|
-
AdminSessionPrx_mixin::OP_keepAlive.deprecate("As
|
|
1191
|
+
AdminSessionPrx_mixin::OP_keepAlive.deprecate("As\sof\sIce\s3.8,\sthere\sis\sno\sneed\sto\scall\sthis\soperation,\sand\sits\simplementation\sdoes\snothing.")
|
|
1193
1192
|
AdminSessionPrx_mixin::OP_getAdmin = Ice::__defineOperation('getAdmin', 'getAdmin', Ice::OperationMode::Idempotent, nil, [], [], [::IceGrid::T_AdminPrx, false, 0], [], false)
|
|
1194
1193
|
AdminSessionPrx_mixin::OP_getAdminCallbackTemplate = Ice::__defineOperation('getAdminCallbackTemplate', 'getAdminCallbackTemplate', Ice::OperationMode::Idempotent, nil, [], [], [Ice::T_ObjectPrx, false, 0], [], false)
|
|
1195
1194
|
AdminSessionPrx_mixin::OP_setObservers = Ice::__defineOperation('setObservers', 'setObservers', Ice::OperationMode::Idempotent, nil, [[::IceGrid::T_RegistryObserverPrx, false, 0], [::IceGrid::T_NodeObserverPrx, false, 0], [::IceGrid::T_ApplicationObserverPrx, false, 0], [::IceGrid::T_AdapterObserverPrx, false, 0], [::IceGrid::T_ObjectObserverPrx, false, 0]], [], nil, [::IceGrid::T_ObserverAlreadyRegisteredException], false)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'Registry.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -31,8 +31,7 @@ module ::IceGrid
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def <=>(other)
|
|
34
|
-
other.is_a?(LoadSample)
|
|
35
|
-
@value <=> other.to_i
|
|
34
|
+
@value <=> other.to_i if other.is_a?(LoadSample)
|
|
36
35
|
end
|
|
37
36
|
|
|
38
37
|
def hash
|
data/dist/lib/IceGrid/Session.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copyright (c) ZeroC, Inc.
|
|
2
2
|
|
|
3
|
-
# slice2rb version 3.8.
|
|
3
|
+
# slice2rb version 3.8.3
|
|
4
4
|
# <auto-generated>Generated from Slice file 'Session.ice'.</auto-generated>
|
|
5
5
|
|
|
6
6
|
require 'Ice'
|
|
@@ -47,7 +47,7 @@ module ::IceGrid
|
|
|
47
47
|
T_SessionPrx.defineProxy(SessionPrx, nil, [::Glacier2::T_SessionPrx])
|
|
48
48
|
|
|
49
49
|
SessionPrx_mixin::OP_keepAlive = Ice::__defineOperation('keepAlive', 'keepAlive', Ice::OperationMode::Idempotent, nil, [], [], nil, [], false)
|
|
50
|
-
SessionPrx_mixin::OP_keepAlive.deprecate("As
|
|
50
|
+
SessionPrx_mixin::OP_keepAlive.deprecate("As\sof\sIce\s3.8,\sthere\sis\sno\sneed\sto\scall\sthis\soperation,\sand\sits\simplementation\sdoes\snothing.")
|
|
51
51
|
SessionPrx_mixin::OP_allocateObjectById = Ice::__defineOperation('allocateObjectById', 'allocateObjectById', Ice::OperationMode::Normal, nil, [[::Ice::T_Identity, false, 0]], [], [Ice::T_ObjectPrx, false, 0], [::IceGrid::T_ObjectNotRegisteredException, ::IceGrid::T_AllocationException], false)
|
|
52
52
|
SessionPrx_mixin::OP_allocateObjectByType = Ice::__defineOperation('allocateObjectByType', 'allocateObjectByType', Ice::OperationMode::Normal, nil, [[Ice::T_string, false, 0]], [], [Ice::T_ObjectPrx, false, 0], [::IceGrid::T_AllocationException], false)
|
|
53
53
|
SessionPrx_mixin::OP_releaseObject = Ice::__defineOperation('releaseObject', 'releaseObject', Ice::OperationMode::Normal, nil, [[::Ice::T_Identity, false, 0]], [], nil, [::IceGrid::T_ObjectNotRegisteredException, ::IceGrid::T_AllocationException], false)
|
data/extconf.rb
CHANGED
data/ice.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = 'zeroc-ice'
|
|
5
|
-
spec.version = '3.8.
|
|
5
|
+
spec.version = '3.8.3'
|
|
6
6
|
spec.summary = "ZeroC Ice for Ruby"
|
|
7
7
|
spec.description = <<-eos
|
|
8
8
|
The Internet Communications Engine (Ice) provides a robust, proven
|
|
@@ -17,7 +17,7 @@ install a full Ice distribution if you want to use other Ice language
|
|
|
17
17
|
mappings, or Ice services such as IceGrid, IceStorm and Glacier2.
|
|
18
18
|
|
|
19
19
|
We provide extensive online documentation for Ice, the Ruby extension,
|
|
20
|
-
and the other Ice language mappings and
|
|
20
|
+
and the other Ice language mappings and services.
|
|
21
21
|
|
|
22
22
|
Join us on our user forums if you have questions about Ice.
|
|
23
23
|
eos
|
|
@@ -30,7 +30,7 @@ eos
|
|
|
30
30
|
Dir['scripts/*']
|
|
31
31
|
spec.homepage = 'https://zeroc.com'
|
|
32
32
|
spec.license = 'GPL-2.0-only'
|
|
33
|
-
spec.required_ruby_version = '>= 3.
|
|
33
|
+
spec.required_ruby_version = '>= 3.4.0'
|
|
34
34
|
spec.require_paths = ['lib', 'dist/lib']
|
|
35
35
|
spec.extensions = ['extconf.rb']
|
|
36
36
|
spec.rdoc_options = ['--exclude=ext/IceRuby/.*\.o$' '--exclude=IceRuby\.(bundle|so)$' '--exclude=scripts/slice2rb$']
|