zeroc-ice 3.6.5 → 3.7.4
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 +5 -5
- data/ICE_LICENSE +17 -17
- data/LICENSE +12 -12
- data/bin/slice2rb +1 -6
- data/ext/Communicator.cpp +223 -61
- data/ext/Communicator.h +1 -6
- data/ext/Config.h +23 -7
- data/ext/Connection.cpp +108 -76
- data/ext/Connection.h +4 -6
- data/ext/Endpoint.cpp +16 -54
- data/ext/Endpoint.h +1 -6
- data/ext/ImplicitContext.cpp +1 -10
- data/ext/ImplicitContext.h +1 -6
- data/ext/Init.cpp +4 -6
- data/ext/Logger.cpp +1 -6
- data/ext/Logger.h +1 -6
- data/ext/Operation.cpp +38 -54
- data/ext/Operation.h +1 -6
- data/ext/Properties.cpp +3 -8
- data/ext/Properties.h +1 -6
- data/ext/Proxy.cpp +111 -70
- data/ext/Proxy.h +1 -6
- data/ext/Slice.cpp +5 -20
- data/ext/Slice.h +1 -6
- data/ext/Types.cpp +313 -224
- data/ext/Types.h +118 -71
- data/ext/Util.cpp +69 -36
- data/ext/Util.h +117 -42
- data/ext/ValueFactoryManager.cpp +440 -0
- data/ext/ValueFactoryManager.h +95 -0
- data/ext/extconf.rb +52 -48
- data/ext/ice/cpp/include/Ice/Application.h +275 -105
- data/ext/ice/cpp/include/Ice/AsyncResult.h +124 -337
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +4 -7
- data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +39 -16
- data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -6
- data/ext/ice/cpp/include/Ice/Buffer.h +10 -15
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +56 -17
- data/ext/ice/cpp/include/Ice/Comparable.h +205 -0
- data/ext/ice/cpp/include/Ice/Config.h +16 -39
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +203 -16
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +7 -6
- data/ext/ice/cpp/include/Ice/ConsoleUtil.h +23 -0
- data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +57 -0
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +20 -12
- data/ext/ice/cpp/include/Ice/Dispatcher.h +35 -19
- data/ext/ice/cpp/include/Ice/DynamicLibrary.h +7 -10
- data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -6
- data/ext/ice/cpp/include/Ice/Exception.h +110 -63
- data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +74 -0
- data/ext/ice/cpp/include/Ice/FactoryTable.h +22 -18
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +28 -31
- data/ext/ice/cpp/include/Ice/Format.h +17 -18
- data/ext/ice/cpp/include/Ice/Functional.h +38 -38
- data/ext/ice/cpp/include/Ice/GCObject.h +9 -10
- data/ext/ice/cpp/include/Ice/Handle.h +6 -16
- data/ext/ice/cpp/include/Ice/Ice.h +9 -10
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +377 -0
- data/ext/ice/cpp/include/Ice/Incoming.h +132 -38
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +109 -31
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +7 -6
- data/ext/ice/cpp/include/Ice/Initialize.h +872 -60
- data/ext/ice/cpp/include/Ice/InputStream.h +1514 -0
- data/ext/ice/cpp/include/Ice/InstanceF.h +1 -7
- data/ext/ice/cpp/include/Ice/InterfaceByValue.h +57 -0
- data/ext/ice/cpp/include/Ice/LocalObject.h +13 -14
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -6
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +56 -24
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +124 -71
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +25 -10
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +116 -32
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +61 -30
- data/ext/ice/cpp/include/Ice/Object.h +413 -78
- data/ext/ice/cpp/include/Ice/ObjectF.h +12 -8
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +18 -13
- data/ext/ice/cpp/include/Ice/Optional.h +1114 -0
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +684 -89
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +12 -11
- data/ext/ice/cpp/include/Ice/OutputStream.h +1092 -0
- data/ext/ice/cpp/include/Ice/Protocol.h +49 -17
- data/ext/ice/cpp/include/Ice/Proxy.h +3438 -745
- data/ext/ice/cpp/include/Ice/ProxyF.h +13 -38
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -6
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +43 -55
- data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -6
- data/ext/ice/cpp/include/Ice/RegisterPlugins.h +84 -12
- data/ext/ice/cpp/include/Ice/RequestHandlerF.h +10 -9
- data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +6 -6
- data/ext/ice/cpp/include/Ice/SHA1.h +42 -0
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -6
- data/ext/ice/cpp/include/Ice/Service.h +273 -154
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -6
- data/ext/ice/cpp/include/Ice/SlicedData.h +121 -53
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +17 -11
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +453 -140
- data/ext/ice/cpp/include/Ice/StringConverter.h +78 -0
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -6
- data/ext/ice/cpp/include/Ice/UUID.h +19 -0
- data/ext/ice/cpp/include/{IceUtil → Ice}/UniquePtr.h +22 -28
- data/ext/ice/cpp/include/Ice/UniqueRef.h +97 -0
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +45 -13
- data/ext/ice/cpp/include/Ice/Value.h +139 -0
- data/ext/ice/cpp/include/Ice/ValueF.h +21 -0
- data/ext/ice/cpp/include/IceSSL/Config.h +8 -28
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +17 -11
- data/ext/ice/cpp/include/IceSSL/OpenSSL.h +147 -0
- data/ext/ice/cpp/include/IceSSL/Plugin.h +461 -448
- data/ext/ice/cpp/include/IceSSL/SChannel.h +72 -0
- data/ext/ice/cpp/include/IceSSL/SecureTransport.h +72 -0
- data/ext/ice/cpp/include/IceSSL/UWP.h +62 -0
- data/ext/ice/cpp/include/IceUtil/Atomic.h +7 -14
- data/ext/ice/cpp/include/IceUtil/Cond.h +17 -23
- data/ext/ice/cpp/include/IceUtil/Config.h +166 -46
- data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +92 -0
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +5 -10
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +63 -41
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +5 -13
- data/ext/ice/cpp/include/IceUtil/Exception.h +284 -75
- data/ext/ice/cpp/include/IceUtil/FileUtil.h +143 -0
- data/ext/ice/cpp/include/IceUtil/Functional.h +4 -6
- data/ext/ice/cpp/include/IceUtil/Handle.h +11 -16
- data/ext/ice/cpp/include/IceUtil/IceUtil.h +4 -15
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +3 -8
- data/ext/ice/cpp/include/IceUtil/Iterator.h +2 -7
- data/ext/ice/cpp/include/IceUtil/Lock.h +8 -15
- data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -7
- data/ext/ice/cpp/include/IceUtil/Mutex.h +19 -23
- data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +2 -7
- data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +4 -9
- data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +4 -9
- data/ext/ice/cpp/include/IceUtil/Optional.h +134 -23
- data/ext/ice/cpp/include/IceUtil/Options.h +17 -23
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +61 -37
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +6 -11
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +18 -15
- data/ext/ice/cpp/include/IceUtil/Random.h +39 -8
- data/ext/ice/cpp/include/IceUtil/RecMutex.h +7 -13
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +53 -0
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +10 -15
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +8 -7
- data/ext/ice/cpp/include/IceUtil/Shared.h +5 -12
- data/ext/ice/cpp/{src → include}/IceUtil/StopWatch.h +2 -7
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +146 -126
- data/ext/ice/cpp/include/IceUtil/StringUtil.h +32 -26
- data/ext/ice/cpp/include/IceUtil/Thread.h +10 -17
- data/ext/ice/cpp/include/IceUtil/ThreadException.h +33 -47
- data/ext/ice/cpp/include/IceUtil/Time.h +3 -8
- data/ext/ice/cpp/include/IceUtil/Timer.h +18 -18
- data/ext/ice/cpp/include/IceUtil/UUID.h +6 -7
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -6
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +170 -0
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +1156 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/CommunicatorF.h +51 -16
- data/ext/ice/cpp/include/generated/Ice/Connection.h +1660 -0
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +119 -0
- data/ext/ice/cpp/include/generated/Ice/Current.h +322 -0
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +943 -0
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +166 -0
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +118 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/FacetMap.h +31 -15
- data/ext/ice/cpp/include/generated/Ice/Identity.h +264 -0
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +278 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/ImplicitContextF.h +51 -16
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +1143 -0
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +128 -0
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +7041 -0
- data/ext/ice/cpp/include/generated/Ice/Locator.h +3850 -0
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +147 -0
- data/ext/ice/cpp/include/generated/Ice/Logger.h +231 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/LoggerF.h +51 -16
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +4717 -0
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1175 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/ObjectAdapterF.h +51 -16
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +197 -0
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +306 -0
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +110 -0
- data/ext/ice/cpp/include/generated/Ice/Process.h +971 -0
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +125 -0
- data/ext/ice/cpp/include/generated/Ice/Properties.h +446 -0
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +1360 -0
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +134 -0
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +2689 -0
- data/ext/ice/cpp/include/generated/Ice/Router.h +1838 -0
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +125 -0
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +299 -0
- data/ext/ice/cpp/include/{Ice → generated/Ice}/ServantLocatorF.h +51 -16
- data/ext/ice/cpp/include/{Ice → generated/Ice}/SliceChecksumDict.h +34 -14
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +318 -0
- data/ext/ice/cpp/include/generated/Ice/Version.h +357 -0
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +223 -0
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +101 -0
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +181 -0
- data/ext/ice/cpp/src/Ice/ACM.cpp +38 -27
- data/ext/ice/cpp/src/Ice/ACM.h +9 -7
- data/ext/ice/cpp/src/Ice/ACMF.h +30 -0
- data/ext/ice/cpp/src/Ice/Acceptor.cpp +6 -6
- data/ext/ice/cpp/src/Ice/Acceptor.h +4 -8
- data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -6
- data/ext/ice/cpp/src/Ice/ArgVector.cpp +59 -0
- data/ext/ice/cpp/src/Ice/ArgVector.h +36 -0
- data/ext/ice/cpp/src/Ice/AsyncResult.cpp +15 -544
- data/ext/ice/cpp/src/Ice/Base64.cpp +22 -28
- data/ext/ice/cpp/src/Ice/Base64.h +1 -6
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +41 -18
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +15 -15
- data/ext/ice/cpp/src/Ice/Buffer.cpp +75 -18
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +21 -12
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +86 -197
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +17 -23
- data/ext/ice/cpp/src/Ice/Communicator.cpp +43 -15
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +318 -117
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +95 -40
- data/ext/ice/cpp/src/{IceUtil → Ice}/Cond.cpp +3 -8
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +55 -122
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +15 -31
- data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +6 -7
- data/ext/ice/cpp/src/Ice/Connection.cpp +111 -20
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +300 -107
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +44 -28
- data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +30 -0
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +785 -713
- data/ext/ice/cpp/src/Ice/ConnectionI.h +105 -80
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +2 -20
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +5 -9
- data/ext/ice/cpp/src/Ice/Connector.cpp +6 -6
- data/ext/ice/cpp/src/Ice/Connector.h +4 -8
- data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -6
- data/ext/ice/cpp/src/{IceUtil → Ice}/CountDownLatch.cpp +4 -9
- data/ext/ice/cpp/src/Ice/Current.cpp +30 -12
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +10 -16
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -6
- data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -6
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +13 -25
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +34 -28
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +107 -19
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +152 -6
- data/ext/ice/cpp/src/Ice/EndpointFactory.h +72 -11
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -6
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +41 -36
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +10 -9
- data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -6
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +18 -7
- data/ext/ice/cpp/src/Ice/EndpointI.h +39 -18
- data/ext/ice/cpp/src/Ice/EndpointIF.h +18 -10
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +19 -12
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +6 -9
- data/ext/ice/cpp/src/Ice/EventHandler.h +13 -13
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +5 -7
- data/ext/ice/cpp/src/Ice/Exception.cpp +102 -98
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +21 -12
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +37 -33
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +2 -9
- data/ext/ice/cpp/src/Ice/GCObject.cpp +29 -31
- data/ext/ice/cpp/src/Ice/HashUtil.h +3 -9
- data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -7
- data/ext/ice/cpp/src/Ice/HttpParser.h +1 -6
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +128 -111
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +23 -19
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +6 -7
- data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +51 -0
- data/ext/ice/cpp/src/Ice/Identity.cpp +25 -16
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +41 -13
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +11 -28
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +7 -10
- data/ext/ice/cpp/src/Ice/Incoming.cpp +284 -255
- data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +104 -214
- data/ext/ice/cpp/src/Ice/IncomingRequest.h +5 -9
- data/ext/ice/cpp/src/Ice/Initialize.cpp +309 -193
- data/ext/ice/cpp/src/Ice/InputStream.cpp +2726 -0
- data/ext/ice/cpp/src/Ice/Instance.cpp +243 -262
- data/ext/ice/cpp/src/Ice/Instance.h +30 -23
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +137 -23
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +118 -105
- data/ext/ice/cpp/src/Ice/InstrumentationI.h +30 -36
- data/ext/ice/cpp/src/Ice/LocalException.cpp +1191 -422
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -7
- data/ext/ice/cpp/src/Ice/Locator.cpp +1282 -1222
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +30 -12
- data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +150 -186
- data/ext/ice/cpp/src/Ice/LocatorInfo.h +31 -36
- data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -6
- data/ext/ice/cpp/src/Ice/Logger.cpp +39 -12
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +182 -88
- data/ext/ice/cpp/src/Ice/LoggerAdminI.h +4 -9
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +26 -55
- data/ext/ice/cpp/src/Ice/LoggerI.h +7 -18
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +10 -17
- data/ext/ice/cpp/src/Ice/Metrics.cpp +1280 -1107
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +58 -33
- data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -7
- data/ext/ice/cpp/src/Ice/Network.cpp +753 -408
- data/ext/ice/cpp/src/Ice/Network.h +99 -36
- data/ext/ice/cpp/src/Ice/NetworkF.h +2 -7
- data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +20 -19
- data/ext/ice/cpp/src/Ice/NetworkProxy.h +5 -7
- data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -6
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.cpp +57 -0
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.h +40 -0
- data/ext/ice/cpp/src/Ice/Object.cpp +227 -232
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +45 -13
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +83 -33
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +13 -12
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +25 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +298 -191
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +44 -39
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +41 -13
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +9 -37
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +67 -67
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +15 -11
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +801 -366
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +1367 -0
- data/ext/ice/cpp/src/Ice/Plugin.cpp +52 -14
- data/ext/ice/cpp/src/Ice/PluginF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +27 -51
- data/ext/ice/cpp/src/Ice/PluginManagerI.h +7 -13
- data/ext/ice/cpp/src/Ice/Process.cpp +294 -128
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +30 -12
- data/ext/ice/cpp/src/Ice/Properties.cpp +42 -15
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +382 -340
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +83 -24
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +29 -10
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +30 -12
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +46 -57
- data/ext/ice/cpp/src/Ice/PropertiesI.h +18 -26
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +112 -19
- data/ext/ice/cpp/src/Ice/PropertyNames.h +4 -7
- data/ext/ice/cpp/src/Ice/Protocol.cpp +6 -19
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +37 -7
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +9 -25
- data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -6
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +6 -6
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +3 -6
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -6
- data/ext/ice/cpp/src/Ice/Proxy.cpp +729 -957
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +33 -38
- data/ext/ice/cpp/src/Ice/ProxyFactory.h +16 -16
- data/ext/ice/cpp/src/Ice/Reference.cpp +190 -106
- data/ext/ice/cpp/src/Ice/Reference.h +39 -28
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +69 -118
- data/ext/ice/cpp/src/Ice/ReferenceFactory.h +12 -17
- data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -6
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +19 -9
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -6
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +766 -565
- data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -6
- data/ext/ice/cpp/src/Ice/RequestHandler.cpp +5 -8
- data/ext/ice/cpp/src/Ice/RequestHandler.h +10 -18
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +10 -11
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +2 -7
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +3 -11
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +16 -12
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +12 -20
- data/ext/ice/cpp/src/Ice/RetryQueue.h +7 -11
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -6
- data/ext/ice/cpp/src/Ice/Router.cpp +614 -492
- data/ext/ice/cpp/src/Ice/RouterF.cpp +30 -12
- data/ext/ice/cpp/src/Ice/RouterInfo.cpp +93 -99
- data/ext/ice/cpp/src/Ice/RouterInfo.h +42 -38
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -6
- data/ext/ice/cpp/src/{IceUtil → Ice}/SHA1.cpp +23 -28
- data/ext/ice/cpp/src/Ice/Selector.cpp +948 -855
- data/ext/ice/cpp/src/Ice/Selector.h +100 -152
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +41 -13
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +28 -11
- data/ext/ice/cpp/src/Ice/ServantManager.cpp +24 -45
- data/ext/ice/cpp/src/Ice/ServantManager.h +1 -6
- data/ext/ice/cpp/src/Ice/SharedContext.h +2 -7
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +21 -12
- data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +2 -7
- data/ext/ice/cpp/src/Ice/SlicedData.cpp +72 -25
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +208 -76
- data/ext/ice/cpp/src/Ice/StreamSocket.h +13 -9
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +57 -22
- data/ext/ice/cpp/src/Ice/StringUtil.h +30 -0
- data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +6 -7
- data/ext/ice/cpp/src/Ice/SysLoggerI.h +2 -8
- data/ext/ice/cpp/src/Ice/SystemdJournalI.cpp +66 -0
- data/ext/ice/cpp/src/Ice/SystemdJournalI.h +39 -0
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +169 -49
- data/ext/ice/cpp/src/Ice/TcpAcceptor.h +12 -10
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +6 -12
- data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -7
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +51 -46
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +12 -14
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +17 -32
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +7 -15
- data/ext/ice/cpp/src/{IceUtil → Ice}/Thread.cpp +41 -54
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +242 -274
- data/ext/ice/cpp/src/Ice/ThreadPool.h +46 -48
- data/ext/ice/cpp/src/{IceUtil → Ice}/Timer.cpp +38 -26
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +2 -7
- data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -6
- data/ext/ice/cpp/src/Ice/TraceLevelsF.h +2 -7
- data/ext/ice/cpp/src/Ice/TraceUtil.cpp +53 -36
- data/ext/ice/cpp/src/Ice/TraceUtil.h +13 -11
- data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -7
- data/ext/ice/cpp/src/Ice/Transceiver.h +8 -12
- data/ext/ice/cpp/src/Ice/TransceiverF.h +3 -8
- data/ext/ice/cpp/src/Ice/UdpConnector.cpp +5 -13
- data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -7
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +118 -60
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +13 -10
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +177 -236
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +15 -22
- data/ext/ice/cpp/src/Ice/Value.cpp +76 -0
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +83 -0
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +61 -0
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +37 -0
- data/ext/ice/cpp/src/Ice/Version.cpp +25 -20
- data/ext/ice/cpp/src/Ice/VirtualShared.h +38 -0
- data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +3 -14
- data/ext/ice/cpp/src/Ice/WSAcceptor.h +3 -12
- data/ext/ice/cpp/src/Ice/WSConnector.cpp +5 -16
- data/ext/ice/cpp/src/Ice/WSConnector.h +3 -11
- data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +188 -89
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +22 -37
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +65 -66
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +7 -27
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +596 -281
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +1383 -543
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +89 -32
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +59 -28
- data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +315 -66
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +83 -41
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +57 -64
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +3 -8
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +450 -172
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +863 -406
- data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +47 -0
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +636 -144
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +20 -173
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +8 -22
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +279 -0
- data/ext/ice/cpp/src/IceSSL/CertificateI.h +64 -0
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +42 -17
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +61 -0
- data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +15 -64
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +6 -18
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +207 -204
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +43 -40
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +42 -16
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -11
- data/ext/ice/cpp/src/IceSSL/Instance.h +7 -12
- data/ext/ice/cpp/src/IceSSL/InstanceF.h +11 -12
- data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +583 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +134 -115
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +59 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +27 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +127 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +477 -182
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +32 -26
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +286 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +58 -0
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +71 -46
- data/ext/ice/cpp/src/IceSSL/PluginI.h +13 -23
- data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +9 -60
- data/ext/ice/cpp/src/IceSSL/RFC2253.h +7 -12
- data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +580 -0
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +523 -74
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +123 -0
- data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +31 -0
- data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +73 -0
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +187 -221
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +24 -26
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +97 -94
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +26 -192
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +4 -24
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +868 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +69 -201
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +59 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +29 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +75 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +174 -161
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +29 -33
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +864 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +45 -0
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +12 -22
- data/ext/ice/cpp/src/IceSSL/TrustManager.h +4 -9
- data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +3 -8
- data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +266 -0
- data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +338 -0
- data/ext/ice/cpp/src/IceSSL/UWPEngine.h +41 -0
- data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +26 -0
- data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +89 -0
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +383 -0
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +71 -0
- data/ext/ice/cpp/src/IceSSL/Util.cpp +71 -1260
- data/ext/ice/cpp/src/IceSSL/Util.h +48 -142
- data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +157 -0
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +22 -27
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +34 -31
- data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +22 -36
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +30 -126
- data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -6
- data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -6
- data/ext/ice/cpp/src/IceUtil/Options.cpp +20 -33
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +47 -21
- data/ext/ice/cpp/src/IceUtil/Random.cpp +15 -20
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +4 -19
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +8 -8
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +501 -269
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +582 -244
- data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +37 -79
- data/ext/ice/cpp/src/IceUtil/Time.cpp +6 -11
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +17 -22
- data/ext/ice/cpp/src/IceUtil/Unicode.cpp +97 -101
- data/ext/ice/cpp/src/IceUtil/Unicode.h +21 -40
- data/ext/ice/cpp/src/IceUtil/UtilException.cpp +839 -0
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +894 -234
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +72 -0
- data/ext/ice/cpp/src/Slice/Checksum.cpp +2 -7
- data/ext/ice/cpp/src/Slice/Checksum.h +21 -0
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +25 -83
- data/ext/ice/cpp/{include → src}/Slice/FileTracker.h +9 -14
- data/ext/ice/cpp/src/Slice/Grammar.cpp +1981 -1944
- data/ext/ice/cpp/src/Slice/Grammar.h +39 -19
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +14 -20
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +2752 -1948
- data/ext/ice/cpp/src/Slice/JavaUtil.h +398 -0
- data/ext/ice/cpp/src/Slice/MD5.cpp +1 -6
- data/ext/ice/cpp/src/Slice/MD5.h +1 -6
- data/ext/ice/cpp/src/Slice/MD5I.cpp +8 -1
- data/ext/ice/cpp/src/Slice/MD5I.h +1 -1
- data/ext/ice/cpp/src/Slice/PHPUtil.cpp +17 -20
- data/ext/ice/cpp/src/Slice/PHPUtil.h +36 -0
- data/ext/ice/cpp/src/Slice/Parser.cpp +1190 -426
- data/ext/ice/cpp/{include → src}/Slice/Parser.h +143 -91
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +67 -36
- data/ext/ice/cpp/{include → src}/Slice/Preprocessor.h +8 -18
- data/ext/ice/cpp/src/Slice/Python.cpp +218 -111
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +787 -699
- data/ext/ice/cpp/src/Slice/PythonUtil.h +70 -0
- data/ext/ice/cpp/src/Slice/Ruby.cpp +42 -43
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +175 -445
- data/ext/ice/cpp/{include → src}/Slice/RubyUtil.h +6 -11
- data/ext/ice/cpp/src/Slice/Scanner.cpp +390 -399
- data/ext/ice/cpp/src/Slice/{Util.cpp → SliceUtil.cpp} +36 -69
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +456 -0
- data/ext/ice/cpp/src/Slice/Util.h +50 -0
- data/ice.gemspec +2 -9
- data/lib/Glacier2.rb +1 -6
- data/lib/Glacier2/Metrics.rb +6 -50
- data/lib/Glacier2/PermissionsVerifier.rb +23 -99
- data/lib/Glacier2/PermissionsVerifierF.rb +2 -7
- data/lib/Glacier2/Router.rb +31 -78
- data/lib/Glacier2/RouterF.rb +2 -7
- data/lib/Glacier2/SSLInfo.rb +3 -11
- data/lib/Glacier2/Session.rb +87 -311
- data/lib/Ice.rb +84 -58
- data/lib/Ice/BuiltinSequences.rb +3 -8
- data/lib/Ice/Communicator.rb +54 -61
- data/lib/Ice/CommunicatorF.rb +2 -7
- data/lib/Ice/Connection.rb +152 -166
- data/lib/Ice/ConnectionF.rb +2 -7
- data/lib/Ice/Current.rb +3 -15
- data/lib/Ice/Endpoint.rb +56 -137
- data/lib/Ice/EndpointF.rb +2 -7
- data/lib/Ice/EndpointTypes.rb +2 -11
- data/lib/Ice/FacetMap.rb +3 -8
- data/lib/Ice/Identity.rb +4 -12
- data/lib/Ice/ImplicitContext.rb +4 -38
- data/lib/Ice/ImplicitContextF.rb +2 -7
- data/lib/Ice/Instrumentation.rb +22 -279
- data/lib/Ice/InstrumentationF.rb +2 -7
- data/lib/Ice/LocalException.rb +94 -145
- data/lib/Ice/Locator.rb +50 -169
- data/lib/Ice/LocatorF.rb +2 -7
- data/lib/Ice/Logger.rb +4 -38
- data/lib/Ice/LoggerF.rb +2 -7
- data/lib/Ice/Metrics.rb +60 -420
- data/lib/Ice/ObjectAdapter.rb +29 -0
- data/lib/Ice/ObjectAdapterF.rb +2 -7
- data/lib/Ice/ObjectFactory.rb +4 -34
- data/lib/Ice/Plugin.rb +6 -64
- data/lib/Ice/PluginF.rb +2 -7
- data/lib/Ice/Process.rb +15 -56
- data/lib/Ice/ProcessF.rb +2 -7
- data/lib/Ice/Properties.rb +4 -45
- data/lib/Ice/PropertiesAdmin.rb +18 -60
- data/lib/Ice/PropertiesF.rb +2 -7
- data/lib/Ice/RemoteLogger.rb +33 -119
- data/lib/Ice/Router.rb +28 -105
- data/lib/Ice/RouterF.rb +2 -7
- data/lib/Ice/ServantLocator.rb +26 -0
- data/lib/Ice/ServantLocatorF.rb +24 -0
- data/lib/Ice/SliceChecksumDict.rb +2 -7
- data/lib/Ice/ValueFactory.rb +28 -0
- data/lib/Ice/Version.rb +4 -15
- data/lib/IceBox.rb +1 -6
- data/lib/IceBox/IceBox.rb +43 -152
- data/lib/IceGrid.rb +1 -9
- data/lib/IceGrid/Admin.rb +550 -431
- data/lib/IceGrid/Descriptor.rb +61 -533
- data/lib/IceGrid/Exception.rb +23 -49
- data/lib/IceGrid/FileParser.rb +13 -54
- data/lib/IceGrid/PluginFacade.rb +35 -0
- data/lib/IceGrid/Registry.rb +150 -62
- data/lib/IceGrid/Session.rb +24 -68
- data/lib/IceGrid/UserAccountMapper.rb +13 -54
- data/lib/IcePatch2.rb +1 -6
- data/lib/IcePatch2/FileInfo.rb +4 -15
- data/lib/IcePatch2/FileServer.rb +32 -80
- data/lib/IceStorm.rb +1 -6
- data/lib/IceStorm/IceStorm.rb +78 -210
- data/lib/IceStorm/Metrics.rb +10 -93
- data/slice/Glacier2/Metrics.ice +20 -10
- data/slice/Glacier2/PermissionsVerifier.ice +19 -12
- data/slice/Glacier2/PermissionsVerifierF.ice +16 -9
- data/slice/Glacier2/Router.ice +19 -13
- data/slice/Glacier2/RouterF.ice +16 -9
- data/slice/Glacier2/SSLInfo.ice +17 -10
- data/slice/Glacier2/Session.ice +24 -18
- data/slice/Ice/BuiltinSequences.ice +18 -9
- data/slice/Ice/Communicator.ice +180 -64
- data/slice/Ice/CommunicatorF.ice +18 -9
- data/slice/Ice/Connection.ice +208 -75
- data/slice/Ice/ConnectionF.ice +18 -9
- data/slice/Ice/Current.ice +37 -28
- data/slice/Ice/Endpoint.ice +73 -21
- data/slice/Ice/EndpointF.ice +19 -10
- data/slice/Ice/EndpointTypes.ice +21 -13
- data/slice/Ice/FacetMap.ice +19 -10
- data/slice/Ice/Identity.ice +24 -10
- data/slice/Ice/ImplicitContext.ice +41 -33
- data/slice/Ice/ImplicitContextF.ice +17 -9
- data/slice/Ice/Instrumentation.ice +37 -30
- data/slice/Ice/InstrumentationF.ice +19 -10
- data/slice/Ice/LocalException.ice +118 -112
- data/slice/Ice/Locator.ice +28 -21
- data/slice/Ice/LocatorF.ice +18 -9
- data/slice/Ice/Logger.ice +26 -18
- data/slice/Ice/LoggerF.ice +18 -9
- data/slice/Ice/Metrics.ice +42 -30
- data/slice/Ice/ObjectAdapter.ice +88 -53
- data/slice/Ice/ObjectAdapterF.ice +18 -9
- data/slice/Ice/ObjectFactory.ice +28 -17
- data/slice/Ice/Plugin.ice +25 -13
- data/slice/Ice/PluginF.ice +22 -9
- data/slice/Ice/Process.ice +20 -11
- data/slice/Ice/ProcessF.ice +18 -9
- data/slice/Ice/Properties.ice +42 -28
- data/slice/Ice/PropertiesAdmin.ice +20 -10
- data/slice/Ice/PropertiesF.ice +18 -9
- data/slice/Ice/RemoteLogger.ice +23 -19
- data/slice/Ice/Router.ice +28 -13
- data/slice/Ice/RouterF.ice +18 -9
- data/slice/Ice/ServantLocator.ice +40 -29
- data/slice/Ice/ServantLocatorF.ice +18 -9
- data/slice/Ice/SliceChecksumDict.ice +18 -9
- data/slice/Ice/ValueFactory.ice +132 -0
- data/slice/Ice/Version.ice +20 -10
- data/slice/IceBT/ConnectionInfo.ice +58 -0
- data/slice/IceBT/EndpointInfo.ice +56 -0
- data/slice/IceBT/Types.ice +44 -0
- data/slice/IceBox/IceBox.ice +45 -27
- data/slice/IceDiscovery/IceDiscovery.ice +75 -10
- data/slice/IceGrid/Admin.ice +410 -44
- data/slice/IceGrid/Descriptor.ice +47 -34
- data/slice/IceGrid/Exception.ice +43 -32
- data/slice/IceGrid/FileParser.ice +21 -12
- data/slice/IceGrid/PluginFacade.ice +26 -18
- data/slice/IceGrid/Registry.ice +150 -21
- data/slice/IceGrid/Session.ice +25 -17
- data/slice/IceGrid/UserAccountMapper.ice +23 -14
- data/slice/IceIAP/ConnectionInfo.ice +73 -0
- data/slice/IceIAP/EndpointInfo.ice +67 -0
- data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +19 -12
- data/slice/IcePatch2/FileInfo.ice +19 -13
- data/slice/IcePatch2/FileServer.ice +27 -18
- data/slice/IceSSL/ConnectionInfo.ice +27 -23
- data/slice/IceSSL/ConnectionInfoF.ice +30 -0
- data/slice/IceSSL/EndpointInfo.ice +21 -36
- data/slice/IceStorm/IceStorm.ice +33 -24
- data/slice/IceStorm/Metrics.ice +19 -11
- metadata +148 -120
- data/ext/ObjectFactory.cpp +0 -140
- data/ext/ObjectFactory.h +0 -50
- data/ext/ice/cpp/include/Ice/ACMF.h +0 -30
- data/ext/ice/cpp/include/Ice/BasicStream.h +0 -1335
- data/ext/ice/cpp/include/Ice/BuiltinSequences.h +0 -82
- data/ext/ice/cpp/include/Ice/Communicator.h +0 -200
- data/ext/ice/cpp/include/Ice/Connection.h +0 -497
- data/ext/ice/cpp/include/Ice/ConnectionF.h +0 -74
- data/ext/ice/cpp/include/Ice/ConnectionFactoryF.h +0 -30
- data/ext/ice/cpp/include/Ice/Current.h +0 -102
- data/ext/ice/cpp/include/Ice/DefaultObjectFactory.h +0 -48
- data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +0 -62
- data/ext/ice/cpp/include/Ice/Endpoint.h +0 -341
- data/ext/ice/cpp/include/Ice/EndpointF.h +0 -93
- data/ext/ice/cpp/include/Ice/EndpointTypes.h +0 -82
- data/ext/ice/cpp/include/Ice/Identity.h +0 -168
- data/ext/ice/cpp/include/Ice/ImplicitContext.h +0 -102
- data/ext/ice/cpp/include/Ice/Instrumentation.h +0 -365
- data/ext/ice/cpp/include/Ice/InstrumentationF.h +0 -75
- data/ext/ice/cpp/include/Ice/LocalException.h +0 -1030
- data/ext/ice/cpp/include/Ice/Locator.h +0 -2193
- data/ext/ice/cpp/include/Ice/LocatorF.h +0 -93
- data/ext/ice/cpp/include/Ice/Logger.h +0 -100
- data/ext/ice/cpp/include/Ice/Metrics.h +0 -2974
- data/ext/ice/cpp/include/Ice/ObjectAdapter.h +0 -168
- data/ext/ice/cpp/include/Ice/ObjectAdapterFactoryF.h +0 -26
- data/ext/ice/cpp/include/Ice/ObjectFactory.h +0 -92
- data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +0 -66
- data/ext/ice/cpp/include/Ice/ObjectFactoryManagerF.h +0 -26
- data/ext/ice/cpp/include/Ice/Outgoing.h +0 -225
- data/ext/ice/cpp/include/Ice/Plugin.h +0 -125
- data/ext/ice/cpp/include/Ice/PluginF.h +0 -70
- data/ext/ice/cpp/include/Ice/Process.h +0 -574
- data/ext/ice/cpp/include/Ice/ProcessF.h +0 -83
- data/ext/ice/cpp/include/Ice/Properties.h +0 -136
- data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +0 -830
- data/ext/ice/cpp/include/Ice/PropertiesF.h +0 -87
- data/ext/ice/cpp/include/Ice/RemoteLogger.h +0 -1500
- data/ext/ice/cpp/include/Ice/Router.h +0 -1159
- data/ext/ice/cpp/include/Ice/RouterF.h +0 -83
- data/ext/ice/cpp/include/Ice/ServantLocator.h +0 -96
- data/ext/ice/cpp/include/Ice/Stream.h +0 -447
- data/ext/ice/cpp/include/Ice/StreamF.h +0 -30
- data/ext/ice/cpp/include/Ice/Version.h +0 -262
- data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +0 -158
- data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +0 -142
- data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +0 -119
- data/ext/ice/cpp/include/IceUtil/Cache.h +0 -362
- data/ext/ice/cpp/include/IceUtil/IconvStringConverter.h +0 -302
- data/ext/ice/cpp/include/IceUtil/SHA1.h +0 -47
- data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +0 -65
- data/ext/ice/cpp/include/Slice/Checksum.h +0 -26
- data/ext/ice/cpp/include/Slice/CsUtil.h +0 -92
- data/ext/ice/cpp/include/Slice/DotNetNames.h +0 -34
- data/ext/ice/cpp/include/Slice/JavaUtil.h +0 -279
- data/ext/ice/cpp/include/Slice/ObjCUtil.h +0 -127
- data/ext/ice/cpp/include/Slice/PHPUtil.h +0 -50
- data/ext/ice/cpp/include/Slice/PythonUtil.h +0 -64
- data/ext/ice/cpp/include/Slice/Util.h +0 -56
- data/ext/ice/cpp/src/Ice/BasicStream.cpp +0 -3428
- data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +0 -62
- data/ext/ice/cpp/src/Ice/ObjectFactoryF.cpp +0 -44
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +0 -139
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +0 -43
- data/ext/ice/cpp/src/Ice/Outgoing.cpp +0 -694
- data/ext/ice/cpp/src/Ice/Stream.cpp +0 -53
- data/ext/ice/cpp/src/Ice/StreamI.cpp +0 -832
- data/ext/ice/cpp/src/Ice/StreamI.h +0 -198
- data/ext/ice/cpp/src/IceSSL/Certificate.cpp +0 -1336
- data/ext/ice/cpp/src/IceUtil/ArgVector.cpp +0 -64
- data/ext/ice/cpp/src/IceUtil/ArgVector.h +0 -41
- data/ext/ice/cpp/src/IceUtil/Exception.cpp +0 -792
- data/ext/ice/cpp/src/IceUtil/FileUtil.h +0 -185
- data/ext/ice/cpp/src/Slice/CsUtil.cpp +0 -2660
- data/ext/ice/cpp/src/Slice/DotNetNames.cpp +0 -146
- data/ext/ice/cpp/src/Slice/ObjCUtil.cpp +0 -1310
- data/lib/Ice/ObjectFactoryF.rb +0 -29
- data/lib/IceGrid/Locator.rb +0 -106
- data/lib/IceGrid/Observer.rb +0 -572
- data/lib/IceGrid/Query.rb +0 -169
- data/slice/Freeze/BackgroundSaveEvictor.ice +0 -111
- data/slice/Freeze/CatalogData.ice +0 -49
- data/slice/Freeze/Connection.ice +0 -121
- data/slice/Freeze/ConnectionF.ice +0 -20
- data/slice/Freeze/DB.ice +0 -37
- data/slice/Freeze/Evictor.ice +0 -346
- data/slice/Freeze/EvictorF.ice +0 -22
- data/slice/Freeze/EvictorStorage.ice +0 -72
- data/slice/Freeze/Exception.ice +0 -100
- data/slice/Freeze/Transaction.ice +0 -58
- data/slice/Freeze/TransactionalEvictor.ice +0 -50
- data/slice/Ice/ObjectFactoryF.ice +0 -21
- data/slice/IceGrid/Locator.ice +0 -57
- data/slice/IceGrid/Observer.ice +0 -395
- data/slice/IceGrid/Query.ice +0 -131
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d93f67fc8d2871e7db0614a3cbb091e947e73c7c6b506ceeec3ad10f433be4d6
|
|
4
|
+
data.tar.gz: c144208e37d3a3aa47a47d70b3769058d2f9f8668199cc5f1f6de468b82011e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2ca8b593b06bce4e1bc7d6ab493365ab422feb97bfcef84a5ff67ff20e30f80f610e9b7156e32ab69ab1420f536a9a948d4d4ae939013c371edc7ba2273a980
|
|
7
|
+
data.tar.gz: 15b47e5d5821f42efc77897d52a85f91e37fddf698b13ca3651bb47aaa0c536efa0d770c919fae9febbe222f91b96dd7d1e2f1a912a91b137677a27b0fe7902a
|
data/ICE_LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c)
|
|
1
|
+
Copyright (c) ZeroC, Inc. All rights reserved.
|
|
2
2
|
|
|
3
3
|
This copy of Ice is free software; you can redistribute it and/or modify
|
|
4
4
|
it under the terms of the GNU General Public License version 2 as
|
|
@@ -12,37 +12,37 @@ details.
|
|
|
12
12
|
You should have received a copy of the GNU General Public License version
|
|
13
13
|
2 along with this program; if not, see http://www.gnu.org/licenses.
|
|
14
14
|
|
|
15
|
-
Linking Ice statically or dynamically with other software (such as a
|
|
16
|
-
library, module or application) is making a combined work based on Ice.
|
|
15
|
+
Linking Ice statically or dynamically with other software (such as a
|
|
16
|
+
library, module or application) is making a combined work based on Ice.
|
|
17
17
|
Thus, the terms and conditions of the GNU General Public License version
|
|
18
18
|
2 cover this combined work.
|
|
19
19
|
|
|
20
|
-
If such software can only be used together with Ice, then not only the
|
|
20
|
+
If such software can only be used together with Ice, then not only the
|
|
21
21
|
combined work but the software itself is a work derived from Ice and as
|
|
22
|
-
such shall be licensed under the terms of the GNU General Public License
|
|
23
|
-
version 2. This includes the situation where Ice is only being used
|
|
22
|
+
such shall be licensed under the terms of the GNU General Public License
|
|
23
|
+
version 2. This includes the situation where Ice is only being used
|
|
24
24
|
through an abstraction layer.
|
|
25
25
|
|
|
26
|
-
As a special exception to the above, ZeroC grants to the copyright
|
|
27
|
-
holders and contributors of the Mumble project (http://www.mumble.info)
|
|
28
|
-
the permission to license the Ice-based software they contribute to
|
|
26
|
+
As a special exception to the above, ZeroC grants to the copyright
|
|
27
|
+
holders and contributors of the Mumble project (http://www.mumble.info)
|
|
28
|
+
the permission to license the Ice-based software they contribute to
|
|
29
29
|
Mumble under the terms of the BSD license. This exception does not extend
|
|
30
|
-
to the parts of Ice used by Mumble, or to any other derived work: as a
|
|
31
|
-
whole, any work based on Ice shall be licensed under the terms and
|
|
30
|
+
to the parts of Ice used by Mumble, or to any other derived work: as a
|
|
31
|
+
whole, any work based on Ice shall be licensed under the terms and
|
|
32
32
|
conditions of the GNU General Public License version 2.
|
|
33
33
|
|
|
34
34
|
You may also combine Ice with any software not derived from Ice, provided
|
|
35
|
-
the license of such software is compatible with the GNU General Public
|
|
35
|
+
the license of such software is compatible with the GNU General Public
|
|
36
36
|
License version 2. In addition, as a special exception, ZeroC grants you
|
|
37
37
|
permission to combine Ice with:
|
|
38
|
-
|
|
38
|
+
|
|
39
39
|
- the OpenSSL library, or with a modified version of the OpenSSL library
|
|
40
40
|
that uses the same license as OpenSSL
|
|
41
41
|
|
|
42
42
|
- any library not derived from Ice and licensed under the terms of
|
|
43
|
-
the Apache License, version 2.0
|
|
44
|
-
(http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
43
|
+
the Apache License, version 2.0
|
|
44
|
+
(http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
45
45
|
|
|
46
|
-
If you modify this copy of Ice, you may extend any of the exceptions
|
|
47
|
-
provided above to your version of Ice, but you are not obligated to
|
|
46
|
+
If you modify this copy of Ice, you may extend any of the exceptions
|
|
47
|
+
provided above to your version of Ice, but you are not obligated to
|
|
48
48
|
do so.
|
data/LICENSE
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 2, June 1991
|
|
3
3
|
|
|
4
4
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
|
5
5
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
Everyone is permitted to copy and distribute verbatim copies
|
|
8
8
|
of this license document, but changing it is not allowed.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Preamble
|
|
11
11
|
|
|
12
12
|
The licenses for most software are designed to take away your
|
|
13
13
|
freedom to share and change it. By contrast, the GNU General Public
|
|
@@ -56,8 +56,8 @@ patent must be licensed for everyone's free use or not licensed at all.
|
|
|
56
56
|
|
|
57
57
|
The precise terms and conditions for copying, distribution and
|
|
58
58
|
modification follow.
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
|
|
60
|
+
GNU GENERAL PUBLIC LICENSE
|
|
61
61
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
62
62
|
|
|
63
63
|
0. This License applies to any program or other work which contains
|
|
@@ -111,7 +111,7 @@ above, provided that you also meet all of these conditions:
|
|
|
111
111
|
License. (Exception: if the Program itself is interactive but
|
|
112
112
|
does not normally print such an announcement, your work based on
|
|
113
113
|
the Program is not required to print an announcement.)
|
|
114
|
-
|
|
114
|
+
|
|
115
115
|
These requirements apply to the modified work as a whole. If
|
|
116
116
|
identifiable sections of that work are not derived from the Program,
|
|
117
117
|
and can be reasonably considered independent and separate works in
|
|
@@ -169,7 +169,7 @@ access to copy from a designated place, then offering equivalent
|
|
|
169
169
|
access to copy the source code from the same place counts as
|
|
170
170
|
distribution of the source code, even though third parties are not
|
|
171
171
|
compelled to copy the source along with the object code.
|
|
172
|
-
|
|
172
|
+
|
|
173
173
|
4. You may not copy, modify, sublicense, or distribute the Program
|
|
174
174
|
except as expressly provided under this License. Any attempt
|
|
175
175
|
otherwise to copy, modify, sublicense or distribute the Program is
|
|
@@ -226,7 +226,7 @@ impose that choice.
|
|
|
226
226
|
|
|
227
227
|
This section is intended to make thoroughly clear what is believed to
|
|
228
228
|
be a consequence of the rest of this License.
|
|
229
|
-
|
|
229
|
+
|
|
230
230
|
8. If the distribution and/or use of the Program is restricted in
|
|
231
231
|
certain countries either by patents or by copyrighted interfaces, the
|
|
232
232
|
original copyright holder who places the Program under this License
|
|
@@ -256,7 +256,7 @@ make exceptions for this. Our decision will be guided by the two goals
|
|
|
256
256
|
of preserving the free status of all derivatives of our free software and
|
|
257
257
|
of promoting the sharing and reuse of software generally.
|
|
258
258
|
|
|
259
|
-
|
|
259
|
+
NO WARRANTY
|
|
260
260
|
|
|
261
261
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
|
262
262
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
|
@@ -278,9 +278,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
|
278
278
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
|
279
279
|
POSSIBILITY OF SUCH DAMAGES.
|
|
280
280
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
281
|
+
END OF TERMS AND CONDITIONS
|
|
282
|
+
|
|
283
|
+
How to Apply These Terms to Your New Programs
|
|
284
284
|
|
|
285
285
|
If you develop a new program, and you want it to be of the greatest
|
|
286
286
|
possible use to the public, the best way to achieve this is to make it
|
data/bin/slice2rb
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# **********************************************************************
|
|
3
2
|
#
|
|
4
|
-
# Copyright (c)
|
|
3
|
+
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
5
4
|
#
|
|
6
|
-
# This copy of Ice is licensed to you under the terms described in the
|
|
7
|
-
# ICE_LICENSE file included in this distribution.
|
|
8
|
-
#
|
|
9
|
-
# **********************************************************************
|
|
10
5
|
|
|
11
6
|
require 'Ice'
|
|
12
7
|
sliceDir = Ice.getSliceDir()
|
data/ext/Communicator.cpp
CHANGED
|
@@ -1,20 +1,16 @@
|
|
|
1
|
-
// **********************************************************************
|
|
2
1
|
//
|
|
3
|
-
// Copyright (c)
|
|
2
|
+
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
3
|
//
|
|
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
4
|
|
|
10
5
|
#include <Communicator.h>
|
|
11
6
|
#include <ImplicitContext.h>
|
|
12
7
|
#include <Logger.h>
|
|
13
|
-
#include <ObjectFactory.h>
|
|
14
8
|
#include <Properties.h>
|
|
15
9
|
#include <Proxy.h>
|
|
16
10
|
#include <Types.h>
|
|
17
11
|
#include <Util.h>
|
|
12
|
+
#include <ValueFactoryManager.h>
|
|
13
|
+
#include <IceUtil/DisableWarnings.h>
|
|
18
14
|
#include <Ice/Communicator.h>
|
|
19
15
|
#include <Ice/Initialize.h>
|
|
20
16
|
#include <Ice/Locator.h>
|
|
@@ -37,9 +33,9 @@ IceRuby_Communicator_mark(Ice::CommunicatorPtr* p)
|
|
|
37
33
|
assert(p);
|
|
38
34
|
try
|
|
39
35
|
{
|
|
40
|
-
|
|
41
|
-
assert(
|
|
42
|
-
|
|
36
|
+
ValueFactoryManagerPtr vfm = ValueFactoryManagerPtr::dynamicCast((*p)->getValueFactoryManager());
|
|
37
|
+
assert(vfm);
|
|
38
|
+
vfm->markSelf();
|
|
43
39
|
}
|
|
44
40
|
catch(const Ice::CommunicatorDestroyedException&)
|
|
45
41
|
{
|
|
@@ -55,15 +51,55 @@ IceRuby_Communicator_free(Ice::CommunicatorPtr* p)
|
|
|
55
51
|
delete p;
|
|
56
52
|
}
|
|
57
53
|
|
|
54
|
+
namespace
|
|
55
|
+
{
|
|
56
|
+
|
|
57
|
+
class CommunicatorDestroyer
|
|
58
|
+
{
|
|
59
|
+
public:
|
|
60
|
+
|
|
61
|
+
CommunicatorDestroyer(const Ice::CommunicatorPtr& c) : _communicator(c) {}
|
|
62
|
+
|
|
63
|
+
~CommunicatorDestroyer()
|
|
64
|
+
{
|
|
65
|
+
_communicator->destroy();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
private:
|
|
69
|
+
|
|
70
|
+
Ice::CommunicatorPtr _communicator;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
}
|
|
74
|
+
|
|
58
75
|
extern "C"
|
|
59
76
|
VALUE
|
|
60
|
-
IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
77
|
+
IceRuby_initialize(int argc, VALUE* argv, VALUE /*self*/)
|
|
61
78
|
{
|
|
62
79
|
ICE_RUBY_TRY
|
|
63
80
|
{
|
|
81
|
+
//
|
|
82
|
+
// The argument options are:
|
|
83
|
+
//
|
|
84
|
+
// Ice::initialize()
|
|
85
|
+
// Ice::initialize(args)
|
|
86
|
+
// Ice::initialize(initData)
|
|
87
|
+
// Ice::initialize(configFile)
|
|
88
|
+
// Ice::initialize(args, initData)
|
|
89
|
+
// Ice::initialize(args, configFile)
|
|
90
|
+
//
|
|
91
|
+
// An implicit block is optional.
|
|
92
|
+
//
|
|
93
|
+
|
|
94
|
+
if(argc > 2)
|
|
95
|
+
{
|
|
96
|
+
throw RubyException(rb_eArgError, "invalid number of arguments to Ice::initialize");
|
|
97
|
+
}
|
|
98
|
+
|
|
64
99
|
volatile VALUE initDataCls = callRuby(rb_path2class, "Ice::InitializationData");
|
|
65
|
-
volatile VALUE args = Qnil, initData = Qnil;
|
|
66
|
-
|
|
100
|
+
volatile VALUE args = Qnil, initData = Qnil, configFile = Qnil;
|
|
101
|
+
|
|
102
|
+
if(argc >= 1)
|
|
67
103
|
{
|
|
68
104
|
if(isArray(argv[0]))
|
|
69
105
|
{
|
|
@@ -73,23 +109,54 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
73
109
|
{
|
|
74
110
|
initData = argv[0];
|
|
75
111
|
}
|
|
112
|
+
else if(TYPE(argv[0]) == T_STRING)
|
|
113
|
+
{
|
|
114
|
+
configFile = argv[0];
|
|
115
|
+
}
|
|
76
116
|
else
|
|
77
117
|
{
|
|
78
|
-
throw RubyException(rb_eTypeError,
|
|
118
|
+
throw RubyException(rb_eTypeError,
|
|
119
|
+
"initialize expects an argument list, InitializationData or a configuration filename");
|
|
79
120
|
}
|
|
80
121
|
}
|
|
81
|
-
|
|
122
|
+
|
|
123
|
+
if(argc >= 2)
|
|
82
124
|
{
|
|
83
|
-
if(
|
|
125
|
+
if(isArray(argv[1]))
|
|
126
|
+
{
|
|
127
|
+
if(!NIL_P(args))
|
|
128
|
+
{
|
|
129
|
+
throw RubyException(rb_eTypeError, "unexpected array argument to initialize");
|
|
130
|
+
}
|
|
131
|
+
args = argv[1];
|
|
132
|
+
}
|
|
133
|
+
else if(callRuby(rb_obj_is_instance_of, argv[1], initDataCls) == Qtrue)
|
|
134
|
+
{
|
|
135
|
+
if(!NIL_P(initData))
|
|
136
|
+
{
|
|
137
|
+
throw RubyException(rb_eTypeError, "unexpected InitializationData argument to initialize");
|
|
138
|
+
}
|
|
139
|
+
initData = argv[1];
|
|
140
|
+
}
|
|
141
|
+
else if(TYPE(argv[1]) == T_STRING)
|
|
84
142
|
{
|
|
85
|
-
|
|
143
|
+
if(!NIL_P(configFile))
|
|
144
|
+
{
|
|
145
|
+
throw RubyException(rb_eTypeError, "unexpected string argument to initialize");
|
|
146
|
+
}
|
|
147
|
+
configFile = argv[1];
|
|
148
|
+
}
|
|
149
|
+
else
|
|
150
|
+
{
|
|
151
|
+
throw RubyException(rb_eTypeError,
|
|
152
|
+
"initialize expects an argument list, InitializationData or a configuration filename");
|
|
86
153
|
}
|
|
87
|
-
args = argv[0];
|
|
88
|
-
initData = argv[1];
|
|
89
154
|
}
|
|
90
|
-
|
|
155
|
+
|
|
156
|
+
if(!NIL_P(initData) && !NIL_P(configFile))
|
|
91
157
|
{
|
|
92
|
-
throw RubyException(
|
|
158
|
+
throw RubyException(rb_eTypeError,
|
|
159
|
+
"initialize accepts either Ice.InitializationData or a configuration filename");
|
|
93
160
|
}
|
|
94
161
|
|
|
95
162
|
Ice::StringSeq seq;
|
|
@@ -98,11 +165,6 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
98
165
|
throw RubyException(rb_eTypeError, "invalid array argument to Ice::initialize");
|
|
99
166
|
}
|
|
100
167
|
|
|
101
|
-
//
|
|
102
|
-
// Use the with-args or the without-args version of initialize()?
|
|
103
|
-
//
|
|
104
|
-
bool hasArgs = !NIL_P(args);
|
|
105
|
-
|
|
106
168
|
Ice::InitializationData data;
|
|
107
169
|
if(!NIL_P(initData))
|
|
108
170
|
{
|
|
@@ -128,23 +190,22 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
128
190
|
seq.insert(seq.begin(), getString(progName));
|
|
129
191
|
|
|
130
192
|
data.compactIdResolver = new IdResolver;
|
|
193
|
+
data.valueFactoryManager = new ValueFactoryManager;
|
|
131
194
|
|
|
132
|
-
if(
|
|
195
|
+
if(!data.properties)
|
|
133
196
|
{
|
|
134
|
-
data.properties = Ice::createProperties(
|
|
197
|
+
data.properties = Ice::createProperties();
|
|
135
198
|
}
|
|
136
|
-
|
|
199
|
+
|
|
200
|
+
if(!NIL_P(configFile))
|
|
137
201
|
{
|
|
138
|
-
data.properties
|
|
202
|
+
data.properties->load(getString(configFile));
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
if(!NIL_P(args))
|
|
206
|
+
{
|
|
207
|
+
data.properties = Ice::createProperties(seq, data.properties);
|
|
139
208
|
}
|
|
140
|
-
//
|
|
141
|
-
// Disable collocation optimization, otherwise an invocation on a
|
|
142
|
-
// collocated servant results in a CollocationOptimizationException
|
|
143
|
-
// (because Ruby uses the blobject API).
|
|
144
|
-
//
|
|
145
|
-
// TODO: Enable if a server mapping is added.
|
|
146
|
-
//
|
|
147
|
-
//data.properties->setProperty("Ice.Default.CollocationOptimization", "0");
|
|
148
209
|
|
|
149
210
|
//
|
|
150
211
|
// Remaining command line options are passed to the communicator
|
|
@@ -162,7 +223,7 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
162
223
|
Ice::CommunicatorPtr communicator;
|
|
163
224
|
try
|
|
164
225
|
{
|
|
165
|
-
if(
|
|
226
|
+
if(!NIL_P(args))
|
|
166
227
|
{
|
|
167
228
|
communicator = Ice::initialize(ac, av, data);
|
|
168
229
|
}
|
|
@@ -171,6 +232,17 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
171
232
|
communicator = Ice::initialize(data);
|
|
172
233
|
}
|
|
173
234
|
}
|
|
235
|
+
catch(const Ice::LocalException& ex)
|
|
236
|
+
{
|
|
237
|
+
cerr << ex << endl;
|
|
238
|
+
for(i = 0; i < ac + 1; ++i)
|
|
239
|
+
{
|
|
240
|
+
free(av[i]);
|
|
241
|
+
}
|
|
242
|
+
delete[] av;
|
|
243
|
+
|
|
244
|
+
throw;
|
|
245
|
+
}
|
|
174
246
|
catch(...)
|
|
175
247
|
{
|
|
176
248
|
for(i = 0; i < ac + 1; ++i)
|
|
@@ -181,7 +253,7 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
181
253
|
|
|
182
254
|
throw;
|
|
183
255
|
}
|
|
184
|
-
|
|
256
|
+
|
|
185
257
|
//
|
|
186
258
|
// Replace the contents of the given argument list with the filtered arguments.
|
|
187
259
|
//
|
|
@@ -205,9 +277,6 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
205
277
|
}
|
|
206
278
|
delete[] av;
|
|
207
279
|
|
|
208
|
-
ObjectFactoryPtr factory = new ObjectFactory;
|
|
209
|
-
communicator->addObjectFactory(factory, "");
|
|
210
|
-
|
|
211
280
|
VALUE result = Data_Wrap_Struct(_communicatorClass, IceRuby_Communicator_mark,
|
|
212
281
|
IceRuby_Communicator_free, new Ice::CommunicatorPtr(communicator));
|
|
213
282
|
|
|
@@ -218,7 +287,40 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
218
287
|
}
|
|
219
288
|
_communicatorMap.insert(CommunicatorMap::value_type(communicator, reinterpret_cast<const VALUE&>(result)));
|
|
220
289
|
|
|
221
|
-
|
|
290
|
+
//
|
|
291
|
+
// If an implicit block was provided, yield to the block and pass it the communicator instance.
|
|
292
|
+
// We destroy the communicator after the block is finished, and return the result of the block.
|
|
293
|
+
//
|
|
294
|
+
if(rb_block_given_p())
|
|
295
|
+
{
|
|
296
|
+
CommunicatorDestroyer destroyer(communicator);
|
|
297
|
+
//
|
|
298
|
+
// Examine the arity of the block procedure. If it accepts one argument, pass it the
|
|
299
|
+
// communicator. If it accepts two arguments, pass it the communicator and the
|
|
300
|
+
// argument vector.
|
|
301
|
+
//
|
|
302
|
+
VALUE proc = callRuby(rb_block_proc);
|
|
303
|
+
int arity = rb_proc_arity(proc);
|
|
304
|
+
if(arity == 1)
|
|
305
|
+
{
|
|
306
|
+
return callRuby(rb_yield, result);
|
|
307
|
+
}
|
|
308
|
+
else if(arity == 2)
|
|
309
|
+
{
|
|
310
|
+
VALUE blockArgs = createArray(2);
|
|
311
|
+
RARRAY_ASET(blockArgs, 0, result);
|
|
312
|
+
RARRAY_ASET(blockArgs, 1, args);
|
|
313
|
+
return callRuby(rb_yield, blockArgs);
|
|
314
|
+
}
|
|
315
|
+
else
|
|
316
|
+
{
|
|
317
|
+
throw RubyException(rb_eArgError, "block must accept one or two arguments");
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
else
|
|
321
|
+
{
|
|
322
|
+
return result;
|
|
323
|
+
}
|
|
222
324
|
}
|
|
223
325
|
ICE_RUBY_CATCH
|
|
224
326
|
return Qnil;
|
|
@@ -226,7 +328,7 @@ IceRuby_initialize(int argc, VALUE* argv, VALUE self)
|
|
|
226
328
|
|
|
227
329
|
extern "C"
|
|
228
330
|
VALUE
|
|
229
|
-
IceRuby_stringToIdentity(VALUE self
|
|
331
|
+
IceRuby_stringToIdentity(VALUE /*self*/, VALUE str)
|
|
230
332
|
{
|
|
231
333
|
ICE_RUBY_TRY
|
|
232
334
|
{
|
|
@@ -240,12 +342,26 @@ IceRuby_stringToIdentity(VALUE self, VALUE str)
|
|
|
240
342
|
|
|
241
343
|
extern "C"
|
|
242
344
|
VALUE
|
|
243
|
-
IceRuby_identityToString(VALUE
|
|
345
|
+
IceRuby_identityToString(int argc, VALUE* argv, VALUE /*self*/)
|
|
244
346
|
{
|
|
245
347
|
ICE_RUBY_TRY
|
|
246
348
|
{
|
|
247
|
-
|
|
248
|
-
|
|
349
|
+
if(argc < 1 || argc > 2)
|
|
350
|
+
{
|
|
351
|
+
throw RubyException(rb_eArgError, "wrong number of arguments");
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
Ice::Identity ident = getIdentity(argv[0]);
|
|
355
|
+
|
|
356
|
+
Ice::ToStringMode toStringMode = Ice::Unicode;
|
|
357
|
+
if(argc == 2)
|
|
358
|
+
{
|
|
359
|
+
volatile VALUE modeValue = callRuby(rb_funcall, argv[1], rb_intern("to_i"), 0);
|
|
360
|
+
assert(TYPE(modeValue) == T_FIXNUM);
|
|
361
|
+
toStringMode = static_cast<Ice::ToStringMode>(FIX2LONG(modeValue));
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
string str = Ice::identityToString(ident, toStringMode);
|
|
249
365
|
return createString(str);
|
|
250
366
|
}
|
|
251
367
|
ICE_RUBY_CATCH
|
|
@@ -256,12 +372,19 @@ extern "C"
|
|
|
256
372
|
VALUE
|
|
257
373
|
IceRuby_Communicator_destroy(VALUE self)
|
|
258
374
|
{
|
|
375
|
+
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
376
|
+
|
|
377
|
+
ValueFactoryManagerPtr vfm = ValueFactoryManagerPtr::dynamicCast(p->getValueFactoryManager());
|
|
378
|
+
assert(vfm);
|
|
379
|
+
|
|
259
380
|
ICE_RUBY_TRY
|
|
260
381
|
{
|
|
261
|
-
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
262
382
|
p->destroy();
|
|
263
383
|
}
|
|
264
384
|
ICE_RUBY_CATCH
|
|
385
|
+
|
|
386
|
+
vfm->destroy();
|
|
387
|
+
|
|
265
388
|
return Qnil;
|
|
266
389
|
}
|
|
267
390
|
|
|
@@ -291,6 +414,19 @@ IceRuby_Communicator_isShutdown(VALUE self)
|
|
|
291
414
|
return Qnil;
|
|
292
415
|
}
|
|
293
416
|
|
|
417
|
+
extern "C"
|
|
418
|
+
VALUE
|
|
419
|
+
IceRuby_Communicator_waitForShutdown(VALUE self)
|
|
420
|
+
{
|
|
421
|
+
ICE_RUBY_TRY
|
|
422
|
+
{
|
|
423
|
+
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
424
|
+
p->waitForShutdown();
|
|
425
|
+
}
|
|
426
|
+
ICE_RUBY_CATCH
|
|
427
|
+
return Qnil;
|
|
428
|
+
}
|
|
429
|
+
|
|
294
430
|
extern "C"
|
|
295
431
|
VALUE
|
|
296
432
|
IceRuby_Communicator_stringToProxy(VALUE self, VALUE str)
|
|
@@ -371,7 +507,7 @@ IceRuby_Communicator_proxyToProperty(VALUE self, VALUE obj, VALUE str)
|
|
|
371
507
|
volatile VALUE value = createString(q->second);
|
|
372
508
|
callRuby(rb_hash_aset, result, key, value);
|
|
373
509
|
}
|
|
374
|
-
return result;
|
|
510
|
+
return result;
|
|
375
511
|
}
|
|
376
512
|
ICE_RUBY_CATCH
|
|
377
513
|
return Qnil;
|
|
@@ -414,10 +550,10 @@ IceRuby_Communicator_addObjectFactory(VALUE self, VALUE factory, VALUE id)
|
|
|
414
550
|
ICE_RUBY_TRY
|
|
415
551
|
{
|
|
416
552
|
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
417
|
-
|
|
418
|
-
assert(
|
|
553
|
+
ValueFactoryManagerPtr vfm = ValueFactoryManagerPtr::dynamicCast(p->getValueFactoryManager());
|
|
554
|
+
assert(vfm);
|
|
419
555
|
string idstr = getString(id);
|
|
420
|
-
|
|
556
|
+
vfm->addObjectFactory(factory, idstr);
|
|
421
557
|
}
|
|
422
558
|
ICE_RUBY_CATCH
|
|
423
559
|
return Qnil;
|
|
@@ -430,10 +566,25 @@ IceRuby_Communicator_findObjectFactory(VALUE self, VALUE id)
|
|
|
430
566
|
ICE_RUBY_TRY
|
|
431
567
|
{
|
|
432
568
|
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
433
|
-
|
|
434
|
-
assert(
|
|
569
|
+
ValueFactoryManagerPtr vfm = ValueFactoryManagerPtr::dynamicCast(p->getValueFactoryManager());
|
|
570
|
+
assert(vfm);
|
|
435
571
|
string idstr = getString(id);
|
|
436
|
-
return
|
|
572
|
+
return vfm->findObjectFactory(idstr);
|
|
573
|
+
}
|
|
574
|
+
ICE_RUBY_CATCH
|
|
575
|
+
return Qnil;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
extern "C"
|
|
579
|
+
VALUE
|
|
580
|
+
IceRuby_Communicator_getValueFactoryManager(VALUE self)
|
|
581
|
+
{
|
|
582
|
+
ICE_RUBY_TRY
|
|
583
|
+
{
|
|
584
|
+
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
585
|
+
ValueFactoryManagerPtr vfm = ValueFactoryManagerPtr::dynamicCast(p->getValueFactoryManager());
|
|
586
|
+
assert(vfm);
|
|
587
|
+
return vfm->getObject();
|
|
437
588
|
}
|
|
438
589
|
ICE_RUBY_CATCH
|
|
439
590
|
return Qnil;
|
|
@@ -453,7 +604,6 @@ IceRuby_Communicator_getImplicitContext(VALUE self)
|
|
|
453
604
|
return Qnil;
|
|
454
605
|
}
|
|
455
606
|
|
|
456
|
-
|
|
457
607
|
extern "C"
|
|
458
608
|
VALUE
|
|
459
609
|
IceRuby_Communicator_getProperties(VALUE self)
|
|
@@ -566,12 +716,22 @@ IceRuby_Communicator_setDefaultLocator(VALUE self, VALUE locator)
|
|
|
566
716
|
|
|
567
717
|
extern "C"
|
|
568
718
|
VALUE
|
|
569
|
-
IceRuby_Communicator_flushBatchRequests(VALUE self)
|
|
719
|
+
IceRuby_Communicator_flushBatchRequests(VALUE self, VALUE compress)
|
|
570
720
|
{
|
|
571
721
|
ICE_RUBY_TRY
|
|
572
722
|
{
|
|
573
723
|
Ice::CommunicatorPtr p = getCommunicator(self);
|
|
574
|
-
|
|
724
|
+
|
|
725
|
+
volatile VALUE type = callRuby(rb_path2class, "Ice::CompressBatch");
|
|
726
|
+
if(callRuby(rb_obj_is_instance_of, compress, type) != Qtrue)
|
|
727
|
+
{
|
|
728
|
+
throw RubyException(rb_eTypeError,
|
|
729
|
+
"value for 'compress' argument must be an enumerator of Ice::CompressBatch");
|
|
730
|
+
}
|
|
731
|
+
volatile VALUE compressValue = callRuby(rb_funcall, compress, rb_intern("to_i"), 0);
|
|
732
|
+
assert(TYPE(compressValue) == T_FIXNUM);
|
|
733
|
+
Ice::CompressBatch cb = static_cast<Ice::CompressBatch>(FIX2LONG(compressValue));
|
|
734
|
+
p->flushBatchRequests(cb);
|
|
575
735
|
}
|
|
576
736
|
ICE_RUBY_CATCH
|
|
577
737
|
return Qnil;
|
|
@@ -581,13 +741,14 @@ void
|
|
|
581
741
|
IceRuby::initCommunicator(VALUE iceModule)
|
|
582
742
|
{
|
|
583
743
|
rb_define_module_function(iceModule, "initialize", CAST_METHOD(IceRuby_initialize), -1);
|
|
584
|
-
rb_define_module_function(iceModule, "identityToString", CAST_METHOD(IceRuby_identityToString), 1);
|
|
744
|
+
rb_define_module_function(iceModule, "identityToString", CAST_METHOD(IceRuby_identityToString), -1);
|
|
585
745
|
rb_define_module_function(iceModule, "stringToIdentity", CAST_METHOD(IceRuby_stringToIdentity), 1);
|
|
586
746
|
|
|
587
747
|
_communicatorClass = rb_define_class_under(iceModule, "CommunicatorI", rb_cObject);
|
|
588
748
|
rb_define_method(_communicatorClass, "destroy", CAST_METHOD(IceRuby_Communicator_destroy), 0);
|
|
589
749
|
rb_define_method(_communicatorClass, "shutdown", CAST_METHOD(IceRuby_Communicator_shutdown), 0);
|
|
590
750
|
rb_define_method(_communicatorClass, "isShutdown", CAST_METHOD(IceRuby_Communicator_isShutdown), 0);
|
|
751
|
+
rb_define_method(_communicatorClass, "waitForShutdown", CAST_METHOD(IceRuby_Communicator_waitForShutdown), 0);
|
|
591
752
|
rb_define_method(_communicatorClass, "stringToProxy", CAST_METHOD(IceRuby_Communicator_stringToProxy), 1);
|
|
592
753
|
rb_define_method(_communicatorClass, "proxyToString", CAST_METHOD(IceRuby_Communicator_proxyToString), 1);
|
|
593
754
|
rb_define_method(_communicatorClass, "propertyToProxy", CAST_METHOD(IceRuby_Communicator_propertyToProxy), 1);
|
|
@@ -596,6 +757,7 @@ IceRuby::initCommunicator(VALUE iceModule)
|
|
|
596
757
|
rb_define_method(_communicatorClass, "identityToString", CAST_METHOD(IceRuby_Communicator_identityToString), 1);
|
|
597
758
|
rb_define_method(_communicatorClass, "addObjectFactory", CAST_METHOD(IceRuby_Communicator_addObjectFactory), 2);
|
|
598
759
|
rb_define_method(_communicatorClass, "findObjectFactory", CAST_METHOD(IceRuby_Communicator_findObjectFactory), 1);
|
|
760
|
+
rb_define_method(_communicatorClass, "getValueFactoryManager", CAST_METHOD(IceRuby_Communicator_getValueFactoryManager), 0);
|
|
599
761
|
rb_define_method(_communicatorClass, "getImplicitContext", CAST_METHOD(IceRuby_Communicator_getImplicitContext), 0);
|
|
600
762
|
rb_define_method(_communicatorClass, "getProperties", CAST_METHOD(IceRuby_Communicator_getProperties), 0);
|
|
601
763
|
rb_define_method(_communicatorClass, "getLogger", CAST_METHOD(IceRuby_Communicator_getLogger), 0);
|
|
@@ -603,7 +765,7 @@ IceRuby::initCommunicator(VALUE iceModule)
|
|
|
603
765
|
rb_define_method(_communicatorClass, "setDefaultRouter", CAST_METHOD(IceRuby_Communicator_setDefaultRouter), 1);
|
|
604
766
|
rb_define_method(_communicatorClass, "getDefaultLocator", CAST_METHOD(IceRuby_Communicator_getDefaultLocator), 0);
|
|
605
767
|
rb_define_method(_communicatorClass, "setDefaultLocator", CAST_METHOD(IceRuby_Communicator_setDefaultLocator), 1);
|
|
606
|
-
rb_define_method(_communicatorClass, "flushBatchRequests", CAST_METHOD(IceRuby_Communicator_flushBatchRequests),
|
|
768
|
+
rb_define_method(_communicatorClass, "flushBatchRequests", CAST_METHOD(IceRuby_Communicator_flushBatchRequests), 1);
|
|
607
769
|
}
|
|
608
770
|
|
|
609
771
|
Ice::CommunicatorPtr
|