zeroc-ice 3.6b1
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 +7 -0
- data/ICE_LICENSE +54 -0
- data/LICENSE +339 -0
- data/bin/slice2rb +17 -0
- data/ext/Communicator.cpp +596 -0
- data/ext/Communicator.h +25 -0
- data/ext/Config.h +111 -0
- data/ext/Connection.cpp +381 -0
- data/ext/Connection.h +26 -0
- data/ext/Endpoint.cpp +311 -0
- data/ext/Endpoint.h +27 -0
- data/ext/ImplicitContext.cpp +152 -0
- data/ext/ImplicitContext.h +25 -0
- data/ext/Init.cpp +52 -0
- data/ext/Logger.cpp +151 -0
- data/ext/Logger.h +28 -0
- data/ext/ObjectFactory.cpp +140 -0
- data/ext/ObjectFactory.h +50 -0
- data/ext/Operation.cpp +676 -0
- data/ext/Operation.h +36 -0
- data/ext/Properties.cpp +369 -0
- data/ext/Properties.h +25 -0
- data/ext/Proxy.cpp +1354 -0
- data/ext/Proxy.h +27 -0
- data/ext/Slice.cpp +223 -0
- data/ext/Slice.h +22 -0
- data/ext/Types.cpp +3160 -0
- data/ext/Types.h +545 -0
- data/ext/Util.cpp +792 -0
- data/ext/Util.h +511 -0
- data/ext/extconf.rb +118 -0
- data/ext/ice/BZIP_LICENSE +42 -0
- data/ext/ice/MCPP_LICENSE +36 -0
- data/ext/ice/bzip2/blocksort.c +1094 -0
- data/ext/ice/bzip2/bzlib.c +1572 -0
- data/ext/ice/bzip2/bzlib.h +282 -0
- data/ext/ice/bzip2/bzlib_private.h +509 -0
- data/ext/ice/bzip2/compress.c +672 -0
- data/ext/ice/bzip2/crctable.c +104 -0
- data/ext/ice/bzip2/decompress.c +646 -0
- data/ext/ice/bzip2/huffman.c +205 -0
- data/ext/ice/bzip2/randtable.c +84 -0
- data/ext/ice/cpp/include/Ice/ACMF.h +30 -0
- data/ext/ice/cpp/include/Ice/Application.h +156 -0
- data/ext/ice/cpp/include/Ice/AsyncResult.h +363 -0
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +26 -0
- data/ext/ice/cpp/include/Ice/BasicStream.h +1315 -0
- data/ext/ice/cpp/include/Ice/Buffer.h +159 -0
- data/ext/ice/cpp/include/Ice/BuiltinSequences.h +74 -0
- data/ext/ice/cpp/include/Ice/Communicator.h +194 -0
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +115 -0
- data/ext/ice/cpp/include/Ice/CommunicatorF.h +60 -0
- data/ext/ice/cpp/include/Ice/Config.h +97 -0
- data/ext/ice/cpp/include/Ice/Connection.h +495 -0
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +115 -0
- data/ext/ice/cpp/include/Ice/ConnectionF.h +72 -0
- data/ext/ice/cpp/include/Ice/ConnectionFactoryF.h +30 -0
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +37 -0
- data/ext/ice/cpp/include/Ice/Current.h +94 -0
- data/ext/ice/cpp/include/Ice/DefaultObjectFactory.h +48 -0
- data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +62 -0
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +33 -0
- data/ext/ice/cpp/include/Ice/Dispatcher.h +51 -0
- data/ext/ice/cpp/include/Ice/DynamicLibrary.h +105 -0
- data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +29 -0
- data/ext/ice/cpp/include/Ice/Endpoint.h +350 -0
- data/ext/ice/cpp/include/Ice/EndpointF.h +97 -0
- data/ext/ice/cpp/include/Ice/EndpointTypes.h +74 -0
- data/ext/ice/cpp/include/Ice/Exception.h +114 -0
- data/ext/ice/cpp/include/Ice/FacetMap.h +56 -0
- data/ext/ice/cpp/include/Ice/FactoryTable.h +69 -0
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +87 -0
- data/ext/ice/cpp/include/Ice/Format.h +39 -0
- data/ext/ice/cpp/include/Ice/Functional.h +138 -0
- data/ext/ice/cpp/include/Ice/GCObject.h +73 -0
- data/ext/ice/cpp/include/Ice/Handle.h +192 -0
- data/ext/ice/cpp/include/Ice/Ice.h +54 -0
- data/ext/ice/cpp/include/Ice/Identity.h +160 -0
- data/ext/ice/cpp/include/Ice/ImplicitContext.h +96 -0
- data/ext/ice/cpp/include/Ice/ImplicitContextF.h +60 -0
- data/ext/ice/cpp/include/Ice/Incoming.h +131 -0
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +108 -0
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +35 -0
- data/ext/ice/cpp/include/Ice/Initialize.h +141 -0
- data/ext/ice/cpp/include/Ice/InstanceF.h +26 -0
- data/ext/ice/cpp/include/Ice/Instrumentation.h +377 -0
- data/ext/ice/cpp/include/Ice/InstrumentationF.h +71 -0
- data/ext/ice/cpp/include/Ice/LocalException.h +1022 -0
- data/ext/ice/cpp/include/Ice/LocalObject.h +36 -0
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +26 -0
- data/ext/ice/cpp/include/Ice/Locator.h +2191 -0
- data/ext/ice/cpp/include/Ice/LocatorF.h +89 -0
- data/ext/ice/cpp/include/Ice/Logger.h +94 -0
- data/ext/ice/cpp/include/Ice/LoggerF.h +60 -0
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +153 -0
- data/ext/ice/cpp/include/Ice/Makefile +26 -0
- data/ext/ice/cpp/include/Ice/Metrics.h +2989 -0
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +662 -0
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +144 -0
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +576 -0
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +55 -0
- data/ext/ice/cpp/include/Ice/Object.h +165 -0
- data/ext/ice/cpp/include/Ice/ObjectAdapter.h +162 -0
- data/ext/ice/cpp/include/Ice/ObjectAdapterF.h +60 -0
- data/ext/ice/cpp/include/Ice/ObjectAdapterFactoryF.h +26 -0
- data/ext/ice/cpp/include/Ice/ObjectF.h +26 -0
- data/ext/ice/cpp/include/Ice/ObjectFactory.h +86 -0
- data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +60 -0
- data/ext/ice/cpp/include/Ice/ObjectFactoryManagerF.h +26 -0
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +177 -0
- data/ext/ice/cpp/include/Ice/Outgoing.h +197 -0
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +264 -0
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +38 -0
- data/ext/ice/cpp/include/Ice/Plugin.h +121 -0
- data/ext/ice/cpp/include/Ice/PluginF.h +66 -0
- data/ext/ice/cpp/include/Ice/Process.h +568 -0
- data/ext/ice/cpp/include/Ice/ProcessF.h +77 -0
- data/ext/ice/cpp/include/Ice/Properties.h +130 -0
- data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +824 -0
- data/ext/ice/cpp/include/Ice/PropertiesF.h +83 -0
- data/ext/ice/cpp/include/Ice/Protocol.h +242 -0
- data/ext/ice/cpp/include/Ice/Proxy.h +2448 -0
- data/ext/ice/cpp/include/Ice/ProxyF.h +78 -0
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +26 -0
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +330 -0
- data/ext/ice/cpp/include/Ice/ReferenceF.h +34 -0
- data/ext/ice/cpp/include/Ice/RemoteLogger.h +1496 -0
- data/ext/ice/cpp/include/Ice/RequestHandlerF.h +29 -0
- data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +25 -0
- data/ext/ice/cpp/include/Ice/Router.h +1155 -0
- data/ext/ice/cpp/include/Ice/RouterF.h +77 -0
- data/ext/ice/cpp/include/Ice/ServantLocator.h +90 -0
- data/ext/ice/cpp/include/Ice/ServantLocatorF.h +60 -0
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +26 -0
- data/ext/ice/cpp/include/Ice/Service.h +260 -0
- data/ext/ice/cpp/include/Ice/SliceChecksumDict.h +56 -0
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +34 -0
- data/ext/ice/cpp/include/Ice/SlicedData.h +103 -0
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +34 -0
- data/ext/ice/cpp/include/Ice/Stream.h +449 -0
- data/ext/ice/cpp/include/Ice/StreamF.h +30 -0
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +877 -0
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +28 -0
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +56 -0
- data/ext/ice/cpp/include/Ice/Version.h +254 -0
- data/ext/ice/cpp/include/IceSSL/Config.h +23 -0
- data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +119 -0
- data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +101 -0
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +22 -0
- data/ext/ice/cpp/include/IceSSL/Makefile +26 -0
- data/ext/ice/cpp/include/IceSSL/Plugin.h +558 -0
- data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +119 -0
- data/ext/ice/cpp/include/IceUtil/Cache.h +362 -0
- data/ext/ice/cpp/include/IceUtil/Cond.h +323 -0
- data/ext/ice/cpp/include/IceUtil/Config.h +234 -0
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +50 -0
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +70 -0
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +45 -0
- data/ext/ice/cpp/include/IceUtil/Exception.h +184 -0
- data/ext/ice/cpp/include/IceUtil/Functional.h +389 -0
- data/ext/ice/cpp/include/IceUtil/Handle.h +266 -0
- data/ext/ice/cpp/include/IceUtil/IceUtil.h +51 -0
- data/ext/ice/cpp/include/IceUtil/IconvStringConverter.h +302 -0
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +47 -0
- data/ext/ice/cpp/include/IceUtil/Iterator.h +36 -0
- data/ext/ice/cpp/include/IceUtil/Lock.h +135 -0
- data/ext/ice/cpp/include/IceUtil/Makefile +26 -0
- data/ext/ice/cpp/include/IceUtil/Monitor.h +249 -0
- data/ext/ice/cpp/include/IceUtil/Mutex.h +357 -0
- data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +28 -0
- data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +83 -0
- data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +82 -0
- data/ext/ice/cpp/include/IceUtil/Optional.h +322 -0
- data/ext/ice/cpp/include/IceUtil/Options.h +141 -0
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +362 -0
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +19 -0
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +26 -0
- data/ext/ice/cpp/include/IceUtil/Random.h +24 -0
- data/ext/ice/cpp/include/IceUtil/RecMutex.h +113 -0
- data/ext/ice/cpp/include/IceUtil/SHA1.h +65 -0
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +44 -0
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +97 -0
- data/ext/ice/cpp/include/IceUtil/Shared.h +168 -0
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +175 -0
- data/ext/ice/cpp/include/IceUtil/StringUtil.h +91 -0
- data/ext/ice/cpp/include/IceUtil/Thread.h +181 -0
- data/ext/ice/cpp/include/IceUtil/ThreadException.h +108 -0
- data/ext/ice/cpp/include/IceUtil/Time.h +209 -0
- data/ext/ice/cpp/include/IceUtil/Timer.h +143 -0
- data/ext/ice/cpp/include/IceUtil/UUID.h +22 -0
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +42 -0
- data/ext/ice/cpp/include/IceUtil/UniquePtr.h +101 -0
- data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +64 -0
- data/ext/ice/cpp/include/Slice/Checksum.h +26 -0
- data/ext/ice/cpp/include/Slice/CsUtil.h +92 -0
- data/ext/ice/cpp/include/Slice/DotNetNames.h +34 -0
- data/ext/ice/cpp/include/Slice/FileTracker.h +71 -0
- data/ext/ice/cpp/include/Slice/JavaUtil.h +277 -0
- data/ext/ice/cpp/include/Slice/Makefile +26 -0
- data/ext/ice/cpp/include/Slice/PHPUtil.h +50 -0
- data/ext/ice/cpp/include/Slice/Parser.h +1116 -0
- data/ext/ice/cpp/include/Slice/Preprocessor.h +68 -0
- data/ext/ice/cpp/include/Slice/PythonUtil.h +64 -0
- data/ext/ice/cpp/include/Slice/RubyUtil.h +54 -0
- data/ext/ice/cpp/include/Slice/Util.h +33 -0
- data/ext/ice/cpp/src/Ice/ACM.cpp +343 -0
- data/ext/ice/cpp/src/Ice/ACM.h +117 -0
- data/ext/ice/cpp/src/Ice/Acceptor.cpp +16 -0
- data/ext/ice/cpp/src/Ice/Acceptor.h +41 -0
- data/ext/ice/cpp/src/Ice/AcceptorF.h +30 -0
- data/ext/ice/cpp/src/Ice/Application.cpp +760 -0
- data/ext/ice/cpp/src/Ice/AsyncResult.cpp +599 -0
- data/ext/ice/cpp/src/Ice/Base64.cpp +269 -0
- data/ext/ice/cpp/src/Ice/Base64.h +36 -0
- data/ext/ice/cpp/src/Ice/BasicStream.cpp +3393 -0
- data/ext/ice/cpp/src/Ice/Buffer.cpp +98 -0
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +34 -0
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +718 -0
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +106 -0
- data/ext/ice/cpp/src/Ice/Communicator.cpp +45 -0
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +386 -0
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +112 -0
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +546 -0
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +97 -0
- data/ext/ice/cpp/src/Ice/Connection.cpp +58 -0
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +1639 -0
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +236 -0
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +3876 -0
- data/ext/ice/cpp/src/Ice/ConnectionI.h +364 -0
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +115 -0
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +50 -0
- data/ext/ice/cpp/src/Ice/Connector.cpp +16 -0
- data/ext/ice/cpp/src/Ice/Connector.h +36 -0
- data/ext/ice/cpp/src/Ice/ConnectorF.h +26 -0
- data/ext/ice/cpp/src/Ice/Current.cpp +38 -0
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +168 -0
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +57 -0
- data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +26 -0
- data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +60 -0
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +49 -0
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +281 -0
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +53 -0
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +25 -0
- data/ext/ice/cpp/src/Ice/EndpointFactory.h +44 -0
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +26 -0
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +208 -0
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +46 -0
- data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +26 -0
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +87 -0
- data/ext/ice/cpp/src/Ice/EndpointI.h +165 -0
- data/ext/ice/cpp/src/Ice/EndpointIF.h +41 -0
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +38 -0
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +35 -0
- data/ext/ice/cpp/src/Ice/EventHandler.h +78 -0
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +26 -0
- data/ext/ice/cpp/src/Ice/EventLoggerMsg.h +53 -0
- data/ext/ice/cpp/src/Ice/Exception.cpp +832 -0
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +34 -0
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +158 -0
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +95 -0
- data/ext/ice/cpp/src/Ice/GCObject.cpp +444 -0
- data/ext/ice/cpp/src/Ice/HashUtil.h +59 -0
- data/ext/ice/cpp/src/Ice/HttpParser.cpp +680 -0
- data/ext/ice/cpp/src/Ice/HttpParser.h +124 -0
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +733 -0
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +157 -0
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +29 -0
- data/ext/ice/cpp/src/Ice/Identity.cpp +42 -0
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +41 -0
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +639 -0
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +51 -0
- data/ext/ice/cpp/src/Ice/Incoming.cpp +757 -0
- data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +340 -0
- data/ext/ice/cpp/src/Ice/IncomingRequest.h +37 -0
- data/ext/ice/cpp/src/Ice/Initialize.cpp +401 -0
- data/ext/ice/cpp/src/Ice/Instance.cpp +1928 -0
- data/ext/ice/cpp/src/Ice/Instance.h +198 -0
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +68 -0
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +43 -0
- data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1083 -0
- data/ext/ice/cpp/src/Ice/InstrumentationI.h +262 -0
- data/ext/ice/cpp/src/Ice/LocalException.cpp +2091 -0
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +29 -0
- data/ext/ice/cpp/src/Ice/Locator.cpp +1946 -0
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +39 -0
- data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +917 -0
- data/ext/ice/cpp/src/Ice/LocatorInfo.h +193 -0
- data/ext/ice/cpp/src/Ice/LocatorInfoF.h +34 -0
- data/ext/ice/cpp/src/Ice/Logger.cpp +40 -0
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +862 -0
- data/ext/ice/cpp/src/Ice/LoggerAdminI.h +46 -0
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +199 -0
- data/ext/ice/cpp/src/Ice/LoggerI.h +57 -0
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +107 -0
- data/ext/ice/cpp/src/Ice/Makefile +190 -0
- data/ext/ice/cpp/src/Ice/Metrics.cpp +2159 -0
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +669 -0
- data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +14 -0
- data/ext/ice/cpp/src/Ice/Network.cpp +2694 -0
- data/ext/ice/cpp/src/Ice/Network.h +291 -0
- data/ext/ice/cpp/src/Ice/NetworkF.h +28 -0
- data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +325 -0
- data/ext/ice/cpp/src/Ice/NetworkProxy.h +74 -0
- data/ext/ice/cpp/src/Ice/NetworkProxyF.h +26 -0
- data/ext/ice/cpp/src/Ice/Object.cpp +440 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +41 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +241 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +52 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +1498 -0
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +155 -0
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +41 -0
- data/ext/ice/cpp/src/Ice/ObjectFactoryF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +140 -0
- data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +43 -0
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +84 -0
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +407 -0
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +70 -0
- data/ext/ice/cpp/src/Ice/Outgoing.cpp +737 -0
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +874 -0
- data/ext/ice/cpp/src/Ice/Plugin.cpp +43 -0
- data/ext/ice/cpp/src/Ice/PluginF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +503 -0
- data/ext/ice/cpp/src/Ice/PluginManagerI.h +67 -0
- data/ext/ice/cpp/src/Ice/Process.cpp +299 -0
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +39 -0
- data/ext/ice/cpp/src/Ice/Properties.cpp +45 -0
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +555 -0
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +207 -0
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +45 -0
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +39 -0
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +759 -0
- data/ext/ice/cpp/src/Ice/PropertiesI.h +78 -0
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +1293 -0
- data/ext/ice/cpp/src/Ice/PropertyNames.h +81 -0
- data/ext/ice/cpp/src/Ice/Protocol.cpp +137 -0
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +98 -0
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +91 -0
- data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +26 -0
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +51 -0
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +67 -0
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +26 -0
- data/ext/ice/cpp/src/Ice/Proxy.cpp +1810 -0
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +305 -0
- data/ext/ice/cpp/src/Ice/ProxyFactory.h +57 -0
- data/ext/ice/cpp/src/Ice/Reference.cpp +1947 -0
- data/ext/ice/cpp/src/Ice/Reference.h +305 -0
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +937 -0
- data/ext/ice/cpp/src/Ice/ReferenceFactory.h +81 -0
- data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +24 -0
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +958 -0
- data/ext/ice/cpp/src/Ice/ReplyStatus.h +29 -0
- data/ext/ice/cpp/src/Ice/RequestHandler.cpp +40 -0
- data/ext/ice/cpp/src/Ice/RequestHandler.h +90 -0
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +70 -0
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +41 -0
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +20 -0
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +39 -0
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +154 -0
- data/ext/ice/cpp/src/Ice/RetryQueue.h +69 -0
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +24 -0
- data/ext/ice/cpp/src/Ice/Router.cpp +849 -0
- data/ext/ice/cpp/src/Ice/RouterF.cpp +39 -0
- data/ext/ice/cpp/src/Ice/RouterInfo.cpp +381 -0
- data/ext/ice/cpp/src/Ice/RouterInfo.h +148 -0
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +30 -0
- data/ext/ice/cpp/src/Ice/Selector.cpp +926 -0
- data/ext/ice/cpp/src/Ice/Selector.h +231 -0
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +41 -0
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +38 -0
- data/ext/ice/cpp/src/Ice/ServantManager.cpp +495 -0
- data/ext/ice/cpp/src/Ice/ServantManager.h +74 -0
- data/ext/ice/cpp/src/Ice/Service.cpp +1897 -0
- data/ext/ice/cpp/src/Ice/SharedContext.h +51 -0
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +34 -0
- data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +80 -0
- data/ext/ice/cpp/src/Ice/SlicedData.cpp +80 -0
- data/ext/ice/cpp/src/Ice/Stream.cpp +53 -0
- data/ext/ice/cpp/src/Ice/StreamI.cpp +832 -0
- data/ext/ice/cpp/src/Ice/StreamI.h +198 -0
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +521 -0
- data/ext/ice/cpp/src/Ice/StreamSocket.h +85 -0
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +145 -0
- data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +167 -0
- data/ext/ice/cpp/src/Ice/SysLoggerI.h +43 -0
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +235 -0
- data/ext/ice/cpp/src/Ice/TcpAcceptor.h +67 -0
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +133 -0
- data/ext/ice/cpp/src/Ice/TcpConnector.h +51 -0
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +397 -0
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +93 -0
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +127 -0
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +61 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +1357 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.h +399 -0
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +43 -0
- data/ext/ice/cpp/src/Ice/TraceLevels.h +50 -0
- data/ext/ice/cpp/src/Ice/TraceLevelsF.h +26 -0
- data/ext/ice/cpp/src/Ice/TraceUtil.cpp +452 -0
- data/ext/ice/cpp/src/Ice/TraceUtil.h +28 -0
- data/ext/ice/cpp/src/Ice/Transceiver.cpp +24 -0
- data/ext/ice/cpp/src/Ice/Transceiver.h +52 -0
- data/ext/ice/cpp/src/Ice/TransceiverF.h +38 -0
- data/ext/ice/cpp/src/Ice/UdpConnector.cpp +144 -0
- data/ext/ice/cpp/src/Ice/UdpConnector.h +51 -0
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +483 -0
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +95 -0
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +1156 -0
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +123 -0
- data/ext/ice/cpp/src/Ice/Version.cpp +46 -0
- data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +103 -0
- data/ext/ice/cpp/src/Ice/WSAcceptor.h +61 -0
- data/ext/ice/cpp/src/Ice/WSConnector.cpp +113 -0
- data/ext/ice/cpp/src/Ice/WSConnector.h +51 -0
- data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +441 -0
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +97 -0
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +1728 -0
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +149 -0
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +594 -0
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +1035 -0
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +208 -0
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +78 -0
- data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +308 -0
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +183 -0
- data/ext/ice/cpp/src/IceDiscovery/Makefile +61 -0
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +148 -0
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +39 -0
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +258 -0
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +66 -0
- data/ext/ice/cpp/src/IceSSL/Certificate.cpp +1334 -0
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +42 -0
- data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +151 -0
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +56 -0
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +397 -0
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +96 -0
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +41 -0
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +38 -0
- data/ext/ice/cpp/src/IceSSL/Instance.h +42 -0
- data/ext/ice/cpp/src/IceSSL/InstanceF.h +34 -0
- data/ext/ice/cpp/src/IceSSL/Makefile +82 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1001 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +607 -0
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +75 -0
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +102 -0
- data/ext/ice/cpp/src/IceSSL/PluginI.h +56 -0
- data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +541 -0
- data/ext/ice/cpp/src/IceSSL/RFC2253.h +67 -0
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +729 -0
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +1062 -0
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +130 -0
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +291 -0
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +264 -0
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +41 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1514 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +609 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +91 -0
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +246 -0
- data/ext/ice/cpp/src/IceSSL/TrustManager.h +51 -0
- data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +26 -0
- data/ext/ice/cpp/src/IceSSL/Util.cpp +1423 -0
- data/ext/ice/cpp/src/IceSSL/Util.h +136 -0
- data/ext/ice/cpp/src/IceUtil/ArgVector.cpp +65 -0
- data/ext/ice/cpp/src/IceUtil/ArgVector.h +41 -0
- data/ext/ice/cpp/src/IceUtil/Cond.cpp +386 -0
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +477 -0
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +144 -0
- data/ext/ice/cpp/src/IceUtil/CountDownLatch.cpp +184 -0
- data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +273 -0
- data/ext/ice/cpp/src/IceUtil/Exception.cpp +782 -0
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +532 -0
- data/ext/ice/cpp/src/IceUtil/FileUtil.h +159 -0
- data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +41 -0
- data/ext/ice/cpp/src/IceUtil/Makefile +68 -0
- data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +24 -0
- data/ext/ice/cpp/src/IceUtil/Options.cpp +1049 -0
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +591 -0
- data/ext/ice/cpp/src/IceUtil/Random.cpp +185 -0
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +257 -0
- data/ext/ice/cpp/src/IceUtil/SHA1.cpp +126 -0
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +200 -0
- data/ext/ice/cpp/src/IceUtil/StopWatch.h +54 -0
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +450 -0
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +842 -0
- data/ext/ice/cpp/src/IceUtil/Thread.cpp +809 -0
- data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +172 -0
- data/ext/ice/cpp/src/IceUtil/Time.cpp +306 -0
- data/ext/ice/cpp/src/IceUtil/Timer.cpp +251 -0
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +174 -0
- data/ext/ice/cpp/src/IceUtil/Unicode.cpp +131 -0
- data/ext/ice/cpp/src/IceUtil/Unicode.h +49 -0
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +1139 -0
- data/ext/ice/cpp/src/Slice/Checksum.cpp +452 -0
- data/ext/ice/cpp/src/Slice/CsUtil.cpp +2650 -0
- data/ext/ice/cpp/src/Slice/DotNetNames.cpp +146 -0
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +203 -0
- data/ext/ice/cpp/src/Slice/Grammar.cpp +4755 -0
- data/ext/ice/cpp/src/Slice/Grammar.h +98 -0
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +234 -0
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +4376 -0
- data/ext/ice/cpp/src/Slice/MD5.cpp +57 -0
- data/ext/ice/cpp/src/Slice/MD5.h +44 -0
- data/ext/ice/cpp/src/Slice/MD5I.cpp +385 -0
- data/ext/ice/cpp/src/Slice/MD5I.h +91 -0
- data/ext/ice/cpp/src/Slice/Makefile +65 -0
- data/ext/ice/cpp/src/Slice/PHPUtil.cpp +156 -0
- data/ext/ice/cpp/src/Slice/Parser.cpp +6386 -0
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +686 -0
- data/ext/ice/cpp/src/Slice/Python.cpp +675 -0
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +2614 -0
- data/ext/ice/cpp/src/Slice/Ruby.cpp +317 -0
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +1774 -0
- data/ext/ice/cpp/src/Slice/Scanner.cpp +2426 -0
- data/ext/ice/cpp/src/Slice/Util.cpp +325 -0
- data/ext/ice/mcpp/config.h.Darwin +227 -0
- data/ext/ice/mcpp/config.h.Linux +227 -0
- data/ext/ice/mcpp/config.h.MINGW +7 -0
- data/ext/ice/mcpp/configed.H +382 -0
- data/ext/ice/mcpp/directive.c +1699 -0
- data/ext/ice/mcpp/eval.c +1673 -0
- data/ext/ice/mcpp/expand.c +2980 -0
- data/ext/ice/mcpp/internal.H +564 -0
- data/ext/ice/mcpp/main.c +1131 -0
- data/ext/ice/mcpp/mbchar.c +869 -0
- data/ext/ice/mcpp/mcpp_lib.h +31 -0
- data/ext/ice/mcpp/mcpp_out.h +13 -0
- data/ext/ice/mcpp/support.c +2811 -0
- data/ext/ice/mcpp/system.H +396 -0
- data/ext/ice/mcpp/system.c +4940 -0
- data/ice.gemspec +41 -0
- data/lib/Glacier2.rb +12 -0
- data/lib/Glacier2/Metrics.rb +99 -0
- data/lib/Glacier2/PermissionsVerifier.rb +168 -0
- data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
- data/lib/Glacier2/Router.rb +141 -0
- data/lib/Glacier2/RouterF.rb +29 -0
- data/lib/Glacier2/SSLInfo.rb +79 -0
- data/lib/Glacier2/Session.rb +470 -0
- data/lib/Ice.rb +659 -0
- data/lib/Ice/BuiltinSequences.rb +64 -0
- data/lib/Ice/Communicator.rb +93 -0
- data/lib/Ice/CommunicatorF.rb +28 -0
- data/lib/Ice/Connection.rb +414 -0
- data/lib/Ice/ConnectionF.rb +36 -0
- data/lib/Ice/Current.rb +152 -0
- data/lib/Ice/Endpoint.rb +265 -0
- data/lib/Ice/EndpointF.rb +52 -0
- data/lib/Ice/EndpointTypes.rb +77 -0
- data/lib/Ice/FacetMap.rb +28 -0
- data/lib/Ice/Identity.rb +70 -0
- data/lib/Ice/ImplicitContext.rb +59 -0
- data/lib/Ice/ImplicitContextF.rb +28 -0
- data/lib/Ice/Instrumentation.rb +425 -0
- data/lib/Ice/InstrumentationF.rb +35 -0
- data/lib/Ice/LocalException.rb +1081 -0
- data/lib/Ice/Locator.rb +314 -0
- data/lib/Ice/LocatorF.rb +34 -0
- data/lib/Ice/Logger.rb +57 -0
- data/lib/Ice/LoggerF.rb +28 -0
- data/lib/Ice/Metrics.rb +696 -0
- data/lib/Ice/ObjectAdapterF.rb +28 -0
- data/lib/Ice/ObjectFactory.rb +53 -0
- data/lib/Ice/ObjectFactoryF.rb +28 -0
- data/lib/Ice/Plugin.rb +87 -0
- data/lib/Ice/PluginF.rb +32 -0
- data/lib/Ice/Process.rb +93 -0
- data/lib/Ice/ProcessF.rb +29 -0
- data/lib/Ice/Properties.rb +65 -0
- data/lib/Ice/PropertiesAdmin.rb +104 -0
- data/lib/Ice/PropertiesF.rb +33 -0
- data/lib/Ice/Router.rb +163 -0
- data/lib/Ice/RouterF.rb +29 -0
- data/lib/Ice/SliceChecksumDict.rb +28 -0
- data/lib/Ice/Version.rb +100 -0
- data/lib/IceBox.rb +10 -0
- data/lib/IceBox/IceBox.rb +272 -0
- data/lib/IceGrid.rb +17 -0
- data/lib/IceGrid/Admin.rb +1076 -0
- data/lib/IceGrid/Descriptor.rb +1505 -0
- data/lib/IceGrid/Exception.rb +401 -0
- data/lib/IceGrid/FileParser.rb +105 -0
- data/lib/IceGrid/Locator.rb +105 -0
- data/lib/IceGrid/Observer.rb +571 -0
- data/lib/IceGrid/Query.rb +168 -0
- data/lib/IceGrid/Registry.rb +120 -0
- data/lib/IceGrid/Session.rb +114 -0
- data/lib/IceGrid/UserAccountMapper.rb +101 -0
- data/lib/IcePatch2.rb +10 -0
- data/lib/IcePatch2/FileInfo.rb +75 -0
- data/lib/IcePatch2/FileServer.rb +141 -0
- data/lib/IceStorm.rb +11 -0
- data/lib/IceStorm/IceStorm.rb +463 -0
- data/lib/IceStorm/Metrics.rb +155 -0
- data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
- data/slice/Freeze/CatalogData.ice +49 -0
- data/slice/Freeze/Connection.ice +111 -0
- data/slice/Freeze/ConnectionF.ice +20 -0
- data/slice/Freeze/DB.ice +37 -0
- data/slice/Freeze/Evictor.ice +339 -0
- data/slice/Freeze/EvictorF.ice +22 -0
- data/slice/Freeze/EvictorStorage.ice +72 -0
- data/slice/Freeze/Exception.ice +100 -0
- data/slice/Freeze/Transaction.ice +57 -0
- data/slice/Freeze/TransactionalEvictor.ice +50 -0
- data/slice/Glacier2/Metrics.ice +77 -0
- data/slice/Glacier2/PermissionsVerifier.ice +105 -0
- data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
- data/slice/Glacier2/Router.ice +178 -0
- data/slice/Glacier2/RouterF.ice +20 -0
- data/slice/Glacier2/SSLInfo.ice +50 -0
- data/slice/Glacier2/Session.ice +273 -0
- data/slice/Ice/BuiltinSequences.ice +48 -0
- data/slice/Ice/Communicator.ice +567 -0
- data/slice/Ice/CommunicatorF.ice +20 -0
- data/slice/Ice/Connection.ice +323 -0
- data/slice/Ice/ConnectionF.ice +22 -0
- data/slice/Ice/Current.ice +160 -0
- data/slice/Ice/Endpoint.ice +227 -0
- data/slice/Ice/EndpointF.ice +32 -0
- data/slice/Ice/EndpointTypes.ice +38 -0
- data/slice/Ice/FacetMap.ice +25 -0
- data/slice/Ice/Identity.ice +59 -0
- data/slice/Ice/ImplicitContext.ice +109 -0
- data/slice/Ice/ImplicitContextF.ice +20 -0
- data/slice/Ice/Instrumentation.ice +499 -0
- data/slice/Ice/InstrumentationF.ice +26 -0
- data/slice/Ice/LocalException.ice +1015 -0
- data/slice/Ice/Locator.ice +227 -0
- data/slice/Ice/LocatorF.ice +21 -0
- data/slice/Ice/Logger.ice +86 -0
- data/slice/Ice/LoggerF.ice +20 -0
- data/slice/Ice/Metrics.ice +422 -0
- data/slice/Ice/ObjectAdapter.ice +673 -0
- data/slice/Ice/ObjectAdapterF.ice +20 -0
- data/slice/Ice/ObjectFactory.ice +60 -0
- data/slice/Ice/ObjectFactoryF.ice +20 -0
- data/slice/Ice/Plugin.ice +117 -0
- data/slice/Ice/PluginF.ice +21 -0
- data/slice/Ice/Process.ice +54 -0
- data/slice/Ice/ProcessF.ice +20 -0
- data/slice/Ice/Properties.ice +228 -0
- data/slice/Ice/PropertiesAdmin.ice +75 -0
- data/slice/Ice/PropertiesF.ice +21 -0
- data/slice/Ice/RemoteLogger.ice +232 -0
- data/slice/Ice/Router.ice +83 -0
- data/slice/Ice/RouterF.ice +20 -0
- data/slice/Ice/ServantLocator.ice +117 -0
- data/slice/Ice/ServantLocatorF.ice +20 -0
- data/slice/Ice/SliceChecksumDict.ice +25 -0
- data/slice/Ice/Version.ice +39 -0
- data/slice/IceBox/IceBox.ice +194 -0
- data/slice/IceDiscovery/IceDiscovery.ice +32 -0
- data/slice/IceGrid/Admin.ice +1578 -0
- data/slice/IceGrid/Descriptor.ice +1079 -0
- data/slice/IceGrid/Discovery.ice +73 -0
- data/slice/IceGrid/Exception.ice +383 -0
- data/slice/IceGrid/FileParser.ice +61 -0
- data/slice/IceGrid/Locator.ice +56 -0
- data/slice/IceGrid/Observer.ice +394 -0
- data/slice/IceGrid/PluginFacade.ice +316 -0
- data/slice/IceGrid/Query.ice +130 -0
- data/slice/IceGrid/Registry.ice +138 -0
- data/slice/IceGrid/Session.ice +124 -0
- data/slice/IceGrid/UserAccountMapper.ice +58 -0
- data/slice/IcePatch2/FileInfo.ice +49 -0
- data/slice/IcePatch2/FileServer.ice +129 -0
- data/slice/IceSSL/ConnectionInfo.ice +34 -0
- data/slice/IceSSL/EndpointInfo.ice +41 -0
- data/slice/IceStorm/IceStorm.ice +405 -0
- data/slice/IceStorm/Metrics.ice +71 -0
- metadata +737 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// **********************************************************************
|
|
2
|
+
//
|
|
3
|
+
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
|
4
|
+
//
|
|
5
|
+
// This copy of Ice is licensed to you under the terms described in the
|
|
6
|
+
// ICE_LICENSE file included in this distribution.
|
|
7
|
+
//
|
|
8
|
+
// **********************************************************************
|
|
9
|
+
|
|
10
|
+
#ifndef ICE_LOCAL_OBJECT_H
|
|
11
|
+
#define ICE_LOCAL_OBJECT_H
|
|
12
|
+
|
|
13
|
+
#include <IceUtil/Shared.h>
|
|
14
|
+
#include <Ice/LocalObjectF.h>
|
|
15
|
+
|
|
16
|
+
namespace IceInternal
|
|
17
|
+
{
|
|
18
|
+
|
|
19
|
+
class BasicStream;
|
|
20
|
+
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
namespace Ice
|
|
24
|
+
{
|
|
25
|
+
|
|
26
|
+
class ICE_API LocalObject : virtual public ::IceUtil::Shared
|
|
27
|
+
{
|
|
28
|
+
public:
|
|
29
|
+
|
|
30
|
+
virtual bool operator==(const LocalObject&) const;
|
|
31
|
+
virtual bool operator<(const LocalObject&) const;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#endif
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// **********************************************************************
|
|
2
|
+
//
|
|
3
|
+
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
|
4
|
+
//
|
|
5
|
+
// This copy of Ice is licensed to you under the terms described in the
|
|
6
|
+
// ICE_LICENSE file included in this distribution.
|
|
7
|
+
//
|
|
8
|
+
// **********************************************************************
|
|
9
|
+
|
|
10
|
+
#ifndef ICE_LOCAL_OBJECT_F_H
|
|
11
|
+
#define ICE_LOCAL_OBJECT_F_H
|
|
12
|
+
|
|
13
|
+
#include <IceUtil/Shared.h>
|
|
14
|
+
|
|
15
|
+
#include <Ice/Handle.h>
|
|
16
|
+
|
|
17
|
+
namespace Ice
|
|
18
|
+
{
|
|
19
|
+
|
|
20
|
+
class LocalObject;
|
|
21
|
+
ICE_API IceUtil::Shared* upCast(::Ice::LocalObject*);
|
|
22
|
+
typedef IceInternal::Handle< LocalObject > LocalObjectPtr;
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#endif
|
|
@@ -0,0 +1,2191 @@
|
|
|
1
|
+
// **********************************************************************
|
|
2
|
+
//
|
|
3
|
+
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
|
4
|
+
//
|
|
5
|
+
// This copy of Ice is licensed to you under the terms described in the
|
|
6
|
+
// ICE_LICENSE file included in this distribution.
|
|
7
|
+
//
|
|
8
|
+
// **********************************************************************
|
|
9
|
+
//
|
|
10
|
+
// Ice version 3.6b
|
|
11
|
+
//
|
|
12
|
+
// <auto-generated>
|
|
13
|
+
//
|
|
14
|
+
// Generated from file `Locator.ice'
|
|
15
|
+
//
|
|
16
|
+
// Warning: do not edit this file.
|
|
17
|
+
//
|
|
18
|
+
// </auto-generated>
|
|
19
|
+
//
|
|
20
|
+
|
|
21
|
+
#ifndef __Ice_Locator_h__
|
|
22
|
+
#define __Ice_Locator_h__
|
|
23
|
+
|
|
24
|
+
#include <IceUtil/PushDisableWarnings.h>
|
|
25
|
+
#include <Ice/ProxyF.h>
|
|
26
|
+
#include <Ice/ObjectF.h>
|
|
27
|
+
#include <Ice/Exception.h>
|
|
28
|
+
#include <Ice/LocalObject.h>
|
|
29
|
+
#include <Ice/StreamHelpers.h>
|
|
30
|
+
#include <Ice/Proxy.h>
|
|
31
|
+
#include <Ice/GCObject.h>
|
|
32
|
+
#include <Ice/AsyncResult.h>
|
|
33
|
+
#include <Ice/Incoming.h>
|
|
34
|
+
#include <Ice/IncomingAsync.h>
|
|
35
|
+
#include <Ice/FactoryTableInit.h>
|
|
36
|
+
#include <IceUtil/ScopedArray.h>
|
|
37
|
+
#include <IceUtil/Optional.h>
|
|
38
|
+
#include <Ice/StreamF.h>
|
|
39
|
+
#include <Ice/Identity.h>
|
|
40
|
+
#include <Ice/ProcessF.h>
|
|
41
|
+
#include <IceUtil/UndefSysMacros.h>
|
|
42
|
+
|
|
43
|
+
#ifndef ICE_IGNORE_VERSION
|
|
44
|
+
# if ICE_INT_VERSION != 30651
|
|
45
|
+
# error Ice version mismatch: an exact match is required for beta generated code
|
|
46
|
+
# endif
|
|
47
|
+
#endif
|
|
48
|
+
|
|
49
|
+
#ifndef ICE_API
|
|
50
|
+
# ifdef ICE_API_EXPORTS
|
|
51
|
+
# define ICE_API ICE_DECLSPEC_EXPORT
|
|
52
|
+
# else
|
|
53
|
+
# define ICE_API ICE_DECLSPEC_IMPORT
|
|
54
|
+
# endif
|
|
55
|
+
#endif
|
|
56
|
+
|
|
57
|
+
namespace IceProxy
|
|
58
|
+
{
|
|
59
|
+
|
|
60
|
+
namespace Ice
|
|
61
|
+
{
|
|
62
|
+
|
|
63
|
+
class LocatorRegistry;
|
|
64
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorRegistry>&);
|
|
65
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::Ice::LocatorRegistry*);
|
|
66
|
+
|
|
67
|
+
class Locator;
|
|
68
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::Ice::Locator>&);
|
|
69
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::Ice::Locator*);
|
|
70
|
+
|
|
71
|
+
class LocatorFinder;
|
|
72
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorFinder>&);
|
|
73
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::Ice::LocatorFinder*);
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
namespace Ice
|
|
80
|
+
{
|
|
81
|
+
|
|
82
|
+
class LocatorRegistry;
|
|
83
|
+
bool operator==(const LocatorRegistry&, const LocatorRegistry&);
|
|
84
|
+
bool operator<(const LocatorRegistry&, const LocatorRegistry&);
|
|
85
|
+
ICE_API ::Ice::Object* upCast(::Ice::LocatorRegistry*);
|
|
86
|
+
typedef ::IceInternal::Handle< ::Ice::LocatorRegistry> LocatorRegistryPtr;
|
|
87
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorRegistry> LocatorRegistryPrx;
|
|
88
|
+
ICE_API void __patch(LocatorRegistryPtr&, const ::Ice::ObjectPtr&);
|
|
89
|
+
|
|
90
|
+
class Locator;
|
|
91
|
+
bool operator==(const Locator&, const Locator&);
|
|
92
|
+
bool operator<(const Locator&, const Locator&);
|
|
93
|
+
ICE_API ::Ice::Object* upCast(::Ice::Locator*);
|
|
94
|
+
typedef ::IceInternal::Handle< ::Ice::Locator> LocatorPtr;
|
|
95
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::Locator> LocatorPrx;
|
|
96
|
+
ICE_API void __patch(LocatorPtr&, const ::Ice::ObjectPtr&);
|
|
97
|
+
|
|
98
|
+
class LocatorFinder;
|
|
99
|
+
bool operator==(const LocatorFinder&, const LocatorFinder&);
|
|
100
|
+
bool operator<(const LocatorFinder&, const LocatorFinder&);
|
|
101
|
+
ICE_API ::Ice::Object* upCast(::Ice::LocatorFinder*);
|
|
102
|
+
typedef ::IceInternal::Handle< ::Ice::LocatorFinder> LocatorFinderPtr;
|
|
103
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorFinder> LocatorFinderPrx;
|
|
104
|
+
ICE_API void __patch(LocatorFinderPtr&, const ::Ice::ObjectPtr&);
|
|
105
|
+
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
namespace Ice
|
|
109
|
+
{
|
|
110
|
+
|
|
111
|
+
class ICE_API AdapterNotFoundException : public ::Ice::UserException
|
|
112
|
+
{
|
|
113
|
+
public:
|
|
114
|
+
|
|
115
|
+
AdapterNotFoundException() {}
|
|
116
|
+
virtual ~AdapterNotFoundException() throw();
|
|
117
|
+
|
|
118
|
+
virtual ::std::string ice_name() const;
|
|
119
|
+
virtual AdapterNotFoundException* ice_clone() const;
|
|
120
|
+
virtual void ice_throw() const;
|
|
121
|
+
|
|
122
|
+
protected:
|
|
123
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
124
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
125
|
+
using ::Ice::UserException::__writeImpl;
|
|
126
|
+
using ::Ice::UserException::__readImpl;
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
static AdapterNotFoundException __AdapterNotFoundException_init;
|
|
130
|
+
|
|
131
|
+
class ICE_API InvalidReplicaGroupIdException : public ::Ice::UserException
|
|
132
|
+
{
|
|
133
|
+
public:
|
|
134
|
+
|
|
135
|
+
InvalidReplicaGroupIdException() {}
|
|
136
|
+
virtual ~InvalidReplicaGroupIdException() throw();
|
|
137
|
+
|
|
138
|
+
virtual ::std::string ice_name() const;
|
|
139
|
+
virtual InvalidReplicaGroupIdException* ice_clone() const;
|
|
140
|
+
virtual void ice_throw() const;
|
|
141
|
+
|
|
142
|
+
protected:
|
|
143
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
144
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
145
|
+
using ::Ice::UserException::__writeImpl;
|
|
146
|
+
using ::Ice::UserException::__readImpl;
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
class ICE_API AdapterAlreadyActiveException : public ::Ice::UserException
|
|
150
|
+
{
|
|
151
|
+
public:
|
|
152
|
+
|
|
153
|
+
AdapterAlreadyActiveException() {}
|
|
154
|
+
virtual ~AdapterAlreadyActiveException() throw();
|
|
155
|
+
|
|
156
|
+
virtual ::std::string ice_name() const;
|
|
157
|
+
virtual AdapterAlreadyActiveException* ice_clone() const;
|
|
158
|
+
virtual void ice_throw() const;
|
|
159
|
+
|
|
160
|
+
protected:
|
|
161
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
162
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
163
|
+
using ::Ice::UserException::__writeImpl;
|
|
164
|
+
using ::Ice::UserException::__readImpl;
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
class ICE_API ObjectNotFoundException : public ::Ice::UserException
|
|
168
|
+
{
|
|
169
|
+
public:
|
|
170
|
+
|
|
171
|
+
ObjectNotFoundException() {}
|
|
172
|
+
virtual ~ObjectNotFoundException() throw();
|
|
173
|
+
|
|
174
|
+
virtual ::std::string ice_name() const;
|
|
175
|
+
virtual ObjectNotFoundException* ice_clone() const;
|
|
176
|
+
virtual void ice_throw() const;
|
|
177
|
+
|
|
178
|
+
protected:
|
|
179
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
180
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
181
|
+
using ::Ice::UserException::__writeImpl;
|
|
182
|
+
using ::Ice::UserException::__readImpl;
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
class ICE_API ServerNotFoundException : public ::Ice::UserException
|
|
186
|
+
{
|
|
187
|
+
public:
|
|
188
|
+
|
|
189
|
+
ServerNotFoundException() {}
|
|
190
|
+
virtual ~ServerNotFoundException() throw();
|
|
191
|
+
|
|
192
|
+
virtual ::std::string ice_name() const;
|
|
193
|
+
virtual ServerNotFoundException* ice_clone() const;
|
|
194
|
+
virtual void ice_throw() const;
|
|
195
|
+
|
|
196
|
+
protected:
|
|
197
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
198
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
199
|
+
using ::Ice::UserException::__writeImpl;
|
|
200
|
+
using ::Ice::UserException::__readImpl;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
namespace Ice
|
|
206
|
+
{
|
|
207
|
+
template<>
|
|
208
|
+
struct StreamableTraits< ::Ice::AdapterNotFoundException>
|
|
209
|
+
{
|
|
210
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
template<>
|
|
214
|
+
struct StreamableTraits< ::Ice::InvalidReplicaGroupIdException>
|
|
215
|
+
{
|
|
216
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
template<>
|
|
220
|
+
struct StreamableTraits< ::Ice::AdapterAlreadyActiveException>
|
|
221
|
+
{
|
|
222
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
template<>
|
|
226
|
+
struct StreamableTraits< ::Ice::ObjectNotFoundException>
|
|
227
|
+
{
|
|
228
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
template<>
|
|
232
|
+
struct StreamableTraits< ::Ice::ServerNotFoundException>
|
|
233
|
+
{
|
|
234
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
namespace Ice
|
|
240
|
+
{
|
|
241
|
+
|
|
242
|
+
class ICE_API AMD_Locator_findObjectById : virtual public ::Ice::AMDCallback
|
|
243
|
+
{
|
|
244
|
+
public:
|
|
245
|
+
|
|
246
|
+
virtual void ice_response(const ::Ice::ObjectPrx&) = 0;
|
|
247
|
+
};
|
|
248
|
+
|
|
249
|
+
typedef ::IceUtil::Handle< ::Ice::AMD_Locator_findObjectById> AMD_Locator_findObjectByIdPtr;
|
|
250
|
+
|
|
251
|
+
class ICE_API AMD_Locator_findAdapterById : virtual public ::Ice::AMDCallback
|
|
252
|
+
{
|
|
253
|
+
public:
|
|
254
|
+
|
|
255
|
+
virtual void ice_response(const ::Ice::ObjectPrx&) = 0;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
typedef ::IceUtil::Handle< ::Ice::AMD_Locator_findAdapterById> AMD_Locator_findAdapterByIdPtr;
|
|
259
|
+
|
|
260
|
+
class ICE_API AMD_LocatorRegistry_setAdapterDirectProxy : virtual public ::Ice::AMDCallback
|
|
261
|
+
{
|
|
262
|
+
public:
|
|
263
|
+
|
|
264
|
+
virtual void ice_response() = 0;
|
|
265
|
+
};
|
|
266
|
+
|
|
267
|
+
typedef ::IceUtil::Handle< ::Ice::AMD_LocatorRegistry_setAdapterDirectProxy> AMD_LocatorRegistry_setAdapterDirectProxyPtr;
|
|
268
|
+
|
|
269
|
+
class ICE_API AMD_LocatorRegistry_setReplicatedAdapterDirectProxy : virtual public ::Ice::AMDCallback
|
|
270
|
+
{
|
|
271
|
+
public:
|
|
272
|
+
|
|
273
|
+
virtual void ice_response() = 0;
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
typedef ::IceUtil::Handle< ::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy> AMD_LocatorRegistry_setReplicatedAdapterDirectProxyPtr;
|
|
277
|
+
|
|
278
|
+
class ICE_API AMD_LocatorRegistry_setServerProcessProxy : virtual public ::Ice::AMDCallback
|
|
279
|
+
{
|
|
280
|
+
public:
|
|
281
|
+
|
|
282
|
+
virtual void ice_response() = 0;
|
|
283
|
+
};
|
|
284
|
+
|
|
285
|
+
typedef ::IceUtil::Handle< ::Ice::AMD_LocatorRegistry_setServerProcessProxy> AMD_LocatorRegistry_setServerProcessProxyPtr;
|
|
286
|
+
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
namespace IceAsync
|
|
290
|
+
{
|
|
291
|
+
|
|
292
|
+
namespace Ice
|
|
293
|
+
{
|
|
294
|
+
|
|
295
|
+
class ICE_API AMD_Locator_findObjectById : public ::Ice::AMD_Locator_findObjectById, public ::IceInternal::IncomingAsync
|
|
296
|
+
{
|
|
297
|
+
public:
|
|
298
|
+
|
|
299
|
+
AMD_Locator_findObjectById(::IceInternal::Incoming&);
|
|
300
|
+
|
|
301
|
+
virtual void ice_response(const ::Ice::ObjectPrx&);
|
|
302
|
+
// COMPILERFIX: The using directive avoid compiler warnings with -Woverloaded-virtual
|
|
303
|
+
using ::IceInternal::IncomingAsync::ice_exception;
|
|
304
|
+
virtual void ice_exception(const ::std::exception&);
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
class ICE_API AMD_Locator_findAdapterById : public ::Ice::AMD_Locator_findAdapterById, public ::IceInternal::IncomingAsync
|
|
308
|
+
{
|
|
309
|
+
public:
|
|
310
|
+
|
|
311
|
+
AMD_Locator_findAdapterById(::IceInternal::Incoming&);
|
|
312
|
+
|
|
313
|
+
virtual void ice_response(const ::Ice::ObjectPrx&);
|
|
314
|
+
// COMPILERFIX: The using directive avoid compiler warnings with -Woverloaded-virtual
|
|
315
|
+
using ::IceInternal::IncomingAsync::ice_exception;
|
|
316
|
+
virtual void ice_exception(const ::std::exception&);
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
class ICE_API AMD_LocatorRegistry_setAdapterDirectProxy : public ::Ice::AMD_LocatorRegistry_setAdapterDirectProxy, public ::IceInternal::IncomingAsync
|
|
320
|
+
{
|
|
321
|
+
public:
|
|
322
|
+
|
|
323
|
+
AMD_LocatorRegistry_setAdapterDirectProxy(::IceInternal::Incoming&);
|
|
324
|
+
|
|
325
|
+
virtual void ice_response();
|
|
326
|
+
// COMPILERFIX: The using directive avoid compiler warnings with -Woverloaded-virtual
|
|
327
|
+
using ::IceInternal::IncomingAsync::ice_exception;
|
|
328
|
+
virtual void ice_exception(const ::std::exception&);
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
class ICE_API AMD_LocatorRegistry_setReplicatedAdapterDirectProxy : public ::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxy, public ::IceInternal::IncomingAsync
|
|
332
|
+
{
|
|
333
|
+
public:
|
|
334
|
+
|
|
335
|
+
AMD_LocatorRegistry_setReplicatedAdapterDirectProxy(::IceInternal::Incoming&);
|
|
336
|
+
|
|
337
|
+
virtual void ice_response();
|
|
338
|
+
// COMPILERFIX: The using directive avoid compiler warnings with -Woverloaded-virtual
|
|
339
|
+
using ::IceInternal::IncomingAsync::ice_exception;
|
|
340
|
+
virtual void ice_exception(const ::std::exception&);
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
class ICE_API AMD_LocatorRegistry_setServerProcessProxy : public ::Ice::AMD_LocatorRegistry_setServerProcessProxy, public ::IceInternal::IncomingAsync
|
|
344
|
+
{
|
|
345
|
+
public:
|
|
346
|
+
|
|
347
|
+
AMD_LocatorRegistry_setServerProcessProxy(::IceInternal::Incoming&);
|
|
348
|
+
|
|
349
|
+
virtual void ice_response();
|
|
350
|
+
// COMPILERFIX: The using directive avoid compiler warnings with -Woverloaded-virtual
|
|
351
|
+
using ::IceInternal::IncomingAsync::ice_exception;
|
|
352
|
+
virtual void ice_exception(const ::std::exception&);
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
namespace Ice
|
|
360
|
+
{
|
|
361
|
+
|
|
362
|
+
class Callback_Locator_findObjectById_Base : virtual public ::IceInternal::CallbackBase { };
|
|
363
|
+
typedef ::IceUtil::Handle< Callback_Locator_findObjectById_Base> Callback_Locator_findObjectByIdPtr;
|
|
364
|
+
|
|
365
|
+
class Callback_Locator_findAdapterById_Base : virtual public ::IceInternal::CallbackBase { };
|
|
366
|
+
typedef ::IceUtil::Handle< Callback_Locator_findAdapterById_Base> Callback_Locator_findAdapterByIdPtr;
|
|
367
|
+
|
|
368
|
+
class Callback_Locator_getRegistry_Base : virtual public ::IceInternal::CallbackBase { };
|
|
369
|
+
typedef ::IceUtil::Handle< Callback_Locator_getRegistry_Base> Callback_Locator_getRegistryPtr;
|
|
370
|
+
|
|
371
|
+
class Callback_LocatorRegistry_setAdapterDirectProxy_Base : virtual public ::IceInternal::CallbackBase { };
|
|
372
|
+
typedef ::IceUtil::Handle< Callback_LocatorRegistry_setAdapterDirectProxy_Base> Callback_LocatorRegistry_setAdapterDirectProxyPtr;
|
|
373
|
+
|
|
374
|
+
class Callback_LocatorRegistry_setReplicatedAdapterDirectProxy_Base : virtual public ::IceInternal::CallbackBase { };
|
|
375
|
+
typedef ::IceUtil::Handle< Callback_LocatorRegistry_setReplicatedAdapterDirectProxy_Base> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr;
|
|
376
|
+
|
|
377
|
+
class Callback_LocatorRegistry_setServerProcessProxy_Base : virtual public ::IceInternal::CallbackBase { };
|
|
378
|
+
typedef ::IceUtil::Handle< Callback_LocatorRegistry_setServerProcessProxy_Base> Callback_LocatorRegistry_setServerProcessProxyPtr;
|
|
379
|
+
|
|
380
|
+
class Callback_LocatorFinder_getLocator_Base : virtual public ::IceInternal::CallbackBase { };
|
|
381
|
+
typedef ::IceUtil::Handle< Callback_LocatorFinder_getLocator_Base> Callback_LocatorFinder_getLocatorPtr;
|
|
382
|
+
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
namespace IceProxy
|
|
386
|
+
{
|
|
387
|
+
|
|
388
|
+
namespace Ice
|
|
389
|
+
{
|
|
390
|
+
|
|
391
|
+
class ICE_API Locator : virtual public ::IceProxy::Ice::Object
|
|
392
|
+
{
|
|
393
|
+
public:
|
|
394
|
+
|
|
395
|
+
::Ice::ObjectPrx findObjectById(const ::Ice::Identity& id)
|
|
396
|
+
{
|
|
397
|
+
return findObjectById(id, 0);
|
|
398
|
+
}
|
|
399
|
+
::Ice::ObjectPrx findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx)
|
|
400
|
+
{
|
|
401
|
+
return findObjectById(id, &__ctx);
|
|
402
|
+
}
|
|
403
|
+
#ifdef ICE_CPP11
|
|
404
|
+
::Ice::AsyncResultPtr
|
|
405
|
+
begin_findObjectById(const ::Ice::Identity& id, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
406
|
+
{
|
|
407
|
+
return __begin_findObjectById(id, 0, __response, __exception, __sent);
|
|
408
|
+
}
|
|
409
|
+
::Ice::AsyncResultPtr
|
|
410
|
+
begin_findObjectById(const ::Ice::Identity& id, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
411
|
+
{
|
|
412
|
+
return begin_findObjectById(id, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
413
|
+
}
|
|
414
|
+
::Ice::AsyncResultPtr
|
|
415
|
+
begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
416
|
+
{
|
|
417
|
+
return __begin_findObjectById(id, &__ctx, __response, __exception, __sent);
|
|
418
|
+
}
|
|
419
|
+
::Ice::AsyncResultPtr
|
|
420
|
+
begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
421
|
+
{
|
|
422
|
+
return begin_findObjectById(id, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
private:
|
|
426
|
+
|
|
427
|
+
::Ice::AsyncResultPtr __begin_findObjectById(const ::Ice::Identity& 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);
|
|
428
|
+
|
|
429
|
+
public:
|
|
430
|
+
#endif
|
|
431
|
+
|
|
432
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id)
|
|
433
|
+
{
|
|
434
|
+
return begin_findObjectById(id, 0, ::IceInternal::__dummyCallback, 0);
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx)
|
|
438
|
+
{
|
|
439
|
+
return begin_findObjectById(id, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
443
|
+
{
|
|
444
|
+
return begin_findObjectById(id, 0, __del, __cookie);
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
448
|
+
{
|
|
449
|
+
return begin_findObjectById(id, &__ctx, __del, __cookie);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Callback_Locator_findObjectByIdPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
453
|
+
{
|
|
454
|
+
return begin_findObjectById(id, 0, __del, __cookie);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity& id, const ::Ice::Context& __ctx, const ::Ice::Callback_Locator_findObjectByIdPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
458
|
+
{
|
|
459
|
+
return begin_findObjectById(id, &__ctx, __del, __cookie);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
::Ice::ObjectPrx end_findObjectById(const ::Ice::AsyncResultPtr&);
|
|
463
|
+
|
|
464
|
+
private:
|
|
465
|
+
|
|
466
|
+
::Ice::ObjectPrx findObjectById(const ::Ice::Identity&, const ::Ice::Context*);
|
|
467
|
+
::Ice::AsyncResultPtr begin_findObjectById(const ::Ice::Identity&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
468
|
+
|
|
469
|
+
public:
|
|
470
|
+
|
|
471
|
+
::Ice::ObjectPrx findAdapterById(const ::std::string& id)
|
|
472
|
+
{
|
|
473
|
+
return findAdapterById(id, 0);
|
|
474
|
+
}
|
|
475
|
+
::Ice::ObjectPrx findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx)
|
|
476
|
+
{
|
|
477
|
+
return findAdapterById(id, &__ctx);
|
|
478
|
+
}
|
|
479
|
+
#ifdef ICE_CPP11
|
|
480
|
+
::Ice::AsyncResultPtr
|
|
481
|
+
begin_findAdapterById(const ::std::string& id, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
482
|
+
{
|
|
483
|
+
return __begin_findAdapterById(id, 0, __response, __exception, __sent);
|
|
484
|
+
}
|
|
485
|
+
::Ice::AsyncResultPtr
|
|
486
|
+
begin_findAdapterById(const ::std::string& id, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
487
|
+
{
|
|
488
|
+
return begin_findAdapterById(id, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
489
|
+
}
|
|
490
|
+
::Ice::AsyncResultPtr
|
|
491
|
+
begin_findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::ObjectPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
492
|
+
{
|
|
493
|
+
return __begin_findAdapterById(id, &__ctx, __response, __exception, __sent);
|
|
494
|
+
}
|
|
495
|
+
::Ice::AsyncResultPtr
|
|
496
|
+
begin_findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
497
|
+
{
|
|
498
|
+
return begin_findAdapterById(id, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
private:
|
|
502
|
+
|
|
503
|
+
::Ice::AsyncResultPtr __begin_findAdapterById(const ::std::string& 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);
|
|
504
|
+
|
|
505
|
+
public:
|
|
506
|
+
#endif
|
|
507
|
+
|
|
508
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id)
|
|
509
|
+
{
|
|
510
|
+
return begin_findAdapterById(id, 0, ::IceInternal::__dummyCallback, 0);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx)
|
|
514
|
+
{
|
|
515
|
+
return begin_findAdapterById(id, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
519
|
+
{
|
|
520
|
+
return begin_findAdapterById(id, 0, __del, __cookie);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
524
|
+
{
|
|
525
|
+
return begin_findAdapterById(id, &__ctx, __del, __cookie);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id, const ::Ice::Callback_Locator_findAdapterByIdPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
529
|
+
{
|
|
530
|
+
return begin_findAdapterById(id, 0, __del, __cookie);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string& id, const ::Ice::Context& __ctx, const ::Ice::Callback_Locator_findAdapterByIdPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
534
|
+
{
|
|
535
|
+
return begin_findAdapterById(id, &__ctx, __del, __cookie);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
::Ice::ObjectPrx end_findAdapterById(const ::Ice::AsyncResultPtr&);
|
|
539
|
+
|
|
540
|
+
private:
|
|
541
|
+
|
|
542
|
+
::Ice::ObjectPrx findAdapterById(const ::std::string&, const ::Ice::Context*);
|
|
543
|
+
::Ice::AsyncResultPtr begin_findAdapterById(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
544
|
+
|
|
545
|
+
public:
|
|
546
|
+
|
|
547
|
+
::Ice::LocatorRegistryPrx getRegistry()
|
|
548
|
+
{
|
|
549
|
+
return getRegistry(0);
|
|
550
|
+
}
|
|
551
|
+
::Ice::LocatorRegistryPrx getRegistry(const ::Ice::Context& __ctx)
|
|
552
|
+
{
|
|
553
|
+
return getRegistry(&__ctx);
|
|
554
|
+
}
|
|
555
|
+
#ifdef ICE_CPP11
|
|
556
|
+
::Ice::AsyncResultPtr
|
|
557
|
+
begin_getRegistry(const ::IceInternal::Function<void (const ::Ice::LocatorRegistryPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
558
|
+
{
|
|
559
|
+
return __begin_getRegistry(0, __response, __exception, __sent);
|
|
560
|
+
}
|
|
561
|
+
::Ice::AsyncResultPtr
|
|
562
|
+
begin_getRegistry(const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
563
|
+
{
|
|
564
|
+
return begin_getRegistry(0, ::Ice::newCallback(__completed, __sent), 0);
|
|
565
|
+
}
|
|
566
|
+
::Ice::AsyncResultPtr
|
|
567
|
+
begin_getRegistry(const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::LocatorRegistryPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
568
|
+
{
|
|
569
|
+
return __begin_getRegistry(&__ctx, __response, __exception, __sent);
|
|
570
|
+
}
|
|
571
|
+
::Ice::AsyncResultPtr
|
|
572
|
+
begin_getRegistry(const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
573
|
+
{
|
|
574
|
+
return begin_getRegistry(&__ctx, ::Ice::newCallback(__completed, __sent));
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
private:
|
|
578
|
+
|
|
579
|
+
::Ice::AsyncResultPtr __begin_getRegistry(const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::Ice::LocatorRegistryPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
580
|
+
|
|
581
|
+
public:
|
|
582
|
+
#endif
|
|
583
|
+
|
|
584
|
+
::Ice::AsyncResultPtr begin_getRegistry()
|
|
585
|
+
{
|
|
586
|
+
return begin_getRegistry(0, ::IceInternal::__dummyCallback, 0);
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::Context& __ctx)
|
|
590
|
+
{
|
|
591
|
+
return begin_getRegistry(&__ctx, ::IceInternal::__dummyCallback, 0);
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
595
|
+
{
|
|
596
|
+
return begin_getRegistry(0, __del, __cookie);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
600
|
+
{
|
|
601
|
+
return begin_getRegistry(&__ctx, __del, __cookie);
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::Callback_Locator_getRegistryPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
605
|
+
{
|
|
606
|
+
return begin_getRegistry(0, __del, __cookie);
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::Context& __ctx, const ::Ice::Callback_Locator_getRegistryPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
610
|
+
{
|
|
611
|
+
return begin_getRegistry(&__ctx, __del, __cookie);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
::Ice::LocatorRegistryPrx end_getRegistry(const ::Ice::AsyncResultPtr&);
|
|
615
|
+
|
|
616
|
+
private:
|
|
617
|
+
|
|
618
|
+
::Ice::LocatorRegistryPrx getRegistry(const ::Ice::Context*);
|
|
619
|
+
::Ice::AsyncResultPtr begin_getRegistry(const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
620
|
+
|
|
621
|
+
public:
|
|
622
|
+
|
|
623
|
+
::IceInternal::ProxyHandle<Locator> ice_context(const ::Ice::Context& __context) const
|
|
624
|
+
{
|
|
625
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
::IceInternal::ProxyHandle<Locator> ice_adapterId(const ::std::string& __id) const
|
|
629
|
+
{
|
|
630
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
::IceInternal::ProxyHandle<Locator> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
634
|
+
{
|
|
635
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
::IceInternal::ProxyHandle<Locator> ice_locatorCacheTimeout(int __timeout) const
|
|
639
|
+
{
|
|
640
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
::IceInternal::ProxyHandle<Locator> ice_connectionCached(bool __cached) const
|
|
644
|
+
{
|
|
645
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
::IceInternal::ProxyHandle<Locator> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
649
|
+
{
|
|
650
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
::IceInternal::ProxyHandle<Locator> ice_secure(bool __secure) const
|
|
654
|
+
{
|
|
655
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
::IceInternal::ProxyHandle<Locator> ice_preferSecure(bool __preferSecure) const
|
|
659
|
+
{
|
|
660
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
::IceInternal::ProxyHandle<Locator> ice_router(const ::Ice::RouterPrx& __router) const
|
|
664
|
+
{
|
|
665
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
::IceInternal::ProxyHandle<Locator> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
669
|
+
{
|
|
670
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
::IceInternal::ProxyHandle<Locator> ice_collocationOptimized(bool __co) const
|
|
674
|
+
{
|
|
675
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
::IceInternal::ProxyHandle<Locator> ice_invocationTimeout(int __timeout) const
|
|
679
|
+
{
|
|
680
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
::IceInternal::ProxyHandle<Locator> ice_twoway() const
|
|
684
|
+
{
|
|
685
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
::IceInternal::ProxyHandle<Locator> ice_oneway() const
|
|
689
|
+
{
|
|
690
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
::IceInternal::ProxyHandle<Locator> ice_batchOneway() const
|
|
694
|
+
{
|
|
695
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
::IceInternal::ProxyHandle<Locator> ice_datagram() const
|
|
699
|
+
{
|
|
700
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
::IceInternal::ProxyHandle<Locator> ice_batchDatagram() const
|
|
704
|
+
{
|
|
705
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
::IceInternal::ProxyHandle<Locator> ice_compress(bool __compress) const
|
|
709
|
+
{
|
|
710
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
::IceInternal::ProxyHandle<Locator> ice_timeout(int __timeout) const
|
|
714
|
+
{
|
|
715
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
::IceInternal::ProxyHandle<Locator> ice_connectionId(const ::std::string& __id) const
|
|
719
|
+
{
|
|
720
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
::IceInternal::ProxyHandle<Locator> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
724
|
+
{
|
|
725
|
+
return dynamic_cast<Locator*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
static const ::std::string& ice_staticId();
|
|
729
|
+
|
|
730
|
+
private:
|
|
731
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
732
|
+
};
|
|
733
|
+
|
|
734
|
+
class ICE_API LocatorRegistry : virtual public ::IceProxy::Ice::Object
|
|
735
|
+
{
|
|
736
|
+
public:
|
|
737
|
+
|
|
738
|
+
void setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy)
|
|
739
|
+
{
|
|
740
|
+
setAdapterDirectProxy(id, proxy, 0);
|
|
741
|
+
}
|
|
742
|
+
void setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx)
|
|
743
|
+
{
|
|
744
|
+
setAdapterDirectProxy(id, proxy, &__ctx);
|
|
745
|
+
}
|
|
746
|
+
#ifdef ICE_CPP11
|
|
747
|
+
::Ice::AsyncResultPtr
|
|
748
|
+
begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
749
|
+
{
|
|
750
|
+
return __begin_setAdapterDirectProxy(id, proxy, 0, __response, __exception, __sent);
|
|
751
|
+
}
|
|
752
|
+
::Ice::AsyncResultPtr
|
|
753
|
+
begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
754
|
+
{
|
|
755
|
+
return begin_setAdapterDirectProxy(id, proxy, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
756
|
+
}
|
|
757
|
+
::Ice::AsyncResultPtr
|
|
758
|
+
begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
759
|
+
{
|
|
760
|
+
return __begin_setAdapterDirectProxy(id, proxy, &__ctx, __response, __exception, __sent);
|
|
761
|
+
}
|
|
762
|
+
::Ice::AsyncResultPtr
|
|
763
|
+
begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
764
|
+
{
|
|
765
|
+
return begin_setAdapterDirectProxy(id, proxy, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
private:
|
|
769
|
+
|
|
770
|
+
::Ice::AsyncResultPtr __begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
771
|
+
|
|
772
|
+
public:
|
|
773
|
+
#endif
|
|
774
|
+
|
|
775
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy)
|
|
776
|
+
{
|
|
777
|
+
return begin_setAdapterDirectProxy(id, proxy, 0, ::IceInternal::__dummyCallback, 0);
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx)
|
|
781
|
+
{
|
|
782
|
+
return begin_setAdapterDirectProxy(id, proxy, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
786
|
+
{
|
|
787
|
+
return begin_setAdapterDirectProxy(id, proxy, 0, __del, __cookie);
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
791
|
+
{
|
|
792
|
+
return begin_setAdapterDirectProxy(id, proxy, &__ctx, __del, __cookie);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Callback_LocatorRegistry_setAdapterDirectProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
796
|
+
{
|
|
797
|
+
return begin_setAdapterDirectProxy(id, proxy, 0, __del, __cookie);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string& id, const ::Ice::ObjectPrx& proxy, const ::Ice::Context& __ctx, const ::Ice::Callback_LocatorRegistry_setAdapterDirectProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
801
|
+
{
|
|
802
|
+
return begin_setAdapterDirectProxy(id, proxy, &__ctx, __del, __cookie);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
void end_setAdapterDirectProxy(const ::Ice::AsyncResultPtr&);
|
|
806
|
+
|
|
807
|
+
private:
|
|
808
|
+
|
|
809
|
+
void setAdapterDirectProxy(const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Context*);
|
|
810
|
+
::Ice::AsyncResultPtr begin_setAdapterDirectProxy(const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
811
|
+
|
|
812
|
+
public:
|
|
813
|
+
|
|
814
|
+
void setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p)
|
|
815
|
+
{
|
|
816
|
+
setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0);
|
|
817
|
+
}
|
|
818
|
+
void setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx)
|
|
819
|
+
{
|
|
820
|
+
setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx);
|
|
821
|
+
}
|
|
822
|
+
#ifdef ICE_CPP11
|
|
823
|
+
::Ice::AsyncResultPtr
|
|
824
|
+
begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
825
|
+
{
|
|
826
|
+
return __begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0, __response, __exception, __sent);
|
|
827
|
+
}
|
|
828
|
+
::Ice::AsyncResultPtr
|
|
829
|
+
begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
830
|
+
{
|
|
831
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
832
|
+
}
|
|
833
|
+
::Ice::AsyncResultPtr
|
|
834
|
+
begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
835
|
+
{
|
|
836
|
+
return __begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx, __response, __exception, __sent);
|
|
837
|
+
}
|
|
838
|
+
::Ice::AsyncResultPtr
|
|
839
|
+
begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
840
|
+
{
|
|
841
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
private:
|
|
845
|
+
|
|
846
|
+
::Ice::AsyncResultPtr __begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
847
|
+
|
|
848
|
+
public:
|
|
849
|
+
#endif
|
|
850
|
+
|
|
851
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p)
|
|
852
|
+
{
|
|
853
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0, ::IceInternal::__dummyCallback, 0);
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx)
|
|
857
|
+
{
|
|
858
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
862
|
+
{
|
|
863
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0, __del, __cookie);
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
867
|
+
{
|
|
868
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx, __del, __cookie);
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
872
|
+
{
|
|
873
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, 0, __del, __cookie);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string& adapterId, const ::std::string& replicaGroupId, const ::Ice::ObjectPrx& p, const ::Ice::Context& __ctx, const ::Ice::Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
877
|
+
{
|
|
878
|
+
return begin_setReplicatedAdapterDirectProxy(adapterId, replicaGroupId, p, &__ctx, __del, __cookie);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
void end_setReplicatedAdapterDirectProxy(const ::Ice::AsyncResultPtr&);
|
|
882
|
+
|
|
883
|
+
private:
|
|
884
|
+
|
|
885
|
+
void setReplicatedAdapterDirectProxy(const ::std::string&, const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Context*);
|
|
886
|
+
::Ice::AsyncResultPtr begin_setReplicatedAdapterDirectProxy(const ::std::string&, const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
887
|
+
|
|
888
|
+
public:
|
|
889
|
+
|
|
890
|
+
void setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy)
|
|
891
|
+
{
|
|
892
|
+
setServerProcessProxy(id, proxy, 0);
|
|
893
|
+
}
|
|
894
|
+
void setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx)
|
|
895
|
+
{
|
|
896
|
+
setServerProcessProxy(id, proxy, &__ctx);
|
|
897
|
+
}
|
|
898
|
+
#ifdef ICE_CPP11
|
|
899
|
+
::Ice::AsyncResultPtr
|
|
900
|
+
begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
901
|
+
{
|
|
902
|
+
return __begin_setServerProcessProxy(id, proxy, 0, __response, __exception, __sent);
|
|
903
|
+
}
|
|
904
|
+
::Ice::AsyncResultPtr
|
|
905
|
+
begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
906
|
+
{
|
|
907
|
+
return begin_setServerProcessProxy(id, proxy, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
908
|
+
}
|
|
909
|
+
::Ice::AsyncResultPtr
|
|
910
|
+
begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
911
|
+
{
|
|
912
|
+
return __begin_setServerProcessProxy(id, proxy, &__ctx, __response, __exception, __sent);
|
|
913
|
+
}
|
|
914
|
+
::Ice::AsyncResultPtr
|
|
915
|
+
begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
916
|
+
{
|
|
917
|
+
return begin_setServerProcessProxy(id, proxy, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
private:
|
|
921
|
+
|
|
922
|
+
::Ice::AsyncResultPtr __begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
923
|
+
|
|
924
|
+
public:
|
|
925
|
+
#endif
|
|
926
|
+
|
|
927
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy)
|
|
928
|
+
{
|
|
929
|
+
return begin_setServerProcessProxy(id, proxy, 0, ::IceInternal::__dummyCallback, 0);
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx)
|
|
933
|
+
{
|
|
934
|
+
return begin_setServerProcessProxy(id, proxy, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
938
|
+
{
|
|
939
|
+
return begin_setServerProcessProxy(id, proxy, 0, __del, __cookie);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
943
|
+
{
|
|
944
|
+
return begin_setServerProcessProxy(id, proxy, &__ctx, __del, __cookie);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Callback_LocatorRegistry_setServerProcessProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
948
|
+
{
|
|
949
|
+
return begin_setServerProcessProxy(id, proxy, 0, __del, __cookie);
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string& id, const ::Ice::ProcessPrx& proxy, const ::Ice::Context& __ctx, const ::Ice::Callback_LocatorRegistry_setServerProcessProxyPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
953
|
+
{
|
|
954
|
+
return begin_setServerProcessProxy(id, proxy, &__ctx, __del, __cookie);
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
void end_setServerProcessProxy(const ::Ice::AsyncResultPtr&);
|
|
958
|
+
|
|
959
|
+
private:
|
|
960
|
+
|
|
961
|
+
void setServerProcessProxy(const ::std::string&, const ::Ice::ProcessPrx&, const ::Ice::Context*);
|
|
962
|
+
::Ice::AsyncResultPtr begin_setServerProcessProxy(const ::std::string&, const ::Ice::ProcessPrx&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
963
|
+
|
|
964
|
+
public:
|
|
965
|
+
|
|
966
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_context(const ::Ice::Context& __context) const
|
|
967
|
+
{
|
|
968
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_adapterId(const ::std::string& __id) const
|
|
972
|
+
{
|
|
973
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
977
|
+
{
|
|
978
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_locatorCacheTimeout(int __timeout) const
|
|
982
|
+
{
|
|
983
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_connectionCached(bool __cached) const
|
|
987
|
+
{
|
|
988
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
992
|
+
{
|
|
993
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_secure(bool __secure) const
|
|
997
|
+
{
|
|
998
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_preferSecure(bool __preferSecure) const
|
|
1002
|
+
{
|
|
1003
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1007
|
+
{
|
|
1008
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1012
|
+
{
|
|
1013
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_collocationOptimized(bool __co) const
|
|
1017
|
+
{
|
|
1018
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_invocationTimeout(int __timeout) const
|
|
1022
|
+
{
|
|
1023
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_twoway() const
|
|
1027
|
+
{
|
|
1028
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_oneway() const
|
|
1032
|
+
{
|
|
1033
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_batchOneway() const
|
|
1037
|
+
{
|
|
1038
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_datagram() const
|
|
1042
|
+
{
|
|
1043
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_batchDatagram() const
|
|
1047
|
+
{
|
|
1048
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_compress(bool __compress) const
|
|
1052
|
+
{
|
|
1053
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_timeout(int __timeout) const
|
|
1057
|
+
{
|
|
1058
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_connectionId(const ::std::string& __id) const
|
|
1062
|
+
{
|
|
1063
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
::IceInternal::ProxyHandle<LocatorRegistry> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1067
|
+
{
|
|
1068
|
+
return dynamic_cast<LocatorRegistry*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
static const ::std::string& ice_staticId();
|
|
1072
|
+
|
|
1073
|
+
private:
|
|
1074
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1075
|
+
};
|
|
1076
|
+
|
|
1077
|
+
class ICE_API LocatorFinder : virtual public ::IceProxy::Ice::Object
|
|
1078
|
+
{
|
|
1079
|
+
public:
|
|
1080
|
+
|
|
1081
|
+
::Ice::LocatorPrx getLocator()
|
|
1082
|
+
{
|
|
1083
|
+
return getLocator(0);
|
|
1084
|
+
}
|
|
1085
|
+
::Ice::LocatorPrx getLocator(const ::Ice::Context& __ctx)
|
|
1086
|
+
{
|
|
1087
|
+
return getLocator(&__ctx);
|
|
1088
|
+
}
|
|
1089
|
+
#ifdef ICE_CPP11
|
|
1090
|
+
::Ice::AsyncResultPtr
|
|
1091
|
+
begin_getLocator(const ::IceInternal::Function<void (const ::Ice::LocatorPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
1092
|
+
{
|
|
1093
|
+
return __begin_getLocator(0, __response, __exception, __sent);
|
|
1094
|
+
}
|
|
1095
|
+
::Ice::AsyncResultPtr
|
|
1096
|
+
begin_getLocator(const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
1097
|
+
{
|
|
1098
|
+
return begin_getLocator(0, ::Ice::newCallback(__completed, __sent), 0);
|
|
1099
|
+
}
|
|
1100
|
+
::Ice::AsyncResultPtr
|
|
1101
|
+
begin_getLocator(const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::LocatorPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& __sent = ::IceInternal::Function<void (bool)>())
|
|
1102
|
+
{
|
|
1103
|
+
return __begin_getLocator(&__ctx, __response, __exception, __sent);
|
|
1104
|
+
}
|
|
1105
|
+
::Ice::AsyncResultPtr
|
|
1106
|
+
begin_getLocator(const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
1107
|
+
{
|
|
1108
|
+
return begin_getLocator(&__ctx, ::Ice::newCallback(__completed, __sent));
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
private:
|
|
1112
|
+
|
|
1113
|
+
::Ice::AsyncResultPtr __begin_getLocator(const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::Ice::LocatorPrx&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
1114
|
+
|
|
1115
|
+
public:
|
|
1116
|
+
#endif
|
|
1117
|
+
|
|
1118
|
+
::Ice::AsyncResultPtr begin_getLocator()
|
|
1119
|
+
{
|
|
1120
|
+
return begin_getLocator(0, ::IceInternal::__dummyCallback, 0);
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::Context& __ctx)
|
|
1124
|
+
{
|
|
1125
|
+
return begin_getLocator(&__ctx, ::IceInternal::__dummyCallback, 0);
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
1129
|
+
{
|
|
1130
|
+
return begin_getLocator(0, __del, __cookie);
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
1134
|
+
{
|
|
1135
|
+
return begin_getLocator(&__ctx, __del, __cookie);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::Callback_LocatorFinder_getLocatorPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
1139
|
+
{
|
|
1140
|
+
return begin_getLocator(0, __del, __cookie);
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::Context& __ctx, const ::Ice::Callback_LocatorFinder_getLocatorPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
1144
|
+
{
|
|
1145
|
+
return begin_getLocator(&__ctx, __del, __cookie);
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
::Ice::LocatorPrx end_getLocator(const ::Ice::AsyncResultPtr&);
|
|
1149
|
+
|
|
1150
|
+
private:
|
|
1151
|
+
|
|
1152
|
+
::Ice::LocatorPrx getLocator(const ::Ice::Context*);
|
|
1153
|
+
::Ice::AsyncResultPtr begin_getLocator(const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
1154
|
+
|
|
1155
|
+
public:
|
|
1156
|
+
|
|
1157
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_context(const ::Ice::Context& __context) const
|
|
1158
|
+
{
|
|
1159
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_adapterId(const ::std::string& __id) const
|
|
1163
|
+
{
|
|
1164
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1168
|
+
{
|
|
1169
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_locatorCacheTimeout(int __timeout) const
|
|
1173
|
+
{
|
|
1174
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_connectionCached(bool __cached) const
|
|
1178
|
+
{
|
|
1179
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1183
|
+
{
|
|
1184
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_secure(bool __secure) const
|
|
1188
|
+
{
|
|
1189
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_preferSecure(bool __preferSecure) const
|
|
1193
|
+
{
|
|
1194
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1198
|
+
{
|
|
1199
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1203
|
+
{
|
|
1204
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_collocationOptimized(bool __co) const
|
|
1208
|
+
{
|
|
1209
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_invocationTimeout(int __timeout) const
|
|
1213
|
+
{
|
|
1214
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_twoway() const
|
|
1218
|
+
{
|
|
1219
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_oneway() const
|
|
1223
|
+
{
|
|
1224
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_batchOneway() const
|
|
1228
|
+
{
|
|
1229
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_datagram() const
|
|
1233
|
+
{
|
|
1234
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_batchDatagram() const
|
|
1238
|
+
{
|
|
1239
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_compress(bool __compress) const
|
|
1243
|
+
{
|
|
1244
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_timeout(int __timeout) const
|
|
1248
|
+
{
|
|
1249
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_connectionId(const ::std::string& __id) const
|
|
1253
|
+
{
|
|
1254
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
::IceInternal::ProxyHandle<LocatorFinder> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1258
|
+
{
|
|
1259
|
+
return dynamic_cast<LocatorFinder*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
static const ::std::string& ice_staticId();
|
|
1263
|
+
|
|
1264
|
+
private:
|
|
1265
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1266
|
+
};
|
|
1267
|
+
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
namespace Ice
|
|
1273
|
+
{
|
|
1274
|
+
|
|
1275
|
+
class ICE_API Locator : virtual public ::Ice::Object
|
|
1276
|
+
{
|
|
1277
|
+
public:
|
|
1278
|
+
|
|
1279
|
+
typedef LocatorPrx ProxyType;
|
|
1280
|
+
typedef LocatorPtr PointerType;
|
|
1281
|
+
|
|
1282
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1283
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1284
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1285
|
+
static const ::std::string& ice_staticId();
|
|
1286
|
+
|
|
1287
|
+
virtual void findObjectById_async(const ::Ice::AMD_Locator_findObjectByIdPtr&, const ::Ice::Identity&, const ::Ice::Current& = ::Ice::Current()) const = 0;
|
|
1288
|
+
::Ice::DispatchStatus ___findObjectById(::IceInternal::Incoming&, const ::Ice::Current&) const;
|
|
1289
|
+
|
|
1290
|
+
virtual void findAdapterById_async(const ::Ice::AMD_Locator_findAdapterByIdPtr&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const = 0;
|
|
1291
|
+
::Ice::DispatchStatus ___findAdapterById(::IceInternal::Incoming&, const ::Ice::Current&) const;
|
|
1292
|
+
|
|
1293
|
+
virtual ::Ice::LocatorRegistryPrx getRegistry(const ::Ice::Current& = ::Ice::Current()) const = 0;
|
|
1294
|
+
::Ice::DispatchStatus ___getRegistry(::IceInternal::Incoming&, const ::Ice::Current&) const;
|
|
1295
|
+
|
|
1296
|
+
virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1297
|
+
|
|
1298
|
+
protected:
|
|
1299
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1300
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1301
|
+
using ::Ice::Object::__writeImpl;
|
|
1302
|
+
using ::Ice::Object::__readImpl;
|
|
1303
|
+
};
|
|
1304
|
+
|
|
1305
|
+
inline bool operator==(const Locator& l, const Locator& r)
|
|
1306
|
+
{
|
|
1307
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
inline bool operator<(const Locator& l, const Locator& r)
|
|
1311
|
+
{
|
|
1312
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
class ICE_API LocatorRegistry : virtual public ::Ice::Object
|
|
1316
|
+
{
|
|
1317
|
+
public:
|
|
1318
|
+
|
|
1319
|
+
typedef LocatorRegistryPrx ProxyType;
|
|
1320
|
+
typedef LocatorRegistryPtr PointerType;
|
|
1321
|
+
|
|
1322
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1323
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1324
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1325
|
+
static const ::std::string& ice_staticId();
|
|
1326
|
+
|
|
1327
|
+
virtual void setAdapterDirectProxy_async(const ::Ice::AMD_LocatorRegistry_setAdapterDirectProxyPtr&, const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1328
|
+
::Ice::DispatchStatus ___setAdapterDirectProxy(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1329
|
+
|
|
1330
|
+
virtual void setReplicatedAdapterDirectProxy_async(const ::Ice::AMD_LocatorRegistry_setReplicatedAdapterDirectProxyPtr&, const ::std::string&, const ::std::string&, const ::Ice::ObjectPrx&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1331
|
+
::Ice::DispatchStatus ___setReplicatedAdapterDirectProxy(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1332
|
+
|
|
1333
|
+
virtual void setServerProcessProxy_async(const ::Ice::AMD_LocatorRegistry_setServerProcessProxyPtr&, const ::std::string&, const ::Ice::ProcessPrx&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1334
|
+
::Ice::DispatchStatus ___setServerProcessProxy(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1335
|
+
|
|
1336
|
+
virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1337
|
+
|
|
1338
|
+
protected:
|
|
1339
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1340
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1341
|
+
using ::Ice::Object::__writeImpl;
|
|
1342
|
+
using ::Ice::Object::__readImpl;
|
|
1343
|
+
};
|
|
1344
|
+
|
|
1345
|
+
inline bool operator==(const LocatorRegistry& l, const LocatorRegistry& r)
|
|
1346
|
+
{
|
|
1347
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
inline bool operator<(const LocatorRegistry& l, const LocatorRegistry& r)
|
|
1351
|
+
{
|
|
1352
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
class ICE_API LocatorFinder : virtual public ::Ice::Object
|
|
1356
|
+
{
|
|
1357
|
+
public:
|
|
1358
|
+
|
|
1359
|
+
typedef LocatorFinderPrx ProxyType;
|
|
1360
|
+
typedef LocatorFinderPtr PointerType;
|
|
1361
|
+
|
|
1362
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1363
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1364
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1365
|
+
static const ::std::string& ice_staticId();
|
|
1366
|
+
|
|
1367
|
+
virtual ::Ice::LocatorPrx getLocator(const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1368
|
+
::Ice::DispatchStatus ___getLocator(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1369
|
+
|
|
1370
|
+
virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1371
|
+
|
|
1372
|
+
protected:
|
|
1373
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1374
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1375
|
+
using ::Ice::Object::__writeImpl;
|
|
1376
|
+
using ::Ice::Object::__readImpl;
|
|
1377
|
+
};
|
|
1378
|
+
|
|
1379
|
+
inline bool operator==(const LocatorFinder& l, const LocatorFinder& r)
|
|
1380
|
+
{
|
|
1381
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
inline bool operator<(const LocatorFinder& l, const LocatorFinder& r)
|
|
1385
|
+
{
|
|
1386
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
namespace Ice
|
|
1392
|
+
{
|
|
1393
|
+
|
|
1394
|
+
template<class T>
|
|
1395
|
+
class CallbackNC_Locator_findObjectById : public Callback_Locator_findObjectById_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1396
|
+
{
|
|
1397
|
+
public:
|
|
1398
|
+
|
|
1399
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1400
|
+
|
|
1401
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1402
|
+
typedef void (T::*Sent)(bool);
|
|
1403
|
+
typedef void (T::*Response)(const ::Ice::ObjectPrx&);
|
|
1404
|
+
|
|
1405
|
+
CallbackNC_Locator_findObjectById(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1406
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1407
|
+
{
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1411
|
+
{
|
|
1412
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1413
|
+
::Ice::ObjectPrx __ret;
|
|
1414
|
+
try
|
|
1415
|
+
{
|
|
1416
|
+
__ret = __proxy->end_findObjectById(__result);
|
|
1417
|
+
}
|
|
1418
|
+
catch(const ::Ice::Exception& ex)
|
|
1419
|
+
{
|
|
1420
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1421
|
+
return;
|
|
1422
|
+
}
|
|
1423
|
+
if(_response)
|
|
1424
|
+
{
|
|
1425
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
private:
|
|
1430
|
+
|
|
1431
|
+
Response _response;
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1434
|
+
template<class T> Callback_Locator_findObjectByIdPtr
|
|
1435
|
+
newCallback_Locator_findObjectById(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::ObjectPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1436
|
+
{
|
|
1437
|
+
return new CallbackNC_Locator_findObjectById<T>(instance, cb, excb, sentcb);
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
template<class T> Callback_Locator_findObjectByIdPtr
|
|
1441
|
+
newCallback_Locator_findObjectById(T* instance, void (T::*cb)(const ::Ice::ObjectPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1442
|
+
{
|
|
1443
|
+
return new CallbackNC_Locator_findObjectById<T>(instance, cb, excb, sentcb);
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
template<class T, typename CT>
|
|
1447
|
+
class Callback_Locator_findObjectById : public Callback_Locator_findObjectById_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
1448
|
+
{
|
|
1449
|
+
public:
|
|
1450
|
+
|
|
1451
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1452
|
+
|
|
1453
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
1454
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
1455
|
+
typedef void (T::*Response)(const ::Ice::ObjectPrx&, const CT&);
|
|
1456
|
+
|
|
1457
|
+
Callback_Locator_findObjectById(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1458
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1459
|
+
{
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1463
|
+
{
|
|
1464
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1465
|
+
::Ice::ObjectPrx __ret;
|
|
1466
|
+
try
|
|
1467
|
+
{
|
|
1468
|
+
__ret = __proxy->end_findObjectById(__result);
|
|
1469
|
+
}
|
|
1470
|
+
catch(const ::Ice::Exception& ex)
|
|
1471
|
+
{
|
|
1472
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
1473
|
+
return;
|
|
1474
|
+
}
|
|
1475
|
+
if(_response)
|
|
1476
|
+
{
|
|
1477
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
1478
|
+
}
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
private:
|
|
1482
|
+
|
|
1483
|
+
Response _response;
|
|
1484
|
+
};
|
|
1485
|
+
|
|
1486
|
+
template<class T, typename CT> Callback_Locator_findObjectByIdPtr
|
|
1487
|
+
newCallback_Locator_findObjectById(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::ObjectPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1488
|
+
{
|
|
1489
|
+
return new Callback_Locator_findObjectById<T, CT>(instance, cb, excb, sentcb);
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
template<class T, typename CT> Callback_Locator_findObjectByIdPtr
|
|
1493
|
+
newCallback_Locator_findObjectById(T* instance, void (T::*cb)(const ::Ice::ObjectPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1494
|
+
{
|
|
1495
|
+
return new Callback_Locator_findObjectById<T, CT>(instance, cb, excb, sentcb);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
template<class T>
|
|
1499
|
+
class CallbackNC_Locator_findAdapterById : public Callback_Locator_findAdapterById_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1500
|
+
{
|
|
1501
|
+
public:
|
|
1502
|
+
|
|
1503
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1504
|
+
|
|
1505
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1506
|
+
typedef void (T::*Sent)(bool);
|
|
1507
|
+
typedef void (T::*Response)(const ::Ice::ObjectPrx&);
|
|
1508
|
+
|
|
1509
|
+
CallbackNC_Locator_findAdapterById(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1510
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1511
|
+
{
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1515
|
+
{
|
|
1516
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1517
|
+
::Ice::ObjectPrx __ret;
|
|
1518
|
+
try
|
|
1519
|
+
{
|
|
1520
|
+
__ret = __proxy->end_findAdapterById(__result);
|
|
1521
|
+
}
|
|
1522
|
+
catch(const ::Ice::Exception& ex)
|
|
1523
|
+
{
|
|
1524
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1525
|
+
return;
|
|
1526
|
+
}
|
|
1527
|
+
if(_response)
|
|
1528
|
+
{
|
|
1529
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
1530
|
+
}
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
private:
|
|
1534
|
+
|
|
1535
|
+
Response _response;
|
|
1536
|
+
};
|
|
1537
|
+
|
|
1538
|
+
template<class T> Callback_Locator_findAdapterByIdPtr
|
|
1539
|
+
newCallback_Locator_findAdapterById(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::ObjectPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1540
|
+
{
|
|
1541
|
+
return new CallbackNC_Locator_findAdapterById<T>(instance, cb, excb, sentcb);
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
template<class T> Callback_Locator_findAdapterByIdPtr
|
|
1545
|
+
newCallback_Locator_findAdapterById(T* instance, void (T::*cb)(const ::Ice::ObjectPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1546
|
+
{
|
|
1547
|
+
return new CallbackNC_Locator_findAdapterById<T>(instance, cb, excb, sentcb);
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
template<class T, typename CT>
|
|
1551
|
+
class Callback_Locator_findAdapterById : public Callback_Locator_findAdapterById_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
1552
|
+
{
|
|
1553
|
+
public:
|
|
1554
|
+
|
|
1555
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1556
|
+
|
|
1557
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
1558
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
1559
|
+
typedef void (T::*Response)(const ::Ice::ObjectPrx&, const CT&);
|
|
1560
|
+
|
|
1561
|
+
Callback_Locator_findAdapterById(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1562
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1563
|
+
{
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1567
|
+
{
|
|
1568
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1569
|
+
::Ice::ObjectPrx __ret;
|
|
1570
|
+
try
|
|
1571
|
+
{
|
|
1572
|
+
__ret = __proxy->end_findAdapterById(__result);
|
|
1573
|
+
}
|
|
1574
|
+
catch(const ::Ice::Exception& ex)
|
|
1575
|
+
{
|
|
1576
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
1577
|
+
return;
|
|
1578
|
+
}
|
|
1579
|
+
if(_response)
|
|
1580
|
+
{
|
|
1581
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
private:
|
|
1586
|
+
|
|
1587
|
+
Response _response;
|
|
1588
|
+
};
|
|
1589
|
+
|
|
1590
|
+
template<class T, typename CT> Callback_Locator_findAdapterByIdPtr
|
|
1591
|
+
newCallback_Locator_findAdapterById(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::ObjectPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1592
|
+
{
|
|
1593
|
+
return new Callback_Locator_findAdapterById<T, CT>(instance, cb, excb, sentcb);
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
template<class T, typename CT> Callback_Locator_findAdapterByIdPtr
|
|
1597
|
+
newCallback_Locator_findAdapterById(T* instance, void (T::*cb)(const ::Ice::ObjectPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1598
|
+
{
|
|
1599
|
+
return new Callback_Locator_findAdapterById<T, CT>(instance, cb, excb, sentcb);
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
template<class T>
|
|
1603
|
+
class CallbackNC_Locator_getRegistry : public Callback_Locator_getRegistry_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1604
|
+
{
|
|
1605
|
+
public:
|
|
1606
|
+
|
|
1607
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1608
|
+
|
|
1609
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1610
|
+
typedef void (T::*Sent)(bool);
|
|
1611
|
+
typedef void (T::*Response)(const ::Ice::LocatorRegistryPrx&);
|
|
1612
|
+
|
|
1613
|
+
CallbackNC_Locator_getRegistry(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1614
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1615
|
+
{
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1619
|
+
{
|
|
1620
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1621
|
+
::Ice::LocatorRegistryPrx __ret;
|
|
1622
|
+
try
|
|
1623
|
+
{
|
|
1624
|
+
__ret = __proxy->end_getRegistry(__result);
|
|
1625
|
+
}
|
|
1626
|
+
catch(const ::Ice::Exception& ex)
|
|
1627
|
+
{
|
|
1628
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1629
|
+
return;
|
|
1630
|
+
}
|
|
1631
|
+
if(_response)
|
|
1632
|
+
{
|
|
1633
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
private:
|
|
1638
|
+
|
|
1639
|
+
Response _response;
|
|
1640
|
+
};
|
|
1641
|
+
|
|
1642
|
+
template<class T> Callback_Locator_getRegistryPtr
|
|
1643
|
+
newCallback_Locator_getRegistry(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::LocatorRegistryPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1644
|
+
{
|
|
1645
|
+
return new CallbackNC_Locator_getRegistry<T>(instance, cb, excb, sentcb);
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
template<class T> Callback_Locator_getRegistryPtr
|
|
1649
|
+
newCallback_Locator_getRegistry(T* instance, void (T::*cb)(const ::Ice::LocatorRegistryPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1650
|
+
{
|
|
1651
|
+
return new CallbackNC_Locator_getRegistry<T>(instance, cb, excb, sentcb);
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
template<class T, typename CT>
|
|
1655
|
+
class Callback_Locator_getRegistry : public Callback_Locator_getRegistry_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
1656
|
+
{
|
|
1657
|
+
public:
|
|
1658
|
+
|
|
1659
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1660
|
+
|
|
1661
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
1662
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
1663
|
+
typedef void (T::*Response)(const ::Ice::LocatorRegistryPrx&, const CT&);
|
|
1664
|
+
|
|
1665
|
+
Callback_Locator_getRegistry(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1666
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1667
|
+
{
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1671
|
+
{
|
|
1672
|
+
::Ice::LocatorPrx __proxy = ::Ice::LocatorPrx::uncheckedCast(__result->getProxy());
|
|
1673
|
+
::Ice::LocatorRegistryPrx __ret;
|
|
1674
|
+
try
|
|
1675
|
+
{
|
|
1676
|
+
__ret = __proxy->end_getRegistry(__result);
|
|
1677
|
+
}
|
|
1678
|
+
catch(const ::Ice::Exception& ex)
|
|
1679
|
+
{
|
|
1680
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
1681
|
+
return;
|
|
1682
|
+
}
|
|
1683
|
+
if(_response)
|
|
1684
|
+
{
|
|
1685
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
private:
|
|
1690
|
+
|
|
1691
|
+
Response _response;
|
|
1692
|
+
};
|
|
1693
|
+
|
|
1694
|
+
template<class T, typename CT> Callback_Locator_getRegistryPtr
|
|
1695
|
+
newCallback_Locator_getRegistry(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::LocatorRegistryPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1696
|
+
{
|
|
1697
|
+
return new Callback_Locator_getRegistry<T, CT>(instance, cb, excb, sentcb);
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
template<class T, typename CT> Callback_Locator_getRegistryPtr
|
|
1701
|
+
newCallback_Locator_getRegistry(T* instance, void (T::*cb)(const ::Ice::LocatorRegistryPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1702
|
+
{
|
|
1703
|
+
return new Callback_Locator_getRegistry<T, CT>(instance, cb, excb, sentcb);
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
template<class T>
|
|
1707
|
+
class CallbackNC_LocatorRegistry_setAdapterDirectProxy : public Callback_LocatorRegistry_setAdapterDirectProxy_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1708
|
+
{
|
|
1709
|
+
public:
|
|
1710
|
+
|
|
1711
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1712
|
+
|
|
1713
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1714
|
+
typedef void (T::*Sent)(bool);
|
|
1715
|
+
typedef void (T::*Response)();
|
|
1716
|
+
|
|
1717
|
+
CallbackNC_LocatorRegistry_setAdapterDirectProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1718
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1719
|
+
{
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1723
|
+
{
|
|
1724
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
1725
|
+
try
|
|
1726
|
+
{
|
|
1727
|
+
__proxy->end_setAdapterDirectProxy(__result);
|
|
1728
|
+
}
|
|
1729
|
+
catch(const ::Ice::Exception& ex)
|
|
1730
|
+
{
|
|
1731
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1732
|
+
return;
|
|
1733
|
+
}
|
|
1734
|
+
if(_response)
|
|
1735
|
+
{
|
|
1736
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)();
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
private:
|
|
1741
|
+
|
|
1742
|
+
Response _response;
|
|
1743
|
+
};
|
|
1744
|
+
|
|
1745
|
+
template<class T> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1746
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1747
|
+
{
|
|
1748
|
+
return new CallbackNC_LocatorRegistry_setAdapterDirectProxy<T>(instance, cb, excb, sentcb);
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
template<class T> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1752
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1753
|
+
{
|
|
1754
|
+
return new CallbackNC_LocatorRegistry_setAdapterDirectProxy<T>(instance, 0, excb, sentcb);
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
template<class T> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1758
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1759
|
+
{
|
|
1760
|
+
return new CallbackNC_LocatorRegistry_setAdapterDirectProxy<T>(instance, cb, excb, sentcb);
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
template<class T> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1764
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1765
|
+
{
|
|
1766
|
+
return new CallbackNC_LocatorRegistry_setAdapterDirectProxy<T>(instance, 0, excb, sentcb);
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
template<class T, typename CT>
|
|
1770
|
+
class Callback_LocatorRegistry_setAdapterDirectProxy : public Callback_LocatorRegistry_setAdapterDirectProxy_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
1771
|
+
{
|
|
1772
|
+
public:
|
|
1773
|
+
|
|
1774
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1775
|
+
|
|
1776
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
1777
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
1778
|
+
typedef void (T::*Response)(const CT&);
|
|
1779
|
+
|
|
1780
|
+
Callback_LocatorRegistry_setAdapterDirectProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1781
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1782
|
+
{
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1786
|
+
{
|
|
1787
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
1788
|
+
try
|
|
1789
|
+
{
|
|
1790
|
+
__proxy->end_setAdapterDirectProxy(__result);
|
|
1791
|
+
}
|
|
1792
|
+
catch(const ::Ice::Exception& ex)
|
|
1793
|
+
{
|
|
1794
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
1795
|
+
return;
|
|
1796
|
+
}
|
|
1797
|
+
if(_response)
|
|
1798
|
+
{
|
|
1799
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(CT::dynamicCast(__result->getCookie()));
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
private:
|
|
1804
|
+
|
|
1805
|
+
Response _response;
|
|
1806
|
+
};
|
|
1807
|
+
|
|
1808
|
+
template<class T, typename CT> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1809
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1810
|
+
{
|
|
1811
|
+
return new Callback_LocatorRegistry_setAdapterDirectProxy<T, CT>(instance, cb, excb, sentcb);
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
template<class T, typename CT> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1815
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1816
|
+
{
|
|
1817
|
+
return new Callback_LocatorRegistry_setAdapterDirectProxy<T, CT>(instance, 0, excb, sentcb);
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
template<class T, typename CT> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1821
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1822
|
+
{
|
|
1823
|
+
return new Callback_LocatorRegistry_setAdapterDirectProxy<T, CT>(instance, cb, excb, sentcb);
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
template<class T, typename CT> Callback_LocatorRegistry_setAdapterDirectProxyPtr
|
|
1827
|
+
newCallback_LocatorRegistry_setAdapterDirectProxy(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1828
|
+
{
|
|
1829
|
+
return new Callback_LocatorRegistry_setAdapterDirectProxy<T, CT>(instance, 0, excb, sentcb);
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
template<class T>
|
|
1833
|
+
class CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy : public Callback_LocatorRegistry_setReplicatedAdapterDirectProxy_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1834
|
+
{
|
|
1835
|
+
public:
|
|
1836
|
+
|
|
1837
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1838
|
+
|
|
1839
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1840
|
+
typedef void (T::*Sent)(bool);
|
|
1841
|
+
typedef void (T::*Response)();
|
|
1842
|
+
|
|
1843
|
+
CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1844
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1845
|
+
{
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1849
|
+
{
|
|
1850
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
1851
|
+
try
|
|
1852
|
+
{
|
|
1853
|
+
__proxy->end_setReplicatedAdapterDirectProxy(__result);
|
|
1854
|
+
}
|
|
1855
|
+
catch(const ::Ice::Exception& ex)
|
|
1856
|
+
{
|
|
1857
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1858
|
+
return;
|
|
1859
|
+
}
|
|
1860
|
+
if(_response)
|
|
1861
|
+
{
|
|
1862
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)();
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
private:
|
|
1867
|
+
|
|
1868
|
+
Response _response;
|
|
1869
|
+
};
|
|
1870
|
+
|
|
1871
|
+
template<class T> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1872
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1873
|
+
{
|
|
1874
|
+
return new CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy<T>(instance, cb, excb, sentcb);
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
template<class T> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1878
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1879
|
+
{
|
|
1880
|
+
return new CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy<T>(instance, 0, excb, sentcb);
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
template<class T> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1884
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1885
|
+
{
|
|
1886
|
+
return new CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy<T>(instance, cb, excb, sentcb);
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
template<class T> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1890
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1891
|
+
{
|
|
1892
|
+
return new CallbackNC_LocatorRegistry_setReplicatedAdapterDirectProxy<T>(instance, 0, excb, sentcb);
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
template<class T, typename CT>
|
|
1896
|
+
class Callback_LocatorRegistry_setReplicatedAdapterDirectProxy : public Callback_LocatorRegistry_setReplicatedAdapterDirectProxy_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
1897
|
+
{
|
|
1898
|
+
public:
|
|
1899
|
+
|
|
1900
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1901
|
+
|
|
1902
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
1903
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
1904
|
+
typedef void (T::*Response)(const CT&);
|
|
1905
|
+
|
|
1906
|
+
Callback_LocatorRegistry_setReplicatedAdapterDirectProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1907
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1908
|
+
{
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1912
|
+
{
|
|
1913
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
1914
|
+
try
|
|
1915
|
+
{
|
|
1916
|
+
__proxy->end_setReplicatedAdapterDirectProxy(__result);
|
|
1917
|
+
}
|
|
1918
|
+
catch(const ::Ice::Exception& ex)
|
|
1919
|
+
{
|
|
1920
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
1921
|
+
return;
|
|
1922
|
+
}
|
|
1923
|
+
if(_response)
|
|
1924
|
+
{
|
|
1925
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(CT::dynamicCast(__result->getCookie()));
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
private:
|
|
1930
|
+
|
|
1931
|
+
Response _response;
|
|
1932
|
+
};
|
|
1933
|
+
|
|
1934
|
+
template<class T, typename CT> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1935
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1936
|
+
{
|
|
1937
|
+
return new Callback_LocatorRegistry_setReplicatedAdapterDirectProxy<T, CT>(instance, cb, excb, sentcb);
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
template<class T, typename CT> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1941
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1942
|
+
{
|
|
1943
|
+
return new Callback_LocatorRegistry_setReplicatedAdapterDirectProxy<T, CT>(instance, 0, excb, sentcb);
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
template<class T, typename CT> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1947
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1948
|
+
{
|
|
1949
|
+
return new Callback_LocatorRegistry_setReplicatedAdapterDirectProxy<T, CT>(instance, cb, excb, sentcb);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
template<class T, typename CT> Callback_LocatorRegistry_setReplicatedAdapterDirectProxyPtr
|
|
1953
|
+
newCallback_LocatorRegistry_setReplicatedAdapterDirectProxy(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
1954
|
+
{
|
|
1955
|
+
return new Callback_LocatorRegistry_setReplicatedAdapterDirectProxy<T, CT>(instance, 0, excb, sentcb);
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
template<class T>
|
|
1959
|
+
class CallbackNC_LocatorRegistry_setServerProcessProxy : public Callback_LocatorRegistry_setServerProcessProxy_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
1960
|
+
{
|
|
1961
|
+
public:
|
|
1962
|
+
|
|
1963
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
1964
|
+
|
|
1965
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
1966
|
+
typedef void (T::*Sent)(bool);
|
|
1967
|
+
typedef void (T::*Response)();
|
|
1968
|
+
|
|
1969
|
+
CallbackNC_LocatorRegistry_setServerProcessProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
1970
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
1971
|
+
{
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
1975
|
+
{
|
|
1976
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
1977
|
+
try
|
|
1978
|
+
{
|
|
1979
|
+
__proxy->end_setServerProcessProxy(__result);
|
|
1980
|
+
}
|
|
1981
|
+
catch(const ::Ice::Exception& ex)
|
|
1982
|
+
{
|
|
1983
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
1984
|
+
return;
|
|
1985
|
+
}
|
|
1986
|
+
if(_response)
|
|
1987
|
+
{
|
|
1988
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)();
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
private:
|
|
1993
|
+
|
|
1994
|
+
Response _response;
|
|
1995
|
+
};
|
|
1996
|
+
|
|
1997
|
+
template<class T> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
1998
|
+
newCallback_LocatorRegistry_setServerProcessProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
1999
|
+
{
|
|
2000
|
+
return new CallbackNC_LocatorRegistry_setServerProcessProxy<T>(instance, cb, excb, sentcb);
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
template<class T> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2004
|
+
newCallback_LocatorRegistry_setServerProcessProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2005
|
+
{
|
|
2006
|
+
return new CallbackNC_LocatorRegistry_setServerProcessProxy<T>(instance, 0, excb, sentcb);
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
template<class T> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2010
|
+
newCallback_LocatorRegistry_setServerProcessProxy(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2011
|
+
{
|
|
2012
|
+
return new CallbackNC_LocatorRegistry_setServerProcessProxy<T>(instance, cb, excb, sentcb);
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
template<class T> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2016
|
+
newCallback_LocatorRegistry_setServerProcessProxy(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2017
|
+
{
|
|
2018
|
+
return new CallbackNC_LocatorRegistry_setServerProcessProxy<T>(instance, 0, excb, sentcb);
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
template<class T, typename CT>
|
|
2022
|
+
class Callback_LocatorRegistry_setServerProcessProxy : public Callback_LocatorRegistry_setServerProcessProxy_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2023
|
+
{
|
|
2024
|
+
public:
|
|
2025
|
+
|
|
2026
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2027
|
+
|
|
2028
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2029
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2030
|
+
typedef void (T::*Response)(const CT&);
|
|
2031
|
+
|
|
2032
|
+
Callback_LocatorRegistry_setServerProcessProxy(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2033
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2034
|
+
{
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2038
|
+
{
|
|
2039
|
+
::Ice::LocatorRegistryPrx __proxy = ::Ice::LocatorRegistryPrx::uncheckedCast(__result->getProxy());
|
|
2040
|
+
try
|
|
2041
|
+
{
|
|
2042
|
+
__proxy->end_setServerProcessProxy(__result);
|
|
2043
|
+
}
|
|
2044
|
+
catch(const ::Ice::Exception& ex)
|
|
2045
|
+
{
|
|
2046
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2047
|
+
return;
|
|
2048
|
+
}
|
|
2049
|
+
if(_response)
|
|
2050
|
+
{
|
|
2051
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(CT::dynamicCast(__result->getCookie()));
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
private:
|
|
2056
|
+
|
|
2057
|
+
Response _response;
|
|
2058
|
+
};
|
|
2059
|
+
|
|
2060
|
+
template<class T, typename CT> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2061
|
+
newCallback_LocatorRegistry_setServerProcessProxy(const IceUtil::Handle<T>& instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2062
|
+
{
|
|
2063
|
+
return new Callback_LocatorRegistry_setServerProcessProxy<T, CT>(instance, cb, excb, sentcb);
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
template<class T, typename CT> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2067
|
+
newCallback_LocatorRegistry_setServerProcessProxy(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2068
|
+
{
|
|
2069
|
+
return new Callback_LocatorRegistry_setServerProcessProxy<T, CT>(instance, 0, excb, sentcb);
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
template<class T, typename CT> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2073
|
+
newCallback_LocatorRegistry_setServerProcessProxy(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2074
|
+
{
|
|
2075
|
+
return new Callback_LocatorRegistry_setServerProcessProxy<T, CT>(instance, cb, excb, sentcb);
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
template<class T, typename CT> Callback_LocatorRegistry_setServerProcessProxyPtr
|
|
2079
|
+
newCallback_LocatorRegistry_setServerProcessProxy(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2080
|
+
{
|
|
2081
|
+
return new Callback_LocatorRegistry_setServerProcessProxy<T, CT>(instance, 0, excb, sentcb);
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
template<class T>
|
|
2085
|
+
class CallbackNC_LocatorFinder_getLocator : public Callback_LocatorFinder_getLocator_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2086
|
+
{
|
|
2087
|
+
public:
|
|
2088
|
+
|
|
2089
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2090
|
+
|
|
2091
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2092
|
+
typedef void (T::*Sent)(bool);
|
|
2093
|
+
typedef void (T::*Response)(const ::Ice::LocatorPrx&);
|
|
2094
|
+
|
|
2095
|
+
CallbackNC_LocatorFinder_getLocator(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2096
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2097
|
+
{
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2101
|
+
{
|
|
2102
|
+
::Ice::LocatorFinderPrx __proxy = ::Ice::LocatorFinderPrx::uncheckedCast(__result->getProxy());
|
|
2103
|
+
::Ice::LocatorPrx __ret;
|
|
2104
|
+
try
|
|
2105
|
+
{
|
|
2106
|
+
__ret = __proxy->end_getLocator(__result);
|
|
2107
|
+
}
|
|
2108
|
+
catch(const ::Ice::Exception& ex)
|
|
2109
|
+
{
|
|
2110
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2111
|
+
return;
|
|
2112
|
+
}
|
|
2113
|
+
if(_response)
|
|
2114
|
+
{
|
|
2115
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
private:
|
|
2120
|
+
|
|
2121
|
+
Response _response;
|
|
2122
|
+
};
|
|
2123
|
+
|
|
2124
|
+
template<class T> Callback_LocatorFinder_getLocatorPtr
|
|
2125
|
+
newCallback_LocatorFinder_getLocator(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::LocatorPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2126
|
+
{
|
|
2127
|
+
return new CallbackNC_LocatorFinder_getLocator<T>(instance, cb, excb, sentcb);
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
template<class T> Callback_LocatorFinder_getLocatorPtr
|
|
2131
|
+
newCallback_LocatorFinder_getLocator(T* instance, void (T::*cb)(const ::Ice::LocatorPrx&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2132
|
+
{
|
|
2133
|
+
return new CallbackNC_LocatorFinder_getLocator<T>(instance, cb, excb, sentcb);
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
template<class T, typename CT>
|
|
2137
|
+
class Callback_LocatorFinder_getLocator : public Callback_LocatorFinder_getLocator_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2138
|
+
{
|
|
2139
|
+
public:
|
|
2140
|
+
|
|
2141
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2142
|
+
|
|
2143
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2144
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2145
|
+
typedef void (T::*Response)(const ::Ice::LocatorPrx&, const CT&);
|
|
2146
|
+
|
|
2147
|
+
Callback_LocatorFinder_getLocator(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2148
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2149
|
+
{
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2153
|
+
{
|
|
2154
|
+
::Ice::LocatorFinderPrx __proxy = ::Ice::LocatorFinderPrx::uncheckedCast(__result->getProxy());
|
|
2155
|
+
::Ice::LocatorPrx __ret;
|
|
2156
|
+
try
|
|
2157
|
+
{
|
|
2158
|
+
__ret = __proxy->end_getLocator(__result);
|
|
2159
|
+
}
|
|
2160
|
+
catch(const ::Ice::Exception& ex)
|
|
2161
|
+
{
|
|
2162
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2163
|
+
return;
|
|
2164
|
+
}
|
|
2165
|
+
if(_response)
|
|
2166
|
+
{
|
|
2167
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
private:
|
|
2172
|
+
|
|
2173
|
+
Response _response;
|
|
2174
|
+
};
|
|
2175
|
+
|
|
2176
|
+
template<class T, typename CT> Callback_LocatorFinder_getLocatorPtr
|
|
2177
|
+
newCallback_LocatorFinder_getLocator(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::LocatorPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2178
|
+
{
|
|
2179
|
+
return new Callback_LocatorFinder_getLocator<T, CT>(instance, cb, excb, sentcb);
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
template<class T, typename CT> Callback_LocatorFinder_getLocatorPtr
|
|
2183
|
+
newCallback_LocatorFinder_getLocator(T* instance, void (T::*cb)(const ::Ice::LocatorPrx&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2184
|
+
{
|
|
2185
|
+
return new Callback_LocatorFinder_getLocator<T, CT>(instance, cb, excb, sentcb);
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
2191
|
+
#endif
|