zeroc-ice 3.7.0 → 3.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ICE_LICENSE +1 -1
- data/bin/slice2rb +1 -1
- data/ext/Communicator.cpp +72 -2
- data/ext/Communicator.h +1 -1
- data/ext/Config.h +11 -1
- data/ext/Connection.cpp +22 -2
- data/ext/Connection.h +4 -1
- data/ext/Endpoint.cpp +1 -1
- data/ext/Endpoint.h +1 -1
- data/ext/ImplicitContext.cpp +1 -1
- data/ext/ImplicitContext.h +1 -1
- data/ext/Init.cpp +1 -1
- data/ext/Logger.cpp +1 -1
- data/ext/Logger.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 +70 -1
- data/ext/Proxy.h +1 -1
- data/ext/Slice.cpp +1 -1
- data/ext/Slice.h +1 -1
- data/ext/Types.cpp +21 -5
- data/ext/Types.h +1 -1
- data/ext/Util.cpp +1 -1
- data/ext/Util.h +1 -1
- data/ext/ValueFactoryManager.cpp +2 -2
- data/ext/ValueFactoryManager.h +2 -2
- data/ext/ice/cpp/include/Ice/Application.h +234 -76
- data/ext/ice/cpp/include/Ice/AsyncResult.h +77 -1
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +1 -1
- data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +35 -2
- data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -1
- data/ext/ice/cpp/include/Ice/Buffer.h +1 -1
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +43 -1
- data/ext/ice/cpp/include/Ice/Comparable.h +81 -1
- data/ext/ice/cpp/include/Ice/Config.h +8 -1
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +97 -1
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +3 -1
- data/ext/ice/cpp/include/Ice/ConsoleUtil.h +1 -1
- data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +1 -1
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +17 -2
- data/ext/ice/cpp/include/Ice/Dispatcher.h +22 -2
- 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/Exception.h +57 -15
- data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +19 -1
- data/ext/ice/cpp/include/Ice/FactoryTable.h +12 -2
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
- data/ext/ice/cpp/include/Ice/Format.h +13 -14
- data/ext/ice/cpp/include/Ice/Functional.h +6 -1
- data/ext/ice/cpp/include/Ice/GCObject.h +1 -1
- data/ext/ice/cpp/include/Ice/Handle.h +1 -1
- data/ext/ice/cpp/include/Ice/Ice.h +1 -1
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +38 -3
- data/ext/ice/cpp/include/Ice/Incoming.h +15 -2
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +37 -4
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +1 -1
- data/ext/ice/cpp/include/Ice/Initialize.h +764 -98
- data/ext/ice/cpp/include/Ice/InputStream.h +637 -112
- data/ext/ice/cpp/include/Ice/InstanceF.h +1 -1
- data/ext/ice/cpp/include/Ice/InterfaceByValue.h +17 -1
- data/ext/ice/cpp/include/Ice/LocalObject.h +5 -1
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +37 -6
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +3 -1
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +3 -1
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +3 -1
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +46 -23
- data/ext/ice/cpp/include/Ice/Object.h +338 -47
- data/ext/ice/cpp/include/Ice/ObjectF.h +5 -1
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +1 -1
- data/ext/ice/cpp/include/Ice/Optional.h +22 -6
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +15 -1
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +1 -1
- data/ext/ice/cpp/include/Ice/OutputStream.h +436 -92
- data/ext/ice/cpp/include/Ice/Protocol.h +31 -1
- data/ext/ice/cpp/include/Ice/Proxy.h +2244 -190
- data/ext/ice/cpp/include/Ice/ProxyF.h +3 -1
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +10 -1
- data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
- data/ext/ice/cpp/include/Ice/RegisterPlugins.h +67 -9
- 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/SHA1.h +1 -1
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
- data/ext/ice/cpp/include/Ice/Service.h +267 -138
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -1
- data/ext/ice/cpp/include/Ice/SlicedData.h +80 -33
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +4 -1
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +324 -116
- data/ext/ice/cpp/include/Ice/StringConverter.h +32 -1
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
- data/ext/ice/cpp/include/Ice/UUID.h +2 -1
- data/ext/ice/cpp/include/Ice/UniquePtr.h +2 -2
- data/ext/ice/cpp/include/Ice/UniqueRef.h +6 -2
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +6 -1
- data/ext/ice/cpp/include/Ice/Value.h +41 -1
- data/ext/ice/cpp/include/Ice/ValueF.h +3 -1
- data/ext/ice/cpp/include/IceSSL/Config.h +1 -1
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +1 -1
- data/ext/ice/cpp/include/IceSSL/OpenSSL.h +75 -53
- data/ext/ice/cpp/include/IceSSL/Plugin.h +323 -218
- data/ext/ice/cpp/include/IceSSL/SChannel.h +34 -27
- data/ext/ice/cpp/include/IceSSL/SecureTransport.h +35 -28
- data/ext/ice/cpp/include/IceSSL/UWP.h +33 -24
- data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Cond.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Config.h +11 -3
- data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +1 -1
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +59 -31
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Exception.h +1 -1
- data/ext/ice/cpp/include/IceUtil/FileUtil.h +1 -1
- 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 +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 +2 -5
- 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 +95 -1
- data/ext/ice/cpp/include/IceUtil/Options.h +1 -1
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +1 -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/ResourceConfig.h +4 -4
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +5 -3
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Shared.h +1 -1
- data/ext/ice/cpp/include/IceUtil/StopWatch.h +1 -1
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +106 -86
- 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 +5 -1
- data/ext/ice/cpp/include/IceUtil/UUID.h +5 -1
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +80 -20
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +927 -130
- data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Connection.h +990 -194
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +21 -9
- data/ext/ice/cpp/include/generated/Ice/Current.h +180 -17
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +484 -118
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +41 -17
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +29 -3
- data/ext/ice/cpp/include/generated/Ice/FacetMap.h +11 -5
- data/ext/ice/cpp/include/generated/Ice/Identity.h +56 -7
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +150 -28
- data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +629 -83
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +19 -7
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +5104 -794
- data/ext/ice/cpp/include/generated/Ice/Locator.h +2222 -443
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +27 -9
- data/ext/ice/cpp/include/generated/Ice/Logger.h +104 -26
- data/ext/ice/cpp/include/generated/Ice/LoggerF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +2534 -455
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1004 -126
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +72 -12
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +142 -28
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +17 -7
- data/ext/ice/cpp/include/generated/Ice/Process.h +511 -71
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +18 -6
- data/ext/ice/cpp/include/generated/Ice/Properties.h +306 -58
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +737 -121
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +22 -8
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +1526 -279
- data/ext/ice/cpp/include/generated/Ice/Router.h +1009 -198
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +18 -6
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +174 -18
- data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +13 -3
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +177 -23
- data/ext/ice/cpp/include/generated/Ice/Version.h +43 -13
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +71 -15
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +13 -5
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +39 -9
- data/ext/ice/cpp/src/Ice/ACM.cpp +12 -3
- data/ext/ice/cpp/src/Ice/ACM.h +1 -1
- data/ext/ice/cpp/src/Ice/ACMF.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/ArgVector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ArgVector.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/BatchRequestQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +1 -1
- data/ext/ice/cpp/src/Ice/Buffer.cpp +1 -1
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/Communicator.cpp +6 -4
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +34 -13
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +10 -10
- data/ext/ice/cpp/src/Ice/Cond.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +11 -6
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +1 -1
- data/ext/ice/cpp/src/Ice/Connection.cpp +27 -11
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +24 -19
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +45 -37
- data/ext/ice/cpp/src/Ice/ConnectionI.h +10 -8
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +1 -1
- 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/CountDownLatch.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +5 -7
- 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/DispatchInterceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +24 -10
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +7 -13
- 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 +2 -2
- data/ext/ice/cpp/src/Ice/EndpointI.h +5 -5
- data/ext/ice/cpp/src/Ice/EndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EventHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +1 -1
- data/ext/ice/cpp/src/Ice/Exception.cpp +1 -1
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +1 -1
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +1 -1
- 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 +1 -1
- data/ext/ice/cpp/src/Ice/HttpParser.h +1 -1
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +24 -29
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +5 -5
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +2 -13
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +1 -1
- data/ext/ice/cpp/src/Ice/Incoming.cpp +1 -1
- 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 +10 -16
- data/ext/ice/cpp/src/Ice/InputStream.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Instance.cpp +13 -34
- data/ext/ice/cpp/src/Ice/Instance.h +1 -1
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +33 -13
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
- 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 +279 -279
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Locator.cpp +287 -174
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +4 -9
- 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 +6 -4
- 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 +3 -3
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/LoggerI.h +1 -1
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Metrics.cpp +297 -109
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +2 -7
- data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Network.cpp +188 -225
- data/ext/ice/cpp/src/Ice/Network.h +3 -12
- 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 +7 -4
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +53 -19
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +116 -150
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +11 -11
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +25 -42
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Plugin.cpp +9 -5
- data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +15 -34
- data/ext/ice/cpp/src/Ice/PluginManagerI.h +3 -3
- data/ext/ice/cpp/src/Ice/Process.cpp +69 -40
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Properties.cpp +6 -4
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +89 -54
- 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 +3 -3
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +15 -21
- data/ext/ice/cpp/src/Ice/PropertiesI.h +10 -10
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +4 -2
- data/ext/ice/cpp/src/Ice/PropertyNames.h +2 -2
- data/ext/ice/cpp/src/Ice/Protocol.cpp +5 -13
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +1 -1
- 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 +46 -1
- 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 +56 -6
- data/ext/ice/cpp/src/Ice/Reference.h +13 -2
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +51 -90
- 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/RegisterPluginsInit.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -1
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +203 -117
- 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 +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueue.h +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
- data/ext/ice/cpp/src/Ice/Router.cpp +167 -89
- data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/RouterInfo.cpp +6 -28
- data/ext/ice/cpp/src/Ice/RouterInfo.h +1 -3
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
- data/ext/ice/cpp/src/Ice/SHA1.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Selector.cpp +19 -26
- data/ext/ice/cpp/src/Ice/Selector.h +1 -1
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ServantManager.cpp +15 -31
- 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 +3 -3
- 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/StreamSocket.cpp +32 -52
- data/ext/ice/cpp/src/Ice/StreamSocket.h +1 -1
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +10 -1
- data/ext/ice/cpp/src/Ice/StringUtil.h +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 +5 -13
- 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 +8 -11
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +1 -1
- data/ext/ice/cpp/src/Ice/Thread.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +13 -13
- data/ext/ice/cpp/src/Ice/ThreadPool.h +1 -1
- data/ext/ice/cpp/src/Ice/Timer.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +1 -1
- 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 +1 -1
- 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 +1 -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 +19 -27
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +17 -54
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +1 -1
- data/ext/ice/cpp/src/Ice/Value.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +9 -5
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +3 -6
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +2 -2
- data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
- data/ext/ice/cpp/src/Ice/VirtualShared.h +1 -1
- 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 +4 -5
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +2 -2
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +8 -9
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +85 -27
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +599 -113
- 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 +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +1 -1
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +70 -24
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +635 -69
- data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +1 -1
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +71 -9
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +2 -4
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/CertificateI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +6 -4
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +2 -4
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +2 -2
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +2 -2
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +6 -4
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -1
- 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/OpenSSLCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +25 -62
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +1 -1
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +1 -1
- 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/SChannelCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +19 -27
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +7 -16
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +7 -10
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +1 -1
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +4 -5
- 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/UWPCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/Util.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/Util.h +1 -1
- data/ext/ice/cpp/src/IceUtil/ConsoleUtil.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/CtrlCHandler.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +5 -5
- 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 +1 -1
- data/ext/ice/cpp/src/IceUtil/Random.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +1 -5
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +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/ThreadException.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +3 -3
- 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/IceUtil/UtilException.cpp +1 -1
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +160 -150
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +9 -8
- data/ext/ice/cpp/src/Slice/Checksum.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Checksum.h +1 -1
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +1 -1
- data/ext/ice/cpp/src/Slice/FileTracker.h +1 -1
- data/ext/ice/cpp/src/Slice/Grammar.cpp +567 -585
- data/ext/ice/cpp/src/Slice/Grammar.h +2 -2
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +131 -47
- data/ext/ice/cpp/src/Slice/JavaUtil.h +10 -5
- 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/PHPUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/PHPUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Parser.cpp +383 -101
- data/ext/ice/cpp/src/Slice/Parser.h +40 -3
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
- data/ext/ice/cpp/src/Slice/Preprocessor.h +2 -2
- data/ext/ice/cpp/src/Slice/Python.cpp +7 -15
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +66 -9
- data/ext/ice/cpp/src/Slice/PythonUtil.h +2 -2
- data/ext/ice/cpp/src/Slice/Ruby.cpp +1 -1
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +2 -2
- data/ext/ice/cpp/src/Slice/RubyUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Scanner.cpp +214 -135
- data/ext/ice/cpp/src/Slice/SliceUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +99 -17
- data/ext/ice/cpp/src/Slice/Util.h +5 -4
- data/ice.gemspec +2 -2
- 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 +2 -2
- 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 +2 -2
- data/lib/Ice/ConnectionF.rb +2 -2
- data/lib/Ice/Current.rb +2 -2
- data/lib/Ice/Endpoint.rb +2 -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/ObjectAdapter.rb +2 -2
- data/lib/Ice/ObjectAdapterF.rb +2 -2
- data/lib/Ice/ObjectFactory.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/RemoteLogger.rb +2 -2
- data/lib/Ice/Router.rb +2 -2
- data/lib/Ice/RouterF.rb +2 -2
- data/lib/Ice/ServantLocator.rb +2 -2
- data/lib/Ice/ServantLocatorF.rb +2 -2
- data/lib/Ice/SliceChecksumDict.rb +2 -2
- data/lib/Ice/ValueFactory.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/PluginFacade.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 +2 -2
- data/lib/IcePatch2/FileServer.rb +2 -2
- data/lib/IceStorm.rb +1 -1
- data/lib/IceStorm/IceStorm.rb +2 -2
- data/lib/IceStorm/Metrics.rb +2 -2
- data/slice/Glacier2/Metrics.ice +2 -2
- data/slice/Glacier2/PermissionsVerifier.ice +2 -2
- data/slice/Glacier2/PermissionsVerifierF.ice +2 -2
- data/slice/Glacier2/Router.ice +2 -2
- data/slice/Glacier2/RouterF.ice +2 -2
- data/slice/Glacier2/SSLInfo.ice +2 -2
- data/slice/Glacier2/Session.ice +2 -2
- data/slice/Ice/BuiltinSequences.ice +2 -2
- data/slice/Ice/Communicator.ice +66 -73
- data/slice/Ice/CommunicatorF.ice +2 -2
- data/slice/Ice/Connection.ice +47 -17
- data/slice/Ice/ConnectionF.ice +2 -2
- data/slice/Ice/Current.ice +4 -5
- data/slice/Ice/Endpoint.ice +16 -16
- data/slice/Ice/EndpointF.ice +2 -2
- data/slice/Ice/EndpointTypes.ice +2 -2
- data/slice/Ice/FacetMap.ice +2 -2
- data/slice/Ice/Identity.ice +2 -2
- data/slice/Ice/ImplicitContext.ice +6 -6
- data/slice/Ice/ImplicitContextF.ice +2 -2
- data/slice/Ice/Instrumentation.ice +2 -2
- data/slice/Ice/InstrumentationF.ice +2 -2
- data/slice/Ice/LocalException.ice +2 -2
- data/slice/Ice/Locator.ice +3 -3
- data/slice/Ice/LocatorF.ice +2 -2
- data/slice/Ice/Logger.ice +2 -2
- data/slice/Ice/LoggerF.ice +2 -2
- data/slice/Ice/Metrics.ice +2 -2
- data/slice/Ice/ObjectAdapter.ice +10 -10
- data/slice/Ice/ObjectAdapterF.ice +2 -2
- data/slice/Ice/ObjectFactory.ice +3 -3
- data/slice/Ice/Plugin.ice +4 -4
- data/slice/Ice/PluginF.ice +2 -2
- data/slice/Ice/Process.ice +2 -2
- data/slice/Ice/ProcessF.ice +2 -2
- data/slice/Ice/Properties.ice +11 -11
- data/slice/Ice/PropertiesAdmin.ice +2 -2
- data/slice/Ice/PropertiesF.ice +2 -2
- data/slice/Ice/RemoteLogger.ice +12 -23
- data/slice/Ice/Router.ice +2 -2
- data/slice/Ice/RouterF.ice +2 -2
- data/slice/Ice/ServantLocator.ice +2 -2
- data/slice/Ice/ServantLocatorF.ice +2 -2
- data/slice/Ice/SliceChecksumDict.ice +2 -2
- data/slice/Ice/ValueFactory.ice +14 -16
- data/slice/Ice/Version.ice +2 -2
- data/slice/IceBT/ConnectionInfo.ice +2 -2
- data/slice/IceBT/EndpointInfo.ice +2 -2
- data/slice/IceBT/Types.ice +2 -2
- data/slice/IceBox/IceBox.ice +3 -4
- data/slice/IceDiscovery/IceDiscovery.ice +2 -2
- data/slice/IceGrid/Admin.ice +2 -2
- data/slice/IceGrid/Descriptor.ice +2 -2
- data/slice/IceGrid/Exception.ice +2 -2
- data/slice/IceGrid/FileParser.ice +2 -2
- data/slice/IceGrid/PluginFacade.ice +6 -6
- data/slice/IceGrid/Registry.ice +2 -2
- data/slice/IceGrid/Session.ice +2 -2
- data/slice/IceGrid/UserAccountMapper.ice +2 -2
- data/slice/IceIAP/ConnectionInfo.ice +2 -2
- data/slice/IceIAP/EndpointInfo.ice +2 -2
- data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +2 -2
- data/slice/IcePatch2/FileInfo.ice +2 -2
- data/slice/IcePatch2/FileServer.ice +2 -2
- data/slice/IceSSL/ConnectionInfo.ice +2 -2
- data/slice/IceSSL/ConnectionInfoF.ice +2 -2
- data/slice/IceSSL/EndpointInfo.ice +2 -2
- data/slice/IceStorm/IceStorm.ice +5 -6
- data/slice/IceStorm/Metrics.ice +2 -2
- metadata +3 -13
- data/BZIP2_LICENSE +0 -42
- data/ext/ice/bzip2/blocksort.c +0 -1094
- data/ext/ice/bzip2/bzlib.c +0 -1572
- data/ext/ice/bzip2/bzlib.h +0 -282
- data/ext/ice/bzip2/bzlib_private.h +0 -509
- data/ext/ice/bzip2/compress.c +0 -672
- data/ext/ice/bzip2/crctable.c +0 -104
- data/ext/ice/bzip2/decompress.c +0 -646
- data/ext/ice/bzip2/huffman.c +0 -205
- data/ext/ice/bzip2/randtable.c +0 -84
@@ -1,6 +1,6 @@
|
|
1
1
|
// **********************************************************************
|
2
2
|
//
|
3
|
-
// Copyright (c) 2003-
|
3
|
+
// Copyright (c) 2003-2018 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-2018 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.7.
|
10
|
+
// Ice version 3.7.1
|
11
11
|
//
|
12
12
|
// <auto-generated>
|
13
13
|
//
|
@@ -46,7 +46,7 @@
|
|
46
46
|
# if ICE_INT_VERSION % 100 > 50
|
47
47
|
# error Beta header file detected
|
48
48
|
# endif
|
49
|
-
# if ICE_INT_VERSION % 100 <
|
49
|
+
# if ICE_INT_VERSION % 100 < 1
|
50
50
|
# error Ice patch level mismatch!
|
51
51
|
# endif
|
52
52
|
#endif
|
@@ -177,19 +177,19 @@ Ice::ServerNotFoundException::ice_staticId()
|
|
177
177
|
}
|
178
178
|
|
179
179
|
bool
|
180
|
-
Ice::Locator::ice_isA(::std::string s, const
|
180
|
+
Ice::Locator::ice_isA(::std::string s, const Current&) const
|
181
181
|
{
|
182
182
|
return ::std::binary_search(iceC_Ice_Locator_ids, iceC_Ice_Locator_ids + 2, s);
|
183
183
|
}
|
184
184
|
|
185
185
|
::std::vector<::std::string>
|
186
|
-
Ice::Locator::ice_ids(const
|
186
|
+
Ice::Locator::ice_ids(const Current&) const
|
187
187
|
{
|
188
188
|
return ::std::vector<::std::string>(&iceC_Ice_Locator_ids[0], &iceC_Ice_Locator_ids[2]);
|
189
189
|
}
|
190
190
|
|
191
191
|
::std::string
|
192
|
-
Ice::Locator::ice_id(const
|
192
|
+
Ice::Locator::ice_id(const Current&) const
|
193
193
|
{
|
194
194
|
return ice_staticId();
|
195
195
|
}
|
@@ -201,16 +201,17 @@ Ice::Locator::ice_staticId()
|
|
201
201
|
return typeId;
|
202
202
|
}
|
203
203
|
|
204
|
+
/// \cond INTERNAL
|
204
205
|
bool
|
205
|
-
Ice::Locator::_iceD_findObjectById(::IceInternal::Incoming& inS, const
|
206
|
+
Ice::Locator::_iceD_findObjectById(::IceInternal::Incoming& inS, const Current& current) const
|
206
207
|
{
|
207
|
-
_iceCheckMode(
|
208
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
208
209
|
auto istr = inS.startReadParams();
|
209
|
-
|
210
|
+
Identity iceP_id;
|
210
211
|
istr->readAll(iceP_id);
|
211
212
|
inS.endReadParams();
|
212
213
|
auto inA = ::IceInternal::IncomingAsync::create(inS);
|
213
|
-
auto responseCB = [inA](const ::std::shared_ptr
|
214
|
+
auto responseCB = [inA](const ::std::shared_ptr<ObjectPrx>& ret)
|
214
215
|
{
|
215
216
|
auto ostr = inA->startWriteParams();
|
216
217
|
ostr->writeAll(ret);
|
@@ -220,17 +221,19 @@ Ice::Locator::_iceD_findObjectById(::IceInternal::Incoming& inS, const ::Ice::Cu
|
|
220
221
|
this->findObjectByIdAsync(::std::move(iceP_id), responseCB, inA->exception(), current);
|
221
222
|
return false;
|
222
223
|
}
|
224
|
+
/// \endcond
|
223
225
|
|
226
|
+
/// \cond INTERNAL
|
224
227
|
bool
|
225
|
-
Ice::Locator::_iceD_findAdapterById(::IceInternal::Incoming& inS, const
|
228
|
+
Ice::Locator::_iceD_findAdapterById(::IceInternal::Incoming& inS, const Current& current) const
|
226
229
|
{
|
227
|
-
_iceCheckMode(
|
230
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
228
231
|
auto istr = inS.startReadParams();
|
229
232
|
::std::string iceP_id;
|
230
233
|
istr->readAll(iceP_id);
|
231
234
|
inS.endReadParams();
|
232
235
|
auto inA = ::IceInternal::IncomingAsync::create(inS);
|
233
|
-
auto responseCB = [inA](const ::std::shared_ptr
|
236
|
+
auto responseCB = [inA](const ::std::shared_ptr<ObjectPrx>& ret)
|
234
237
|
{
|
235
238
|
auto ostr = inA->startWriteParams();
|
236
239
|
ostr->writeAll(ret);
|
@@ -240,26 +243,30 @@ Ice::Locator::_iceD_findAdapterById(::IceInternal::Incoming& inS, const ::Ice::C
|
|
240
243
|
this->findAdapterByIdAsync(::std::move(iceP_id), responseCB, inA->exception(), current);
|
241
244
|
return false;
|
242
245
|
}
|
246
|
+
/// \endcond
|
243
247
|
|
248
|
+
/// \cond INTERNAL
|
244
249
|
bool
|
245
|
-
Ice::Locator::_iceD_getRegistry(::IceInternal::Incoming& inS, const
|
250
|
+
Ice::Locator::_iceD_getRegistry(::IceInternal::Incoming& inS, const Current& current) const
|
246
251
|
{
|
247
|
-
_iceCheckMode(
|
252
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
248
253
|
inS.readEmptyParams();
|
249
|
-
::std::shared_ptr
|
254
|
+
::std::shared_ptr<LocatorRegistryPrx> ret = this->getRegistry(current);
|
250
255
|
auto ostr = inS.startWriteParams();
|
251
256
|
ostr->writeAll(ret);
|
252
257
|
inS.endWriteParams();
|
253
258
|
return true;
|
254
259
|
}
|
260
|
+
/// \endcond
|
255
261
|
|
262
|
+
/// \cond INTERNAL
|
256
263
|
bool
|
257
|
-
Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const
|
264
|
+
Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
258
265
|
{
|
259
266
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_Locator_ops, iceC_Ice_Locator_ops + 7, current.operation);
|
260
267
|
if(r.first == r.second)
|
261
268
|
{
|
262
|
-
throw
|
269
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
263
270
|
}
|
264
271
|
|
265
272
|
switch(r.first - iceC_Ice_Locator_ops)
|
@@ -295,25 +302,26 @@ Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Current& cu
|
|
295
302
|
default:
|
296
303
|
{
|
297
304
|
assert(false);
|
298
|
-
throw
|
305
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
299
306
|
}
|
300
307
|
}
|
301
308
|
}
|
309
|
+
/// \endcond
|
302
310
|
|
303
311
|
bool
|
304
|
-
Ice::LocatorRegistry::ice_isA(::std::string s, const
|
312
|
+
Ice::LocatorRegistry::ice_isA(::std::string s, const Current&) const
|
305
313
|
{
|
306
314
|
return ::std::binary_search(iceC_Ice_LocatorRegistry_ids, iceC_Ice_LocatorRegistry_ids + 2, s);
|
307
315
|
}
|
308
316
|
|
309
317
|
::std::vector<::std::string>
|
310
|
-
Ice::LocatorRegistry::ice_ids(const
|
318
|
+
Ice::LocatorRegistry::ice_ids(const Current&) const
|
311
319
|
{
|
312
320
|
return ::std::vector<::std::string>(&iceC_Ice_LocatorRegistry_ids[0], &iceC_Ice_LocatorRegistry_ids[2]);
|
313
321
|
}
|
314
322
|
|
315
323
|
::std::string
|
316
|
-
Ice::LocatorRegistry::ice_id(const
|
324
|
+
Ice::LocatorRegistry::ice_id(const Current&) const
|
317
325
|
{
|
318
326
|
return ice_staticId();
|
319
327
|
}
|
@@ -325,56 +333,63 @@ Ice::LocatorRegistry::ice_staticId()
|
|
325
333
|
return typeId;
|
326
334
|
}
|
327
335
|
|
336
|
+
/// \cond INTERNAL
|
328
337
|
bool
|
329
|
-
Ice::LocatorRegistry::_iceD_setAdapterDirectProxy(::IceInternal::Incoming& inS, const
|
338
|
+
Ice::LocatorRegistry::_iceD_setAdapterDirectProxy(::IceInternal::Incoming& inS, const Current& current)
|
330
339
|
{
|
331
|
-
_iceCheckMode(
|
340
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
332
341
|
auto istr = inS.startReadParams();
|
333
342
|
::std::string iceP_id;
|
334
|
-
::std::shared_ptr
|
343
|
+
::std::shared_ptr<ObjectPrx> iceP_proxy;
|
335
344
|
istr->readAll(iceP_id, iceP_proxy);
|
336
345
|
inS.endReadParams();
|
337
346
|
auto inA = ::IceInternal::IncomingAsync::create(inS);
|
338
347
|
this->setAdapterDirectProxyAsync(::std::move(iceP_id), ::std::move(iceP_proxy), inA->response(), inA->exception(), current);
|
339
348
|
return false;
|
340
349
|
}
|
350
|
+
/// \endcond
|
341
351
|
|
352
|
+
/// \cond INTERNAL
|
342
353
|
bool
|
343
|
-
Ice::LocatorRegistry::_iceD_setReplicatedAdapterDirectProxy(::IceInternal::Incoming& inS, const
|
354
|
+
Ice::LocatorRegistry::_iceD_setReplicatedAdapterDirectProxy(::IceInternal::Incoming& inS, const Current& current)
|
344
355
|
{
|
345
|
-
_iceCheckMode(
|
356
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
346
357
|
auto istr = inS.startReadParams();
|
347
358
|
::std::string iceP_adapterId;
|
348
359
|
::std::string iceP_replicaGroupId;
|
349
|
-
::std::shared_ptr
|
360
|
+
::std::shared_ptr<ObjectPrx> iceP_p;
|
350
361
|
istr->readAll(iceP_adapterId, iceP_replicaGroupId, iceP_p);
|
351
362
|
inS.endReadParams();
|
352
363
|
auto inA = ::IceInternal::IncomingAsync::create(inS);
|
353
364
|
this->setReplicatedAdapterDirectProxyAsync(::std::move(iceP_adapterId), ::std::move(iceP_replicaGroupId), ::std::move(iceP_p), inA->response(), inA->exception(), current);
|
354
365
|
return false;
|
355
366
|
}
|
367
|
+
/// \endcond
|
356
368
|
|
369
|
+
/// \cond INTERNAL
|
357
370
|
bool
|
358
|
-
Ice::LocatorRegistry::_iceD_setServerProcessProxy(::IceInternal::Incoming& inS, const
|
371
|
+
Ice::LocatorRegistry::_iceD_setServerProcessProxy(::IceInternal::Incoming& inS, const Current& current)
|
359
372
|
{
|
360
|
-
_iceCheckMode(
|
373
|
+
_iceCheckMode(OperationMode::Idempotent, current.mode);
|
361
374
|
auto istr = inS.startReadParams();
|
362
375
|
::std::string iceP_id;
|
363
|
-
::std::shared_ptr
|
376
|
+
::std::shared_ptr<ProcessPrx> iceP_proxy;
|
364
377
|
istr->readAll(iceP_id, iceP_proxy);
|
365
378
|
inS.endReadParams();
|
366
379
|
auto inA = ::IceInternal::IncomingAsync::create(inS);
|
367
380
|
this->setServerProcessProxyAsync(::std::move(iceP_id), ::std::move(iceP_proxy), inA->response(), inA->exception(), current);
|
368
381
|
return false;
|
369
382
|
}
|
383
|
+
/// \endcond
|
370
384
|
|
385
|
+
/// \cond INTERNAL
|
371
386
|
bool
|
372
|
-
Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const
|
387
|
+
Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
373
388
|
{
|
374
389
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_LocatorRegistry_ops, iceC_Ice_LocatorRegistry_ops + 7, current.operation);
|
375
390
|
if(r.first == r.second)
|
376
391
|
{
|
377
|
-
throw
|
392
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
378
393
|
}
|
379
394
|
|
380
395
|
switch(r.first - iceC_Ice_LocatorRegistry_ops)
|
@@ -410,25 +425,26 @@ Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Cur
|
|
410
425
|
default:
|
411
426
|
{
|
412
427
|
assert(false);
|
413
|
-
throw
|
428
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
414
429
|
}
|
415
430
|
}
|
416
431
|
}
|
432
|
+
/// \endcond
|
417
433
|
|
418
434
|
bool
|
419
|
-
Ice::LocatorFinder::ice_isA(::std::string s, const
|
435
|
+
Ice::LocatorFinder::ice_isA(::std::string s, const Current&) const
|
420
436
|
{
|
421
437
|
return ::std::binary_search(iceC_Ice_LocatorFinder_ids, iceC_Ice_LocatorFinder_ids + 2, s);
|
422
438
|
}
|
423
439
|
|
424
440
|
::std::vector<::std::string>
|
425
|
-
Ice::LocatorFinder::ice_ids(const
|
441
|
+
Ice::LocatorFinder::ice_ids(const Current&) const
|
426
442
|
{
|
427
443
|
return ::std::vector<::std::string>(&iceC_Ice_LocatorFinder_ids[0], &iceC_Ice_LocatorFinder_ids[2]);
|
428
444
|
}
|
429
445
|
|
430
446
|
::std::string
|
431
|
-
Ice::LocatorFinder::ice_id(const
|
447
|
+
Ice::LocatorFinder::ice_id(const Current&) const
|
432
448
|
{
|
433
449
|
return ice_staticId();
|
434
450
|
}
|
@@ -440,25 +456,28 @@ Ice::LocatorFinder::ice_staticId()
|
|
440
456
|
return typeId;
|
441
457
|
}
|
442
458
|
|
459
|
+
/// \cond INTERNAL
|
443
460
|
bool
|
444
|
-
Ice::LocatorFinder::_iceD_getLocator(::IceInternal::Incoming& inS, const
|
461
|
+
Ice::LocatorFinder::_iceD_getLocator(::IceInternal::Incoming& inS, const Current& current)
|
445
462
|
{
|
446
|
-
_iceCheckMode(
|
463
|
+
_iceCheckMode(OperationMode::Normal, current.mode);
|
447
464
|
inS.readEmptyParams();
|
448
|
-
::std::shared_ptr
|
465
|
+
::std::shared_ptr<LocatorPrx> ret = this->getLocator(current);
|
449
466
|
auto ostr = inS.startWriteParams();
|
450
467
|
ostr->writeAll(ret);
|
451
468
|
inS.endWriteParams();
|
452
469
|
return true;
|
453
470
|
}
|
471
|
+
/// \endcond
|
454
472
|
|
473
|
+
/// \cond INTERNAL
|
455
474
|
bool
|
456
|
-
Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const
|
475
|
+
Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
457
476
|
{
|
458
477
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_LocatorFinder_ops, iceC_Ice_LocatorFinder_ops + 5, current.operation);
|
459
478
|
if(r.first == r.second)
|
460
479
|
{
|
461
|
-
throw
|
480
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
462
481
|
}
|
463
482
|
|
464
483
|
switch(r.first - iceC_Ice_LocatorFinder_ops)
|
@@ -486,200 +505,221 @@ Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Curre
|
|
486
505
|
default:
|
487
506
|
{
|
488
507
|
assert(false);
|
489
|
-
throw
|
508
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
490
509
|
}
|
491
510
|
}
|
492
511
|
}
|
512
|
+
/// \endcond
|
493
513
|
|
514
|
+
/// \cond INTERNAL
|
494
515
|
void
|
495
|
-
Ice::LocatorPrx::_iceI_findObjectById(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
516
|
+
Ice::LocatorPrx::_iceI_findObjectById(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<ObjectPrx>>>& outAsync, const Identity& iceP_id, const Context& context)
|
496
517
|
{
|
497
518
|
_checkTwowayOnly(iceC_Ice_Locator_findObjectById_name);
|
498
|
-
outAsync->invoke(iceC_Ice_Locator_findObjectById_name,
|
499
|
-
[&](
|
519
|
+
outAsync->invoke(iceC_Ice_Locator_findObjectById_name, OperationMode::Nonmutating, FormatType::DefaultFormat, context,
|
520
|
+
[&](OutputStream* ostr)
|
500
521
|
{
|
501
522
|
ostr->writeAll(iceP_id);
|
502
523
|
},
|
503
|
-
[](const
|
524
|
+
[](const UserException& ex)
|
504
525
|
{
|
505
526
|
try
|
506
527
|
{
|
507
528
|
ex.ice_throw();
|
508
529
|
}
|
509
|
-
catch(const
|
530
|
+
catch(const ObjectNotFoundException&)
|
510
531
|
{
|
511
532
|
throw;
|
512
533
|
}
|
513
|
-
catch(const
|
534
|
+
catch(const UserException&)
|
514
535
|
{
|
515
536
|
}
|
516
537
|
});
|
517
538
|
}
|
539
|
+
/// \endcond
|
518
540
|
|
541
|
+
/// \cond INTERNAL
|
519
542
|
void
|
520
|
-
Ice::LocatorPrx::_iceI_findAdapterById(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
543
|
+
Ice::LocatorPrx::_iceI_findAdapterById(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<ObjectPrx>>>& outAsync, const ::std::string& iceP_id, const Context& context)
|
521
544
|
{
|
522
545
|
_checkTwowayOnly(iceC_Ice_Locator_findAdapterById_name);
|
523
|
-
outAsync->invoke(iceC_Ice_Locator_findAdapterById_name,
|
524
|
-
[&](
|
546
|
+
outAsync->invoke(iceC_Ice_Locator_findAdapterById_name, OperationMode::Nonmutating, FormatType::DefaultFormat, context,
|
547
|
+
[&](OutputStream* ostr)
|
525
548
|
{
|
526
549
|
ostr->writeAll(iceP_id);
|
527
550
|
},
|
528
|
-
[](const
|
551
|
+
[](const UserException& ex)
|
529
552
|
{
|
530
553
|
try
|
531
554
|
{
|
532
555
|
ex.ice_throw();
|
533
556
|
}
|
534
|
-
catch(const
|
557
|
+
catch(const AdapterNotFoundException&)
|
535
558
|
{
|
536
559
|
throw;
|
537
560
|
}
|
538
|
-
catch(const
|
561
|
+
catch(const UserException&)
|
539
562
|
{
|
540
563
|
}
|
541
564
|
});
|
542
565
|
}
|
566
|
+
/// \endcond
|
543
567
|
|
568
|
+
/// \cond INTERNAL
|
544
569
|
void
|
545
|
-
Ice::LocatorPrx::_iceI_getRegistry(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
570
|
+
Ice::LocatorPrx::_iceI_getRegistry(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<LocatorRegistryPrx>>>& outAsync, const Context& context)
|
546
571
|
{
|
547
572
|
_checkTwowayOnly(iceC_Ice_Locator_getRegistry_name);
|
548
|
-
outAsync->invoke(iceC_Ice_Locator_getRegistry_name,
|
573
|
+
outAsync->invoke(iceC_Ice_Locator_getRegistry_name, OperationMode::Nonmutating, FormatType::DefaultFormat, context,
|
549
574
|
nullptr,
|
550
575
|
nullptr);
|
551
576
|
}
|
577
|
+
/// \endcond
|
552
578
|
|
579
|
+
/// \cond INTERNAL
|
553
580
|
::std::shared_ptr<::Ice::ObjectPrx>
|
554
581
|
Ice::LocatorPrx::_newInstance() const
|
555
582
|
{
|
556
583
|
return ::IceInternal::createProxy<LocatorPrx>();
|
557
584
|
}
|
585
|
+
/// \endcond
|
558
586
|
|
559
587
|
const ::std::string&
|
560
588
|
Ice::LocatorPrx::ice_staticId()
|
561
589
|
{
|
562
|
-
return
|
590
|
+
return Locator::ice_staticId();
|
563
591
|
}
|
564
592
|
|
593
|
+
/// \cond INTERNAL
|
565
594
|
void
|
566
|
-
Ice::LocatorRegistryPrx::_iceI_setAdapterDirectProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_id, const ::std::shared_ptr
|
595
|
+
Ice::LocatorRegistryPrx::_iceI_setAdapterDirectProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_id, const ::std::shared_ptr<ObjectPrx>& iceP_proxy, const Context& context)
|
567
596
|
{
|
568
597
|
_checkTwowayOnly(iceC_Ice_LocatorRegistry_setAdapterDirectProxy_name);
|
569
|
-
outAsync->invoke(iceC_Ice_LocatorRegistry_setAdapterDirectProxy_name,
|
570
|
-
[&](
|
598
|
+
outAsync->invoke(iceC_Ice_LocatorRegistry_setAdapterDirectProxy_name, OperationMode::Idempotent, FormatType::DefaultFormat, context,
|
599
|
+
[&](OutputStream* ostr)
|
571
600
|
{
|
572
601
|
ostr->writeAll(iceP_id, iceP_proxy);
|
573
602
|
},
|
574
|
-
[](const
|
603
|
+
[](const UserException& ex)
|
575
604
|
{
|
576
605
|
try
|
577
606
|
{
|
578
607
|
ex.ice_throw();
|
579
608
|
}
|
580
|
-
catch(const
|
609
|
+
catch(const AdapterAlreadyActiveException&)
|
581
610
|
{
|
582
611
|
throw;
|
583
612
|
}
|
584
|
-
catch(const
|
613
|
+
catch(const AdapterNotFoundException&)
|
585
614
|
{
|
586
615
|
throw;
|
587
616
|
}
|
588
|
-
catch(const
|
617
|
+
catch(const UserException&)
|
589
618
|
{
|
590
619
|
}
|
591
620
|
});
|
592
621
|
}
|
622
|
+
/// \endcond
|
593
623
|
|
624
|
+
/// \cond INTERNAL
|
594
625
|
void
|
595
|
-
Ice::LocatorRegistryPrx::_iceI_setReplicatedAdapterDirectProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_adapterId, const ::std::string& iceP_replicaGroupId, const ::std::shared_ptr
|
626
|
+
Ice::LocatorRegistryPrx::_iceI_setReplicatedAdapterDirectProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_adapterId, const ::std::string& iceP_replicaGroupId, const ::std::shared_ptr<ObjectPrx>& iceP_p, const Context& context)
|
596
627
|
{
|
597
628
|
_checkTwowayOnly(iceC_Ice_LocatorRegistry_setReplicatedAdapterDirectProxy_name);
|
598
|
-
outAsync->invoke(iceC_Ice_LocatorRegistry_setReplicatedAdapterDirectProxy_name,
|
599
|
-
[&](
|
629
|
+
outAsync->invoke(iceC_Ice_LocatorRegistry_setReplicatedAdapterDirectProxy_name, OperationMode::Idempotent, FormatType::DefaultFormat, context,
|
630
|
+
[&](OutputStream* ostr)
|
600
631
|
{
|
601
632
|
ostr->writeAll(iceP_adapterId, iceP_replicaGroupId, iceP_p);
|
602
633
|
},
|
603
|
-
[](const
|
634
|
+
[](const UserException& ex)
|
604
635
|
{
|
605
636
|
try
|
606
637
|
{
|
607
638
|
ex.ice_throw();
|
608
639
|
}
|
609
|
-
catch(const
|
640
|
+
catch(const AdapterAlreadyActiveException&)
|
610
641
|
{
|
611
642
|
throw;
|
612
643
|
}
|
613
|
-
catch(const
|
644
|
+
catch(const AdapterNotFoundException&)
|
614
645
|
{
|
615
646
|
throw;
|
616
647
|
}
|
617
|
-
catch(const
|
648
|
+
catch(const InvalidReplicaGroupIdException&)
|
618
649
|
{
|
619
650
|
throw;
|
620
651
|
}
|
621
|
-
catch(const
|
652
|
+
catch(const UserException&)
|
622
653
|
{
|
623
654
|
}
|
624
655
|
});
|
625
656
|
}
|
657
|
+
/// \endcond
|
626
658
|
|
659
|
+
/// \cond INTERNAL
|
627
660
|
void
|
628
|
-
Ice::LocatorRegistryPrx::_iceI_setServerProcessProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_id, const ::std::shared_ptr
|
661
|
+
Ice::LocatorRegistryPrx::_iceI_setServerProcessProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<void>>& outAsync, const ::std::string& iceP_id, const ::std::shared_ptr<ProcessPrx>& iceP_proxy, const Context& context)
|
629
662
|
{
|
630
663
|
_checkTwowayOnly(iceC_Ice_LocatorRegistry_setServerProcessProxy_name);
|
631
|
-
outAsync->invoke(iceC_Ice_LocatorRegistry_setServerProcessProxy_name,
|
632
|
-
[&](
|
664
|
+
outAsync->invoke(iceC_Ice_LocatorRegistry_setServerProcessProxy_name, OperationMode::Idempotent, FormatType::DefaultFormat, context,
|
665
|
+
[&](OutputStream* ostr)
|
633
666
|
{
|
634
667
|
ostr->writeAll(iceP_id, iceP_proxy);
|
635
668
|
},
|
636
|
-
[](const
|
669
|
+
[](const UserException& ex)
|
637
670
|
{
|
638
671
|
try
|
639
672
|
{
|
640
673
|
ex.ice_throw();
|
641
674
|
}
|
642
|
-
catch(const
|
675
|
+
catch(const ServerNotFoundException&)
|
643
676
|
{
|
644
677
|
throw;
|
645
678
|
}
|
646
|
-
catch(const
|
679
|
+
catch(const UserException&)
|
647
680
|
{
|
648
681
|
}
|
649
682
|
});
|
650
683
|
}
|
684
|
+
/// \endcond
|
651
685
|
|
686
|
+
/// \cond INTERNAL
|
652
687
|
::std::shared_ptr<::Ice::ObjectPrx>
|
653
688
|
Ice::LocatorRegistryPrx::_newInstance() const
|
654
689
|
{
|
655
690
|
return ::IceInternal::createProxy<LocatorRegistryPrx>();
|
656
691
|
}
|
692
|
+
/// \endcond
|
657
693
|
|
658
694
|
const ::std::string&
|
659
695
|
Ice::LocatorRegistryPrx::ice_staticId()
|
660
696
|
{
|
661
|
-
return
|
697
|
+
return LocatorRegistry::ice_staticId();
|
662
698
|
}
|
663
699
|
|
700
|
+
/// \cond INTERNAL
|
664
701
|
void
|
665
|
-
Ice::LocatorFinderPrx::_iceI_getLocator(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
702
|
+
Ice::LocatorFinderPrx::_iceI_getLocator(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<LocatorPrx>>>& outAsync, const Context& context)
|
666
703
|
{
|
667
704
|
_checkTwowayOnly(iceC_Ice_LocatorFinder_getLocator_name);
|
668
|
-
outAsync->invoke(iceC_Ice_LocatorFinder_getLocator_name,
|
705
|
+
outAsync->invoke(iceC_Ice_LocatorFinder_getLocator_name, OperationMode::Normal, FormatType::DefaultFormat, context,
|
669
706
|
nullptr,
|
670
707
|
nullptr);
|
671
708
|
}
|
709
|
+
/// \endcond
|
672
710
|
|
711
|
+
/// \cond INTERNAL
|
673
712
|
::std::shared_ptr<::Ice::ObjectPrx>
|
674
713
|
Ice::LocatorFinderPrx::_newInstance() const
|
675
714
|
{
|
676
715
|
return ::IceInternal::createProxy<LocatorFinderPrx>();
|
677
716
|
}
|
717
|
+
/// \endcond
|
678
718
|
|
679
719
|
const ::std::string&
|
680
720
|
Ice::LocatorFinderPrx::ice_staticId()
|
681
721
|
{
|
682
|
-
return
|
722
|
+
return LocatorFinder::ice_staticId();
|
683
723
|
}
|
684
724
|
|
685
725
|
#else // C++98 mapping
|
@@ -732,21 +772,23 @@ Ice::AdapterNotFoundException::ice_throw() const
|
|
732
772
|
throw *this;
|
733
773
|
}
|
734
774
|
|
775
|
+
/// \cond STREAM
|
735
776
|
void
|
736
|
-
Ice::AdapterNotFoundException::_writeImpl(
|
777
|
+
Ice::AdapterNotFoundException::_writeImpl(OutputStream* ostr) const
|
737
778
|
{
|
738
779
|
ostr->startSlice("::Ice::AdapterNotFoundException", -1, true);
|
739
|
-
|
780
|
+
StreamWriter< AdapterNotFoundException, OutputStream>::write(ostr, *this);
|
740
781
|
ostr->endSlice();
|
741
782
|
}
|
742
783
|
|
743
784
|
void
|
744
|
-
Ice::AdapterNotFoundException::_readImpl(
|
785
|
+
Ice::AdapterNotFoundException::_readImpl(InputStream* istr)
|
745
786
|
{
|
746
787
|
istr->startSlice();
|
747
|
-
|
788
|
+
StreamReader< AdapterNotFoundException, InputStream>::read(istr, *this);
|
748
789
|
istr->endSlice();
|
749
790
|
}
|
791
|
+
/// \endcond
|
750
792
|
|
751
793
|
namespace
|
752
794
|
{
|
@@ -777,21 +819,23 @@ Ice::InvalidReplicaGroupIdException::ice_throw() const
|
|
777
819
|
throw *this;
|
778
820
|
}
|
779
821
|
|
822
|
+
/// \cond STREAM
|
780
823
|
void
|
781
|
-
Ice::InvalidReplicaGroupIdException::_writeImpl(
|
824
|
+
Ice::InvalidReplicaGroupIdException::_writeImpl(OutputStream* ostr) const
|
782
825
|
{
|
783
826
|
ostr->startSlice("::Ice::InvalidReplicaGroupIdException", -1, true);
|
784
|
-
|
827
|
+
StreamWriter< InvalidReplicaGroupIdException, OutputStream>::write(ostr, *this);
|
785
828
|
ostr->endSlice();
|
786
829
|
}
|
787
830
|
|
788
831
|
void
|
789
|
-
Ice::InvalidReplicaGroupIdException::_readImpl(
|
832
|
+
Ice::InvalidReplicaGroupIdException::_readImpl(InputStream* istr)
|
790
833
|
{
|
791
834
|
istr->startSlice();
|
792
|
-
|
835
|
+
StreamReader< InvalidReplicaGroupIdException, InputStream>::read(istr, *this);
|
793
836
|
istr->endSlice();
|
794
837
|
}
|
838
|
+
/// \endcond
|
795
839
|
|
796
840
|
namespace
|
797
841
|
{
|
@@ -822,21 +866,23 @@ Ice::AdapterAlreadyActiveException::ice_throw() const
|
|
822
866
|
throw *this;
|
823
867
|
}
|
824
868
|
|
869
|
+
/// \cond STREAM
|
825
870
|
void
|
826
|
-
Ice::AdapterAlreadyActiveException::_writeImpl(
|
871
|
+
Ice::AdapterAlreadyActiveException::_writeImpl(OutputStream* ostr) const
|
827
872
|
{
|
828
873
|
ostr->startSlice("::Ice::AdapterAlreadyActiveException", -1, true);
|
829
|
-
|
874
|
+
StreamWriter< AdapterAlreadyActiveException, OutputStream>::write(ostr, *this);
|
830
875
|
ostr->endSlice();
|
831
876
|
}
|
832
877
|
|
833
878
|
void
|
834
|
-
Ice::AdapterAlreadyActiveException::_readImpl(
|
879
|
+
Ice::AdapterAlreadyActiveException::_readImpl(InputStream* istr)
|
835
880
|
{
|
836
881
|
istr->startSlice();
|
837
|
-
|
882
|
+
StreamReader< AdapterAlreadyActiveException, InputStream>::read(istr, *this);
|
838
883
|
istr->endSlice();
|
839
884
|
}
|
885
|
+
/// \endcond
|
840
886
|
|
841
887
|
namespace
|
842
888
|
{
|
@@ -867,21 +913,23 @@ Ice::ObjectNotFoundException::ice_throw() const
|
|
867
913
|
throw *this;
|
868
914
|
}
|
869
915
|
|
916
|
+
/// \cond STREAM
|
870
917
|
void
|
871
|
-
Ice::ObjectNotFoundException::_writeImpl(
|
918
|
+
Ice::ObjectNotFoundException::_writeImpl(OutputStream* ostr) const
|
872
919
|
{
|
873
920
|
ostr->startSlice("::Ice::ObjectNotFoundException", -1, true);
|
874
|
-
|
921
|
+
StreamWriter< ObjectNotFoundException, OutputStream>::write(ostr, *this);
|
875
922
|
ostr->endSlice();
|
876
923
|
}
|
877
924
|
|
878
925
|
void
|
879
|
-
Ice::ObjectNotFoundException::_readImpl(
|
926
|
+
Ice::ObjectNotFoundException::_readImpl(InputStream* istr)
|
880
927
|
{
|
881
928
|
istr->startSlice();
|
882
|
-
|
929
|
+
StreamReader< ObjectNotFoundException, InputStream>::read(istr, *this);
|
883
930
|
istr->endSlice();
|
884
931
|
}
|
932
|
+
/// \endcond
|
885
933
|
|
886
934
|
namespace
|
887
935
|
{
|
@@ -912,21 +960,23 @@ Ice::ServerNotFoundException::ice_throw() const
|
|
912
960
|
throw *this;
|
913
961
|
}
|
914
962
|
|
963
|
+
/// \cond STREAM
|
915
964
|
void
|
916
|
-
Ice::ServerNotFoundException::_writeImpl(
|
965
|
+
Ice::ServerNotFoundException::_writeImpl(OutputStream* ostr) const
|
917
966
|
{
|
918
967
|
ostr->startSlice("::Ice::ServerNotFoundException", -1, true);
|
919
|
-
|
968
|
+
StreamWriter< ServerNotFoundException, OutputStream>::write(ostr, *this);
|
920
969
|
ostr->endSlice();
|
921
970
|
}
|
922
971
|
|
923
972
|
void
|
924
|
-
Ice::ServerNotFoundException::_readImpl(
|
973
|
+
Ice::ServerNotFoundException::_readImpl(InputStream* istr)
|
925
974
|
{
|
926
975
|
istr->startSlice();
|
927
|
-
|
976
|
+
StreamReader< ServerNotFoundException, InputStream>::read(istr, *this);
|
928
977
|
istr->endSlice();
|
929
978
|
}
|
979
|
+
/// \endcond
|
930
980
|
|
931
981
|
Ice::AMD_Locator_findObjectById::~AMD_Locator_findObjectById()
|
932
982
|
{
|
@@ -948,6 +998,7 @@ Ice::AMD_LocatorRegistry_setServerProcessProxy::~AMD_LocatorRegistry_setServerPr
|
|
948
998
|
{
|
949
999
|
}
|
950
1000
|
|
1001
|
+
/// \cond INTERNAL
|
951
1002
|
IceAsync::Ice::AMD_Locator_findObjectById::AMD_Locator_findObjectById(::IceInternal::Incoming& in) :
|
952
1003
|
::IceInternal::IncomingAsync(in)
|
953
1004
|
{
|
@@ -961,7 +1012,9 @@ IceAsync::Ice::AMD_Locator_findObjectById::ice_response(const ::Ice::ObjectPrx&
|
|
961
1012
|
endWriteParams();
|
962
1013
|
completed();
|
963
1014
|
}
|
1015
|
+
/// \endcond
|
964
1016
|
|
1017
|
+
/// \cond INTERNAL
|
965
1018
|
IceAsync::Ice::AMD_Locator_findAdapterById::AMD_Locator_findAdapterById(::IceInternal::Incoming& in) :
|
966
1019
|
::IceInternal::IncomingAsync(in)
|
967
1020
|
{
|
@@ -975,7 +1028,9 @@ IceAsync::Ice::AMD_Locator_findAdapterById::ice_response(const ::Ice::ObjectPrx&
|
|
975
1028
|
endWriteParams();
|
976
1029
|
completed();
|
977
1030
|
}
|
1031
|
+
/// \endcond
|
978
1032
|
|
1033
|
+
/// \cond INTERNAL
|
979
1034
|
IceAsync::Ice::AMD_LocatorRegistry_setAdapterDirectProxy::AMD_LocatorRegistry_setAdapterDirectProxy(::IceInternal::Incoming& in) :
|
980
1035
|
::IceInternal::IncomingAsync(in)
|
981
1036
|
{
|
@@ -987,7 +1042,9 @@ IceAsync::Ice::AMD_LocatorRegistry_setAdapterDirectProxy::ice_response()
|
|
987
1042
|
writeEmptyParams();
|
988
1043
|
completed();
|
989
1044
|
}
|
1045
|
+
/// \endcond
|
990
1046
|
|
1047
|
+
/// \cond INTERNAL
|
991
1048
|
IceAsync::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy(::IceInternal::Incoming& in) :
|
992
1049
|
::IceInternal::IncomingAsync(in)
|
993
1050
|
{
|
@@ -999,7 +1056,9 @@ IceAsync::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy::ice_response
|
|
999
1056
|
writeEmptyParams();
|
1000
1057
|
completed();
|
1001
1058
|
}
|
1059
|
+
/// \endcond
|
1002
1060
|
|
1061
|
+
/// \cond INTERNAL
|
1003
1062
|
IceAsync::Ice::AMD_LocatorRegistry_setServerProcessProxy::AMD_LocatorRegistry_setServerProcessProxy(::IceInternal::Incoming& in) :
|
1004
1063
|
::IceInternal::IncomingAsync(in)
|
1005
1064
|
{
|
@@ -1011,10 +1070,13 @@ IceAsync::Ice::AMD_LocatorRegistry_setServerProcessProxy::ice_response()
|
|
1011
1070
|
writeEmptyParams();
|
1012
1071
|
completed();
|
1013
1072
|
}
|
1014
|
-
|
1073
|
+
/// \endcond
|
1074
|
+
|
1075
|
+
/// \cond INTERNAL
|
1076
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(Locator* p) { return p; }
|
1015
1077
|
|
1016
1078
|
void
|
1017
|
-
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle<
|
1079
|
+
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle< Locator>& v)
|
1018
1080
|
{
|
1019
1081
|
::Ice::ObjectPrx proxy;
|
1020
1082
|
istr->read(proxy);
|
@@ -1024,10 +1086,11 @@ void
|
|
1024
1086
|
}
|
1025
1087
|
else
|
1026
1088
|
{
|
1027
|
-
v = new
|
1089
|
+
v = new Locator;
|
1028
1090
|
v->_copyFrom(proxy);
|
1029
1091
|
}
|
1030
1092
|
}
|
1093
|
+
/// \endcond
|
1031
1094
|
|
1032
1095
|
::Ice::AsyncResultPtr
|
1033
1096
|
IceProxy::Ice::Locator::_iceI_begin_findObjectById(const ::Ice::Identity& iceP_id, const ::Ice::Context& context, const ::IceInternal::CallbackBasePtr& del, const ::Ice::LocalObjectPtr& cookie, bool sync)
|
@@ -1161,21 +1224,25 @@ IceProxy::Ice::Locator::end_getRegistry(const ::Ice::AsyncResultPtr& result)
|
|
1161
1224
|
return ret;
|
1162
1225
|
}
|
1163
1226
|
|
1227
|
+
/// \cond INTERNAL
|
1164
1228
|
::IceProxy::Ice::Object*
|
1165
1229
|
IceProxy::Ice::Locator::_newInstance() const
|
1166
1230
|
{
|
1167
1231
|
return new Locator;
|
1168
1232
|
}
|
1233
|
+
/// \endcond
|
1169
1234
|
|
1170
1235
|
const ::std::string&
|
1171
1236
|
IceProxy::Ice::Locator::ice_staticId()
|
1172
1237
|
{
|
1173
1238
|
return ::Ice::Locator::ice_staticId();
|
1174
1239
|
}
|
1175
|
-
|
1240
|
+
|
1241
|
+
/// \cond INTERNAL
|
1242
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(LocatorRegistry* p) { return p; }
|
1176
1243
|
|
1177
1244
|
void
|
1178
|
-
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle<
|
1245
|
+
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle< LocatorRegistry>& v)
|
1179
1246
|
{
|
1180
1247
|
::Ice::ObjectPrx proxy;
|
1181
1248
|
istr->read(proxy);
|
@@ -1185,10 +1252,11 @@ void
|
|
1185
1252
|
}
|
1186
1253
|
else
|
1187
1254
|
{
|
1188
|
-
v = new
|
1255
|
+
v = new LocatorRegistry;
|
1189
1256
|
v->_copyFrom(proxy);
|
1190
1257
|
}
|
1191
1258
|
}
|
1259
|
+
/// \endcond
|
1192
1260
|
|
1193
1261
|
::Ice::AsyncResultPtr
|
1194
1262
|
IceProxy::Ice::LocatorRegistry::_iceI_begin_setAdapterDirectProxy(const ::std::string& iceP_id, const ::Ice::ObjectPrx& iceP_proxy, const ::Ice::Context& context, const ::IceInternal::CallbackBasePtr& del, const ::Ice::LocalObjectPtr& cookie, bool sync)
|
@@ -1332,21 +1400,25 @@ IceProxy::Ice::LocatorRegistry::end_setServerProcessProxy(const ::Ice::AsyncResu
|
|
1332
1400
|
result->_readEmptyParams();
|
1333
1401
|
}
|
1334
1402
|
|
1403
|
+
/// \cond INTERNAL
|
1335
1404
|
::IceProxy::Ice::Object*
|
1336
1405
|
IceProxy::Ice::LocatorRegistry::_newInstance() const
|
1337
1406
|
{
|
1338
1407
|
return new LocatorRegistry;
|
1339
1408
|
}
|
1409
|
+
/// \endcond
|
1340
1410
|
|
1341
1411
|
const ::std::string&
|
1342
1412
|
IceProxy::Ice::LocatorRegistry::ice_staticId()
|
1343
1413
|
{
|
1344
1414
|
return ::Ice::LocatorRegistry::ice_staticId();
|
1345
1415
|
}
|
1346
|
-
|
1416
|
+
|
1417
|
+
/// \cond INTERNAL
|
1418
|
+
ICE_API ::IceProxy::Ice::Object* ::IceProxy::Ice::upCast(LocatorFinder* p) { return p; }
|
1347
1419
|
|
1348
1420
|
void
|
1349
|
-
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle<
|
1421
|
+
::IceProxy::Ice::_readProxy(::Ice::InputStream* istr, ::IceInternal::ProxyHandle< LocatorFinder>& v)
|
1350
1422
|
{
|
1351
1423
|
::Ice::ObjectPrx proxy;
|
1352
1424
|
istr->read(proxy);
|
@@ -1356,10 +1428,11 @@ void
|
|
1356
1428
|
}
|
1357
1429
|
else
|
1358
1430
|
{
|
1359
|
-
v = new
|
1431
|
+
v = new LocatorFinder;
|
1360
1432
|
v->_copyFrom(proxy);
|
1361
1433
|
}
|
1362
1434
|
}
|
1435
|
+
/// \endcond
|
1363
1436
|
|
1364
1437
|
::Ice::AsyncResultPtr
|
1365
1438
|
IceProxy::Ice::LocatorFinder::_iceI_begin_getLocator(const ::Ice::Context& context, const ::IceInternal::CallbackBasePtr& del, const ::Ice::LocalObjectPtr& cookie, bool sync)
|
@@ -1401,11 +1474,13 @@ IceProxy::Ice::LocatorFinder::end_getLocator(const ::Ice::AsyncResultPtr& result
|
|
1401
1474
|
return ret;
|
1402
1475
|
}
|
1403
1476
|
|
1477
|
+
/// \cond INTERNAL
|
1404
1478
|
::IceProxy::Ice::Object*
|
1405
1479
|
IceProxy::Ice::LocatorFinder::_newInstance() const
|
1406
1480
|
{
|
1407
1481
|
return new LocatorFinder;
|
1408
1482
|
}
|
1483
|
+
/// \endcond
|
1409
1484
|
|
1410
1485
|
const ::std::string&
|
1411
1486
|
IceProxy::Ice::LocatorFinder::ice_staticId()
|
@@ -1417,8 +1492,10 @@ Ice::Locator::~Locator()
|
|
1417
1492
|
{
|
1418
1493
|
}
|
1419
1494
|
|
1420
|
-
|
1495
|
+
/// \cond INTERNAL
|
1496
|
+
ICE_API ::Ice::Object* Ice::upCast(Locator* p) { return p; }
|
1421
1497
|
|
1498
|
+
/// \endcond
|
1422
1499
|
|
1423
1500
|
namespace
|
1424
1501
|
{
|
@@ -1431,19 +1508,19 @@ const ::std::string iceC_Ice_Locator_ids[2] =
|
|
1431
1508
|
}
|
1432
1509
|
|
1433
1510
|
bool
|
1434
|
-
Ice::Locator::ice_isA(const ::std::string& s, const
|
1511
|
+
Ice::Locator::ice_isA(const ::std::string& s, const Current&) const
|
1435
1512
|
{
|
1436
1513
|
return ::std::binary_search(iceC_Ice_Locator_ids, iceC_Ice_Locator_ids + 2, s);
|
1437
1514
|
}
|
1438
1515
|
|
1439
1516
|
::std::vector< ::std::string>
|
1440
|
-
Ice::Locator::ice_ids(const
|
1517
|
+
Ice::Locator::ice_ids(const Current&) const
|
1441
1518
|
{
|
1442
1519
|
return ::std::vector< ::std::string>(&iceC_Ice_Locator_ids[0], &iceC_Ice_Locator_ids[2]);
|
1443
1520
|
}
|
1444
1521
|
|
1445
1522
|
const ::std::string&
|
1446
|
-
Ice::Locator::ice_id(const
|
1523
|
+
Ice::Locator::ice_id(const Current&) const
|
1447
1524
|
{
|
1448
1525
|
return ice_staticId();
|
1449
1526
|
}
|
@@ -1459,41 +1536,47 @@ Ice::Locator::ice_staticId()
|
|
1459
1536
|
#endif
|
1460
1537
|
}
|
1461
1538
|
|
1539
|
+
/// \cond INTERNAL
|
1462
1540
|
bool
|
1463
|
-
Ice::Locator::_iceD_findObjectById(::IceInternal::Incoming& inS, const
|
1541
|
+
Ice::Locator::_iceD_findObjectById(::IceInternal::Incoming& inS, const Current& current) const
|
1464
1542
|
{
|
1465
1543
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1466
|
-
|
1467
|
-
|
1544
|
+
InputStream* istr = inS.startReadParams();
|
1545
|
+
Identity iceP_id;
|
1468
1546
|
istr->read(iceP_id);
|
1469
1547
|
inS.endReadParams();
|
1470
1548
|
this->findObjectById_async(new IceAsync::Ice::AMD_Locator_findObjectById(inS), iceP_id, current);
|
1471
1549
|
return false;
|
1472
1550
|
}
|
1551
|
+
/// \endcond
|
1473
1552
|
|
1553
|
+
/// \cond INTERNAL
|
1474
1554
|
bool
|
1475
|
-
Ice::Locator::_iceD_findAdapterById(::IceInternal::Incoming& inS, const
|
1555
|
+
Ice::Locator::_iceD_findAdapterById(::IceInternal::Incoming& inS, const Current& current) const
|
1476
1556
|
{
|
1477
1557
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1478
|
-
|
1558
|
+
InputStream* istr = inS.startReadParams();
|
1479
1559
|
::std::string iceP_id;
|
1480
1560
|
istr->read(iceP_id);
|
1481
1561
|
inS.endReadParams();
|
1482
1562
|
this->findAdapterById_async(new IceAsync::Ice::AMD_Locator_findAdapterById(inS), iceP_id, current);
|
1483
1563
|
return false;
|
1484
1564
|
}
|
1565
|
+
/// \endcond
|
1485
1566
|
|
1567
|
+
/// \cond INTERNAL
|
1486
1568
|
bool
|
1487
|
-
Ice::Locator::_iceD_getRegistry(::IceInternal::Incoming& inS, const
|
1569
|
+
Ice::Locator::_iceD_getRegistry(::IceInternal::Incoming& inS, const Current& current) const
|
1488
1570
|
{
|
1489
1571
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1490
1572
|
inS.readEmptyParams();
|
1491
|
-
|
1492
|
-
|
1573
|
+
LocatorRegistryPrx ret = this->getRegistry(current);
|
1574
|
+
OutputStream* ostr = inS.startWriteParams();
|
1493
1575
|
ostr->write(ret);
|
1494
1576
|
inS.endWriteParams();
|
1495
1577
|
return true;
|
1496
1578
|
}
|
1579
|
+
/// \endcond
|
1497
1580
|
|
1498
1581
|
namespace
|
1499
1582
|
{
|
@@ -1510,13 +1593,14 @@ const ::std::string iceC_Ice_Locator_all[] =
|
|
1510
1593
|
|
1511
1594
|
}
|
1512
1595
|
|
1596
|
+
/// \cond INTERNAL
|
1513
1597
|
bool
|
1514
|
-
Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const
|
1598
|
+
Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
1515
1599
|
{
|
1516
1600
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_Locator_all, iceC_Ice_Locator_all + 7, current.operation);
|
1517
1601
|
if(r.first == r.second)
|
1518
1602
|
{
|
1519
|
-
throw
|
1603
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1520
1604
|
}
|
1521
1605
|
|
1522
1606
|
switch(r.first - iceC_Ice_Locator_all)
|
@@ -1552,43 +1636,50 @@ Ice::Locator::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Current& cu
|
|
1552
1636
|
default:
|
1553
1637
|
{
|
1554
1638
|
assert(false);
|
1555
|
-
throw
|
1639
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1556
1640
|
}
|
1557
1641
|
}
|
1558
1642
|
}
|
1643
|
+
/// \endcond
|
1559
1644
|
|
1645
|
+
/// \cond STREAM
|
1560
1646
|
void
|
1561
|
-
Ice::Locator::_iceWriteImpl(
|
1647
|
+
Ice::Locator::_iceWriteImpl(OutputStream* ostr) const
|
1562
1648
|
{
|
1563
1649
|
ostr->startSlice(ice_staticId(), -1, true);
|
1564
|
-
|
1650
|
+
StreamWriter< Locator, OutputStream>::write(ostr, *this);
|
1565
1651
|
ostr->endSlice();
|
1566
1652
|
}
|
1567
1653
|
|
1568
1654
|
void
|
1569
|
-
Ice::Locator::_iceReadImpl(
|
1655
|
+
Ice::Locator::_iceReadImpl(InputStream* istr)
|
1570
1656
|
{
|
1571
1657
|
istr->startSlice();
|
1572
|
-
|
1658
|
+
StreamReader< Locator, InputStream>::read(istr, *this);
|
1573
1659
|
istr->endSlice();
|
1574
1660
|
}
|
1661
|
+
/// \endcond
|
1575
1662
|
|
1663
|
+
/// \cond INTERNAL
|
1576
1664
|
void
|
1577
|
-
Ice::_icePatchObjectPtr(LocatorPtr& handle, const
|
1665
|
+
Ice::_icePatchObjectPtr(LocatorPtr& handle, const ObjectPtr& v)
|
1578
1666
|
{
|
1579
|
-
handle =
|
1667
|
+
handle = LocatorPtr::dynamicCast(v);
|
1580
1668
|
if(v && !handle)
|
1581
1669
|
{
|
1582
|
-
IceInternal::Ex::throwUOE(
|
1670
|
+
IceInternal::Ex::throwUOE(Locator::ice_staticId(), v);
|
1583
1671
|
}
|
1584
1672
|
}
|
1673
|
+
/// \endcond
|
1585
1674
|
|
1586
1675
|
Ice::LocatorRegistry::~LocatorRegistry()
|
1587
1676
|
{
|
1588
1677
|
}
|
1589
1678
|
|
1590
|
-
|
1679
|
+
/// \cond INTERNAL
|
1680
|
+
ICE_API ::Ice::Object* Ice::upCast(LocatorRegistry* p) { return p; }
|
1591
1681
|
|
1682
|
+
/// \endcond
|
1592
1683
|
|
1593
1684
|
namespace
|
1594
1685
|
{
|
@@ -1601,19 +1692,19 @@ const ::std::string iceC_Ice_LocatorRegistry_ids[2] =
|
|
1601
1692
|
}
|
1602
1693
|
|
1603
1694
|
bool
|
1604
|
-
Ice::LocatorRegistry::ice_isA(const ::std::string& s, const
|
1695
|
+
Ice::LocatorRegistry::ice_isA(const ::std::string& s, const Current&) const
|
1605
1696
|
{
|
1606
1697
|
return ::std::binary_search(iceC_Ice_LocatorRegistry_ids, iceC_Ice_LocatorRegistry_ids + 2, s);
|
1607
1698
|
}
|
1608
1699
|
|
1609
1700
|
::std::vector< ::std::string>
|
1610
|
-
Ice::LocatorRegistry::ice_ids(const
|
1701
|
+
Ice::LocatorRegistry::ice_ids(const Current&) const
|
1611
1702
|
{
|
1612
1703
|
return ::std::vector< ::std::string>(&iceC_Ice_LocatorRegistry_ids[0], &iceC_Ice_LocatorRegistry_ids[2]);
|
1613
1704
|
}
|
1614
1705
|
|
1615
1706
|
const ::std::string&
|
1616
|
-
Ice::LocatorRegistry::ice_id(const
|
1707
|
+
Ice::LocatorRegistry::ice_id(const Current&) const
|
1617
1708
|
{
|
1618
1709
|
return ice_staticId();
|
1619
1710
|
}
|
@@ -1629,28 +1720,31 @@ Ice::LocatorRegistry::ice_staticId()
|
|
1629
1720
|
#endif
|
1630
1721
|
}
|
1631
1722
|
|
1723
|
+
/// \cond INTERNAL
|
1632
1724
|
bool
|
1633
|
-
Ice::LocatorRegistry::_iceD_setAdapterDirectProxy(::IceInternal::Incoming& inS, const
|
1725
|
+
Ice::LocatorRegistry::_iceD_setAdapterDirectProxy(::IceInternal::Incoming& inS, const Current& current)
|
1634
1726
|
{
|
1635
1727
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1636
|
-
|
1728
|
+
InputStream* istr = inS.startReadParams();
|
1637
1729
|
::std::string iceP_id;
|
1638
|
-
|
1730
|
+
ObjectPrx iceP_proxy;
|
1639
1731
|
istr->read(iceP_id);
|
1640
1732
|
istr->read(iceP_proxy);
|
1641
1733
|
inS.endReadParams();
|
1642
1734
|
this->setAdapterDirectProxy_async(new IceAsync::Ice::AMD_LocatorRegistry_setAdapterDirectProxy(inS), iceP_id, iceP_proxy, current);
|
1643
1735
|
return false;
|
1644
1736
|
}
|
1737
|
+
/// \endcond
|
1645
1738
|
|
1739
|
+
/// \cond INTERNAL
|
1646
1740
|
bool
|
1647
|
-
Ice::LocatorRegistry::_iceD_setReplicatedAdapterDirectProxy(::IceInternal::Incoming& inS, const
|
1741
|
+
Ice::LocatorRegistry::_iceD_setReplicatedAdapterDirectProxy(::IceInternal::Incoming& inS, const Current& current)
|
1648
1742
|
{
|
1649
1743
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1650
|
-
|
1744
|
+
InputStream* istr = inS.startReadParams();
|
1651
1745
|
::std::string iceP_adapterId;
|
1652
1746
|
::std::string iceP_replicaGroupId;
|
1653
|
-
|
1747
|
+
ObjectPrx iceP_p;
|
1654
1748
|
istr->read(iceP_adapterId);
|
1655
1749
|
istr->read(iceP_replicaGroupId);
|
1656
1750
|
istr->read(iceP_p);
|
@@ -1658,20 +1752,23 @@ Ice::LocatorRegistry::_iceD_setReplicatedAdapterDirectProxy(::IceInternal::Incom
|
|
1658
1752
|
this->setReplicatedAdapterDirectProxy_async(new IceAsync::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy(inS), iceP_adapterId, iceP_replicaGroupId, iceP_p, current);
|
1659
1753
|
return false;
|
1660
1754
|
}
|
1755
|
+
/// \endcond
|
1661
1756
|
|
1757
|
+
/// \cond INTERNAL
|
1662
1758
|
bool
|
1663
|
-
Ice::LocatorRegistry::_iceD_setServerProcessProxy(::IceInternal::Incoming& inS, const
|
1759
|
+
Ice::LocatorRegistry::_iceD_setServerProcessProxy(::IceInternal::Incoming& inS, const Current& current)
|
1664
1760
|
{
|
1665
1761
|
_iceCheckMode(::Ice::Idempotent, current.mode);
|
1666
|
-
|
1762
|
+
InputStream* istr = inS.startReadParams();
|
1667
1763
|
::std::string iceP_id;
|
1668
|
-
|
1764
|
+
ProcessPrx iceP_proxy;
|
1669
1765
|
istr->read(iceP_id);
|
1670
1766
|
istr->read(iceP_proxy);
|
1671
1767
|
inS.endReadParams();
|
1672
1768
|
this->setServerProcessProxy_async(new IceAsync::Ice::AMD_LocatorRegistry_setServerProcessProxy(inS), iceP_id, iceP_proxy, current);
|
1673
1769
|
return false;
|
1674
1770
|
}
|
1771
|
+
/// \endcond
|
1675
1772
|
|
1676
1773
|
namespace
|
1677
1774
|
{
|
@@ -1688,13 +1785,14 @@ const ::std::string iceC_Ice_LocatorRegistry_all[] =
|
|
1688
1785
|
|
1689
1786
|
}
|
1690
1787
|
|
1788
|
+
/// \cond INTERNAL
|
1691
1789
|
bool
|
1692
|
-
Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const
|
1790
|
+
Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
1693
1791
|
{
|
1694
1792
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_LocatorRegistry_all, iceC_Ice_LocatorRegistry_all + 7, current.operation);
|
1695
1793
|
if(r.first == r.second)
|
1696
1794
|
{
|
1697
|
-
throw
|
1795
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1698
1796
|
}
|
1699
1797
|
|
1700
1798
|
switch(r.first - iceC_Ice_LocatorRegistry_all)
|
@@ -1730,43 +1828,50 @@ Ice::LocatorRegistry::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Cur
|
|
1730
1828
|
default:
|
1731
1829
|
{
|
1732
1830
|
assert(false);
|
1733
|
-
throw
|
1831
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1734
1832
|
}
|
1735
1833
|
}
|
1736
1834
|
}
|
1835
|
+
/// \endcond
|
1737
1836
|
|
1837
|
+
/// \cond STREAM
|
1738
1838
|
void
|
1739
|
-
Ice::LocatorRegistry::_iceWriteImpl(
|
1839
|
+
Ice::LocatorRegistry::_iceWriteImpl(OutputStream* ostr) const
|
1740
1840
|
{
|
1741
1841
|
ostr->startSlice(ice_staticId(), -1, true);
|
1742
|
-
|
1842
|
+
StreamWriter< LocatorRegistry, OutputStream>::write(ostr, *this);
|
1743
1843
|
ostr->endSlice();
|
1744
1844
|
}
|
1745
1845
|
|
1746
1846
|
void
|
1747
|
-
Ice::LocatorRegistry::_iceReadImpl(
|
1847
|
+
Ice::LocatorRegistry::_iceReadImpl(InputStream* istr)
|
1748
1848
|
{
|
1749
1849
|
istr->startSlice();
|
1750
|
-
|
1850
|
+
StreamReader< LocatorRegistry, InputStream>::read(istr, *this);
|
1751
1851
|
istr->endSlice();
|
1752
1852
|
}
|
1853
|
+
/// \endcond
|
1753
1854
|
|
1855
|
+
/// \cond INTERNAL
|
1754
1856
|
void
|
1755
|
-
Ice::_icePatchObjectPtr(LocatorRegistryPtr& handle, const
|
1857
|
+
Ice::_icePatchObjectPtr(LocatorRegistryPtr& handle, const ObjectPtr& v)
|
1756
1858
|
{
|
1757
|
-
handle =
|
1859
|
+
handle = LocatorRegistryPtr::dynamicCast(v);
|
1758
1860
|
if(v && !handle)
|
1759
1861
|
{
|
1760
|
-
IceInternal::Ex::throwUOE(
|
1862
|
+
IceInternal::Ex::throwUOE(LocatorRegistry::ice_staticId(), v);
|
1761
1863
|
}
|
1762
1864
|
}
|
1865
|
+
/// \endcond
|
1763
1866
|
|
1764
1867
|
Ice::LocatorFinder::~LocatorFinder()
|
1765
1868
|
{
|
1766
1869
|
}
|
1767
1870
|
|
1768
|
-
|
1871
|
+
/// \cond INTERNAL
|
1872
|
+
ICE_API ::Ice::Object* Ice::upCast(LocatorFinder* p) { return p; }
|
1769
1873
|
|
1874
|
+
/// \endcond
|
1770
1875
|
|
1771
1876
|
namespace
|
1772
1877
|
{
|
@@ -1779,19 +1884,19 @@ const ::std::string iceC_Ice_LocatorFinder_ids[2] =
|
|
1779
1884
|
}
|
1780
1885
|
|
1781
1886
|
bool
|
1782
|
-
Ice::LocatorFinder::ice_isA(const ::std::string& s, const
|
1887
|
+
Ice::LocatorFinder::ice_isA(const ::std::string& s, const Current&) const
|
1783
1888
|
{
|
1784
1889
|
return ::std::binary_search(iceC_Ice_LocatorFinder_ids, iceC_Ice_LocatorFinder_ids + 2, s);
|
1785
1890
|
}
|
1786
1891
|
|
1787
1892
|
::std::vector< ::std::string>
|
1788
|
-
Ice::LocatorFinder::ice_ids(const
|
1893
|
+
Ice::LocatorFinder::ice_ids(const Current&) const
|
1789
1894
|
{
|
1790
1895
|
return ::std::vector< ::std::string>(&iceC_Ice_LocatorFinder_ids[0], &iceC_Ice_LocatorFinder_ids[2]);
|
1791
1896
|
}
|
1792
1897
|
|
1793
1898
|
const ::std::string&
|
1794
|
-
Ice::LocatorFinder::ice_id(const
|
1899
|
+
Ice::LocatorFinder::ice_id(const Current&) const
|
1795
1900
|
{
|
1796
1901
|
return ice_staticId();
|
1797
1902
|
}
|
@@ -1807,17 +1912,19 @@ Ice::LocatorFinder::ice_staticId()
|
|
1807
1912
|
#endif
|
1808
1913
|
}
|
1809
1914
|
|
1915
|
+
/// \cond INTERNAL
|
1810
1916
|
bool
|
1811
|
-
Ice::LocatorFinder::_iceD_getLocator(::IceInternal::Incoming& inS, const
|
1917
|
+
Ice::LocatorFinder::_iceD_getLocator(::IceInternal::Incoming& inS, const Current& current)
|
1812
1918
|
{
|
1813
1919
|
_iceCheckMode(::Ice::Normal, current.mode);
|
1814
1920
|
inS.readEmptyParams();
|
1815
|
-
|
1816
|
-
|
1921
|
+
LocatorPrx ret = this->getLocator(current);
|
1922
|
+
OutputStream* ostr = inS.startWriteParams();
|
1817
1923
|
ostr->write(ret);
|
1818
1924
|
inS.endWriteParams();
|
1819
1925
|
return true;
|
1820
1926
|
}
|
1927
|
+
/// \endcond
|
1821
1928
|
|
1822
1929
|
namespace
|
1823
1930
|
{
|
@@ -1832,13 +1939,14 @@ const ::std::string iceC_Ice_LocatorFinder_all[] =
|
|
1832
1939
|
|
1833
1940
|
}
|
1834
1941
|
|
1942
|
+
/// \cond INTERNAL
|
1835
1943
|
bool
|
1836
|
-
Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const
|
1944
|
+
Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const Current& current)
|
1837
1945
|
{
|
1838
1946
|
::std::pair<const ::std::string*, const ::std::string*> r = ::std::equal_range(iceC_Ice_LocatorFinder_all, iceC_Ice_LocatorFinder_all + 5, current.operation);
|
1839
1947
|
if(r.first == r.second)
|
1840
1948
|
{
|
1841
|
-
throw
|
1949
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1842
1950
|
}
|
1843
1951
|
|
1844
1952
|
switch(r.first - iceC_Ice_LocatorFinder_all)
|
@@ -1866,36 +1974,41 @@ Ice::LocatorFinder::_iceDispatch(::IceInternal::Incoming& in, const ::Ice::Curre
|
|
1866
1974
|
default:
|
1867
1975
|
{
|
1868
1976
|
assert(false);
|
1869
|
-
throw
|
1977
|
+
throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation);
|
1870
1978
|
}
|
1871
1979
|
}
|
1872
1980
|
}
|
1981
|
+
/// \endcond
|
1873
1982
|
|
1983
|
+
/// \cond STREAM
|
1874
1984
|
void
|
1875
|
-
Ice::LocatorFinder::_iceWriteImpl(
|
1985
|
+
Ice::LocatorFinder::_iceWriteImpl(OutputStream* ostr) const
|
1876
1986
|
{
|
1877
1987
|
ostr->startSlice(ice_staticId(), -1, true);
|
1878
|
-
|
1988
|
+
StreamWriter< LocatorFinder, OutputStream>::write(ostr, *this);
|
1879
1989
|
ostr->endSlice();
|
1880
1990
|
}
|
1881
1991
|
|
1882
1992
|
void
|
1883
|
-
Ice::LocatorFinder::_iceReadImpl(
|
1993
|
+
Ice::LocatorFinder::_iceReadImpl(InputStream* istr)
|
1884
1994
|
{
|
1885
1995
|
istr->startSlice();
|
1886
|
-
|
1996
|
+
StreamReader< LocatorFinder, InputStream>::read(istr, *this);
|
1887
1997
|
istr->endSlice();
|
1888
1998
|
}
|
1999
|
+
/// \endcond
|
1889
2000
|
|
2001
|
+
/// \cond INTERNAL
|
1890
2002
|
void
|
1891
|
-
Ice::_icePatchObjectPtr(LocatorFinderPtr& handle, const
|
2003
|
+
Ice::_icePatchObjectPtr(LocatorFinderPtr& handle, const ObjectPtr& v)
|
1892
2004
|
{
|
1893
|
-
handle =
|
2005
|
+
handle = LocatorFinderPtr::dynamicCast(v);
|
1894
2006
|
if(v && !handle)
|
1895
2007
|
{
|
1896
|
-
IceInternal::Ex::throwUOE(
|
2008
|
+
IceInternal::Ex::throwUOE(LocatorFinder::ice_staticId(), v);
|
1897
2009
|
}
|
1898
2010
|
}
|
2011
|
+
/// \endcond
|
1899
2012
|
|
1900
2013
|
namespace Ice
|
1901
2014
|
{
|