zeroc-ice 3.6b1 → 3.6.0
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/{ext/ice/BZIP_LICENSE → BZIP2_LICENSE} +0 -0
- data/ICE_LICENSE +8 -14
- data/LICENSE +2 -1
- data/{ext/ice/MCPP_LICENSE → MCPP_LICENSE} +2 -9
- data/bin/slice2rb +1 -1
- data/ext/Communicator.cpp +1 -1
- data/ext/Communicator.h +1 -1
- data/ext/Config.h +1 -22
- data/ext/Connection.cpp +125 -13
- data/ext/Connection.h +1 -1
- data/ext/Endpoint.cpp +62 -3
- data/ext/Endpoint.h +1 -1
- data/ext/ImplicitContext.cpp +1 -1
- data/ext/ImplicitContext.h +1 -1
- data/ext/Init.cpp +8 -1
- data/ext/Logger.cpp +1 -1
- data/ext/Logger.h +1 -1
- data/ext/ObjectFactory.cpp +1 -1
- data/ext/ObjectFactory.h +1 -1
- data/ext/Operation.cpp +1 -1
- data/ext/Operation.h +1 -1
- data/ext/Properties.cpp +1 -1
- data/ext/Properties.h +1 -1
- data/ext/Proxy.cpp +1 -1
- data/ext/Proxy.h +1 -1
- data/ext/Slice.cpp +1 -1
- data/ext/Slice.h +1 -1
- data/ext/Types.cpp +65 -17
- data/ext/Types.h +4 -1
- data/ext/Util.cpp +49 -58
- data/ext/Util.h +1 -1
- data/ext/extconf.rb +17 -15
- data/ext/ice/cpp/include/Ice/ACMF.h +1 -1
- data/ext/ice/cpp/include/Ice/Application.h +1 -1
- data/ext/ice/cpp/include/Ice/AsyncResult.h +1 -1
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +1 -1
- data/ext/ice/cpp/include/Ice/BasicStream.h +1 -1
- data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +52 -0
- data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +25 -0
- data/ext/ice/cpp/include/Ice/Buffer.h +1 -1
- data/ext/ice/cpp/include/Ice/BuiltinSequences.h +12 -4
- data/ext/ice/cpp/include/Ice/Communicator.h +12 -4
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +1 -1
- data/ext/ice/cpp/include/Ice/CommunicatorF.h +12 -4
- data/ext/ice/cpp/include/Ice/Config.h +13 -8
- data/ext/ice/cpp/include/Ice/Connection.h +41 -16
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +1 -1
- data/ext/ice/cpp/include/Ice/ConnectionF.h +12 -4
- data/ext/ice/cpp/include/Ice/ConnectionFactoryF.h +1 -1
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +1 -1
- data/ext/ice/cpp/include/Ice/Current.h +12 -4
- data/ext/ice/cpp/include/Ice/DefaultObjectFactory.h +1 -1
- data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +1 -1
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +1 -1
- data/ext/ice/cpp/include/Ice/Dispatcher.h +1 -1
- data/ext/ice/cpp/include/Ice/DynamicLibrary.h +1 -1
- data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -1
- data/ext/ice/cpp/include/Ice/Endpoint.h +16 -6
- data/ext/ice/cpp/include/Ice/EndpointF.h +12 -4
- data/ext/ice/cpp/include/Ice/EndpointTypes.h +12 -4
- data/ext/ice/cpp/include/Ice/Exception.h +3 -3
- data/ext/ice/cpp/include/Ice/FacetMap.h +12 -4
- data/ext/ice/cpp/include/Ice/FactoryTable.h +1 -1
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
- data/ext/ice/cpp/include/Ice/Format.h +1 -1
- data/ext/ice/cpp/include/Ice/Functional.h +1 -1
- data/ext/ice/cpp/include/Ice/GCObject.h +5 -1
- data/ext/ice/cpp/include/Ice/Handle.h +1 -1
- data/ext/ice/cpp/include/Ice/Ice.h +4 -3
- data/ext/ice/cpp/include/Ice/Identity.h +13 -5
- data/ext/ice/cpp/include/Ice/ImplicitContext.h +12 -4
- data/ext/ice/cpp/include/Ice/ImplicitContextF.h +12 -4
- data/ext/ice/cpp/include/Ice/Incoming.h +1 -1
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +1 -1
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +1 -1
- data/ext/ice/cpp/include/Ice/Initialize.h +4 -2
- data/ext/ice/cpp/include/Ice/InstanceF.h +1 -1
- data/ext/ice/cpp/include/Ice/Instrumentation.h +12 -4
- data/ext/ice/cpp/include/Ice/InstrumentationF.h +12 -4
- data/ext/ice/cpp/include/Ice/LocalException.h +12 -4
- data/ext/ice/cpp/include/Ice/LocalObject.h +1 -1
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
- data/ext/ice/cpp/include/Ice/Locator.h +137 -129
- data/ext/ice/cpp/include/Ice/LocatorF.h +12 -4
- data/ext/ice/cpp/include/Ice/Logger.h +12 -4
- data/ext/ice/cpp/include/Ice/LoggerF.h +12 -4
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +1 -1
- data/ext/ice/cpp/include/Ice/Metrics.h +144 -136
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +1 -1
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +1 -1
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +35 -26
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +1 -1
- data/ext/ice/cpp/include/Ice/Object.h +1 -1
- data/ext/ice/cpp/include/Ice/ObjectAdapter.h +12 -4
- data/ext/ice/cpp/include/Ice/ObjectAdapterF.h +12 -4
- data/ext/ice/cpp/include/Ice/ObjectAdapterFactoryF.h +1 -1
- data/ext/ice/cpp/include/Ice/ObjectF.h +1 -1
- data/ext/ice/cpp/include/Ice/ObjectFactory.h +12 -4
- data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +12 -4
- data/ext/ice/cpp/include/Ice/ObjectFactoryManagerF.h +1 -1
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +1 -1
- data/ext/ice/cpp/include/Ice/Outgoing.h +67 -39
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +31 -34
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +4 -4
- data/ext/ice/cpp/include/Ice/Plugin.h +12 -4
- data/ext/ice/cpp/include/Ice/PluginF.h +12 -4
- data/ext/ice/cpp/include/Ice/Process.h +36 -28
- data/ext/ice/cpp/include/Ice/ProcessF.h +12 -4
- data/ext/ice/cpp/include/Ice/Properties.h +12 -4
- data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +86 -78
- data/ext/ice/cpp/include/Ice/PropertiesF.h +12 -4
- data/ext/ice/cpp/include/Ice/Protocol.h +1 -1
- data/ext/ice/cpp/include/Ice/Proxy.h +6 -2
- data/ext/ice/cpp/include/Ice/ProxyF.h +1 -1
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +1 -1
- data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
- data/ext/ice/cpp/include/Ice/RemoteLogger.h +137 -129
- data/ext/ice/cpp/include/Ice/RequestHandlerF.h +1 -1
- data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +1 -1
- data/ext/ice/cpp/include/Ice/Router.h +37 -29
- data/ext/ice/cpp/include/Ice/RouterF.h +12 -4
- data/ext/ice/cpp/include/Ice/ServantLocator.h +12 -4
- data/ext/ice/cpp/include/Ice/ServantLocatorF.h +12 -4
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
- data/ext/ice/cpp/include/Ice/Service.h +1 -1
- data/ext/ice/cpp/include/Ice/SliceChecksumDict.h +12 -4
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +1 -1
- data/ext/ice/cpp/include/Ice/SlicedData.h +1 -6
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +1 -1
- data/ext/ice/cpp/include/Ice/Stream.h +3 -5
- data/ext/ice/cpp/include/Ice/StreamF.h +1 -1
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +1 -1
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +1 -1
- data/ext/ice/cpp/include/Ice/Version.h +14 -6
- data/ext/ice/cpp/include/IceSSL/Config.h +19 -1
- data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +61 -7
- data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +52 -5
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +2 -2
- data/ext/ice/cpp/include/IceSSL/Plugin.h +32 -26
- data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Atomic.h +186 -0
- data/ext/ice/cpp/include/IceUtil/Cache.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Cond.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Config.h +31 -20
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +1 -1
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +1 -1
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +9 -2
- data/ext/ice/cpp/include/IceUtil/Exception.h +4 -3
- data/ext/ice/cpp/include/IceUtil/Functional.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Handle.h +1 -1
- data/ext/ice/cpp/include/IceUtil/IceUtil.h +2 -2
- data/ext/ice/cpp/include/IceUtil/IconvStringConverter.h +1 -1
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Iterator.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Lock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Mutex.h +1 -1
- data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +1 -1
- data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Optional.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Options.h +1 -1
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +8 -11
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +5 -1
- data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
- data/ext/ice/cpp/include/IceUtil/RecMutex.h +1 -1
- data/ext/ice/cpp/include/IceUtil/SHA1.h +8 -26
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +5 -5
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Shared.h +3 -37
- data/ext/ice/cpp/include/IceUtil/StringUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Thread.h +1 -1
- data/ext/ice/cpp/include/IceUtil/ThreadException.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Time.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Timer.h +1 -1
- data/ext/ice/cpp/include/IceUtil/UUID.h +1 -1
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
- data/ext/ice/cpp/include/IceUtil/UniquePtr.h +1 -1
- data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +7 -6
- data/ext/ice/cpp/include/Slice/Checksum.h +1 -1
- data/ext/ice/cpp/include/Slice/CsUtil.h +1 -1
- data/ext/ice/cpp/include/Slice/DotNetNames.h +1 -1
- data/ext/ice/cpp/include/Slice/FileTracker.h +1 -1
- data/ext/ice/cpp/include/Slice/JavaUtil.h +3 -1
- data/ext/ice/cpp/include/Slice/ObjCUtil.h +127 -0
- data/ext/ice/cpp/include/Slice/PHPUtil.h +1 -1
- data/ext/ice/cpp/include/Slice/Parser.h +18 -12
- data/ext/ice/cpp/include/Slice/Preprocessor.h +6 -4
- data/ext/ice/cpp/include/Slice/PythonUtil.h +1 -1
- data/ext/ice/cpp/include/Slice/RubyUtil.h +1 -1
- data/ext/ice/cpp/include/Slice/Util.h +20 -2
- data/ext/ice/cpp/src/Ice/ACM.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ACM.h +1 -1
- data/ext/ice/cpp/src/Ice/Acceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Acceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -1
- data/ext/ice/cpp/src/Ice/AsyncResult.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Base64.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Base64.h +1 -1
- data/ext/ice/cpp/src/Ice/BasicStream.cpp +7 -5
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +227 -0
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +59 -0
- data/ext/ice/cpp/src/Ice/Buffer.cpp +3 -3
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +10 -4
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +82 -282
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +8 -21
- data/ext/ice/cpp/src/Ice/Communicator.cpp +11 -5
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +6 -6
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +42 -180
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +10 -19
- data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +25 -0
- data/ext/ice/cpp/src/Ice/Connection.cpp +17 -11
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +137 -51
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +18 -8
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +105 -391
- data/ext/ice/cpp/src/Ice/ConnectionI.h +25 -23
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +5 -29
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +3 -8
- data/ext/ice/cpp/src/Ice/Connector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Connector.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -1
- data/ext/ice/cpp/src/Ice/Current.cpp +10 -4
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +1 -1
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -1
- data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -1
- data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +1 -1
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +17 -11
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +19 -1
- data/ext/ice/cpp/src/Ice/EndpointFactory.h +13 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EndpointI.h +33 -1
- data/ext/ice/cpp/src/Ice/EndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +10 -4
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EventHandler.h +4 -1
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +1 -1
- data/ext/ice/cpp/src/Ice/Exception.cpp +20 -11
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +10 -4
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +1 -1
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +2 -2
- data/ext/ice/cpp/src/Ice/GCObject.cpp +1 -1
- data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/HttpParser.cpp +27 -15
- data/ext/ice/cpp/src/Ice/HttpParser.h +4 -6
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +7 -1
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +2 -1
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/Identity.cpp +11 -5
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +11 -5
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +1 -1
- data/ext/ice/cpp/src/Ice/Incoming.cpp +22 -20
- data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/IncomingRequest.h +1 -1
- data/ext/ice/cpp/src/Ice/Initialize.cpp +31 -5
- data/ext/ice/cpp/src/Ice/Instance.cpp +102 -59
- data/ext/ice/cpp/src/Ice/Instance.h +28 -2
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +20 -14
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/InstrumentationI.h +1 -1
- data/ext/ice/cpp/src/Ice/LocalException.cpp +10 -4
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Locator.cpp +83 -77
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +77 -69
- data/ext/ice/cpp/src/Ice/LocatorInfo.h +1 -1
- data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -1
- data/ext/ice/cpp/src/Ice/Logger.cpp +11 -5
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/LoggerAdminI.h +1 -1
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +10 -8
- data/ext/ice/cpp/src/Ice/LoggerI.h +1 -1
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +2 -2
- data/ext/ice/cpp/src/Ice/Metrics.cpp +122 -116
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Network.cpp +63 -19
- data/ext/ice/cpp/src/Ice/Network.h +10 -3
- data/ext/ice/cpp/src/Ice/NetworkF.h +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxy.h +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -1
- data/ext/ice/cpp/src/Ice/Object.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +11 -5
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +9 -9
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +2 -2
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +5 -5
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +11 -5
- data/ext/ice/cpp/src/Ice/ObjectFactoryF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +9 -10
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +1 -1
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +6 -5
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +1 -1
- data/ext/ice/cpp/src/Ice/Outgoing.cpp +209 -254
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +120 -106
- data/ext/ice/cpp/src/Ice/Plugin.cpp +12 -6
- data/ext/ice/cpp/src/Ice/PluginF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +21 -2
- data/ext/ice/cpp/src/Ice/Process.cpp +25 -19
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/Properties.cpp +11 -5
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +39 -33
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +1 -1
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/PropertiesI.h +1 -1
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +12 -8
- data/ext/ice/cpp/src/Ice/PropertyNames.h +2 -2
- data/ext/ice/cpp/src/Ice/Protocol.cpp +7 -7
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +9 -6
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +25 -7
- data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -1
- data/ext/ice/cpp/src/Ice/Proxy.cpp +32 -13
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProxyFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/Reference.cpp +101 -86
- data/ext/ice/cpp/src/Ice/Reference.h +16 -9
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ReferenceFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPlugins.cpp +28 -0
- data/ext/ice/cpp/src/Ice/RegisterPlugins.h +25 -0
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +92 -86
- data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandler.h +4 -8
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +24 -16
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +5 -4
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +3 -3
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +16 -5
- data/ext/ice/cpp/src/Ice/RetryQueue.h +3 -2
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
- data/ext/ice/cpp/src/Ice/Router.cpp +27 -21
- data/ext/ice/cpp/src/Ice/RouterF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/RouterInfo.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RouterInfo.h +1 -1
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
- data/ext/ice/cpp/src/Ice/Selector.cpp +480 -1
- data/ext/ice/cpp/src/Ice/Selector.h +130 -1
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +11 -5
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +10 -4
- data/ext/ice/cpp/src/Ice/ServantManager.cpp +29 -23
- data/ext/ice/cpp/src/Ice/ServantManager.h +1 -1
- data/ext/ice/cpp/src/Ice/SharedContext.h +1 -1
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +10 -4
- data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +1 -1
- data/ext/ice/cpp/src/Ice/SlicedData.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Stream.cpp +1 -1
- data/ext/ice/cpp/src/Ice/StreamI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/StreamI.h +1 -1
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +30 -22
- data/ext/ice/cpp/src/Ice/StreamSocket.h +7 -4
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +1 -1
- data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/SysLoggerI.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +8 -8
- data/ext/ice/cpp/src/Ice/TcpAcceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +21 -38
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +5 -6
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +29 -4
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +7 -2
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +2 -2
- data/ext/ice/cpp/src/Ice/ThreadPool.h +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +2 -2
- data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevelsF.h +1 -1
- data/ext/ice/cpp/src/Ice/TraceUtil.cpp +16 -7
- data/ext/ice/cpp/src/Ice/TraceUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Transceiver.h +2 -1
- data/ext/ice/cpp/src/Ice/TransceiverF.h +1 -1
- data/ext/ice/cpp/src/Ice/UdpConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +13 -39
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +2 -5
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +46 -10
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +3 -2
- data/ext/ice/cpp/src/Ice/Version.cpp +12 -6
- data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/WSAcceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/WSConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/WSConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +6 -38
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +12 -1
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +31 -35
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +13 -1
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +66 -60
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +106 -100
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +76 -36
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +19 -6
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +1 -1
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +452 -0
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +732 -0
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +520 -0
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.h +36 -0
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +8 -8
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/Certificate.cpp +49 -47
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +13 -5
- data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +10 -38
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +4 -3
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +13 -5
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +2 -2
- data/ext/ice/cpp/src/IceSSL/Instance.h +1 -1
- data/ext/ice/cpp/src/IceSSL/InstanceF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +107 -111
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +130 -47
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +11 -3
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +8 -14
- data/ext/ice/cpp/src/IceSSL/PluginI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/RFC2253.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +238 -156
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +93 -66
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +7 -3
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +2 -2
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +32 -35
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +244 -360
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +59 -29
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +8 -4
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/TrustManager.h +1 -1
- data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/Util.cpp +427 -620
- data/ext/ice/cpp/src/IceSSL/Util.h +72 -15
- data/ext/ice/cpp/src/IceUtil/ArgVector.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ArgVector.h +1 -1
- data/ext/ice/cpp/src/IceUtil/Cond.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +1 -1
- data/ext/ice/cpp/src/IceUtil/CountDownLatch.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Exception.cpp +105 -96
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +2 -1
- data/ext/ice/cpp/src/IceUtil/FileUtil.h +9 -1
- data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Options.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +12 -25
- data/ext/ice/cpp/src/IceUtil/Random.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/SHA1.cpp +72 -10
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +3 -132
- data/ext/ice/cpp/src/IceUtil/StopWatch.h +1 -1
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Thread.cpp +16 -1
- data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Timer.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Unicode.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Unicode.h +1 -1
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +62 -55
- data/ext/ice/cpp/src/Slice/Checksum.cpp +1 -1
- data/ext/ice/cpp/src/Slice/CsUtil.cpp +8 -29
- data/ext/ice/cpp/src/Slice/DotNetNames.cpp +1 -1
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Grammar.cpp +1 -1
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +145 -172
- data/ext/ice/cpp/src/Slice/MD5.cpp +1 -1
- data/ext/ice/cpp/src/Slice/MD5.h +1 -1
- data/ext/ice/cpp/src/Slice/ObjCUtil.cpp +1310 -0
- data/ext/ice/cpp/src/Slice/PHPUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Parser.cpp +65 -187
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +61 -9
- data/ext/ice/cpp/src/Slice/Python.cpp +36 -3
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +10 -10
- data/ext/ice/cpp/src/Slice/Ruby.cpp +34 -3
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +8 -7
- data/ext/ice/cpp/src/Slice/Scanner.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Util.cpp +137 -30
- data/ext/ice/mcpp/LICENSE +29 -0
- data/ext/ice/mcpp/Makefile +60 -0
- data/ext/ice/mcpp/Makefile.mak +46 -0
- data/ext/ice/mcpp/README.md +30 -0
- data/ext/ice/mcpp/config.h +89 -0
- data/ext/ice/mcpp/configed.H +1 -146
- data/ext/ice/mcpp/directive.c +115 -410
- data/ext/ice/mcpp/eval.c +38 -377
- data/ext/ice/mcpp/expand.c +155 -852
- data/ext/ice/mcpp/internal.H +10 -44
- data/ext/ice/mcpp/main.c +6 -345
- data/ext/ice/mcpp/mbchar.c +17 -654
- data/ext/ice/mcpp/mcpp.gyp +62 -0
- data/ext/ice/mcpp/support.c +116 -943
- data/ext/ice/mcpp/system.H +0 -23
- data/ext/ice/mcpp/system.c +81 -2321
- data/ice.gemspec +3 -4
- data/lib/Glacier2.rb +1 -1
- data/lib/Glacier2/Metrics.rb +2 -2
- data/lib/Glacier2/PermissionsVerifier.rb +2 -2
- data/lib/Glacier2/PermissionsVerifierF.rb +2 -2
- data/lib/Glacier2/Router.rb +2 -2
- data/lib/Glacier2/RouterF.rb +2 -2
- data/lib/Glacier2/SSLInfo.rb +2 -2
- data/lib/Glacier2/Session.rb +2 -2
- data/lib/Ice.rb +1 -1
- data/lib/Ice/BuiltinSequences.rb +2 -2
- data/lib/Ice/Communicator.rb +2 -2
- data/lib/Ice/CommunicatorF.rb +2 -2
- data/lib/Ice/Connection.rb +26 -14
- data/lib/Ice/ConnectionF.rb +2 -2
- data/lib/Ice/Current.rb +2 -2
- data/lib/Ice/Endpoint.rb +4 -2
- data/lib/Ice/EndpointF.rb +2 -2
- data/lib/Ice/EndpointTypes.rb +2 -2
- data/lib/Ice/FacetMap.rb +2 -2
- data/lib/Ice/Identity.rb +2 -2
- data/lib/Ice/ImplicitContext.rb +2 -2
- data/lib/Ice/ImplicitContextF.rb +2 -2
- data/lib/Ice/Instrumentation.rb +2 -2
- data/lib/Ice/InstrumentationF.rb +2 -2
- data/lib/Ice/LocalException.rb +2 -2
- data/lib/Ice/Locator.rb +2 -2
- data/lib/Ice/LocatorF.rb +2 -2
- data/lib/Ice/Logger.rb +2 -2
- data/lib/Ice/LoggerF.rb +2 -2
- data/lib/Ice/Metrics.rb +2 -2
- data/lib/Ice/ObjectAdapterF.rb +2 -2
- data/lib/Ice/ObjectFactory.rb +2 -2
- data/lib/Ice/ObjectFactoryF.rb +2 -2
- data/lib/Ice/Plugin.rb +2 -2
- data/lib/Ice/PluginF.rb +2 -2
- data/lib/Ice/Process.rb +2 -2
- data/lib/Ice/ProcessF.rb +2 -2
- data/lib/Ice/Properties.rb +2 -2
- data/lib/Ice/PropertiesAdmin.rb +2 -2
- data/lib/Ice/PropertiesF.rb +2 -2
- data/lib/Ice/Router.rb +2 -2
- data/lib/Ice/RouterF.rb +2 -2
- data/lib/Ice/SliceChecksumDict.rb +2 -2
- data/lib/Ice/Version.rb +2 -2
- data/lib/IceBox.rb +1 -1
- data/lib/IceBox/IceBox.rb +2 -2
- data/lib/IceGrid.rb +1 -1
- data/lib/IceGrid/Admin.rb +2 -2
- data/lib/IceGrid/Descriptor.rb +2 -2
- data/lib/IceGrid/Exception.rb +2 -2
- data/lib/IceGrid/FileParser.rb +2 -2
- data/lib/IceGrid/Locator.rb +2 -2
- data/lib/IceGrid/Observer.rb +2 -2
- data/lib/IceGrid/Query.rb +2 -2
- data/lib/IceGrid/Registry.rb +2 -2
- data/lib/IceGrid/Session.rb +2 -2
- data/lib/IceGrid/UserAccountMapper.rb +2 -2
- data/lib/IcePatch2.rb +1 -1
- data/lib/IcePatch2/FileInfo.rb +52 -2
- data/lib/IcePatch2/FileServer.rb +33 -4
- data/lib/IceStorm.rb +1 -1
- data/lib/IceStorm/IceStorm.rb +2 -2
- data/lib/IceStorm/Metrics.rb +2 -2
- data/slice/Freeze/BackgroundSaveEvictor.ice +2 -2
- data/slice/Freeze/CatalogData.ice +2 -2
- data/slice/Freeze/Connection.ice +2 -2
- data/slice/Freeze/ConnectionF.ice +2 -2
- data/slice/Freeze/DB.ice +2 -2
- data/slice/Freeze/Evictor.ice +2 -2
- data/slice/Freeze/EvictorF.ice +2 -2
- data/slice/Freeze/EvictorStorage.ice +2 -2
- data/slice/Freeze/Exception.ice +2 -2
- data/slice/Freeze/Transaction.ice +2 -2
- data/slice/Freeze/TransactionalEvictor.ice +2 -2
- data/slice/Glacier2/Metrics.ice +7 -6
- data/slice/Glacier2/PermissionsVerifier.ice +4 -3
- data/slice/Glacier2/PermissionsVerifierF.ice +3 -2
- data/slice/Glacier2/Router.ice +4 -3
- data/slice/Glacier2/RouterF.ice +3 -2
- data/slice/Glacier2/SSLInfo.ice +3 -2
- data/slice/Glacier2/Session.ice +12 -11
- data/slice/Ice/BuiltinSequences.ice +4 -3
- data/slice/Ice/Communicator.ice +22 -25
- data/slice/Ice/CommunicatorF.ice +3 -2
- data/slice/Ice/Connection.ice +39 -11
- data/slice/Ice/ConnectionF.ice +3 -2
- data/slice/Ice/Current.ice +4 -3
- data/slice/Ice/Endpoint.ice +11 -3
- data/slice/Ice/EndpointF.ice +3 -2
- data/slice/Ice/EndpointTypes.ice +3 -2
- data/slice/Ice/FacetMap.ice +3 -2
- data/slice/Ice/Identity.ice +3 -2
- data/slice/Ice/ImplicitContext.ice +3 -2
- data/slice/Ice/ImplicitContextF.ice +3 -2
- data/slice/Ice/Instrumentation.ice +4 -2
- data/slice/Ice/InstrumentationF.ice +4 -2
- data/slice/Ice/LocalException.ice +29 -10
- data/slice/Ice/Locator.ice +5 -3
- data/slice/Ice/LocatorF.ice +3 -2
- data/slice/Ice/Logger.ice +3 -2
- data/slice/Ice/LoggerF.ice +3 -2
- data/slice/Ice/Metrics.ice +15 -14
- data/slice/Ice/ObjectAdapter.ice +5 -4
- data/slice/Ice/ObjectAdapterF.ice +3 -2
- data/slice/Ice/ObjectFactory.ice +3 -2
- data/slice/Ice/ObjectFactoryF.ice +3 -2
- data/slice/Ice/Plugin.ice +3 -2
- data/slice/Ice/PluginF.ice +3 -2
- data/slice/Ice/Process.ice +3 -2
- data/slice/Ice/ProcessF.ice +3 -2
- data/slice/Ice/Properties.ice +3 -2
- data/slice/Ice/PropertiesAdmin.ice +3 -2
- data/slice/Ice/PropertiesF.ice +3 -2
- data/slice/Ice/RemoteLogger.ice +3 -2
- data/slice/Ice/Router.ice +3 -2
- data/slice/Ice/RouterF.ice +3 -2
- data/slice/Ice/ServantLocator.ice +3 -2
- data/slice/Ice/ServantLocatorF.ice +3 -2
- data/slice/Ice/SliceChecksumDict.ice +3 -2
- data/slice/Ice/Version.ice +3 -2
- data/slice/IceBox/IceBox.ice +2 -2
- data/slice/IceDiscovery/IceDiscovery.ice +2 -2
- data/slice/IceGrid/Admin.ice +49 -48
- data/slice/IceGrid/Descriptor.ice +3 -2
- data/slice/IceGrid/Exception.ice +6 -5
- data/slice/IceGrid/FileParser.ice +4 -3
- data/slice/IceGrid/Locator.ice +4 -3
- data/slice/IceGrid/Observer.ice +28 -27
- data/slice/IceGrid/PluginFacade.ice +3 -2
- data/slice/IceGrid/Query.ice +3 -2
- data/slice/IceGrid/Registry.ice +4 -3
- data/slice/IceGrid/Session.ice +9 -8
- data/slice/IceGrid/UserAccountMapper.ice +4 -3
- data/slice/{IceGrid/Discovery.ice → IceLocatorDiscovery/IceLocatorDiscovery.ice} +12 -14
- data/slice/IcePatch2/FileInfo.ice +31 -2
- data/slice/IcePatch2/FileServer.ice +63 -5
- data/slice/IceSSL/ConnectionInfo.ice +17 -2
- data/slice/IceSSL/EndpointInfo.ice +21 -3
- data/slice/IceStorm/IceStorm.ice +3 -2
- data/slice/IceStorm/Metrics.ice +4 -3
- metadata +27 -23
- data/ext/ice/cpp/include/Ice/Makefile +0 -26
- data/ext/ice/cpp/include/IceSSL/Makefile +0 -26
- data/ext/ice/cpp/include/IceUtil/Makefile +0 -26
- data/ext/ice/cpp/include/Slice/Makefile +0 -26
- data/ext/ice/cpp/src/Ice/Application.cpp +0 -760
- data/ext/ice/cpp/src/Ice/EventLoggerMsg.h +0 -53
- data/ext/ice/cpp/src/Ice/Makefile +0 -190
- data/ext/ice/cpp/src/Ice/Service.cpp +0 -1897
- data/ext/ice/cpp/src/IceDiscovery/Makefile +0 -61
- data/ext/ice/cpp/src/IceSSL/Makefile +0 -82
- data/ext/ice/cpp/src/IceUtil/Makefile +0 -68
- data/ext/ice/cpp/src/Slice/Makefile +0 -65
- data/ext/ice/mcpp/config.h.Darwin +0 -227
- data/ext/ice/mcpp/config.h.Linux +0 -227
- data/ext/ice/mcpp/config.h.MINGW +0 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
@@ -63,6 +63,24 @@ typedef IceUtil::Handle<MetricsAdminI> MetricsAdminIPtr;
|
|
|
63
63
|
class RequestHandlerFactory;
|
|
64
64
|
typedef IceUtil::Handle<RequestHandlerFactory> RequestHandlerFactoryPtr;
|
|
65
65
|
|
|
66
|
+
//
|
|
67
|
+
// Structure to track warnings for attempts to set socket buffer sizes
|
|
68
|
+
//
|
|
69
|
+
struct BufSizeWarnInfo
|
|
70
|
+
{
|
|
71
|
+
// Whether send size warning has been emitted
|
|
72
|
+
bool sndWarn;
|
|
73
|
+
|
|
74
|
+
// The send size for which the warning wwas emitted
|
|
75
|
+
int sndSize;
|
|
76
|
+
|
|
77
|
+
// Whether receive size warning has been emitted
|
|
78
|
+
bool rcvWarn;
|
|
79
|
+
|
|
80
|
+
// The receive size for which the warning wwas emitted
|
|
81
|
+
int rcvSize;
|
|
82
|
+
};
|
|
83
|
+
|
|
66
84
|
class Instance : public IceUtil::Shared, public IceUtil::Monitor<IceUtil::RecMutex>
|
|
67
85
|
{
|
|
68
86
|
public:
|
|
@@ -118,7 +136,11 @@ public:
|
|
|
118
136
|
|
|
119
137
|
IceUtil::StringConverterPtr getStringConverter() const { return _stringConverter; }
|
|
120
138
|
IceUtil::WstringConverterPtr getWstringConverter() const { return _wstringConverter; }
|
|
121
|
-
|
|
139
|
+
|
|
140
|
+
BufSizeWarnInfo getBufSizeWarn(Ice::Short type);
|
|
141
|
+
void setSndBufSizeWarn(Ice::Short type, int size);
|
|
142
|
+
void setRcvBufSizeWarn(Ice::Short type, int size);
|
|
143
|
+
|
|
122
144
|
private:
|
|
123
145
|
|
|
124
146
|
Instance(const Ice::CommunicatorPtr&, const Ice::InitializationData&);
|
|
@@ -134,6 +156,8 @@ private:
|
|
|
134
156
|
void addAllAdminFacets();
|
|
135
157
|
void setServerProcessProxy(const Ice::ObjectAdapterPtr&, const Ice::Identity&);
|
|
136
158
|
|
|
159
|
+
BufSizeWarnInfo getBufSizeWarnInternal(Ice::Short type);
|
|
160
|
+
|
|
137
161
|
enum State
|
|
138
162
|
{
|
|
139
163
|
StateActive,
|
|
@@ -177,6 +201,8 @@ private:
|
|
|
177
201
|
Ice::Identity _adminIdentity;
|
|
178
202
|
std::set<std::string> _adminFacetFilter;
|
|
179
203
|
IceInternal::MetricsAdminIPtr _metricsAdmin;
|
|
204
|
+
std::map<Ice::Short, BufSizeWarnInfo> _setBufSizeWarn;
|
|
205
|
+
IceUtil::Mutex _setBufSizeWarnMutex;
|
|
180
206
|
};
|
|
181
207
|
|
|
182
208
|
class ProcessI : public Ice::Process
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
7
7
|
//
|
|
8
8
|
// **********************************************************************
|
|
9
9
|
//
|
|
10
|
-
// Ice version 3.
|
|
10
|
+
// Ice version 3.6.0
|
|
11
11
|
//
|
|
12
12
|
// <auto-generated>
|
|
13
13
|
//
|
|
@@ -28,8 +28,14 @@
|
|
|
28
28
|
#include <IceUtil/PopDisableWarnings.h>
|
|
29
29
|
|
|
30
30
|
#ifndef ICE_IGNORE_VERSION
|
|
31
|
-
# if ICE_INT_VERSION
|
|
32
|
-
# error Ice version mismatch
|
|
31
|
+
# if ICE_INT_VERSION / 100 != 306
|
|
32
|
+
# error Ice version mismatch!
|
|
33
|
+
# endif
|
|
34
|
+
# if ICE_INT_VERSION % 100 > 50
|
|
35
|
+
# error Beta header file detected
|
|
36
|
+
# endif
|
|
37
|
+
# if ICE_INT_VERSION % 100 < 0
|
|
38
|
+
# error Ice patch level mismatch!
|
|
33
39
|
# endif
|
|
34
40
|
#endif
|
|
35
41
|
|
|
@@ -47,22 +53,22 @@ namespace Ice
|
|
|
47
53
|
{
|
|
48
54
|
}
|
|
49
55
|
|
|
50
|
-
|
|
56
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::Observer* p) { return p; }
|
|
51
57
|
|
|
52
|
-
|
|
58
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::ThreadObserver* p) { return p; }
|
|
53
59
|
|
|
54
|
-
|
|
60
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::ConnectionObserver* p) { return p; }
|
|
55
61
|
|
|
56
|
-
|
|
62
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::DispatchObserver* p) { return p; }
|
|
57
63
|
|
|
58
|
-
|
|
64
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::ChildInvocationObserver* p) { return p; }
|
|
59
65
|
|
|
60
|
-
|
|
66
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::RemoteObserver* p) { return p; }
|
|
61
67
|
|
|
62
|
-
|
|
68
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::CollocatedObserver* p) { return p; }
|
|
63
69
|
|
|
64
|
-
|
|
70
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::InvocationObserver* p) { return p; }
|
|
65
71
|
|
|
66
|
-
|
|
72
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::ObserverUpdater* p) { return p; }
|
|
67
73
|
|
|
68
|
-
|
|
74
|
+
ICE_API ::Ice::LocalObject* Ice::Instrumentation::upCast(::Ice::Instrumentation::CommunicatorObserver* p) { return p; }
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
7
7
|
//
|
|
8
8
|
// **********************************************************************
|
|
9
9
|
//
|
|
10
|
-
// Ice version 3.
|
|
10
|
+
// Ice version 3.6.0
|
|
11
11
|
//
|
|
12
12
|
// <auto-generated>
|
|
13
13
|
//
|
|
@@ -27,8 +27,14 @@
|
|
|
27
27
|
#include <IceUtil/PopDisableWarnings.h>
|
|
28
28
|
|
|
29
29
|
#ifndef ICE_IGNORE_VERSION
|
|
30
|
-
# if ICE_INT_VERSION
|
|
31
|
-
# error Ice version mismatch
|
|
30
|
+
# if ICE_INT_VERSION / 100 != 306
|
|
31
|
+
# error Ice version mismatch!
|
|
32
|
+
# endif
|
|
33
|
+
# if ICE_INT_VERSION % 100 > 50
|
|
34
|
+
# error Beta header file detected
|
|
35
|
+
# endif
|
|
36
|
+
# if ICE_INT_VERSION % 100 < 0
|
|
37
|
+
# error Ice patch level mismatch!
|
|
32
38
|
# endif
|
|
33
39
|
#endif
|
|
34
40
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
7
7
|
//
|
|
8
8
|
// **********************************************************************
|
|
9
9
|
//
|
|
10
|
-
// Ice version 3.
|
|
10
|
+
// Ice version 3.6.0
|
|
11
11
|
//
|
|
12
12
|
// <auto-generated>
|
|
13
13
|
//
|
|
@@ -28,8 +28,14 @@
|
|
|
28
28
|
#include <IceUtil/PopDisableWarnings.h>
|
|
29
29
|
|
|
30
30
|
#ifndef ICE_IGNORE_VERSION
|
|
31
|
-
# if ICE_INT_VERSION
|
|
32
|
-
# error Ice version mismatch
|
|
31
|
+
# if ICE_INT_VERSION / 100 != 306
|
|
32
|
+
# error Ice version mismatch!
|
|
33
|
+
# endif
|
|
34
|
+
# if ICE_INT_VERSION % 100 > 50
|
|
35
|
+
# error Beta header file detected
|
|
36
|
+
# endif
|
|
37
|
+
# if ICE_INT_VERSION % 100 < 0
|
|
38
|
+
# error Ice patch level mismatch!
|
|
33
39
|
# endif
|
|
34
40
|
#endif
|
|
35
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// **********************************************************************
|
|
2
2
|
//
|
|
3
|
-
// Copyright (c) 2003-
|
|
3
|
+
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
|
4
4
|
//
|
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
|
7
7
|
//
|
|
8
8
|
// **********************************************************************
|
|
9
9
|
//
|
|
10
|
-
// Ice version 3.
|
|
10
|
+
// Ice version 3.6.0
|
|
11
11
|
//
|
|
12
12
|
// <auto-generated>
|
|
13
13
|
//
|
|
@@ -32,8 +32,14 @@
|
|
|
32
32
|
#include <IceUtil/PopDisableWarnings.h>
|
|
33
33
|
|
|
34
34
|
#ifndef ICE_IGNORE_VERSION
|
|
35
|
-
# if ICE_INT_VERSION
|
|
36
|
-
# error Ice version mismatch
|
|
35
|
+
# if ICE_INT_VERSION / 100 != 306
|
|
36
|
+
# error Ice version mismatch!
|
|
37
|
+
# endif
|
|
38
|
+
# if ICE_INT_VERSION % 100 > 50
|
|
39
|
+
# error Beta header file detected
|
|
40
|
+
# endif
|
|
41
|
+
# if ICE_INT_VERSION % 100 < 0
|
|
42
|
+
# error Ice patch level mismatch!
|
|
37
43
|
# endif
|
|
38
44
|
#endif
|
|
39
45
|
|
|
@@ -479,9 +485,9 @@ IceAsync::Ice::AMD_LocatorRegistry_setServerProcessProxy::ice_exception(const ::
|
|
|
479
485
|
}
|
|
480
486
|
}
|
|
481
487
|
#ifdef __SUNPRO_CC
|
|
482
|
-
class
|
|
488
|
+
class ICE_API IceProxy::Ice::Locator;
|
|
483
489
|
#endif
|
|
484
|
-
|
|
490
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(::IceProxy::Ice::Locator* p) { return p; }
|
|
485
491
|
|
|
486
492
|
void
|
|
487
493
|
::IceProxy::Ice::__read(::IceInternal::BasicStream* __is, ::IceInternal::ProxyHandle< ::IceProxy::Ice::Locator>& v)
|
|
@@ -500,14 +506,14 @@ void
|
|
|
500
506
|
}
|
|
501
507
|
|
|
502
508
|
::Ice::ObjectPrx
|
|
503
|
-
IceProxy::Ice::Locator::findObjectById(const ::Ice::Identity&
|
|
509
|
+
IceProxy::Ice::Locator::findObjectById(const ::Ice::Identity& __p_id, const ::Ice::Context* __ctx)
|
|
504
510
|
{
|
|
505
511
|
__checkTwowayOnly(__Ice__Locator__findObjectById_name);
|
|
506
512
|
::IceInternal::Outgoing __og(this, __Ice__Locator__findObjectById_name, ::Ice::Nonmutating, __ctx);
|
|
507
513
|
try
|
|
508
514
|
{
|
|
509
515
|
::IceInternal::BasicStream* __os = __og.startWriteParams(::Ice::DefaultFormat);
|
|
510
|
-
__os->write(
|
|
516
|
+
__os->write(__p_id);
|
|
511
517
|
__og.endWriteParams();
|
|
512
518
|
}
|
|
513
519
|
catch(const ::Ice::LocalException& __ex)
|
|
@@ -538,7 +544,7 @@ IceProxy::Ice::Locator::findObjectById(const ::Ice::Identity& id, const ::Ice::C
|
|
|
538
544
|
}
|
|
539
545
|
|
|
540
546
|
::Ice::AsyncResultPtr
|
|
541
|
-
IceProxy::Ice::Locator::begin_findObjectById(const ::Ice::Identity&
|
|
547
|
+
IceProxy::Ice::Locator::begin_findObjectById(const ::Ice::Identity& __p_id, const ::Ice::Context* __ctx, const ::IceInternal::CallbackBasePtr& __del, const ::Ice::LocalObjectPtr& __cookie)
|
|
542
548
|
{
|
|
543
549
|
__checkAsyncTwowayOnly(__Ice__Locator__findObjectById_name);
|
|
544
550
|
::IceInternal::OutgoingAsyncPtr __result = new ::IceInternal::OutgoingAsync(this, __Ice__Locator__findObjectById_name, __del, __cookie);
|
|
@@ -546,7 +552,7 @@ IceProxy::Ice::Locator::begin_findObjectById(const ::Ice::Identity& id, const ::
|
|
|
546
552
|
{
|
|
547
553
|
__result->prepare(__Ice__Locator__findObjectById_name, ::Ice::Nonmutating, __ctx);
|
|
548
554
|
::IceInternal::BasicStream* __os = __result->startWriteParams(::Ice::DefaultFormat);
|
|
549
|
-
__os->write(
|
|
555
|
+
__os->write(__p_id);
|
|
550
556
|
__result->endWriteParams();
|
|
551
557
|
__result->invoke();
|
|
552
558
|
}
|
|
@@ -560,7 +566,7 @@ IceProxy::Ice::Locator::begin_findObjectById(const ::Ice::Identity& id, const ::
|
|
|
560
566
|
#ifdef ICE_CPP11
|
|
561
567
|
|
|
562
568
|
::Ice::AsyncResultPtr
|
|
563
|
-
IceProxy::Ice::Locator::__begin_findObjectById(const ::Ice::Identity&
|
|
569
|
+
IceProxy::Ice::Locator::__begin_findObjectById(const ::Ice::Identity& __p_id, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent)
|
|
564
570
|
{
|
|
565
571
|
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
|
|
566
572
|
{
|
|
@@ -596,7 +602,7 @@ IceProxy::Ice::Locator::__begin_findObjectById(const ::Ice::Identity& id, const
|
|
|
596
602
|
|
|
597
603
|
::std::function<void (const ::Ice::ObjectPrx&)> _response;
|
|
598
604
|
};
|
|
599
|
-
return begin_findObjectById(
|
|
605
|
+
return begin_findObjectById(__p_id, __ctx, new Cpp11CB(__response, __exception, __sent));
|
|
600
606
|
}
|
|
601
607
|
#endif
|
|
602
608
|
|
|
@@ -627,14 +633,14 @@ IceProxy::Ice::Locator::end_findObjectById(const ::Ice::AsyncResultPtr& __result
|
|
|
627
633
|
}
|
|
628
634
|
|
|
629
635
|
::Ice::ObjectPrx
|
|
630
|
-
IceProxy::Ice::Locator::findAdapterById(const ::std::string&
|
|
636
|
+
IceProxy::Ice::Locator::findAdapterById(const ::std::string& __p_id, const ::Ice::Context* __ctx)
|
|
631
637
|
{
|
|
632
638
|
__checkTwowayOnly(__Ice__Locator__findAdapterById_name);
|
|
633
639
|
::IceInternal::Outgoing __og(this, __Ice__Locator__findAdapterById_name, ::Ice::Nonmutating, __ctx);
|
|
634
640
|
try
|
|
635
641
|
{
|
|
636
642
|
::IceInternal::BasicStream* __os = __og.startWriteParams(::Ice::DefaultFormat);
|
|
637
|
-
__os->write(
|
|
643
|
+
__os->write(__p_id);
|
|
638
644
|
__og.endWriteParams();
|
|
639
645
|
}
|
|
640
646
|
catch(const ::Ice::LocalException& __ex)
|
|
@@ -665,7 +671,7 @@ IceProxy::Ice::Locator::findAdapterById(const ::std::string& id, const ::Ice::Co
|
|
|
665
671
|
}
|
|
666
672
|
|
|
667
673
|
::Ice::AsyncResultPtr
|
|
668
|
-
IceProxy::Ice::Locator::begin_findAdapterById(const ::std::string&
|
|
674
|
+
IceProxy::Ice::Locator::begin_findAdapterById(const ::std::string& __p_id, const ::Ice::Context* __ctx, const ::IceInternal::CallbackBasePtr& __del, const ::Ice::LocalObjectPtr& __cookie)
|
|
669
675
|
{
|
|
670
676
|
__checkAsyncTwowayOnly(__Ice__Locator__findAdapterById_name);
|
|
671
677
|
::IceInternal::OutgoingAsyncPtr __result = new ::IceInternal::OutgoingAsync(this, __Ice__Locator__findAdapterById_name, __del, __cookie);
|
|
@@ -673,7 +679,7 @@ IceProxy::Ice::Locator::begin_findAdapterById(const ::std::string& id, const ::I
|
|
|
673
679
|
{
|
|
674
680
|
__result->prepare(__Ice__Locator__findAdapterById_name, ::Ice::Nonmutating, __ctx);
|
|
675
681
|
::IceInternal::BasicStream* __os = __result->startWriteParams(::Ice::DefaultFormat);
|
|
676
|
-
__os->write(
|
|
682
|
+
__os->write(__p_id);
|
|
677
683
|
__result->endWriteParams();
|
|
678
684
|
__result->invoke();
|
|
679
685
|
}
|
|
@@ -687,7 +693,7 @@ IceProxy::Ice::Locator::begin_findAdapterById(const ::std::string& id, const ::I
|
|
|
687
693
|
#ifdef ICE_CPP11
|
|
688
694
|
|
|
689
695
|
::Ice::AsyncResultPtr
|
|
690
|
-
IceProxy::Ice::Locator::__begin_findAdapterById(const ::std::string&
|
|
696
|
+
IceProxy::Ice::Locator::__begin_findAdapterById(const ::std::string& __p_id, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent)
|
|
691
697
|
{
|
|
692
698
|
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
|
|
693
699
|
{
|
|
@@ -723,7 +729,7 @@ IceProxy::Ice::Locator::__begin_findAdapterById(const ::std::string& id, const :
|
|
|
723
729
|
|
|
724
730
|
::std::function<void (const ::Ice::ObjectPrx&)> _response;
|
|
725
731
|
};
|
|
726
|
-
return begin_findAdapterById(
|
|
732
|
+
return begin_findAdapterById(__p_id, __ctx, new Cpp11CB(__response, __exception, __sent));
|
|
727
733
|
}
|
|
728
734
|
#endif
|
|
729
735
|
|
|
@@ -873,9 +879,9 @@ IceProxy::Ice::Locator::__newInstance() const
|
|
|
873
879
|
return new Locator;
|
|
874
880
|
}
|
|
875
881
|
#ifdef __SUNPRO_CC
|
|
876
|
-
class
|
|
882
|
+
class ICE_API IceProxy::Ice::LocatorRegistry;
|
|
877
883
|
#endif
|
|
878
|
-
|
|
884
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(::IceProxy::Ice::LocatorRegistry* p) { return p; }
|
|
879
885
|
|
|
880
886
|
void
|
|
881
887
|
::IceProxy::Ice::__read(::IceInternal::BasicStream* __is, ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorRegistry>& v)
|
|
@@ -894,15 +900,15 @@ void
|
|
|
894
900
|
}
|
|
895
901
|
|
|
896
902
|
void
|
|
897
|
-
IceProxy::Ice::LocatorRegistry::setAdapterDirectProxy(const ::std::string&
|
|
903
|
+
IceProxy::Ice::LocatorRegistry::setAdapterDirectProxy(const ::std::string& __p_id, const ::Ice::ObjectPrx& __p_proxy, const ::Ice::Context* __ctx)
|
|
898
904
|
{
|
|
899
905
|
__checkTwowayOnly(__Ice__LocatorRegistry__setAdapterDirectProxy_name);
|
|
900
906
|
::IceInternal::Outgoing __og(this, __Ice__LocatorRegistry__setAdapterDirectProxy_name, ::Ice::Idempotent, __ctx);
|
|
901
907
|
try
|
|
902
908
|
{
|
|
903
909
|
::IceInternal::BasicStream* __os = __og.startWriteParams(::Ice::DefaultFormat);
|
|
904
|
-
__os->write(
|
|
905
|
-
__os->write(
|
|
910
|
+
__os->write(__p_id);
|
|
911
|
+
__os->write(__p_proxy);
|
|
906
912
|
__og.endWriteParams();
|
|
907
913
|
}
|
|
908
914
|
catch(const ::Ice::LocalException& __ex)
|
|
@@ -932,7 +938,7 @@ IceProxy::Ice::LocatorRegistry::setAdapterDirectProxy(const ::std::string& id, c
|
|
|
932
938
|
}
|
|
933
939
|
|
|
934
940
|
::Ice::AsyncResultPtr
|
|
935
|
-
IceProxy::Ice::LocatorRegistry::begin_setAdapterDirectProxy(const ::std::string&
|
|
941
|
+
IceProxy::Ice::LocatorRegistry::begin_setAdapterDirectProxy(const ::std::string& __p_id, const ::Ice::ObjectPrx& __p_proxy, const ::Ice::Context* __ctx, const ::IceInternal::CallbackBasePtr& __del, const ::Ice::LocalObjectPtr& __cookie)
|
|
936
942
|
{
|
|
937
943
|
__checkAsyncTwowayOnly(__Ice__LocatorRegistry__setAdapterDirectProxy_name);
|
|
938
944
|
::IceInternal::OutgoingAsyncPtr __result = new ::IceInternal::OutgoingAsync(this, __Ice__LocatorRegistry__setAdapterDirectProxy_name, __del, __cookie);
|
|
@@ -940,8 +946,8 @@ IceProxy::Ice::LocatorRegistry::begin_setAdapterDirectProxy(const ::std::string&
|
|
|
940
946
|
{
|
|
941
947
|
__result->prepare(__Ice__LocatorRegistry__setAdapterDirectProxy_name, ::Ice::Idempotent, __ctx);
|
|
942
948
|
::IceInternal::BasicStream* __os = __result->startWriteParams(::Ice::DefaultFormat);
|
|
943
|
-
__os->write(
|
|
944
|
-
__os->write(
|
|
949
|
+
__os->write(__p_id);
|
|
950
|
+
__os->write(__p_proxy);
|
|
945
951
|
__result->endWriteParams();
|
|
946
952
|
__result->invoke();
|
|
947
953
|
}
|
|
@@ -955,7 +961,7 @@ IceProxy::Ice::LocatorRegistry::begin_setAdapterDirectProxy(const ::std::string&
|
|
|
955
961
|
#ifdef ICE_CPP11
|
|
956
962
|
|
|
957
963
|
::Ice::AsyncResultPtr
|
|
958
|
-
IceProxy::Ice::LocatorRegistry::__begin_setAdapterDirectProxy(const ::std::string&
|
|
964
|
+
IceProxy::Ice::LocatorRegistry::__begin_setAdapterDirectProxy(const ::std::string& __p_id, const ::Ice::ObjectPrx& __p_proxy, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent)
|
|
959
965
|
{
|
|
960
966
|
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
|
|
961
967
|
{
|
|
@@ -990,7 +996,7 @@ IceProxy::Ice::LocatorRegistry::__begin_setAdapterDirectProxy(const ::std::strin
|
|
|
990
996
|
|
|
991
997
|
::std::function<void ()> _response;
|
|
992
998
|
};
|
|
993
|
-
return begin_setAdapterDirectProxy(
|
|
999
|
+
return begin_setAdapterDirectProxy(__p_id, __p_proxy, __ctx, new Cpp11CB(__response, __exception, __sent));
|
|
994
1000
|
}
|
|
995
1001
|
#endif
|
|
996
1002
|
|
|
@@ -1021,16 +1027,16 @@ IceProxy::Ice::LocatorRegistry::end_setAdapterDirectProxy(const ::Ice::AsyncResu
|
|
|
1021
1027
|
}
|
|
1022
1028
|
|
|
1023
1029
|
void
|
|
1024
|
-
IceProxy::Ice::LocatorRegistry::setReplicatedAdapterDirectProxy(const ::std::string&
|
|
1030
|
+
IceProxy::Ice::LocatorRegistry::setReplicatedAdapterDirectProxy(const ::std::string& __p_adapterId, const ::std::string& __p_replicaGroupId, const ::Ice::ObjectPrx& __p_p, const ::Ice::Context* __ctx)
|
|
1025
1031
|
{
|
|
1026
1032
|
__checkTwowayOnly(__Ice__LocatorRegistry__setReplicatedAdapterDirectProxy_name);
|
|
1027
1033
|
::IceInternal::Outgoing __og(this, __Ice__LocatorRegistry__setReplicatedAdapterDirectProxy_name, ::Ice::Idempotent, __ctx);
|
|
1028
1034
|
try
|
|
1029
1035
|
{
|
|
1030
1036
|
::IceInternal::BasicStream* __os = __og.startWriteParams(::Ice::DefaultFormat);
|
|
1031
|
-
__os->write(
|
|
1032
|
-
__os->write(
|
|
1033
|
-
__os->write(
|
|
1037
|
+
__os->write(__p_adapterId);
|
|
1038
|
+
__os->write(__p_replicaGroupId);
|
|
1039
|
+
__os->write(__p_p);
|
|
1034
1040
|
__og.endWriteParams();
|
|
1035
1041
|
}
|
|
1036
1042
|
catch(const ::Ice::LocalException& __ex)
|
|
@@ -1064,7 +1070,7 @@ IceProxy::Ice::LocatorRegistry::setReplicatedAdapterDirectProxy(const ::std::str
|
|
|
1064
1070
|
}
|
|
1065
1071
|
|
|
1066
1072
|
::Ice::AsyncResultPtr
|
|
1067
|
-
IceProxy::Ice::LocatorRegistry::begin_setReplicatedAdapterDirectProxy(const ::std::string&
|
|
1073
|
+
IceProxy::Ice::LocatorRegistry::begin_setReplicatedAdapterDirectProxy(const ::std::string& __p_adapterId, const ::std::string& __p_replicaGroupId, const ::Ice::ObjectPrx& __p_p, const ::Ice::Context* __ctx, const ::IceInternal::CallbackBasePtr& __del, const ::Ice::LocalObjectPtr& __cookie)
|
|
1068
1074
|
{
|
|
1069
1075
|
__checkAsyncTwowayOnly(__Ice__LocatorRegistry__setReplicatedAdapterDirectProxy_name);
|
|
1070
1076
|
::IceInternal::OutgoingAsyncPtr __result = new ::IceInternal::OutgoingAsync(this, __Ice__LocatorRegistry__setReplicatedAdapterDirectProxy_name, __del, __cookie);
|
|
@@ -1072,9 +1078,9 @@ IceProxy::Ice::LocatorRegistry::begin_setReplicatedAdapterDirectProxy(const ::st
|
|
|
1072
1078
|
{
|
|
1073
1079
|
__result->prepare(__Ice__LocatorRegistry__setReplicatedAdapterDirectProxy_name, ::Ice::Idempotent, __ctx);
|
|
1074
1080
|
::IceInternal::BasicStream* __os = __result->startWriteParams(::Ice::DefaultFormat);
|
|
1075
|
-
__os->write(
|
|
1076
|
-
__os->write(
|
|
1077
|
-
__os->write(
|
|
1081
|
+
__os->write(__p_adapterId);
|
|
1082
|
+
__os->write(__p_replicaGroupId);
|
|
1083
|
+
__os->write(__p_p);
|
|
1078
1084
|
__result->endWriteParams();
|
|
1079
1085
|
__result->invoke();
|
|
1080
1086
|
}
|
|
@@ -1088,7 +1094,7 @@ IceProxy::Ice::LocatorRegistry::begin_setReplicatedAdapterDirectProxy(const ::st
|
|
|
1088
1094
|
#ifdef ICE_CPP11
|
|
1089
1095
|
|
|
1090
1096
|
::Ice::AsyncResultPtr
|
|
1091
|
-
IceProxy::Ice::LocatorRegistry::__begin_setReplicatedAdapterDirectProxy(const ::std::string&
|
|
1097
|
+
IceProxy::Ice::LocatorRegistry::__begin_setReplicatedAdapterDirectProxy(const ::std::string& __p_adapterId, const ::std::string& __p_replicaGroupId, const ::Ice::ObjectPrx& __p_p, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent)
|
|
1092
1098
|
{
|
|
1093
1099
|
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
|
|
1094
1100
|
{
|
|
@@ -1123,7 +1129,7 @@ IceProxy::Ice::LocatorRegistry::__begin_setReplicatedAdapterDirectProxy(const ::
|
|
|
1123
1129
|
|
|
1124
1130
|
::std::function<void ()> _response;
|
|
1125
1131
|
};
|
|
1126
|
-
return begin_setReplicatedAdapterDirectProxy(
|
|
1132
|
+
return begin_setReplicatedAdapterDirectProxy(__p_adapterId, __p_replicaGroupId, __p_p, __ctx, new Cpp11CB(__response, __exception, __sent));
|
|
1127
1133
|
}
|
|
1128
1134
|
#endif
|
|
1129
1135
|
|
|
@@ -1158,15 +1164,15 @@ IceProxy::Ice::LocatorRegistry::end_setReplicatedAdapterDirectProxy(const ::Ice:
|
|
|
1158
1164
|
}
|
|
1159
1165
|
|
|
1160
1166
|
void
|
|
1161
|
-
IceProxy::Ice::LocatorRegistry::setServerProcessProxy(const ::std::string&
|
|
1167
|
+
IceProxy::Ice::LocatorRegistry::setServerProcessProxy(const ::std::string& __p_id, const ::Ice::ProcessPrx& __p_proxy, const ::Ice::Context* __ctx)
|
|
1162
1168
|
{
|
|
1163
1169
|
__checkTwowayOnly(__Ice__LocatorRegistry__setServerProcessProxy_name);
|
|
1164
1170
|
::IceInternal::Outgoing __og(this, __Ice__LocatorRegistry__setServerProcessProxy_name, ::Ice::Idempotent, __ctx);
|
|
1165
1171
|
try
|
|
1166
1172
|
{
|
|
1167
1173
|
::IceInternal::BasicStream* __os = __og.startWriteParams(::Ice::DefaultFormat);
|
|
1168
|
-
__os->write(
|
|
1169
|
-
__os->write(
|
|
1174
|
+
__os->write(__p_id);
|
|
1175
|
+
__os->write(__p_proxy);
|
|
1170
1176
|
__og.endWriteParams();
|
|
1171
1177
|
}
|
|
1172
1178
|
catch(const ::Ice::LocalException& __ex)
|
|
@@ -1192,7 +1198,7 @@ IceProxy::Ice::LocatorRegistry::setServerProcessProxy(const ::std::string& id, c
|
|
|
1192
1198
|
}
|
|
1193
1199
|
|
|
1194
1200
|
::Ice::AsyncResultPtr
|
|
1195
|
-
IceProxy::Ice::LocatorRegistry::begin_setServerProcessProxy(const ::std::string&
|
|
1201
|
+
IceProxy::Ice::LocatorRegistry::begin_setServerProcessProxy(const ::std::string& __p_id, const ::Ice::ProcessPrx& __p_proxy, const ::Ice::Context* __ctx, const ::IceInternal::CallbackBasePtr& __del, const ::Ice::LocalObjectPtr& __cookie)
|
|
1196
1202
|
{
|
|
1197
1203
|
__checkAsyncTwowayOnly(__Ice__LocatorRegistry__setServerProcessProxy_name);
|
|
1198
1204
|
::IceInternal::OutgoingAsyncPtr __result = new ::IceInternal::OutgoingAsync(this, __Ice__LocatorRegistry__setServerProcessProxy_name, __del, __cookie);
|
|
@@ -1200,8 +1206,8 @@ IceProxy::Ice::LocatorRegistry::begin_setServerProcessProxy(const ::std::string&
|
|
|
1200
1206
|
{
|
|
1201
1207
|
__result->prepare(__Ice__LocatorRegistry__setServerProcessProxy_name, ::Ice::Idempotent, __ctx);
|
|
1202
1208
|
::IceInternal::BasicStream* __os = __result->startWriteParams(::Ice::DefaultFormat);
|
|
1203
|
-
__os->write(
|
|
1204
|
-
__os->write(
|
|
1209
|
+
__os->write(__p_id);
|
|
1210
|
+
__os->write(__p_proxy);
|
|
1205
1211
|
__result->endWriteParams();
|
|
1206
1212
|
__result->invoke();
|
|
1207
1213
|
}
|
|
@@ -1215,7 +1221,7 @@ IceProxy::Ice::LocatorRegistry::begin_setServerProcessProxy(const ::std::string&
|
|
|
1215
1221
|
#ifdef ICE_CPP11
|
|
1216
1222
|
|
|
1217
1223
|
::Ice::AsyncResultPtr
|
|
1218
|
-
IceProxy::Ice::LocatorRegistry::__begin_setServerProcessProxy(const ::std::string&
|
|
1224
|
+
IceProxy::Ice::LocatorRegistry::__begin_setServerProcessProxy(const ::std::string& __p_id, const ::Ice::ProcessPrx& __p_proxy, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent)
|
|
1219
1225
|
{
|
|
1220
1226
|
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
|
|
1221
1227
|
{
|
|
@@ -1250,7 +1256,7 @@ IceProxy::Ice::LocatorRegistry::__begin_setServerProcessProxy(const ::std::strin
|
|
|
1250
1256
|
|
|
1251
1257
|
::std::function<void ()> _response;
|
|
1252
1258
|
};
|
|
1253
|
-
return begin_setServerProcessProxy(
|
|
1259
|
+
return begin_setServerProcessProxy(__p_id, __p_proxy, __ctx, new Cpp11CB(__response, __exception, __sent));
|
|
1254
1260
|
}
|
|
1255
1261
|
#endif
|
|
1256
1262
|
|
|
@@ -1288,9 +1294,9 @@ IceProxy::Ice::LocatorRegistry::__newInstance() const
|
|
|
1288
1294
|
return new LocatorRegistry;
|
|
1289
1295
|
}
|
|
1290
1296
|
#ifdef __SUNPRO_CC
|
|
1291
|
-
class
|
|
1297
|
+
class ICE_API IceProxy::Ice::LocatorFinder;
|
|
1292
1298
|
#endif
|
|
1293
|
-
|
|
1299
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(::IceProxy::Ice::LocatorFinder* p) { return p; }
|
|
1294
1300
|
|
|
1295
1301
|
void
|
|
1296
1302
|
::IceProxy::Ice::__read(::IceInternal::BasicStream* __is, ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorFinder>& v)
|
|
@@ -1428,7 +1434,7 @@ IceProxy::Ice::LocatorFinder::__newInstance() const
|
|
|
1428
1434
|
return new LocatorFinder;
|
|
1429
1435
|
}
|
|
1430
1436
|
|
|
1431
|
-
|
|
1437
|
+
ICE_API ::Ice::Object* Ice::upCast(::Ice::Locator* p) { return p; }
|
|
1432
1438
|
|
|
1433
1439
|
namespace
|
|
1434
1440
|
{
|
|
@@ -1474,13 +1480,13 @@ Ice::Locator::___findObjectById(::IceInternal::Incoming& __inS, const ::Ice::Cur
|
|
|
1474
1480
|
{
|
|
1475
1481
|
__checkMode(::Ice::Idempotent, __current.mode);
|
|
1476
1482
|
::IceInternal::BasicStream* __is = __inS.startReadParams();
|
|
1477
|
-
::Ice::Identity
|
|
1478
|
-
__is->read(
|
|
1483
|
+
::Ice::Identity __p_id;
|
|
1484
|
+
__is->read(__p_id);
|
|
1479
1485
|
__inS.endReadParams();
|
|
1480
1486
|
::Ice::AMD_Locator_findObjectByIdPtr __cb = new IceAsync::Ice::AMD_Locator_findObjectById(__inS);
|
|
1481
1487
|
try
|
|
1482
1488
|
{
|
|
1483
|
-
findObjectById_async(__cb,
|
|
1489
|
+
findObjectById_async(__cb, __p_id, __current);
|
|
1484
1490
|
}
|
|
1485
1491
|
catch(const ::std::exception& __ex)
|
|
1486
1492
|
{
|
|
@@ -1498,13 +1504,13 @@ Ice::Locator::___findAdapterById(::IceInternal::Incoming& __inS, const ::Ice::Cu
|
|
|
1498
1504
|
{
|
|
1499
1505
|
__checkMode(::Ice::Idempotent, __current.mode);
|
|
1500
1506
|
::IceInternal::BasicStream* __is = __inS.startReadParams();
|
|
1501
|
-
::std::string
|
|
1502
|
-
__is->read(
|
|
1507
|
+
::std::string __p_id;
|
|
1508
|
+
__is->read(__p_id);
|
|
1503
1509
|
__inS.endReadParams();
|
|
1504
1510
|
::Ice::AMD_Locator_findAdapterByIdPtr __cb = new IceAsync::Ice::AMD_Locator_findAdapterById(__inS);
|
|
1505
1511
|
try
|
|
1506
1512
|
{
|
|
1507
|
-
findAdapterById_async(__cb,
|
|
1513
|
+
findAdapterById_async(__cb, __p_id, __current);
|
|
1508
1514
|
}
|
|
1509
1515
|
catch(const ::std::exception& __ex)
|
|
1510
1516
|
{
|
|
@@ -1603,7 +1609,7 @@ Ice::Locator::__readImpl(::IceInternal::BasicStream* __is)
|
|
|
1603
1609
|
__is->endReadSlice();
|
|
1604
1610
|
}
|
|
1605
1611
|
|
|
1606
|
-
void
|
|
1612
|
+
void ICE_API
|
|
1607
1613
|
Ice::__patch(LocatorPtr& handle, const ::Ice::ObjectPtr& v)
|
|
1608
1614
|
{
|
|
1609
1615
|
handle = ::Ice::LocatorPtr::dynamicCast(v);
|
|
@@ -1613,7 +1619,7 @@ Ice::__patch(LocatorPtr& handle, const ::Ice::ObjectPtr& v)
|
|
|
1613
1619
|
}
|
|
1614
1620
|
}
|
|
1615
1621
|
|
|
1616
|
-
|
|
1622
|
+
ICE_API ::Ice::Object* Ice::upCast(::Ice::LocatorRegistry* p) { return p; }
|
|
1617
1623
|
|
|
1618
1624
|
namespace
|
|
1619
1625
|
{
|
|
@@ -1659,15 +1665,15 @@ Ice::LocatorRegistry::___setAdapterDirectProxy(::IceInternal::Incoming& __inS, c
|
|
|
1659
1665
|
{
|
|
1660
1666
|
__checkMode(::Ice::Idempotent, __current.mode);
|
|
1661
1667
|
::IceInternal::BasicStream* __is = __inS.startReadParams();
|
|
1662
|
-
::std::string
|
|
1663
|
-
::Ice::ObjectPrx
|
|
1664
|
-
__is->read(
|
|
1665
|
-
__is->read(
|
|
1668
|
+
::std::string __p_id;
|
|
1669
|
+
::Ice::ObjectPrx __p_proxy;
|
|
1670
|
+
__is->read(__p_id);
|
|
1671
|
+
__is->read(__p_proxy);
|
|
1666
1672
|
__inS.endReadParams();
|
|
1667
1673
|
::Ice::AMD_LocatorRegistry_setAdapterDirectProxyPtr __cb = new IceAsync::Ice::AMD_LocatorRegistry_setAdapterDirectProxy(__inS);
|
|
1668
1674
|
try
|
|
1669
1675
|
{
|
|
1670
|
-
setAdapterDirectProxy_async(__cb,
|
|
1676
|
+
setAdapterDirectProxy_async(__cb, __p_id, __p_proxy, __current);
|
|
1671
1677
|
}
|
|
1672
1678
|
catch(const ::std::exception& __ex)
|
|
1673
1679
|
{
|
|
@@ -1685,17 +1691,17 @@ Ice::LocatorRegistry::___setReplicatedAdapterDirectProxy(::IceInternal::Incoming
|
|
|
1685
1691
|
{
|
|
1686
1692
|
__checkMode(::Ice::Idempotent, __current.mode);
|
|
1687
1693
|
::IceInternal::BasicStream* __is = __inS.startReadParams();
|
|
1688
|
-
::std::string
|
|
1689
|
-
::std::string
|
|
1690
|
-
::Ice::ObjectPrx
|
|
1691
|
-
__is->read(
|
|
1692
|
-
__is->read(
|
|
1693
|
-
__is->read(
|
|
1694
|
+
::std::string __p_adapterId;
|
|
1695
|
+
::std::string __p_replicaGroupId;
|
|
1696
|
+
::Ice::ObjectPrx __p_p;
|
|
1697
|
+
__is->read(__p_adapterId);
|
|
1698
|
+
__is->read(__p_replicaGroupId);
|
|
1699
|
+
__is->read(__p_p);
|
|
1694
1700
|
__inS.endReadParams();
|
|
1695
1701
|
::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxyPtr __cb = new IceAsync::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy(__inS);
|
|
1696
1702
|
try
|
|
1697
1703
|
{
|
|
1698
|
-
setReplicatedAdapterDirectProxy_async(__cb,
|
|
1704
|
+
setReplicatedAdapterDirectProxy_async(__cb, __p_adapterId, __p_replicaGroupId, __p_p, __current);
|
|
1699
1705
|
}
|
|
1700
1706
|
catch(const ::std::exception& __ex)
|
|
1701
1707
|
{
|
|
@@ -1713,15 +1719,15 @@ Ice::LocatorRegistry::___setServerProcessProxy(::IceInternal::Incoming& __inS, c
|
|
|
1713
1719
|
{
|
|
1714
1720
|
__checkMode(::Ice::Idempotent, __current.mode);
|
|
1715
1721
|
::IceInternal::BasicStream* __is = __inS.startReadParams();
|
|
1716
|
-
::std::string
|
|
1717
|
-
::Ice::ProcessPrx
|
|
1718
|
-
__is->read(
|
|
1719
|
-
__is->read(
|
|
1722
|
+
::std::string __p_id;
|
|
1723
|
+
::Ice::ProcessPrx __p_proxy;
|
|
1724
|
+
__is->read(__p_id);
|
|
1725
|
+
__is->read(__p_proxy);
|
|
1720
1726
|
__inS.endReadParams();
|
|
1721
1727
|
::Ice::AMD_LocatorRegistry_setServerProcessProxyPtr __cb = new IceAsync::Ice::AMD_LocatorRegistry_setServerProcessProxy(__inS);
|
|
1722
1728
|
try
|
|
1723
1729
|
{
|
|
1724
|
-
setServerProcessProxy_async(__cb,
|
|
1730
|
+
setServerProcessProxy_async(__cb, __p_id, __p_proxy, __current);
|
|
1725
1731
|
}
|
|
1726
1732
|
catch(const ::std::exception& __ex)
|
|
1727
1733
|
{
|
|
@@ -1808,7 +1814,7 @@ Ice::LocatorRegistry::__readImpl(::IceInternal::BasicStream* __is)
|
|
|
1808
1814
|
__is->endReadSlice();
|
|
1809
1815
|
}
|
|
1810
1816
|
|
|
1811
|
-
void
|
|
1817
|
+
void ICE_API
|
|
1812
1818
|
Ice::__patch(LocatorRegistryPtr& handle, const ::Ice::ObjectPtr& v)
|
|
1813
1819
|
{
|
|
1814
1820
|
handle = ::Ice::LocatorRegistryPtr::dynamicCast(v);
|
|
@@ -1818,7 +1824,7 @@ Ice::__patch(LocatorRegistryPtr& handle, const ::Ice::ObjectPtr& v)
|
|
|
1818
1824
|
}
|
|
1819
1825
|
}
|
|
1820
1826
|
|
|
1821
|
-
|
|
1827
|
+
ICE_API ::Ice::Object* Ice::upCast(::Ice::LocatorFinder* p) { return p; }
|
|
1822
1828
|
|
|
1823
1829
|
namespace
|
|
1824
1830
|
{
|
|
@@ -1935,7 +1941,7 @@ Ice::LocatorFinder::__readImpl(::IceInternal::BasicStream* __is)
|
|
|
1935
1941
|
__is->endReadSlice();
|
|
1936
1942
|
}
|
|
1937
1943
|
|
|
1938
|
-
void
|
|
1944
|
+
void ICE_API
|
|
1939
1945
|
Ice::__patch(LocatorFinderPtr& handle, const ::Ice::ObjectPtr& v)
|
|
1940
1946
|
{
|
|
1941
1947
|
handle = ::Ice::LocatorFinderPtr::dynamicCast(v);
|