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,89 @@
|
|
|
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 `LocatorF.ice'
|
|
15
|
+
//
|
|
16
|
+
// Warning: do not edit this file.
|
|
17
|
+
//
|
|
18
|
+
// </auto-generated>
|
|
19
|
+
//
|
|
20
|
+
|
|
21
|
+
#ifndef __Ice_LocatorF_h__
|
|
22
|
+
#define __Ice_LocatorF_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 <IceUtil/ScopedArray.h>
|
|
32
|
+
#include <IceUtil/Optional.h>
|
|
33
|
+
#include <IceUtil/UndefSysMacros.h>
|
|
34
|
+
|
|
35
|
+
#ifndef ICE_IGNORE_VERSION
|
|
36
|
+
# if ICE_INT_VERSION != 30651
|
|
37
|
+
# error Ice version mismatch: an exact match is required for beta generated code
|
|
38
|
+
# endif
|
|
39
|
+
#endif
|
|
40
|
+
|
|
41
|
+
#ifndef ICE_API
|
|
42
|
+
# ifdef ICE_API_EXPORTS
|
|
43
|
+
# define ICE_API ICE_DECLSPEC_EXPORT
|
|
44
|
+
# else
|
|
45
|
+
# define ICE_API ICE_DECLSPEC_IMPORT
|
|
46
|
+
# endif
|
|
47
|
+
#endif
|
|
48
|
+
|
|
49
|
+
namespace IceProxy
|
|
50
|
+
{
|
|
51
|
+
|
|
52
|
+
namespace Ice
|
|
53
|
+
{
|
|
54
|
+
|
|
55
|
+
class Locator;
|
|
56
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::Ice::Locator>&);
|
|
57
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::Ice::Locator*);
|
|
58
|
+
|
|
59
|
+
class LocatorRegistry;
|
|
60
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorRegistry>&);
|
|
61
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::Ice::LocatorRegistry*);
|
|
62
|
+
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
namespace Ice
|
|
68
|
+
{
|
|
69
|
+
|
|
70
|
+
class Locator;
|
|
71
|
+
bool operator==(const Locator&, const Locator&);
|
|
72
|
+
bool operator<(const Locator&, const Locator&);
|
|
73
|
+
ICE_API ::Ice::Object* upCast(::Ice::Locator*);
|
|
74
|
+
typedef ::IceInternal::Handle< ::Ice::Locator> LocatorPtr;
|
|
75
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::Locator> LocatorPrx;
|
|
76
|
+
ICE_API void __patch(LocatorPtr&, const ::Ice::ObjectPtr&);
|
|
77
|
+
|
|
78
|
+
class LocatorRegistry;
|
|
79
|
+
bool operator==(const LocatorRegistry&, const LocatorRegistry&);
|
|
80
|
+
bool operator<(const LocatorRegistry&, const LocatorRegistry&);
|
|
81
|
+
ICE_API ::Ice::Object* upCast(::Ice::LocatorRegistry*);
|
|
82
|
+
typedef ::IceInternal::Handle< ::Ice::LocatorRegistry> LocatorRegistryPtr;
|
|
83
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::LocatorRegistry> LocatorRegistryPrx;
|
|
84
|
+
ICE_API void __patch(LocatorRegistryPtr&, const ::Ice::ObjectPtr&);
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
89
|
+
#endif
|
|
@@ -0,0 +1,94 @@
|
|
|
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 `Logger.ice'
|
|
15
|
+
//
|
|
16
|
+
// Warning: do not edit this file.
|
|
17
|
+
//
|
|
18
|
+
// </auto-generated>
|
|
19
|
+
//
|
|
20
|
+
|
|
21
|
+
#ifndef __Ice_Logger_h__
|
|
22
|
+
#define __Ice_Logger_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 <IceUtil/ScopedArray.h>
|
|
31
|
+
#include <IceUtil/Optional.h>
|
|
32
|
+
#include <IceUtil/UndefSysMacros.h>
|
|
33
|
+
|
|
34
|
+
#ifndef ICE_IGNORE_VERSION
|
|
35
|
+
# if ICE_INT_VERSION != 30651
|
|
36
|
+
# error Ice version mismatch: an exact match is required for beta generated code
|
|
37
|
+
# endif
|
|
38
|
+
#endif
|
|
39
|
+
|
|
40
|
+
#ifndef ICE_API
|
|
41
|
+
# ifdef ICE_API_EXPORTS
|
|
42
|
+
# define ICE_API ICE_DECLSPEC_EXPORT
|
|
43
|
+
# else
|
|
44
|
+
# define ICE_API ICE_DECLSPEC_IMPORT
|
|
45
|
+
# endif
|
|
46
|
+
#endif
|
|
47
|
+
|
|
48
|
+
namespace Ice
|
|
49
|
+
{
|
|
50
|
+
|
|
51
|
+
class Logger;
|
|
52
|
+
bool operator==(const Logger&, const Logger&);
|
|
53
|
+
bool operator<(const Logger&, const Logger&);
|
|
54
|
+
ICE_API ::Ice::LocalObject* upCast(::Ice::Logger*);
|
|
55
|
+
typedef ::IceInternal::Handle< ::Ice::Logger> LoggerPtr;
|
|
56
|
+
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
namespace Ice
|
|
60
|
+
{
|
|
61
|
+
|
|
62
|
+
class ICE_API Logger : virtual public ::Ice::LocalObject
|
|
63
|
+
{
|
|
64
|
+
public:
|
|
65
|
+
|
|
66
|
+
typedef LoggerPtr PointerType;
|
|
67
|
+
|
|
68
|
+
virtual void print(const ::std::string&) = 0;
|
|
69
|
+
|
|
70
|
+
virtual void trace(const ::std::string&, const ::std::string&) = 0;
|
|
71
|
+
|
|
72
|
+
virtual void warning(const ::std::string&) = 0;
|
|
73
|
+
|
|
74
|
+
virtual void error(const ::std::string&) = 0;
|
|
75
|
+
|
|
76
|
+
virtual ::std::string getPrefix() = 0;
|
|
77
|
+
|
|
78
|
+
virtual ::Ice::LoggerPtr cloneWithPrefix(const ::std::string&) = 0;
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
inline bool operator==(const Logger& l, const Logger& r)
|
|
82
|
+
{
|
|
83
|
+
return static_cast<const ::Ice::LocalObject&>(l) == static_cast<const ::Ice::LocalObject&>(r);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
inline bool operator<(const Logger& l, const Logger& r)
|
|
87
|
+
{
|
|
88
|
+
return static_cast<const ::Ice::LocalObject&>(l) < static_cast<const ::Ice::LocalObject&>(r);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
94
|
+
#endif
|
|
@@ -0,0 +1,60 @@
|
|
|
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 `LoggerF.ice'
|
|
15
|
+
//
|
|
16
|
+
// Warning: do not edit this file.
|
|
17
|
+
//
|
|
18
|
+
// </auto-generated>
|
|
19
|
+
//
|
|
20
|
+
|
|
21
|
+
#ifndef __Ice_LoggerF_h__
|
|
22
|
+
#define __Ice_LoggerF_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 <IceUtil/ScopedArray.h>
|
|
31
|
+
#include <IceUtil/Optional.h>
|
|
32
|
+
#include <IceUtil/UndefSysMacros.h>
|
|
33
|
+
|
|
34
|
+
#ifndef ICE_IGNORE_VERSION
|
|
35
|
+
# if ICE_INT_VERSION != 30651
|
|
36
|
+
# error Ice version mismatch: an exact match is required for beta generated code
|
|
37
|
+
# endif
|
|
38
|
+
#endif
|
|
39
|
+
|
|
40
|
+
#ifndef ICE_API
|
|
41
|
+
# ifdef ICE_API_EXPORTS
|
|
42
|
+
# define ICE_API ICE_DECLSPEC_EXPORT
|
|
43
|
+
# else
|
|
44
|
+
# define ICE_API ICE_DECLSPEC_IMPORT
|
|
45
|
+
# endif
|
|
46
|
+
#endif
|
|
47
|
+
|
|
48
|
+
namespace Ice
|
|
49
|
+
{
|
|
50
|
+
|
|
51
|
+
class Logger;
|
|
52
|
+
bool operator==(const Logger&, const Logger&);
|
|
53
|
+
bool operator<(const Logger&, const Logger&);
|
|
54
|
+
ICE_API ::Ice::LocalObject* upCast(::Ice::Logger*);
|
|
55
|
+
typedef ::IceInternal::Handle< ::Ice::Logger> LoggerPtr;
|
|
56
|
+
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
60
|
+
#endif
|
|
@@ -0,0 +1,153 @@
|
|
|
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_LOGGER_UTIL_H
|
|
11
|
+
#define ICE_LOGGER_UTIL_H
|
|
12
|
+
|
|
13
|
+
#include <Ice/Logger.h>
|
|
14
|
+
#include <Ice/CommunicatorF.h>
|
|
15
|
+
#include <Ice/Plugin.h>
|
|
16
|
+
#include <Ice/Exception.h>
|
|
17
|
+
|
|
18
|
+
namespace Ice
|
|
19
|
+
{
|
|
20
|
+
|
|
21
|
+
class ICE_API LoggerOutputBase : private IceUtil::noncopyable
|
|
22
|
+
{
|
|
23
|
+
public:
|
|
24
|
+
|
|
25
|
+
std::string str() const;
|
|
26
|
+
|
|
27
|
+
std::ostringstream& __str(); // For internal use only. Don't use in your code.
|
|
28
|
+
|
|
29
|
+
private:
|
|
30
|
+
|
|
31
|
+
std::ostringstream _str;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
ICE_API LoggerOutputBase& loggerInsert(LoggerOutputBase& out, const IceUtil::Exception& ex);
|
|
35
|
+
|
|
36
|
+
template<typename T>
|
|
37
|
+
struct IsException
|
|
38
|
+
{
|
|
39
|
+
static char testex(IceUtil::Exception*);
|
|
40
|
+
static long testex(...);
|
|
41
|
+
|
|
42
|
+
static const bool value = sizeof(testex(static_cast<T*>(0))) == sizeof(char);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
template<typename T, bool = false>
|
|
46
|
+
struct LoggerOutputInserter
|
|
47
|
+
{
|
|
48
|
+
static inline LoggerOutputBase&
|
|
49
|
+
insert(LoggerOutputBase& out, const T& val)
|
|
50
|
+
{
|
|
51
|
+
out.__str() << val;
|
|
52
|
+
return out;
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
// Partial specialization
|
|
57
|
+
template<typename T>
|
|
58
|
+
struct LoggerOutputInserter<T, true>
|
|
59
|
+
{
|
|
60
|
+
static inline LoggerOutputBase&
|
|
61
|
+
insert(LoggerOutputBase& out, const T& ex)
|
|
62
|
+
{
|
|
63
|
+
return loggerInsert(out, ex);
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
template<typename T>
|
|
68
|
+
inline LoggerOutputBase&
|
|
69
|
+
operator<<(LoggerOutputBase& out, const T& val)
|
|
70
|
+
{
|
|
71
|
+
return LoggerOutputInserter<T, IsException<T>::value>::insert(out, val);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
template<typename T>
|
|
75
|
+
inline LoggerOutputBase&
|
|
76
|
+
operator<<(LoggerOutputBase& os, const ::IceInternal::ProxyHandle<T>& p)
|
|
77
|
+
{
|
|
78
|
+
return os << (p ? p->ice_toString() : "");
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
inline LoggerOutputBase&
|
|
82
|
+
operator<<(LoggerOutputBase& out, const ::std::exception& ex)
|
|
83
|
+
{
|
|
84
|
+
out.__str() << ex.what();
|
|
85
|
+
return out;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
ICE_API LoggerOutputBase& operator<<(LoggerOutputBase&, std::ios_base& (*)(std::ios_base&));
|
|
89
|
+
|
|
90
|
+
template<class L, class LPtr, void (L::*output)(const std::string&)>
|
|
91
|
+
class LoggerOutput : public LoggerOutputBase
|
|
92
|
+
{
|
|
93
|
+
public:
|
|
94
|
+
inline LoggerOutput(const LPtr& lptr) :
|
|
95
|
+
_logger(lptr)
|
|
96
|
+
{}
|
|
97
|
+
|
|
98
|
+
inline ~LoggerOutput()
|
|
99
|
+
{
|
|
100
|
+
flush();
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
inline void flush()
|
|
104
|
+
{
|
|
105
|
+
std::string s = __str().str();
|
|
106
|
+
if(!s.empty())
|
|
107
|
+
{
|
|
108
|
+
L& ref = *_logger;
|
|
109
|
+
(ref.*output)(s);
|
|
110
|
+
}
|
|
111
|
+
__str().str("");
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
private:
|
|
115
|
+
|
|
116
|
+
LPtr _logger;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
typedef LoggerOutput<Logger, LoggerPtr, &Logger::print> Print;
|
|
120
|
+
typedef LoggerOutput<Logger, LoggerPtr, &Logger::warning> Warning;
|
|
121
|
+
typedef LoggerOutput<Logger, LoggerPtr, &Logger::error> Error;
|
|
122
|
+
|
|
123
|
+
class ICE_API Trace : public LoggerOutputBase
|
|
124
|
+
{
|
|
125
|
+
public:
|
|
126
|
+
Trace(const LoggerPtr&, const std::string&);
|
|
127
|
+
~Trace();
|
|
128
|
+
void flush();
|
|
129
|
+
|
|
130
|
+
private:
|
|
131
|
+
|
|
132
|
+
LoggerPtr _logger;
|
|
133
|
+
std::string _category;
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
//
|
|
137
|
+
// A special plug-in that installs a logger during a communicator's initialization.
|
|
138
|
+
// Both initialize and destroy are no-op. See Ice::InitializationData.
|
|
139
|
+
//
|
|
140
|
+
class ICE_API LoggerPlugin : public Ice::Plugin
|
|
141
|
+
{
|
|
142
|
+
public:
|
|
143
|
+
|
|
144
|
+
LoggerPlugin(const CommunicatorPtr& communicator, const LoggerPtr&);
|
|
145
|
+
|
|
146
|
+
virtual void initialize();
|
|
147
|
+
|
|
148
|
+
virtual void destroy();
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
#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
|
+
top_srcdir = ../..
|
|
11
|
+
|
|
12
|
+
include $(top_srcdir)/config/Make.rules
|
|
13
|
+
|
|
14
|
+
install::
|
|
15
|
+
@if test ! -d $(DESTDIR)$(install_includedir)/Ice ; \
|
|
16
|
+
then \
|
|
17
|
+
echo "Creating $(DESTDIR)$(install_includedir)/Ice..." ; \
|
|
18
|
+
$(call mkdir,$(DESTDIR)$(install_includedir)/Ice) ; \
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
@for i in *.h ; \
|
|
22
|
+
do \
|
|
23
|
+
echo "Installing $$i" ; \
|
|
24
|
+
$(INSTALL_DATA) $$i $(DESTDIR)$(install_includedir)/Ice/$$i ; \
|
|
25
|
+
chmod a+r $(DESTDIR)$(install_includedir)/Ice/$$i ; \
|
|
26
|
+
done
|
|
@@ -0,0 +1,2989 @@
|
|
|
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 `Metrics.ice'
|
|
15
|
+
//
|
|
16
|
+
// Warning: do not edit this file.
|
|
17
|
+
//
|
|
18
|
+
// </auto-generated>
|
|
19
|
+
//
|
|
20
|
+
|
|
21
|
+
#ifndef __Ice_Metrics_h__
|
|
22
|
+
#define __Ice_Metrics_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/FactoryTableInit.h>
|
|
35
|
+
#include <IceUtil/ScopedArray.h>
|
|
36
|
+
#include <IceUtil/Optional.h>
|
|
37
|
+
#include <Ice/StreamF.h>
|
|
38
|
+
#include <Ice/BuiltinSequences.h>
|
|
39
|
+
#include <IceUtil/UndefSysMacros.h>
|
|
40
|
+
|
|
41
|
+
#ifndef ICE_IGNORE_VERSION
|
|
42
|
+
# if ICE_INT_VERSION != 30651
|
|
43
|
+
# error Ice version mismatch: an exact match is required for beta generated code
|
|
44
|
+
# endif
|
|
45
|
+
#endif
|
|
46
|
+
|
|
47
|
+
#ifndef ICE_API
|
|
48
|
+
# ifdef ICE_API_EXPORTS
|
|
49
|
+
# define ICE_API ICE_DECLSPEC_EXPORT
|
|
50
|
+
# else
|
|
51
|
+
# define ICE_API ICE_DECLSPEC_IMPORT
|
|
52
|
+
# endif
|
|
53
|
+
#endif
|
|
54
|
+
|
|
55
|
+
namespace IceProxy
|
|
56
|
+
{
|
|
57
|
+
|
|
58
|
+
namespace IceMX
|
|
59
|
+
{
|
|
60
|
+
|
|
61
|
+
class Metrics;
|
|
62
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::Metrics>&);
|
|
63
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::Metrics*);
|
|
64
|
+
|
|
65
|
+
class MetricsAdmin;
|
|
66
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::MetricsAdmin>&);
|
|
67
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::MetricsAdmin*);
|
|
68
|
+
|
|
69
|
+
class ThreadMetrics;
|
|
70
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ThreadMetrics>&);
|
|
71
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::ThreadMetrics*);
|
|
72
|
+
|
|
73
|
+
class DispatchMetrics;
|
|
74
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::DispatchMetrics>&);
|
|
75
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::DispatchMetrics*);
|
|
76
|
+
|
|
77
|
+
class ChildInvocationMetrics;
|
|
78
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ChildInvocationMetrics>&);
|
|
79
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::ChildInvocationMetrics*);
|
|
80
|
+
|
|
81
|
+
class CollocatedMetrics;
|
|
82
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::CollocatedMetrics>&);
|
|
83
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::CollocatedMetrics*);
|
|
84
|
+
|
|
85
|
+
class RemoteMetrics;
|
|
86
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::RemoteMetrics>&);
|
|
87
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::RemoteMetrics*);
|
|
88
|
+
|
|
89
|
+
class InvocationMetrics;
|
|
90
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::InvocationMetrics>&);
|
|
91
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::InvocationMetrics*);
|
|
92
|
+
|
|
93
|
+
class ConnectionMetrics;
|
|
94
|
+
ICE_API void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ConnectionMetrics>&);
|
|
95
|
+
ICE_API ::IceProxy::Ice::Object* upCast(::IceProxy::IceMX::ConnectionMetrics*);
|
|
96
|
+
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
namespace IceMX
|
|
102
|
+
{
|
|
103
|
+
|
|
104
|
+
class Metrics;
|
|
105
|
+
bool operator==(const Metrics&, const Metrics&);
|
|
106
|
+
bool operator<(const Metrics&, const Metrics&);
|
|
107
|
+
ICE_API ::Ice::Object* upCast(::IceMX::Metrics*);
|
|
108
|
+
typedef ::IceInternal::Handle< ::IceMX::Metrics> MetricsPtr;
|
|
109
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::Metrics> MetricsPrx;
|
|
110
|
+
ICE_API void __patch(MetricsPtr&, const ::Ice::ObjectPtr&);
|
|
111
|
+
|
|
112
|
+
class MetricsAdmin;
|
|
113
|
+
bool operator==(const MetricsAdmin&, const MetricsAdmin&);
|
|
114
|
+
bool operator<(const MetricsAdmin&, const MetricsAdmin&);
|
|
115
|
+
ICE_API ::Ice::Object* upCast(::IceMX::MetricsAdmin*);
|
|
116
|
+
typedef ::IceInternal::Handle< ::IceMX::MetricsAdmin> MetricsAdminPtr;
|
|
117
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::MetricsAdmin> MetricsAdminPrx;
|
|
118
|
+
ICE_API void __patch(MetricsAdminPtr&, const ::Ice::ObjectPtr&);
|
|
119
|
+
|
|
120
|
+
class ThreadMetrics;
|
|
121
|
+
bool operator==(const ThreadMetrics&, const ThreadMetrics&);
|
|
122
|
+
bool operator<(const ThreadMetrics&, const ThreadMetrics&);
|
|
123
|
+
ICE_API ::Ice::Object* upCast(::IceMX::ThreadMetrics*);
|
|
124
|
+
typedef ::IceInternal::Handle< ::IceMX::ThreadMetrics> ThreadMetricsPtr;
|
|
125
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ThreadMetrics> ThreadMetricsPrx;
|
|
126
|
+
ICE_API void __patch(ThreadMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
127
|
+
|
|
128
|
+
class DispatchMetrics;
|
|
129
|
+
bool operator==(const DispatchMetrics&, const DispatchMetrics&);
|
|
130
|
+
bool operator<(const DispatchMetrics&, const DispatchMetrics&);
|
|
131
|
+
ICE_API ::Ice::Object* upCast(::IceMX::DispatchMetrics*);
|
|
132
|
+
typedef ::IceInternal::Handle< ::IceMX::DispatchMetrics> DispatchMetricsPtr;
|
|
133
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::DispatchMetrics> DispatchMetricsPrx;
|
|
134
|
+
ICE_API void __patch(DispatchMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
135
|
+
|
|
136
|
+
class ChildInvocationMetrics;
|
|
137
|
+
bool operator==(const ChildInvocationMetrics&, const ChildInvocationMetrics&);
|
|
138
|
+
bool operator<(const ChildInvocationMetrics&, const ChildInvocationMetrics&);
|
|
139
|
+
ICE_API ::Ice::Object* upCast(::IceMX::ChildInvocationMetrics*);
|
|
140
|
+
typedef ::IceInternal::Handle< ::IceMX::ChildInvocationMetrics> ChildInvocationMetricsPtr;
|
|
141
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ChildInvocationMetrics> ChildInvocationMetricsPrx;
|
|
142
|
+
ICE_API void __patch(ChildInvocationMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
143
|
+
|
|
144
|
+
class CollocatedMetrics;
|
|
145
|
+
bool operator==(const CollocatedMetrics&, const CollocatedMetrics&);
|
|
146
|
+
bool operator<(const CollocatedMetrics&, const CollocatedMetrics&);
|
|
147
|
+
ICE_API ::Ice::Object* upCast(::IceMX::CollocatedMetrics*);
|
|
148
|
+
typedef ::IceInternal::Handle< ::IceMX::CollocatedMetrics> CollocatedMetricsPtr;
|
|
149
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::CollocatedMetrics> CollocatedMetricsPrx;
|
|
150
|
+
ICE_API void __patch(CollocatedMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
151
|
+
|
|
152
|
+
class RemoteMetrics;
|
|
153
|
+
bool operator==(const RemoteMetrics&, const RemoteMetrics&);
|
|
154
|
+
bool operator<(const RemoteMetrics&, const RemoteMetrics&);
|
|
155
|
+
ICE_API ::Ice::Object* upCast(::IceMX::RemoteMetrics*);
|
|
156
|
+
typedef ::IceInternal::Handle< ::IceMX::RemoteMetrics> RemoteMetricsPtr;
|
|
157
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::RemoteMetrics> RemoteMetricsPrx;
|
|
158
|
+
ICE_API void __patch(RemoteMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
159
|
+
|
|
160
|
+
class InvocationMetrics;
|
|
161
|
+
bool operator==(const InvocationMetrics&, const InvocationMetrics&);
|
|
162
|
+
bool operator<(const InvocationMetrics&, const InvocationMetrics&);
|
|
163
|
+
ICE_API ::Ice::Object* upCast(::IceMX::InvocationMetrics*);
|
|
164
|
+
typedef ::IceInternal::Handle< ::IceMX::InvocationMetrics> InvocationMetricsPtr;
|
|
165
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::InvocationMetrics> InvocationMetricsPrx;
|
|
166
|
+
ICE_API void __patch(InvocationMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
167
|
+
|
|
168
|
+
class ConnectionMetrics;
|
|
169
|
+
bool operator==(const ConnectionMetrics&, const ConnectionMetrics&);
|
|
170
|
+
bool operator<(const ConnectionMetrics&, const ConnectionMetrics&);
|
|
171
|
+
ICE_API ::Ice::Object* upCast(::IceMX::ConnectionMetrics*);
|
|
172
|
+
typedef ::IceInternal::Handle< ::IceMX::ConnectionMetrics> ConnectionMetricsPtr;
|
|
173
|
+
typedef ::IceInternal::ProxyHandle< ::IceProxy::IceMX::ConnectionMetrics> ConnectionMetricsPrx;
|
|
174
|
+
ICE_API void __patch(ConnectionMetricsPtr&, const ::Ice::ObjectPtr&);
|
|
175
|
+
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
namespace IceMX
|
|
179
|
+
{
|
|
180
|
+
|
|
181
|
+
typedef ::std::map< ::std::string, ::Ice::Int> StringIntDict;
|
|
182
|
+
|
|
183
|
+
struct MetricsFailures
|
|
184
|
+
{
|
|
185
|
+
::std::string id;
|
|
186
|
+
::IceMX::StringIntDict failures;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
typedef ::std::vector< ::IceMX::MetricsFailures> MetricsFailuresSeq;
|
|
190
|
+
|
|
191
|
+
typedef ::std::vector< ::IceMX::MetricsPtr> MetricsMap;
|
|
192
|
+
|
|
193
|
+
typedef ::std::map< ::std::string, ::IceMX::MetricsMap> MetricsView;
|
|
194
|
+
|
|
195
|
+
class ICE_API UnknownMetricsView : public ::Ice::UserException
|
|
196
|
+
{
|
|
197
|
+
public:
|
|
198
|
+
|
|
199
|
+
UnknownMetricsView() {}
|
|
200
|
+
virtual ~UnknownMetricsView() throw();
|
|
201
|
+
|
|
202
|
+
virtual ::std::string ice_name() const;
|
|
203
|
+
virtual UnknownMetricsView* ice_clone() const;
|
|
204
|
+
virtual void ice_throw() const;
|
|
205
|
+
|
|
206
|
+
protected:
|
|
207
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
208
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
209
|
+
using ::Ice::UserException::__writeImpl;
|
|
210
|
+
using ::Ice::UserException::__readImpl;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
static UnknownMetricsView __UnknownMetricsView_init;
|
|
214
|
+
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
namespace Ice
|
|
218
|
+
{
|
|
219
|
+
template<>
|
|
220
|
+
struct StreamableTraits< ::IceMX::MetricsFailures>
|
|
221
|
+
{
|
|
222
|
+
static const StreamHelperCategory helper = StreamHelperCategoryStruct;
|
|
223
|
+
static const int minWireSize = 2;
|
|
224
|
+
static const bool fixedLength = false;
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
template<class S>
|
|
228
|
+
struct StreamWriter< ::IceMX::MetricsFailures, S>
|
|
229
|
+
{
|
|
230
|
+
static void write(S* __os, const ::IceMX::MetricsFailures& v)
|
|
231
|
+
{
|
|
232
|
+
__os->write(v.id);
|
|
233
|
+
__os->write(v.failures);
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
template<class S>
|
|
238
|
+
struct StreamReader< ::IceMX::MetricsFailures, S>
|
|
239
|
+
{
|
|
240
|
+
static void read(S* __is, ::IceMX::MetricsFailures& v)
|
|
241
|
+
{
|
|
242
|
+
__is->read(v.id);
|
|
243
|
+
__is->read(v.failures);
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
#if defined(ICE_HAS_DECLSPEC_IMPORT_EXPORT) && !defined(ICE_API_EXPORTS)
|
|
248
|
+
template struct ICE_API StreamWriter< ::IceMX::MetricsFailures, ::IceInternal::BasicStream>;
|
|
249
|
+
template struct ICE_API StreamReader< ::IceMX::MetricsFailures, ::IceInternal::BasicStream>;
|
|
250
|
+
#endif
|
|
251
|
+
|
|
252
|
+
template<>
|
|
253
|
+
struct StreamableTraits< ::IceMX::UnknownMetricsView>
|
|
254
|
+
{
|
|
255
|
+
static const StreamHelperCategory helper = StreamHelperCategoryUserException;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
namespace IceMX
|
|
261
|
+
{
|
|
262
|
+
|
|
263
|
+
class Callback_MetricsAdmin_getMetricsViewNames_Base : virtual public ::IceInternal::CallbackBase { };
|
|
264
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_getMetricsViewNames_Base> Callback_MetricsAdmin_getMetricsViewNamesPtr;
|
|
265
|
+
|
|
266
|
+
class Callback_MetricsAdmin_enableMetricsView_Base : virtual public ::IceInternal::CallbackBase { };
|
|
267
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_enableMetricsView_Base> Callback_MetricsAdmin_enableMetricsViewPtr;
|
|
268
|
+
|
|
269
|
+
class Callback_MetricsAdmin_disableMetricsView_Base : virtual public ::IceInternal::CallbackBase { };
|
|
270
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_disableMetricsView_Base> Callback_MetricsAdmin_disableMetricsViewPtr;
|
|
271
|
+
|
|
272
|
+
class Callback_MetricsAdmin_getMetricsView_Base : virtual public ::IceInternal::CallbackBase { };
|
|
273
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_getMetricsView_Base> Callback_MetricsAdmin_getMetricsViewPtr;
|
|
274
|
+
|
|
275
|
+
class Callback_MetricsAdmin_getMapMetricsFailures_Base : virtual public ::IceInternal::CallbackBase { };
|
|
276
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_getMapMetricsFailures_Base> Callback_MetricsAdmin_getMapMetricsFailuresPtr;
|
|
277
|
+
|
|
278
|
+
class Callback_MetricsAdmin_getMetricsFailures_Base : virtual public ::IceInternal::CallbackBase { };
|
|
279
|
+
typedef ::IceUtil::Handle< Callback_MetricsAdmin_getMetricsFailures_Base> Callback_MetricsAdmin_getMetricsFailuresPtr;
|
|
280
|
+
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
namespace IceProxy
|
|
284
|
+
{
|
|
285
|
+
|
|
286
|
+
namespace IceMX
|
|
287
|
+
{
|
|
288
|
+
|
|
289
|
+
class ICE_API Metrics : virtual public ::IceProxy::Ice::Object
|
|
290
|
+
{
|
|
291
|
+
public:
|
|
292
|
+
|
|
293
|
+
::IceInternal::ProxyHandle<Metrics> ice_context(const ::Ice::Context& __context) const
|
|
294
|
+
{
|
|
295
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
::IceInternal::ProxyHandle<Metrics> ice_adapterId(const ::std::string& __id) const
|
|
299
|
+
{
|
|
300
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
::IceInternal::ProxyHandle<Metrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
304
|
+
{
|
|
305
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
::IceInternal::ProxyHandle<Metrics> ice_locatorCacheTimeout(int __timeout) const
|
|
309
|
+
{
|
|
310
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
::IceInternal::ProxyHandle<Metrics> ice_connectionCached(bool __cached) const
|
|
314
|
+
{
|
|
315
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
::IceInternal::ProxyHandle<Metrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
319
|
+
{
|
|
320
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
::IceInternal::ProxyHandle<Metrics> ice_secure(bool __secure) const
|
|
324
|
+
{
|
|
325
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
::IceInternal::ProxyHandle<Metrics> ice_preferSecure(bool __preferSecure) const
|
|
329
|
+
{
|
|
330
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
::IceInternal::ProxyHandle<Metrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
334
|
+
{
|
|
335
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
::IceInternal::ProxyHandle<Metrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
339
|
+
{
|
|
340
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
::IceInternal::ProxyHandle<Metrics> ice_collocationOptimized(bool __co) const
|
|
344
|
+
{
|
|
345
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
::IceInternal::ProxyHandle<Metrics> ice_invocationTimeout(int __timeout) const
|
|
349
|
+
{
|
|
350
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
::IceInternal::ProxyHandle<Metrics> ice_twoway() const
|
|
354
|
+
{
|
|
355
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
::IceInternal::ProxyHandle<Metrics> ice_oneway() const
|
|
359
|
+
{
|
|
360
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
::IceInternal::ProxyHandle<Metrics> ice_batchOneway() const
|
|
364
|
+
{
|
|
365
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
::IceInternal::ProxyHandle<Metrics> ice_datagram() const
|
|
369
|
+
{
|
|
370
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
::IceInternal::ProxyHandle<Metrics> ice_batchDatagram() const
|
|
374
|
+
{
|
|
375
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
::IceInternal::ProxyHandle<Metrics> ice_compress(bool __compress) const
|
|
379
|
+
{
|
|
380
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
::IceInternal::ProxyHandle<Metrics> ice_timeout(int __timeout) const
|
|
384
|
+
{
|
|
385
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
::IceInternal::ProxyHandle<Metrics> ice_connectionId(const ::std::string& __id) const
|
|
389
|
+
{
|
|
390
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
::IceInternal::ProxyHandle<Metrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
394
|
+
{
|
|
395
|
+
return dynamic_cast<Metrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
static const ::std::string& ice_staticId();
|
|
399
|
+
|
|
400
|
+
private:
|
|
401
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
class ICE_API MetricsAdmin : virtual public ::IceProxy::Ice::Object
|
|
405
|
+
{
|
|
406
|
+
public:
|
|
407
|
+
|
|
408
|
+
::Ice::StringSeq getMetricsViewNames(::Ice::StringSeq& disabledViews)
|
|
409
|
+
{
|
|
410
|
+
return getMetricsViewNames(disabledViews, 0);
|
|
411
|
+
}
|
|
412
|
+
::Ice::StringSeq getMetricsViewNames(::Ice::StringSeq& disabledViews, const ::Ice::Context& __ctx)
|
|
413
|
+
{
|
|
414
|
+
return getMetricsViewNames(disabledViews, &__ctx);
|
|
415
|
+
}
|
|
416
|
+
#ifdef ICE_CPP11
|
|
417
|
+
::Ice::AsyncResultPtr
|
|
418
|
+
begin_getMetricsViewNames(const ::IceInternal::Function<void (const ::Ice::StringSeq&, const ::Ice::StringSeq&)>& __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)>())
|
|
419
|
+
{
|
|
420
|
+
return __begin_getMetricsViewNames(0, __response, __exception, __sent);
|
|
421
|
+
}
|
|
422
|
+
::Ice::AsyncResultPtr
|
|
423
|
+
begin_getMetricsViewNames(const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
424
|
+
{
|
|
425
|
+
return begin_getMetricsViewNames(0, ::Ice::newCallback(__completed, __sent), 0);
|
|
426
|
+
}
|
|
427
|
+
::Ice::AsyncResultPtr
|
|
428
|
+
begin_getMetricsViewNames(const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::Ice::StringSeq&, const ::Ice::StringSeq&)>& __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)>())
|
|
429
|
+
{
|
|
430
|
+
return __begin_getMetricsViewNames(&__ctx, __response, __exception, __sent);
|
|
431
|
+
}
|
|
432
|
+
::Ice::AsyncResultPtr
|
|
433
|
+
begin_getMetricsViewNames(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&)>())
|
|
434
|
+
{
|
|
435
|
+
return begin_getMetricsViewNames(&__ctx, ::Ice::newCallback(__completed, __sent));
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
private:
|
|
439
|
+
|
|
440
|
+
::Ice::AsyncResultPtr __begin_getMetricsViewNames(const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::Ice::StringSeq&, const ::Ice::StringSeq&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
441
|
+
|
|
442
|
+
public:
|
|
443
|
+
#endif
|
|
444
|
+
|
|
445
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames()
|
|
446
|
+
{
|
|
447
|
+
return begin_getMetricsViewNames(0, ::IceInternal::__dummyCallback, 0);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::Ice::Context& __ctx)
|
|
451
|
+
{
|
|
452
|
+
return begin_getMetricsViewNames(&__ctx, ::IceInternal::__dummyCallback, 0);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
456
|
+
{
|
|
457
|
+
return begin_getMetricsViewNames(0, __del, __cookie);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
461
|
+
{
|
|
462
|
+
return begin_getMetricsViewNames(&__ctx, __del, __cookie);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::IceMX::Callback_MetricsAdmin_getMetricsViewNamesPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
466
|
+
{
|
|
467
|
+
return begin_getMetricsViewNames(0, __del, __cookie);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_getMetricsViewNamesPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
471
|
+
{
|
|
472
|
+
return begin_getMetricsViewNames(&__ctx, __del, __cookie);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
::Ice::StringSeq end_getMetricsViewNames(::Ice::StringSeq& disabledViews, const ::Ice::AsyncResultPtr&);
|
|
476
|
+
|
|
477
|
+
private:
|
|
478
|
+
|
|
479
|
+
::Ice::StringSeq getMetricsViewNames(::Ice::StringSeq&, const ::Ice::Context*);
|
|
480
|
+
::Ice::AsyncResultPtr begin_getMetricsViewNames(const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
481
|
+
|
|
482
|
+
public:
|
|
483
|
+
|
|
484
|
+
void enableMetricsView(const ::std::string& name)
|
|
485
|
+
{
|
|
486
|
+
enableMetricsView(name, 0);
|
|
487
|
+
}
|
|
488
|
+
void enableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx)
|
|
489
|
+
{
|
|
490
|
+
enableMetricsView(name, &__ctx);
|
|
491
|
+
}
|
|
492
|
+
#ifdef ICE_CPP11
|
|
493
|
+
::Ice::AsyncResultPtr
|
|
494
|
+
begin_enableMetricsView(const ::std::string& name, 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)>())
|
|
495
|
+
{
|
|
496
|
+
return __begin_enableMetricsView(name, 0, __response, __exception, __sent);
|
|
497
|
+
}
|
|
498
|
+
::Ice::AsyncResultPtr
|
|
499
|
+
begin_enableMetricsView(const ::std::string& name, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
500
|
+
{
|
|
501
|
+
return begin_enableMetricsView(name, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
502
|
+
}
|
|
503
|
+
::Ice::AsyncResultPtr
|
|
504
|
+
begin_enableMetricsView(const ::std::string& name, 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)>())
|
|
505
|
+
{
|
|
506
|
+
return __begin_enableMetricsView(name, &__ctx, __response, __exception, __sent);
|
|
507
|
+
}
|
|
508
|
+
::Ice::AsyncResultPtr
|
|
509
|
+
begin_enableMetricsView(const ::std::string& name, 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&)>())
|
|
510
|
+
{
|
|
511
|
+
return begin_enableMetricsView(name, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
private:
|
|
515
|
+
|
|
516
|
+
::Ice::AsyncResultPtr __begin_enableMetricsView(const ::std::string& name, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
517
|
+
|
|
518
|
+
public:
|
|
519
|
+
#endif
|
|
520
|
+
|
|
521
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name)
|
|
522
|
+
{
|
|
523
|
+
return begin_enableMetricsView(name, 0, ::IceInternal::__dummyCallback, 0);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx)
|
|
527
|
+
{
|
|
528
|
+
return begin_enableMetricsView(name, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
532
|
+
{
|
|
533
|
+
return begin_enableMetricsView(name, 0, __del, __cookie);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
537
|
+
{
|
|
538
|
+
return begin_enableMetricsView(name, &__ctx, __del, __cookie);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name, const ::IceMX::Callback_MetricsAdmin_enableMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
542
|
+
{
|
|
543
|
+
return begin_enableMetricsView(name, 0, __del, __cookie);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_enableMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
547
|
+
{
|
|
548
|
+
return begin_enableMetricsView(name, &__ctx, __del, __cookie);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
void end_enableMetricsView(const ::Ice::AsyncResultPtr&);
|
|
552
|
+
|
|
553
|
+
private:
|
|
554
|
+
|
|
555
|
+
void enableMetricsView(const ::std::string&, const ::Ice::Context*);
|
|
556
|
+
::Ice::AsyncResultPtr begin_enableMetricsView(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
557
|
+
|
|
558
|
+
public:
|
|
559
|
+
|
|
560
|
+
void disableMetricsView(const ::std::string& name)
|
|
561
|
+
{
|
|
562
|
+
disableMetricsView(name, 0);
|
|
563
|
+
}
|
|
564
|
+
void disableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx)
|
|
565
|
+
{
|
|
566
|
+
disableMetricsView(name, &__ctx);
|
|
567
|
+
}
|
|
568
|
+
#ifdef ICE_CPP11
|
|
569
|
+
::Ice::AsyncResultPtr
|
|
570
|
+
begin_disableMetricsView(const ::std::string& name, 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)>())
|
|
571
|
+
{
|
|
572
|
+
return __begin_disableMetricsView(name, 0, __response, __exception, __sent);
|
|
573
|
+
}
|
|
574
|
+
::Ice::AsyncResultPtr
|
|
575
|
+
begin_disableMetricsView(const ::std::string& name, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
576
|
+
{
|
|
577
|
+
return begin_disableMetricsView(name, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
578
|
+
}
|
|
579
|
+
::Ice::AsyncResultPtr
|
|
580
|
+
begin_disableMetricsView(const ::std::string& name, 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)>())
|
|
581
|
+
{
|
|
582
|
+
return __begin_disableMetricsView(name, &__ctx, __response, __exception, __sent);
|
|
583
|
+
}
|
|
584
|
+
::Ice::AsyncResultPtr
|
|
585
|
+
begin_disableMetricsView(const ::std::string& name, 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&)>())
|
|
586
|
+
{
|
|
587
|
+
return begin_disableMetricsView(name, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
private:
|
|
591
|
+
|
|
592
|
+
::Ice::AsyncResultPtr __begin_disableMetricsView(const ::std::string& name, const ::Ice::Context* __ctx, const ::IceInternal::Function<void ()>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
593
|
+
|
|
594
|
+
public:
|
|
595
|
+
#endif
|
|
596
|
+
|
|
597
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name)
|
|
598
|
+
{
|
|
599
|
+
return begin_disableMetricsView(name, 0, ::IceInternal::__dummyCallback, 0);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx)
|
|
603
|
+
{
|
|
604
|
+
return begin_disableMetricsView(name, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
608
|
+
{
|
|
609
|
+
return begin_disableMetricsView(name, 0, __del, __cookie);
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
613
|
+
{
|
|
614
|
+
return begin_disableMetricsView(name, &__ctx, __del, __cookie);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name, const ::IceMX::Callback_MetricsAdmin_disableMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
618
|
+
{
|
|
619
|
+
return begin_disableMetricsView(name, 0, __del, __cookie);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string& name, const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_disableMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
623
|
+
{
|
|
624
|
+
return begin_disableMetricsView(name, &__ctx, __del, __cookie);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
void end_disableMetricsView(const ::Ice::AsyncResultPtr&);
|
|
628
|
+
|
|
629
|
+
private:
|
|
630
|
+
|
|
631
|
+
void disableMetricsView(const ::std::string&, const ::Ice::Context*);
|
|
632
|
+
::Ice::AsyncResultPtr begin_disableMetricsView(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
633
|
+
|
|
634
|
+
public:
|
|
635
|
+
|
|
636
|
+
::IceMX::MetricsView getMetricsView(const ::std::string& view, ::Ice::Long& timestamp)
|
|
637
|
+
{
|
|
638
|
+
return getMetricsView(view, timestamp, 0);
|
|
639
|
+
}
|
|
640
|
+
::IceMX::MetricsView getMetricsView(const ::std::string& view, ::Ice::Long& timestamp, const ::Ice::Context& __ctx)
|
|
641
|
+
{
|
|
642
|
+
return getMetricsView(view, timestamp, &__ctx);
|
|
643
|
+
}
|
|
644
|
+
#ifdef ICE_CPP11
|
|
645
|
+
::Ice::AsyncResultPtr
|
|
646
|
+
begin_getMetricsView(const ::std::string& view, const ::IceInternal::Function<void (const ::IceMX::MetricsView&, ::Ice::Long)>& __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)>())
|
|
647
|
+
{
|
|
648
|
+
return __begin_getMetricsView(view, 0, __response, __exception, __sent);
|
|
649
|
+
}
|
|
650
|
+
::Ice::AsyncResultPtr
|
|
651
|
+
begin_getMetricsView(const ::std::string& view, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
652
|
+
{
|
|
653
|
+
return begin_getMetricsView(view, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
654
|
+
}
|
|
655
|
+
::Ice::AsyncResultPtr
|
|
656
|
+
begin_getMetricsView(const ::std::string& view, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsView&, ::Ice::Long)>& __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)>())
|
|
657
|
+
{
|
|
658
|
+
return __begin_getMetricsView(view, &__ctx, __response, __exception, __sent);
|
|
659
|
+
}
|
|
660
|
+
::Ice::AsyncResultPtr
|
|
661
|
+
begin_getMetricsView(const ::std::string& view, 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&)>())
|
|
662
|
+
{
|
|
663
|
+
return begin_getMetricsView(view, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
private:
|
|
667
|
+
|
|
668
|
+
::Ice::AsyncResultPtr __begin_getMetricsView(const ::std::string& view, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsView&, ::Ice::Long)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
669
|
+
|
|
670
|
+
public:
|
|
671
|
+
#endif
|
|
672
|
+
|
|
673
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view)
|
|
674
|
+
{
|
|
675
|
+
return begin_getMetricsView(view, 0, ::IceInternal::__dummyCallback, 0);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view, const ::Ice::Context& __ctx)
|
|
679
|
+
{
|
|
680
|
+
return begin_getMetricsView(view, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
684
|
+
{
|
|
685
|
+
return begin_getMetricsView(view, 0, __del, __cookie);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
689
|
+
{
|
|
690
|
+
return begin_getMetricsView(view, &__ctx, __del, __cookie);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view, const ::IceMX::Callback_MetricsAdmin_getMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
694
|
+
{
|
|
695
|
+
return begin_getMetricsView(view, 0, __del, __cookie);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string& view, const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_getMetricsViewPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
699
|
+
{
|
|
700
|
+
return begin_getMetricsView(view, &__ctx, __del, __cookie);
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
::IceMX::MetricsView end_getMetricsView(::Ice::Long& timestamp, const ::Ice::AsyncResultPtr&);
|
|
704
|
+
|
|
705
|
+
private:
|
|
706
|
+
|
|
707
|
+
::IceMX::MetricsView getMetricsView(const ::std::string&, ::Ice::Long&, const ::Ice::Context*);
|
|
708
|
+
::Ice::AsyncResultPtr begin_getMetricsView(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
709
|
+
|
|
710
|
+
public:
|
|
711
|
+
|
|
712
|
+
::IceMX::MetricsFailuresSeq getMapMetricsFailures(const ::std::string& view, const ::std::string& map)
|
|
713
|
+
{
|
|
714
|
+
return getMapMetricsFailures(view, map, 0);
|
|
715
|
+
}
|
|
716
|
+
::IceMX::MetricsFailuresSeq getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context& __ctx)
|
|
717
|
+
{
|
|
718
|
+
return getMapMetricsFailures(view, map, &__ctx);
|
|
719
|
+
}
|
|
720
|
+
#ifdef ICE_CPP11
|
|
721
|
+
::Ice::AsyncResultPtr
|
|
722
|
+
begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::IceInternal::Function<void (const ::IceMX::MetricsFailuresSeq&)>& __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)>())
|
|
723
|
+
{
|
|
724
|
+
return __begin_getMapMetricsFailures(view, map, 0, __response, __exception, __sent);
|
|
725
|
+
}
|
|
726
|
+
::Ice::AsyncResultPtr
|
|
727
|
+
begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& __sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
|
|
728
|
+
{
|
|
729
|
+
return begin_getMapMetricsFailures(view, map, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
730
|
+
}
|
|
731
|
+
::Ice::AsyncResultPtr
|
|
732
|
+
begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsFailuresSeq&)>& __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)>())
|
|
733
|
+
{
|
|
734
|
+
return __begin_getMapMetricsFailures(view, map, &__ctx, __response, __exception, __sent);
|
|
735
|
+
}
|
|
736
|
+
::Ice::AsyncResultPtr
|
|
737
|
+
begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, 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&)>())
|
|
738
|
+
{
|
|
739
|
+
return begin_getMapMetricsFailures(view, map, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
private:
|
|
743
|
+
|
|
744
|
+
::Ice::AsyncResultPtr __begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsFailuresSeq&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
745
|
+
|
|
746
|
+
public:
|
|
747
|
+
#endif
|
|
748
|
+
|
|
749
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map)
|
|
750
|
+
{
|
|
751
|
+
return begin_getMapMetricsFailures(view, map, 0, ::IceInternal::__dummyCallback, 0);
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context& __ctx)
|
|
755
|
+
{
|
|
756
|
+
return begin_getMapMetricsFailures(view, map, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
760
|
+
{
|
|
761
|
+
return begin_getMapMetricsFailures(view, map, 0, __del, __cookie);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
765
|
+
{
|
|
766
|
+
return begin_getMapMetricsFailures(view, map, &__ctx, __del, __cookie);
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::IceMX::Callback_MetricsAdmin_getMapMetricsFailuresPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
770
|
+
{
|
|
771
|
+
return begin_getMapMetricsFailures(view, map, 0, __del, __cookie);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string& view, const ::std::string& map, const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_getMapMetricsFailuresPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
775
|
+
{
|
|
776
|
+
return begin_getMapMetricsFailures(view, map, &__ctx, __del, __cookie);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
::IceMX::MetricsFailuresSeq end_getMapMetricsFailures(const ::Ice::AsyncResultPtr&);
|
|
780
|
+
|
|
781
|
+
private:
|
|
782
|
+
|
|
783
|
+
::IceMX::MetricsFailuresSeq getMapMetricsFailures(const ::std::string&, const ::std::string&, const ::Ice::Context*);
|
|
784
|
+
::Ice::AsyncResultPtr begin_getMapMetricsFailures(const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
785
|
+
|
|
786
|
+
public:
|
|
787
|
+
|
|
788
|
+
::IceMX::MetricsFailures getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id)
|
|
789
|
+
{
|
|
790
|
+
return getMetricsFailures(view, map, id, 0);
|
|
791
|
+
}
|
|
792
|
+
::IceMX::MetricsFailures getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context& __ctx)
|
|
793
|
+
{
|
|
794
|
+
return getMetricsFailures(view, map, id, &__ctx);
|
|
795
|
+
}
|
|
796
|
+
#ifdef ICE_CPP11
|
|
797
|
+
::Ice::AsyncResultPtr
|
|
798
|
+
begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::IceInternal::Function<void (const ::IceMX::MetricsFailures&)>& __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)>())
|
|
799
|
+
{
|
|
800
|
+
return __begin_getMetricsFailures(view, map, id, 0, __response, __exception, __sent);
|
|
801
|
+
}
|
|
802
|
+
::Ice::AsyncResultPtr
|
|
803
|
+
begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, 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&)>())
|
|
804
|
+
{
|
|
805
|
+
return begin_getMetricsFailures(view, map, id, 0, ::Ice::newCallback(__completed, __sent), 0);
|
|
806
|
+
}
|
|
807
|
+
::Ice::AsyncResultPtr
|
|
808
|
+
begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context& __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsFailures&)>& __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)>())
|
|
809
|
+
{
|
|
810
|
+
return __begin_getMetricsFailures(view, map, id, &__ctx, __response, __exception, __sent);
|
|
811
|
+
}
|
|
812
|
+
::Ice::AsyncResultPtr
|
|
813
|
+
begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, 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&)>())
|
|
814
|
+
{
|
|
815
|
+
return begin_getMetricsFailures(view, map, id, &__ctx, ::Ice::newCallback(__completed, __sent));
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
private:
|
|
819
|
+
|
|
820
|
+
::Ice::AsyncResultPtr __begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context* __ctx, const ::IceInternal::Function<void (const ::IceMX::MetricsFailures&)>& __response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& __exception, const ::IceInternal::Function<void (bool)>& __sent);
|
|
821
|
+
|
|
822
|
+
public:
|
|
823
|
+
#endif
|
|
824
|
+
|
|
825
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id)
|
|
826
|
+
{
|
|
827
|
+
return begin_getMetricsFailures(view, map, id, 0, ::IceInternal::__dummyCallback, 0);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context& __ctx)
|
|
831
|
+
{
|
|
832
|
+
return begin_getMetricsFailures(view, map, id, &__ctx, ::IceInternal::__dummyCallback, 0);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
836
|
+
{
|
|
837
|
+
return begin_getMetricsFailures(view, map, id, 0, __del, __cookie);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
841
|
+
{
|
|
842
|
+
return begin_getMetricsFailures(view, map, id, &__ctx, __del, __cookie);
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::IceMX::Callback_MetricsAdmin_getMetricsFailuresPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
846
|
+
{
|
|
847
|
+
return begin_getMetricsFailures(view, map, id, 0, __del, __cookie);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string& view, const ::std::string& map, const ::std::string& id, const ::Ice::Context& __ctx, const ::IceMX::Callback_MetricsAdmin_getMetricsFailuresPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
|
|
851
|
+
{
|
|
852
|
+
return begin_getMetricsFailures(view, map, id, &__ctx, __del, __cookie);
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
::IceMX::MetricsFailures end_getMetricsFailures(const ::Ice::AsyncResultPtr&);
|
|
856
|
+
|
|
857
|
+
private:
|
|
858
|
+
|
|
859
|
+
::IceMX::MetricsFailures getMetricsFailures(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*);
|
|
860
|
+
::Ice::AsyncResultPtr begin_getMetricsFailures(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
|
|
861
|
+
|
|
862
|
+
public:
|
|
863
|
+
|
|
864
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_context(const ::Ice::Context& __context) const
|
|
865
|
+
{
|
|
866
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_adapterId(const ::std::string& __id) const
|
|
870
|
+
{
|
|
871
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
875
|
+
{
|
|
876
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_locatorCacheTimeout(int __timeout) const
|
|
880
|
+
{
|
|
881
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_connectionCached(bool __cached) const
|
|
885
|
+
{
|
|
886
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
890
|
+
{
|
|
891
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_secure(bool __secure) const
|
|
895
|
+
{
|
|
896
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_preferSecure(bool __preferSecure) const
|
|
900
|
+
{
|
|
901
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_router(const ::Ice::RouterPrx& __router) const
|
|
905
|
+
{
|
|
906
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
910
|
+
{
|
|
911
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_collocationOptimized(bool __co) const
|
|
915
|
+
{
|
|
916
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_invocationTimeout(int __timeout) const
|
|
920
|
+
{
|
|
921
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_twoway() const
|
|
925
|
+
{
|
|
926
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_oneway() const
|
|
930
|
+
{
|
|
931
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_batchOneway() const
|
|
935
|
+
{
|
|
936
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_datagram() const
|
|
940
|
+
{
|
|
941
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_batchDatagram() const
|
|
945
|
+
{
|
|
946
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_compress(bool __compress) const
|
|
950
|
+
{
|
|
951
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_timeout(int __timeout) const
|
|
955
|
+
{
|
|
956
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_connectionId(const ::std::string& __id) const
|
|
960
|
+
{
|
|
961
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
::IceInternal::ProxyHandle<MetricsAdmin> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
965
|
+
{
|
|
966
|
+
return dynamic_cast<MetricsAdmin*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
static const ::std::string& ice_staticId();
|
|
970
|
+
|
|
971
|
+
private:
|
|
972
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
973
|
+
};
|
|
974
|
+
|
|
975
|
+
class ICE_API ThreadMetrics : virtual public ::IceProxy::IceMX::Metrics
|
|
976
|
+
{
|
|
977
|
+
public:
|
|
978
|
+
|
|
979
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_context(const ::Ice::Context& __context) const
|
|
980
|
+
{
|
|
981
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_adapterId(const ::std::string& __id) const
|
|
985
|
+
{
|
|
986
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
990
|
+
{
|
|
991
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
995
|
+
{
|
|
996
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_connectionCached(bool __cached) const
|
|
1000
|
+
{
|
|
1001
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1005
|
+
{
|
|
1006
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_secure(bool __secure) const
|
|
1010
|
+
{
|
|
1011
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1015
|
+
{
|
|
1016
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1020
|
+
{
|
|
1021
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1025
|
+
{
|
|
1026
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_collocationOptimized(bool __co) const
|
|
1030
|
+
{
|
|
1031
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_invocationTimeout(int __timeout) const
|
|
1035
|
+
{
|
|
1036
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_twoway() const
|
|
1040
|
+
{
|
|
1041
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_oneway() const
|
|
1045
|
+
{
|
|
1046
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_batchOneway() const
|
|
1050
|
+
{
|
|
1051
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_datagram() const
|
|
1055
|
+
{
|
|
1056
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_batchDatagram() const
|
|
1060
|
+
{
|
|
1061
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_compress(bool __compress) const
|
|
1065
|
+
{
|
|
1066
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_timeout(int __timeout) const
|
|
1070
|
+
{
|
|
1071
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1075
|
+
{
|
|
1076
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
::IceInternal::ProxyHandle<ThreadMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1080
|
+
{
|
|
1081
|
+
return dynamic_cast<ThreadMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
static const ::std::string& ice_staticId();
|
|
1085
|
+
|
|
1086
|
+
private:
|
|
1087
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1088
|
+
};
|
|
1089
|
+
|
|
1090
|
+
class ICE_API DispatchMetrics : virtual public ::IceProxy::IceMX::Metrics
|
|
1091
|
+
{
|
|
1092
|
+
public:
|
|
1093
|
+
|
|
1094
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1095
|
+
{
|
|
1096
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1100
|
+
{
|
|
1101
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1105
|
+
{
|
|
1106
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1110
|
+
{
|
|
1111
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_connectionCached(bool __cached) const
|
|
1115
|
+
{
|
|
1116
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1120
|
+
{
|
|
1121
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_secure(bool __secure) const
|
|
1125
|
+
{
|
|
1126
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1130
|
+
{
|
|
1131
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1135
|
+
{
|
|
1136
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1140
|
+
{
|
|
1141
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_collocationOptimized(bool __co) const
|
|
1145
|
+
{
|
|
1146
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_invocationTimeout(int __timeout) const
|
|
1150
|
+
{
|
|
1151
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_twoway() const
|
|
1155
|
+
{
|
|
1156
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_oneway() const
|
|
1160
|
+
{
|
|
1161
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_batchOneway() const
|
|
1165
|
+
{
|
|
1166
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_datagram() const
|
|
1170
|
+
{
|
|
1171
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_batchDatagram() const
|
|
1175
|
+
{
|
|
1176
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_compress(bool __compress) const
|
|
1180
|
+
{
|
|
1181
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_timeout(int __timeout) const
|
|
1185
|
+
{
|
|
1186
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1190
|
+
{
|
|
1191
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
::IceInternal::ProxyHandle<DispatchMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1195
|
+
{
|
|
1196
|
+
return dynamic_cast<DispatchMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
static const ::std::string& ice_staticId();
|
|
1200
|
+
|
|
1201
|
+
private:
|
|
1202
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1203
|
+
};
|
|
1204
|
+
|
|
1205
|
+
class ICE_API ChildInvocationMetrics : virtual public ::IceProxy::IceMX::Metrics
|
|
1206
|
+
{
|
|
1207
|
+
public:
|
|
1208
|
+
|
|
1209
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1210
|
+
{
|
|
1211
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1215
|
+
{
|
|
1216
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1220
|
+
{
|
|
1221
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1225
|
+
{
|
|
1226
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_connectionCached(bool __cached) const
|
|
1230
|
+
{
|
|
1231
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1235
|
+
{
|
|
1236
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_secure(bool __secure) const
|
|
1240
|
+
{
|
|
1241
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1245
|
+
{
|
|
1246
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1250
|
+
{
|
|
1251
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1255
|
+
{
|
|
1256
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_collocationOptimized(bool __co) const
|
|
1260
|
+
{
|
|
1261
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_invocationTimeout(int __timeout) const
|
|
1265
|
+
{
|
|
1266
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_twoway() const
|
|
1270
|
+
{
|
|
1271
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_oneway() const
|
|
1275
|
+
{
|
|
1276
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_batchOneway() const
|
|
1280
|
+
{
|
|
1281
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_datagram() const
|
|
1285
|
+
{
|
|
1286
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_batchDatagram() const
|
|
1290
|
+
{
|
|
1291
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_compress(bool __compress) const
|
|
1295
|
+
{
|
|
1296
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_timeout(int __timeout) const
|
|
1300
|
+
{
|
|
1301
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1305
|
+
{
|
|
1306
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
::IceInternal::ProxyHandle<ChildInvocationMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1310
|
+
{
|
|
1311
|
+
return dynamic_cast<ChildInvocationMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
static const ::std::string& ice_staticId();
|
|
1315
|
+
|
|
1316
|
+
private:
|
|
1317
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1318
|
+
};
|
|
1319
|
+
|
|
1320
|
+
class ICE_API CollocatedMetrics : virtual public ::IceProxy::IceMX::ChildInvocationMetrics
|
|
1321
|
+
{
|
|
1322
|
+
public:
|
|
1323
|
+
|
|
1324
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1325
|
+
{
|
|
1326
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1330
|
+
{
|
|
1331
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1335
|
+
{
|
|
1336
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1340
|
+
{
|
|
1341
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_connectionCached(bool __cached) const
|
|
1345
|
+
{
|
|
1346
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1350
|
+
{
|
|
1351
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_secure(bool __secure) const
|
|
1355
|
+
{
|
|
1356
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1360
|
+
{
|
|
1361
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1365
|
+
{
|
|
1366
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1370
|
+
{
|
|
1371
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_collocationOptimized(bool __co) const
|
|
1375
|
+
{
|
|
1376
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_invocationTimeout(int __timeout) const
|
|
1380
|
+
{
|
|
1381
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_twoway() const
|
|
1385
|
+
{
|
|
1386
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_oneway() const
|
|
1390
|
+
{
|
|
1391
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_batchOneway() const
|
|
1395
|
+
{
|
|
1396
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_datagram() const
|
|
1400
|
+
{
|
|
1401
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_batchDatagram() const
|
|
1405
|
+
{
|
|
1406
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_compress(bool __compress) const
|
|
1410
|
+
{
|
|
1411
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_timeout(int __timeout) const
|
|
1415
|
+
{
|
|
1416
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1420
|
+
{
|
|
1421
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
::IceInternal::ProxyHandle<CollocatedMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1425
|
+
{
|
|
1426
|
+
return dynamic_cast<CollocatedMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
static const ::std::string& ice_staticId();
|
|
1430
|
+
|
|
1431
|
+
private:
|
|
1432
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1433
|
+
};
|
|
1434
|
+
|
|
1435
|
+
class ICE_API RemoteMetrics : virtual public ::IceProxy::IceMX::ChildInvocationMetrics
|
|
1436
|
+
{
|
|
1437
|
+
public:
|
|
1438
|
+
|
|
1439
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1440
|
+
{
|
|
1441
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1445
|
+
{
|
|
1446
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1450
|
+
{
|
|
1451
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1455
|
+
{
|
|
1456
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_connectionCached(bool __cached) const
|
|
1460
|
+
{
|
|
1461
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1465
|
+
{
|
|
1466
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_secure(bool __secure) const
|
|
1470
|
+
{
|
|
1471
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1475
|
+
{
|
|
1476
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1480
|
+
{
|
|
1481
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1485
|
+
{
|
|
1486
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_collocationOptimized(bool __co) const
|
|
1490
|
+
{
|
|
1491
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_invocationTimeout(int __timeout) const
|
|
1495
|
+
{
|
|
1496
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_twoway() const
|
|
1500
|
+
{
|
|
1501
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_oneway() const
|
|
1505
|
+
{
|
|
1506
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_batchOneway() const
|
|
1510
|
+
{
|
|
1511
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_datagram() const
|
|
1515
|
+
{
|
|
1516
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_batchDatagram() const
|
|
1520
|
+
{
|
|
1521
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_compress(bool __compress) const
|
|
1525
|
+
{
|
|
1526
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_timeout(int __timeout) const
|
|
1530
|
+
{
|
|
1531
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1535
|
+
{
|
|
1536
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
::IceInternal::ProxyHandle<RemoteMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1540
|
+
{
|
|
1541
|
+
return dynamic_cast<RemoteMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
static const ::std::string& ice_staticId();
|
|
1545
|
+
|
|
1546
|
+
private:
|
|
1547
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1548
|
+
};
|
|
1549
|
+
|
|
1550
|
+
class ICE_API InvocationMetrics : virtual public ::IceProxy::IceMX::Metrics
|
|
1551
|
+
{
|
|
1552
|
+
public:
|
|
1553
|
+
|
|
1554
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1555
|
+
{
|
|
1556
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1560
|
+
{
|
|
1561
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1565
|
+
{
|
|
1566
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1570
|
+
{
|
|
1571
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_connectionCached(bool __cached) const
|
|
1575
|
+
{
|
|
1576
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1580
|
+
{
|
|
1581
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_secure(bool __secure) const
|
|
1585
|
+
{
|
|
1586
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1590
|
+
{
|
|
1591
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1595
|
+
{
|
|
1596
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1600
|
+
{
|
|
1601
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_collocationOptimized(bool __co) const
|
|
1605
|
+
{
|
|
1606
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_invocationTimeout(int __timeout) const
|
|
1610
|
+
{
|
|
1611
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_twoway() const
|
|
1615
|
+
{
|
|
1616
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_oneway() const
|
|
1620
|
+
{
|
|
1621
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_batchOneway() const
|
|
1625
|
+
{
|
|
1626
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_datagram() const
|
|
1630
|
+
{
|
|
1631
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_batchDatagram() const
|
|
1635
|
+
{
|
|
1636
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_compress(bool __compress) const
|
|
1640
|
+
{
|
|
1641
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_timeout(int __timeout) const
|
|
1645
|
+
{
|
|
1646
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1650
|
+
{
|
|
1651
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
::IceInternal::ProxyHandle<InvocationMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1655
|
+
{
|
|
1656
|
+
return dynamic_cast<InvocationMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
static const ::std::string& ice_staticId();
|
|
1660
|
+
|
|
1661
|
+
private:
|
|
1662
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1663
|
+
};
|
|
1664
|
+
|
|
1665
|
+
class ICE_API ConnectionMetrics : virtual public ::IceProxy::IceMX::Metrics
|
|
1666
|
+
{
|
|
1667
|
+
public:
|
|
1668
|
+
|
|
1669
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_context(const ::Ice::Context& __context) const
|
|
1670
|
+
{
|
|
1671
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_context(__context).get());
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_adapterId(const ::std::string& __id) const
|
|
1675
|
+
{
|
|
1676
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
|
|
1680
|
+
{
|
|
1681
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_locatorCacheTimeout(int __timeout) const
|
|
1685
|
+
{
|
|
1686
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_connectionCached(bool __cached) const
|
|
1690
|
+
{
|
|
1691
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
|
|
1695
|
+
{
|
|
1696
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_secure(bool __secure) const
|
|
1700
|
+
{
|
|
1701
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_preferSecure(bool __preferSecure) const
|
|
1705
|
+
{
|
|
1706
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_router(const ::Ice::RouterPrx& __router) const
|
|
1710
|
+
{
|
|
1711
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_router(__router).get());
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_locator(const ::Ice::LocatorPrx& __locator) const
|
|
1715
|
+
{
|
|
1716
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_collocationOptimized(bool __co) const
|
|
1720
|
+
{
|
|
1721
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_invocationTimeout(int __timeout) const
|
|
1725
|
+
{
|
|
1726
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_invocationTimeout(__timeout).get());
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_twoway() const
|
|
1730
|
+
{
|
|
1731
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_twoway().get());
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_oneway() const
|
|
1735
|
+
{
|
|
1736
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_oneway().get());
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_batchOneway() const
|
|
1740
|
+
{
|
|
1741
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_batchOneway().get());
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_datagram() const
|
|
1745
|
+
{
|
|
1746
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_datagram().get());
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_batchDatagram() const
|
|
1750
|
+
{
|
|
1751
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_compress(bool __compress) const
|
|
1755
|
+
{
|
|
1756
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_timeout(int __timeout) const
|
|
1760
|
+
{
|
|
1761
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_connectionId(const ::std::string& __id) const
|
|
1765
|
+
{
|
|
1766
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
::IceInternal::ProxyHandle<ConnectionMetrics> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
|
|
1770
|
+
{
|
|
1771
|
+
return dynamic_cast<ConnectionMetrics*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
static const ::std::string& ice_staticId();
|
|
1775
|
+
|
|
1776
|
+
private:
|
|
1777
|
+
virtual ::IceProxy::Ice::Object* __newInstance() const;
|
|
1778
|
+
};
|
|
1779
|
+
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
namespace IceMX
|
|
1785
|
+
{
|
|
1786
|
+
|
|
1787
|
+
class ICE_API Metrics : virtual public ::Ice::Object
|
|
1788
|
+
{
|
|
1789
|
+
public:
|
|
1790
|
+
|
|
1791
|
+
typedef MetricsPrx ProxyType;
|
|
1792
|
+
typedef MetricsPtr PointerType;
|
|
1793
|
+
|
|
1794
|
+
Metrics() :
|
|
1795
|
+
total(ICE_INT64(0)),
|
|
1796
|
+
current(0),
|
|
1797
|
+
totalLifetime(ICE_INT64(0)),
|
|
1798
|
+
failures(0)
|
|
1799
|
+
{
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
Metrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures) :
|
|
1803
|
+
id(__ice_id),
|
|
1804
|
+
total(__ice_total),
|
|
1805
|
+
current(__ice_current),
|
|
1806
|
+
totalLifetime(__ice_totalLifetime),
|
|
1807
|
+
failures(__ice_failures)
|
|
1808
|
+
{
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
1812
|
+
|
|
1813
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1814
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1815
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1816
|
+
static const ::std::string& ice_staticId();
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
1820
|
+
|
|
1821
|
+
protected:
|
|
1822
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1823
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1824
|
+
using ::Ice::Object::__writeImpl;
|
|
1825
|
+
using ::Ice::Object::__readImpl;
|
|
1826
|
+
|
|
1827
|
+
public:
|
|
1828
|
+
|
|
1829
|
+
::std::string id;
|
|
1830
|
+
|
|
1831
|
+
::Ice::Long total;
|
|
1832
|
+
|
|
1833
|
+
::Ice::Int current;
|
|
1834
|
+
|
|
1835
|
+
::Ice::Long totalLifetime;
|
|
1836
|
+
|
|
1837
|
+
::Ice::Int failures;
|
|
1838
|
+
|
|
1839
|
+
protected:
|
|
1840
|
+
|
|
1841
|
+
virtual ~Metrics() {}
|
|
1842
|
+
|
|
1843
|
+
friend class Metrics__staticInit;
|
|
1844
|
+
};
|
|
1845
|
+
|
|
1846
|
+
class Metrics__staticInit
|
|
1847
|
+
{
|
|
1848
|
+
public:
|
|
1849
|
+
|
|
1850
|
+
::IceMX::Metrics _init;
|
|
1851
|
+
};
|
|
1852
|
+
|
|
1853
|
+
static Metrics__staticInit _Metrics_init;
|
|
1854
|
+
|
|
1855
|
+
inline bool operator==(const Metrics& l, const Metrics& r)
|
|
1856
|
+
{
|
|
1857
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
inline bool operator<(const Metrics& l, const Metrics& r)
|
|
1861
|
+
{
|
|
1862
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
class ICE_API MetricsAdmin : virtual public ::Ice::Object
|
|
1866
|
+
{
|
|
1867
|
+
public:
|
|
1868
|
+
|
|
1869
|
+
typedef MetricsAdminPrx ProxyType;
|
|
1870
|
+
typedef MetricsAdminPtr PointerType;
|
|
1871
|
+
|
|
1872
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1873
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1874
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1875
|
+
static const ::std::string& ice_staticId();
|
|
1876
|
+
|
|
1877
|
+
virtual ::Ice::StringSeq getMetricsViewNames(::Ice::StringSeq&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1878
|
+
::Ice::DispatchStatus ___getMetricsViewNames(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1879
|
+
|
|
1880
|
+
virtual void enableMetricsView(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1881
|
+
::Ice::DispatchStatus ___enableMetricsView(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1882
|
+
|
|
1883
|
+
virtual void disableMetricsView(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1884
|
+
::Ice::DispatchStatus ___disableMetricsView(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1885
|
+
|
|
1886
|
+
virtual ::IceMX::MetricsView getMetricsView(const ::std::string&, ::Ice::Long&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1887
|
+
::Ice::DispatchStatus ___getMetricsView(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1888
|
+
|
|
1889
|
+
virtual ::IceMX::MetricsFailuresSeq getMapMetricsFailures(const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1890
|
+
::Ice::DispatchStatus ___getMapMetricsFailures(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1891
|
+
|
|
1892
|
+
virtual ::IceMX::MetricsFailures getMetricsFailures(const ::std::string&, const ::std::string&, const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
|
|
1893
|
+
::Ice::DispatchStatus ___getMetricsFailures(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1894
|
+
|
|
1895
|
+
virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&);
|
|
1896
|
+
|
|
1897
|
+
protected:
|
|
1898
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1899
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1900
|
+
using ::Ice::Object::__writeImpl;
|
|
1901
|
+
using ::Ice::Object::__readImpl;
|
|
1902
|
+
};
|
|
1903
|
+
|
|
1904
|
+
inline bool operator==(const MetricsAdmin& l, const MetricsAdmin& r)
|
|
1905
|
+
{
|
|
1906
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
inline bool operator<(const MetricsAdmin& l, const MetricsAdmin& r)
|
|
1910
|
+
{
|
|
1911
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
class ICE_API ThreadMetrics : public ::IceMX::Metrics
|
|
1915
|
+
{
|
|
1916
|
+
public:
|
|
1917
|
+
|
|
1918
|
+
typedef ThreadMetricsPrx ProxyType;
|
|
1919
|
+
typedef ThreadMetricsPtr PointerType;
|
|
1920
|
+
|
|
1921
|
+
ThreadMetrics() :
|
|
1922
|
+
inUseForIO(0),
|
|
1923
|
+
inUseForUser(0),
|
|
1924
|
+
inUseForOther(0)
|
|
1925
|
+
{
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
ThreadMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Int __ice_inUseForIO, ::Ice::Int __ice_inUseForUser, ::Ice::Int __ice_inUseForOther) :
|
|
1929
|
+
::IceMX::Metrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures)
|
|
1930
|
+
,
|
|
1931
|
+
inUseForIO(__ice_inUseForIO),
|
|
1932
|
+
inUseForUser(__ice_inUseForUser),
|
|
1933
|
+
inUseForOther(__ice_inUseForOther)
|
|
1934
|
+
{
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
1938
|
+
|
|
1939
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
1940
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1941
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
1942
|
+
static const ::std::string& ice_staticId();
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
1946
|
+
|
|
1947
|
+
protected:
|
|
1948
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
1949
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
1950
|
+
using ::IceMX::Metrics::__writeImpl;
|
|
1951
|
+
using ::IceMX::Metrics::__readImpl;
|
|
1952
|
+
|
|
1953
|
+
public:
|
|
1954
|
+
|
|
1955
|
+
::Ice::Int inUseForIO;
|
|
1956
|
+
|
|
1957
|
+
::Ice::Int inUseForUser;
|
|
1958
|
+
|
|
1959
|
+
::Ice::Int inUseForOther;
|
|
1960
|
+
|
|
1961
|
+
protected:
|
|
1962
|
+
|
|
1963
|
+
virtual ~ThreadMetrics() {}
|
|
1964
|
+
};
|
|
1965
|
+
|
|
1966
|
+
inline bool operator==(const ThreadMetrics& l, const ThreadMetrics& r)
|
|
1967
|
+
{
|
|
1968
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
inline bool operator<(const ThreadMetrics& l, const ThreadMetrics& r)
|
|
1972
|
+
{
|
|
1973
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
class ICE_API DispatchMetrics : public ::IceMX::Metrics
|
|
1977
|
+
{
|
|
1978
|
+
public:
|
|
1979
|
+
|
|
1980
|
+
typedef DispatchMetricsPrx ProxyType;
|
|
1981
|
+
typedef DispatchMetricsPtr PointerType;
|
|
1982
|
+
|
|
1983
|
+
DispatchMetrics() :
|
|
1984
|
+
userException(0),
|
|
1985
|
+
size(ICE_INT64(0)),
|
|
1986
|
+
replySize(ICE_INT64(0))
|
|
1987
|
+
{
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
DispatchMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Int __ice_userException, ::Ice::Long __ice_size, ::Ice::Long __ice_replySize) :
|
|
1991
|
+
::IceMX::Metrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures)
|
|
1992
|
+
,
|
|
1993
|
+
userException(__ice_userException),
|
|
1994
|
+
size(__ice_size),
|
|
1995
|
+
replySize(__ice_replySize)
|
|
1996
|
+
{
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2000
|
+
|
|
2001
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2002
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2003
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2004
|
+
static const ::std::string& ice_staticId();
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2008
|
+
|
|
2009
|
+
protected:
|
|
2010
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2011
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2012
|
+
using ::IceMX::Metrics::__writeImpl;
|
|
2013
|
+
using ::IceMX::Metrics::__readImpl;
|
|
2014
|
+
|
|
2015
|
+
public:
|
|
2016
|
+
|
|
2017
|
+
::Ice::Int userException;
|
|
2018
|
+
|
|
2019
|
+
::Ice::Long size;
|
|
2020
|
+
|
|
2021
|
+
::Ice::Long replySize;
|
|
2022
|
+
|
|
2023
|
+
protected:
|
|
2024
|
+
|
|
2025
|
+
virtual ~DispatchMetrics() {}
|
|
2026
|
+
};
|
|
2027
|
+
|
|
2028
|
+
inline bool operator==(const DispatchMetrics& l, const DispatchMetrics& r)
|
|
2029
|
+
{
|
|
2030
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
inline bool operator<(const DispatchMetrics& l, const DispatchMetrics& r)
|
|
2034
|
+
{
|
|
2035
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
class ICE_API ChildInvocationMetrics : public ::IceMX::Metrics
|
|
2039
|
+
{
|
|
2040
|
+
public:
|
|
2041
|
+
|
|
2042
|
+
typedef ChildInvocationMetricsPrx ProxyType;
|
|
2043
|
+
typedef ChildInvocationMetricsPtr PointerType;
|
|
2044
|
+
|
|
2045
|
+
ChildInvocationMetrics() :
|
|
2046
|
+
size(ICE_INT64(0)),
|
|
2047
|
+
replySize(ICE_INT64(0))
|
|
2048
|
+
{
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
ChildInvocationMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Long __ice_size, ::Ice::Long __ice_replySize) :
|
|
2052
|
+
::IceMX::Metrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures)
|
|
2053
|
+
,
|
|
2054
|
+
size(__ice_size),
|
|
2055
|
+
replySize(__ice_replySize)
|
|
2056
|
+
{
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2060
|
+
|
|
2061
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2062
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2063
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2064
|
+
static const ::std::string& ice_staticId();
|
|
2065
|
+
|
|
2066
|
+
|
|
2067
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2068
|
+
|
|
2069
|
+
protected:
|
|
2070
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2071
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2072
|
+
using ::IceMX::Metrics::__writeImpl;
|
|
2073
|
+
using ::IceMX::Metrics::__readImpl;
|
|
2074
|
+
|
|
2075
|
+
public:
|
|
2076
|
+
|
|
2077
|
+
::Ice::Long size;
|
|
2078
|
+
|
|
2079
|
+
::Ice::Long replySize;
|
|
2080
|
+
|
|
2081
|
+
protected:
|
|
2082
|
+
|
|
2083
|
+
virtual ~ChildInvocationMetrics() {}
|
|
2084
|
+
};
|
|
2085
|
+
|
|
2086
|
+
inline bool operator==(const ChildInvocationMetrics& l, const ChildInvocationMetrics& r)
|
|
2087
|
+
{
|
|
2088
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
inline bool operator<(const ChildInvocationMetrics& l, const ChildInvocationMetrics& r)
|
|
2092
|
+
{
|
|
2093
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
class ICE_API CollocatedMetrics : public ::IceMX::ChildInvocationMetrics
|
|
2097
|
+
{
|
|
2098
|
+
public:
|
|
2099
|
+
|
|
2100
|
+
typedef CollocatedMetricsPrx ProxyType;
|
|
2101
|
+
typedef CollocatedMetricsPtr PointerType;
|
|
2102
|
+
|
|
2103
|
+
CollocatedMetrics()
|
|
2104
|
+
{
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
CollocatedMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Long __ice_size, ::Ice::Long __ice_replySize) :
|
|
2108
|
+
::IceMX::ChildInvocationMetrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures, __ice_size, __ice_replySize)
|
|
2109
|
+
|
|
2110
|
+
{
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2114
|
+
|
|
2115
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2116
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2117
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2118
|
+
static const ::std::string& ice_staticId();
|
|
2119
|
+
|
|
2120
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2121
|
+
|
|
2122
|
+
protected:
|
|
2123
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2124
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2125
|
+
using ::IceMX::ChildInvocationMetrics::__writeImpl;
|
|
2126
|
+
using ::IceMX::ChildInvocationMetrics::__readImpl;
|
|
2127
|
+
|
|
2128
|
+
virtual ~CollocatedMetrics() {}
|
|
2129
|
+
};
|
|
2130
|
+
|
|
2131
|
+
inline bool operator==(const CollocatedMetrics& l, const CollocatedMetrics& r)
|
|
2132
|
+
{
|
|
2133
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
inline bool operator<(const CollocatedMetrics& l, const CollocatedMetrics& r)
|
|
2137
|
+
{
|
|
2138
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
class ICE_API RemoteMetrics : public ::IceMX::ChildInvocationMetrics
|
|
2142
|
+
{
|
|
2143
|
+
public:
|
|
2144
|
+
|
|
2145
|
+
typedef RemoteMetricsPrx ProxyType;
|
|
2146
|
+
typedef RemoteMetricsPtr PointerType;
|
|
2147
|
+
|
|
2148
|
+
RemoteMetrics()
|
|
2149
|
+
{
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
RemoteMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Long __ice_size, ::Ice::Long __ice_replySize) :
|
|
2153
|
+
::IceMX::ChildInvocationMetrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures, __ice_size, __ice_replySize)
|
|
2154
|
+
|
|
2155
|
+
{
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2159
|
+
|
|
2160
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2161
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2162
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2163
|
+
static const ::std::string& ice_staticId();
|
|
2164
|
+
|
|
2165
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2166
|
+
|
|
2167
|
+
protected:
|
|
2168
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2169
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2170
|
+
using ::IceMX::ChildInvocationMetrics::__writeImpl;
|
|
2171
|
+
using ::IceMX::ChildInvocationMetrics::__readImpl;
|
|
2172
|
+
|
|
2173
|
+
virtual ~RemoteMetrics() {}
|
|
2174
|
+
};
|
|
2175
|
+
|
|
2176
|
+
inline bool operator==(const RemoteMetrics& l, const RemoteMetrics& r)
|
|
2177
|
+
{
|
|
2178
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
inline bool operator<(const RemoteMetrics& l, const RemoteMetrics& r)
|
|
2182
|
+
{
|
|
2183
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
class ICE_API InvocationMetrics : public ::IceMX::Metrics, public ::IceInternal::GCObject
|
|
2187
|
+
{
|
|
2188
|
+
public:
|
|
2189
|
+
|
|
2190
|
+
typedef InvocationMetricsPrx ProxyType;
|
|
2191
|
+
typedef InvocationMetricsPtr PointerType;
|
|
2192
|
+
|
|
2193
|
+
InvocationMetrics() :
|
|
2194
|
+
retry(0),
|
|
2195
|
+
userException(0)
|
|
2196
|
+
{
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
InvocationMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Int __ice_retry, ::Ice::Int __ice_userException, const ::IceMX::MetricsMap& __ice_remotes, const ::IceMX::MetricsMap& __ice_collocated) :
|
|
2200
|
+
::IceMX::Metrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures)
|
|
2201
|
+
,
|
|
2202
|
+
retry(__ice_retry),
|
|
2203
|
+
userException(__ice_userException),
|
|
2204
|
+
remotes(__ice_remotes),
|
|
2205
|
+
collocated(__ice_collocated)
|
|
2206
|
+
{
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2210
|
+
|
|
2211
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2212
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2213
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2214
|
+
static const ::std::string& ice_staticId();
|
|
2215
|
+
|
|
2216
|
+
virtual void __gcVisitMembers(::IceInternal::GCVisitor&);
|
|
2217
|
+
|
|
2218
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2219
|
+
|
|
2220
|
+
protected:
|
|
2221
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2222
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2223
|
+
using ::IceMX::Metrics::__writeImpl;
|
|
2224
|
+
using ::IceMX::Metrics::__readImpl;
|
|
2225
|
+
|
|
2226
|
+
public:
|
|
2227
|
+
|
|
2228
|
+
::Ice::Int retry;
|
|
2229
|
+
|
|
2230
|
+
::Ice::Int userException;
|
|
2231
|
+
|
|
2232
|
+
::IceMX::MetricsMap remotes;
|
|
2233
|
+
|
|
2234
|
+
::IceMX::MetricsMap collocated;
|
|
2235
|
+
|
|
2236
|
+
protected:
|
|
2237
|
+
|
|
2238
|
+
virtual ~InvocationMetrics() {}
|
|
2239
|
+
};
|
|
2240
|
+
|
|
2241
|
+
inline bool operator==(const InvocationMetrics& l, const InvocationMetrics& r)
|
|
2242
|
+
{
|
|
2243
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
inline bool operator<(const InvocationMetrics& l, const InvocationMetrics& r)
|
|
2247
|
+
{
|
|
2248
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
class ICE_API ConnectionMetrics : public ::IceMX::Metrics
|
|
2252
|
+
{
|
|
2253
|
+
public:
|
|
2254
|
+
|
|
2255
|
+
typedef ConnectionMetricsPrx ProxyType;
|
|
2256
|
+
typedef ConnectionMetricsPtr PointerType;
|
|
2257
|
+
|
|
2258
|
+
ConnectionMetrics() :
|
|
2259
|
+
receivedBytes(ICE_INT64(0)),
|
|
2260
|
+
sentBytes(ICE_INT64(0))
|
|
2261
|
+
{
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
ConnectionMetrics(const ::std::string& __ice_id, ::Ice::Long __ice_total, ::Ice::Int __ice_current, ::Ice::Long __ice_totalLifetime, ::Ice::Int __ice_failures, ::Ice::Long __ice_receivedBytes, ::Ice::Long __ice_sentBytes) :
|
|
2265
|
+
::IceMX::Metrics(__ice_id, __ice_total, __ice_current, __ice_totalLifetime, __ice_failures)
|
|
2266
|
+
,
|
|
2267
|
+
receivedBytes(__ice_receivedBytes),
|
|
2268
|
+
sentBytes(__ice_sentBytes)
|
|
2269
|
+
{
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
virtual ::Ice::ObjectPtr ice_clone() const;
|
|
2273
|
+
|
|
2274
|
+
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
|
|
2275
|
+
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2276
|
+
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
|
|
2277
|
+
static const ::std::string& ice_staticId();
|
|
2278
|
+
|
|
2279
|
+
|
|
2280
|
+
static ::Ice::ObjectFactoryPtr ice_factory();
|
|
2281
|
+
|
|
2282
|
+
protected:
|
|
2283
|
+
virtual void __writeImpl(::IceInternal::BasicStream*) const;
|
|
2284
|
+
virtual void __readImpl(::IceInternal::BasicStream*);
|
|
2285
|
+
using ::IceMX::Metrics::__writeImpl;
|
|
2286
|
+
using ::IceMX::Metrics::__readImpl;
|
|
2287
|
+
|
|
2288
|
+
public:
|
|
2289
|
+
|
|
2290
|
+
::Ice::Long receivedBytes;
|
|
2291
|
+
|
|
2292
|
+
::Ice::Long sentBytes;
|
|
2293
|
+
|
|
2294
|
+
protected:
|
|
2295
|
+
|
|
2296
|
+
virtual ~ConnectionMetrics() {}
|
|
2297
|
+
};
|
|
2298
|
+
|
|
2299
|
+
inline bool operator==(const ConnectionMetrics& l, const ConnectionMetrics& r)
|
|
2300
|
+
{
|
|
2301
|
+
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
inline bool operator<(const ConnectionMetrics& l, const ConnectionMetrics& r)
|
|
2305
|
+
{
|
|
2306
|
+
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
namespace IceMX
|
|
2312
|
+
{
|
|
2313
|
+
|
|
2314
|
+
template<class T>
|
|
2315
|
+
class CallbackNC_MetricsAdmin_getMetricsViewNames : public Callback_MetricsAdmin_getMetricsViewNames_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2316
|
+
{
|
|
2317
|
+
public:
|
|
2318
|
+
|
|
2319
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2320
|
+
|
|
2321
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2322
|
+
typedef void (T::*Sent)(bool);
|
|
2323
|
+
typedef void (T::*Response)(const ::Ice::StringSeq&, const ::Ice::StringSeq&);
|
|
2324
|
+
|
|
2325
|
+
CallbackNC_MetricsAdmin_getMetricsViewNames(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2326
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2327
|
+
{
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2331
|
+
{
|
|
2332
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2333
|
+
::Ice::StringSeq disabledViews;
|
|
2334
|
+
::Ice::StringSeq __ret;
|
|
2335
|
+
try
|
|
2336
|
+
{
|
|
2337
|
+
__ret = __proxy->end_getMetricsViewNames(disabledViews, __result);
|
|
2338
|
+
}
|
|
2339
|
+
catch(const ::Ice::Exception& ex)
|
|
2340
|
+
{
|
|
2341
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2342
|
+
return;
|
|
2343
|
+
}
|
|
2344
|
+
if(_response)
|
|
2345
|
+
{
|
|
2346
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret, disabledViews);
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
private:
|
|
2351
|
+
|
|
2352
|
+
Response _response;
|
|
2353
|
+
};
|
|
2354
|
+
|
|
2355
|
+
template<class T> Callback_MetricsAdmin_getMetricsViewNamesPtr
|
|
2356
|
+
newCallback_MetricsAdmin_getMetricsViewNames(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::StringSeq&, const ::Ice::StringSeq&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2357
|
+
{
|
|
2358
|
+
return new CallbackNC_MetricsAdmin_getMetricsViewNames<T>(instance, cb, excb, sentcb);
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
template<class T> Callback_MetricsAdmin_getMetricsViewNamesPtr
|
|
2362
|
+
newCallback_MetricsAdmin_getMetricsViewNames(T* instance, void (T::*cb)(const ::Ice::StringSeq&, const ::Ice::StringSeq&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2363
|
+
{
|
|
2364
|
+
return new CallbackNC_MetricsAdmin_getMetricsViewNames<T>(instance, cb, excb, sentcb);
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
template<class T, typename CT>
|
|
2368
|
+
class Callback_MetricsAdmin_getMetricsViewNames : public Callback_MetricsAdmin_getMetricsViewNames_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2369
|
+
{
|
|
2370
|
+
public:
|
|
2371
|
+
|
|
2372
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2373
|
+
|
|
2374
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2375
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2376
|
+
typedef void (T::*Response)(const ::Ice::StringSeq&, const ::Ice::StringSeq&, const CT&);
|
|
2377
|
+
|
|
2378
|
+
Callback_MetricsAdmin_getMetricsViewNames(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2379
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2380
|
+
{
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2384
|
+
{
|
|
2385
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2386
|
+
::Ice::StringSeq disabledViews;
|
|
2387
|
+
::Ice::StringSeq __ret;
|
|
2388
|
+
try
|
|
2389
|
+
{
|
|
2390
|
+
__ret = __proxy->end_getMetricsViewNames(disabledViews, __result);
|
|
2391
|
+
}
|
|
2392
|
+
catch(const ::Ice::Exception& ex)
|
|
2393
|
+
{
|
|
2394
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2395
|
+
return;
|
|
2396
|
+
}
|
|
2397
|
+
if(_response)
|
|
2398
|
+
{
|
|
2399
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, disabledViews, CT::dynamicCast(__result->getCookie()));
|
|
2400
|
+
}
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
private:
|
|
2404
|
+
|
|
2405
|
+
Response _response;
|
|
2406
|
+
};
|
|
2407
|
+
|
|
2408
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsViewNamesPtr
|
|
2409
|
+
newCallback_MetricsAdmin_getMetricsViewNames(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::Ice::StringSeq&, const ::Ice::StringSeq&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2410
|
+
{
|
|
2411
|
+
return new Callback_MetricsAdmin_getMetricsViewNames<T, CT>(instance, cb, excb, sentcb);
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsViewNamesPtr
|
|
2415
|
+
newCallback_MetricsAdmin_getMetricsViewNames(T* instance, void (T::*cb)(const ::Ice::StringSeq&, const ::Ice::StringSeq&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2416
|
+
{
|
|
2417
|
+
return new Callback_MetricsAdmin_getMetricsViewNames<T, CT>(instance, cb, excb, sentcb);
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
template<class T>
|
|
2421
|
+
class CallbackNC_MetricsAdmin_enableMetricsView : public Callback_MetricsAdmin_enableMetricsView_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2422
|
+
{
|
|
2423
|
+
public:
|
|
2424
|
+
|
|
2425
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2426
|
+
|
|
2427
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2428
|
+
typedef void (T::*Sent)(bool);
|
|
2429
|
+
typedef void (T::*Response)();
|
|
2430
|
+
|
|
2431
|
+
CallbackNC_MetricsAdmin_enableMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2432
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2433
|
+
{
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2437
|
+
{
|
|
2438
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2439
|
+
try
|
|
2440
|
+
{
|
|
2441
|
+
__proxy->end_enableMetricsView(__result);
|
|
2442
|
+
}
|
|
2443
|
+
catch(const ::Ice::Exception& ex)
|
|
2444
|
+
{
|
|
2445
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2446
|
+
return;
|
|
2447
|
+
}
|
|
2448
|
+
if(_response)
|
|
2449
|
+
{
|
|
2450
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)();
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
private:
|
|
2455
|
+
|
|
2456
|
+
Response _response;
|
|
2457
|
+
};
|
|
2458
|
+
|
|
2459
|
+
template<class T> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2460
|
+
newCallback_MetricsAdmin_enableMetricsView(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2461
|
+
{
|
|
2462
|
+
return new CallbackNC_MetricsAdmin_enableMetricsView<T>(instance, cb, excb, sentcb);
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
template<class T> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2466
|
+
newCallback_MetricsAdmin_enableMetricsView(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2467
|
+
{
|
|
2468
|
+
return new CallbackNC_MetricsAdmin_enableMetricsView<T>(instance, 0, excb, sentcb);
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
template<class T> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2472
|
+
newCallback_MetricsAdmin_enableMetricsView(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2473
|
+
{
|
|
2474
|
+
return new CallbackNC_MetricsAdmin_enableMetricsView<T>(instance, cb, excb, sentcb);
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
template<class T> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2478
|
+
newCallback_MetricsAdmin_enableMetricsView(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2479
|
+
{
|
|
2480
|
+
return new CallbackNC_MetricsAdmin_enableMetricsView<T>(instance, 0, excb, sentcb);
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
template<class T, typename CT>
|
|
2484
|
+
class Callback_MetricsAdmin_enableMetricsView : public Callback_MetricsAdmin_enableMetricsView_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2485
|
+
{
|
|
2486
|
+
public:
|
|
2487
|
+
|
|
2488
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2489
|
+
|
|
2490
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2491
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2492
|
+
typedef void (T::*Response)(const CT&);
|
|
2493
|
+
|
|
2494
|
+
Callback_MetricsAdmin_enableMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2495
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2496
|
+
{
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2500
|
+
{
|
|
2501
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2502
|
+
try
|
|
2503
|
+
{
|
|
2504
|
+
__proxy->end_enableMetricsView(__result);
|
|
2505
|
+
}
|
|
2506
|
+
catch(const ::Ice::Exception& ex)
|
|
2507
|
+
{
|
|
2508
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2509
|
+
return;
|
|
2510
|
+
}
|
|
2511
|
+
if(_response)
|
|
2512
|
+
{
|
|
2513
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(CT::dynamicCast(__result->getCookie()));
|
|
2514
|
+
}
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
private:
|
|
2518
|
+
|
|
2519
|
+
Response _response;
|
|
2520
|
+
};
|
|
2521
|
+
|
|
2522
|
+
template<class T, typename CT> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2523
|
+
newCallback_MetricsAdmin_enableMetricsView(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)
|
|
2524
|
+
{
|
|
2525
|
+
return new Callback_MetricsAdmin_enableMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
template<class T, typename CT> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2529
|
+
newCallback_MetricsAdmin_enableMetricsView(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2530
|
+
{
|
|
2531
|
+
return new Callback_MetricsAdmin_enableMetricsView<T, CT>(instance, 0, excb, sentcb);
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
template<class T, typename CT> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2535
|
+
newCallback_MetricsAdmin_enableMetricsView(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2536
|
+
{
|
|
2537
|
+
return new Callback_MetricsAdmin_enableMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
template<class T, typename CT> Callback_MetricsAdmin_enableMetricsViewPtr
|
|
2541
|
+
newCallback_MetricsAdmin_enableMetricsView(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2542
|
+
{
|
|
2543
|
+
return new Callback_MetricsAdmin_enableMetricsView<T, CT>(instance, 0, excb, sentcb);
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
template<class T>
|
|
2547
|
+
class CallbackNC_MetricsAdmin_disableMetricsView : public Callback_MetricsAdmin_disableMetricsView_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2548
|
+
{
|
|
2549
|
+
public:
|
|
2550
|
+
|
|
2551
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2552
|
+
|
|
2553
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2554
|
+
typedef void (T::*Sent)(bool);
|
|
2555
|
+
typedef void (T::*Response)();
|
|
2556
|
+
|
|
2557
|
+
CallbackNC_MetricsAdmin_disableMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2558
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2559
|
+
{
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2563
|
+
{
|
|
2564
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2565
|
+
try
|
|
2566
|
+
{
|
|
2567
|
+
__proxy->end_disableMetricsView(__result);
|
|
2568
|
+
}
|
|
2569
|
+
catch(const ::Ice::Exception& ex)
|
|
2570
|
+
{
|
|
2571
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2572
|
+
return;
|
|
2573
|
+
}
|
|
2574
|
+
if(_response)
|
|
2575
|
+
{
|
|
2576
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)();
|
|
2577
|
+
}
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
private:
|
|
2581
|
+
|
|
2582
|
+
Response _response;
|
|
2583
|
+
};
|
|
2584
|
+
|
|
2585
|
+
template<class T> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2586
|
+
newCallback_MetricsAdmin_disableMetricsView(const IceUtil::Handle<T>& instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2587
|
+
{
|
|
2588
|
+
return new CallbackNC_MetricsAdmin_disableMetricsView<T>(instance, cb, excb, sentcb);
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
template<class T> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2592
|
+
newCallback_MetricsAdmin_disableMetricsView(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2593
|
+
{
|
|
2594
|
+
return new CallbackNC_MetricsAdmin_disableMetricsView<T>(instance, 0, excb, sentcb);
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
template<class T> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2598
|
+
newCallback_MetricsAdmin_disableMetricsView(T* instance, void (T::*cb)(), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2599
|
+
{
|
|
2600
|
+
return new CallbackNC_MetricsAdmin_disableMetricsView<T>(instance, cb, excb, sentcb);
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
template<class T> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2604
|
+
newCallback_MetricsAdmin_disableMetricsView(T* instance, void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2605
|
+
{
|
|
2606
|
+
return new CallbackNC_MetricsAdmin_disableMetricsView<T>(instance, 0, excb, sentcb);
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2609
|
+
template<class T, typename CT>
|
|
2610
|
+
class Callback_MetricsAdmin_disableMetricsView : public Callback_MetricsAdmin_disableMetricsView_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2611
|
+
{
|
|
2612
|
+
public:
|
|
2613
|
+
|
|
2614
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2615
|
+
|
|
2616
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2617
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2618
|
+
typedef void (T::*Response)(const CT&);
|
|
2619
|
+
|
|
2620
|
+
Callback_MetricsAdmin_disableMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2621
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2622
|
+
{
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2626
|
+
{
|
|
2627
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2628
|
+
try
|
|
2629
|
+
{
|
|
2630
|
+
__proxy->end_disableMetricsView(__result);
|
|
2631
|
+
}
|
|
2632
|
+
catch(const ::Ice::Exception& ex)
|
|
2633
|
+
{
|
|
2634
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2635
|
+
return;
|
|
2636
|
+
}
|
|
2637
|
+
if(_response)
|
|
2638
|
+
{
|
|
2639
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(CT::dynamicCast(__result->getCookie()));
|
|
2640
|
+
}
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
private:
|
|
2644
|
+
|
|
2645
|
+
Response _response;
|
|
2646
|
+
};
|
|
2647
|
+
|
|
2648
|
+
template<class T, typename CT> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2649
|
+
newCallback_MetricsAdmin_disableMetricsView(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)
|
|
2650
|
+
{
|
|
2651
|
+
return new Callback_MetricsAdmin_disableMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
template<class T, typename CT> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2655
|
+
newCallback_MetricsAdmin_disableMetricsView(const IceUtil::Handle<T>& instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2656
|
+
{
|
|
2657
|
+
return new Callback_MetricsAdmin_disableMetricsView<T, CT>(instance, 0, excb, sentcb);
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
template<class T, typename CT> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2661
|
+
newCallback_MetricsAdmin_disableMetricsView(T* instance, void (T::*cb)(const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2662
|
+
{
|
|
2663
|
+
return new Callback_MetricsAdmin_disableMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
template<class T, typename CT> Callback_MetricsAdmin_disableMetricsViewPtr
|
|
2667
|
+
newCallback_MetricsAdmin_disableMetricsView(T* instance, void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2668
|
+
{
|
|
2669
|
+
return new Callback_MetricsAdmin_disableMetricsView<T, CT>(instance, 0, excb, sentcb);
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
template<class T>
|
|
2673
|
+
class CallbackNC_MetricsAdmin_getMetricsView : public Callback_MetricsAdmin_getMetricsView_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2674
|
+
{
|
|
2675
|
+
public:
|
|
2676
|
+
|
|
2677
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2678
|
+
|
|
2679
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2680
|
+
typedef void (T::*Sent)(bool);
|
|
2681
|
+
typedef void (T::*Response)(const ::IceMX::MetricsView&, ::Ice::Long);
|
|
2682
|
+
|
|
2683
|
+
CallbackNC_MetricsAdmin_getMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2684
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2685
|
+
{
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2689
|
+
{
|
|
2690
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2691
|
+
::Ice::Long timestamp;
|
|
2692
|
+
::IceMX::MetricsView __ret;
|
|
2693
|
+
try
|
|
2694
|
+
{
|
|
2695
|
+
__ret = __proxy->end_getMetricsView(timestamp, __result);
|
|
2696
|
+
}
|
|
2697
|
+
catch(const ::Ice::Exception& ex)
|
|
2698
|
+
{
|
|
2699
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2700
|
+
return;
|
|
2701
|
+
}
|
|
2702
|
+
if(_response)
|
|
2703
|
+
{
|
|
2704
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret, timestamp);
|
|
2705
|
+
}
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
private:
|
|
2709
|
+
|
|
2710
|
+
Response _response;
|
|
2711
|
+
};
|
|
2712
|
+
|
|
2713
|
+
template<class T> Callback_MetricsAdmin_getMetricsViewPtr
|
|
2714
|
+
newCallback_MetricsAdmin_getMetricsView(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsView&, ::Ice::Long), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2715
|
+
{
|
|
2716
|
+
return new CallbackNC_MetricsAdmin_getMetricsView<T>(instance, cb, excb, sentcb);
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
template<class T> Callback_MetricsAdmin_getMetricsViewPtr
|
|
2720
|
+
newCallback_MetricsAdmin_getMetricsView(T* instance, void (T::*cb)(const ::IceMX::MetricsView&, ::Ice::Long), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2721
|
+
{
|
|
2722
|
+
return new CallbackNC_MetricsAdmin_getMetricsView<T>(instance, cb, excb, sentcb);
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
template<class T, typename CT>
|
|
2726
|
+
class Callback_MetricsAdmin_getMetricsView : public Callback_MetricsAdmin_getMetricsView_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2727
|
+
{
|
|
2728
|
+
public:
|
|
2729
|
+
|
|
2730
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2731
|
+
|
|
2732
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2733
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2734
|
+
typedef void (T::*Response)(const ::IceMX::MetricsView&, ::Ice::Long, const CT&);
|
|
2735
|
+
|
|
2736
|
+
Callback_MetricsAdmin_getMetricsView(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2737
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2738
|
+
{
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2742
|
+
{
|
|
2743
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2744
|
+
::Ice::Long timestamp;
|
|
2745
|
+
::IceMX::MetricsView __ret;
|
|
2746
|
+
try
|
|
2747
|
+
{
|
|
2748
|
+
__ret = __proxy->end_getMetricsView(timestamp, __result);
|
|
2749
|
+
}
|
|
2750
|
+
catch(const ::Ice::Exception& ex)
|
|
2751
|
+
{
|
|
2752
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2753
|
+
return;
|
|
2754
|
+
}
|
|
2755
|
+
if(_response)
|
|
2756
|
+
{
|
|
2757
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, timestamp, CT::dynamicCast(__result->getCookie()));
|
|
2758
|
+
}
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
private:
|
|
2762
|
+
|
|
2763
|
+
Response _response;
|
|
2764
|
+
};
|
|
2765
|
+
|
|
2766
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsViewPtr
|
|
2767
|
+
newCallback_MetricsAdmin_getMetricsView(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsView&, ::Ice::Long, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2768
|
+
{
|
|
2769
|
+
return new Callback_MetricsAdmin_getMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsViewPtr
|
|
2773
|
+
newCallback_MetricsAdmin_getMetricsView(T* instance, void (T::*cb)(const ::IceMX::MetricsView&, ::Ice::Long, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2774
|
+
{
|
|
2775
|
+
return new Callback_MetricsAdmin_getMetricsView<T, CT>(instance, cb, excb, sentcb);
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
template<class T>
|
|
2779
|
+
class CallbackNC_MetricsAdmin_getMapMetricsFailures : public Callback_MetricsAdmin_getMapMetricsFailures_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2780
|
+
{
|
|
2781
|
+
public:
|
|
2782
|
+
|
|
2783
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2784
|
+
|
|
2785
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2786
|
+
typedef void (T::*Sent)(bool);
|
|
2787
|
+
typedef void (T::*Response)(const ::IceMX::MetricsFailuresSeq&);
|
|
2788
|
+
|
|
2789
|
+
CallbackNC_MetricsAdmin_getMapMetricsFailures(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2790
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2791
|
+
{
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2795
|
+
{
|
|
2796
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2797
|
+
::IceMX::MetricsFailuresSeq __ret;
|
|
2798
|
+
try
|
|
2799
|
+
{
|
|
2800
|
+
__ret = __proxy->end_getMapMetricsFailures(__result);
|
|
2801
|
+
}
|
|
2802
|
+
catch(const ::Ice::Exception& ex)
|
|
2803
|
+
{
|
|
2804
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2805
|
+
return;
|
|
2806
|
+
}
|
|
2807
|
+
if(_response)
|
|
2808
|
+
{
|
|
2809
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
2810
|
+
}
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
private:
|
|
2814
|
+
|
|
2815
|
+
Response _response;
|
|
2816
|
+
};
|
|
2817
|
+
|
|
2818
|
+
template<class T> Callback_MetricsAdmin_getMapMetricsFailuresPtr
|
|
2819
|
+
newCallback_MetricsAdmin_getMapMetricsFailures(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsFailuresSeq&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2820
|
+
{
|
|
2821
|
+
return new CallbackNC_MetricsAdmin_getMapMetricsFailures<T>(instance, cb, excb, sentcb);
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
template<class T> Callback_MetricsAdmin_getMapMetricsFailuresPtr
|
|
2825
|
+
newCallback_MetricsAdmin_getMapMetricsFailures(T* instance, void (T::*cb)(const ::IceMX::MetricsFailuresSeq&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2826
|
+
{
|
|
2827
|
+
return new CallbackNC_MetricsAdmin_getMapMetricsFailures<T>(instance, cb, excb, sentcb);
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
template<class T, typename CT>
|
|
2831
|
+
class Callback_MetricsAdmin_getMapMetricsFailures : public Callback_MetricsAdmin_getMapMetricsFailures_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2832
|
+
{
|
|
2833
|
+
public:
|
|
2834
|
+
|
|
2835
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2836
|
+
|
|
2837
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2838
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2839
|
+
typedef void (T::*Response)(const ::IceMX::MetricsFailuresSeq&, const CT&);
|
|
2840
|
+
|
|
2841
|
+
Callback_MetricsAdmin_getMapMetricsFailures(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2842
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2843
|
+
{
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2847
|
+
{
|
|
2848
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2849
|
+
::IceMX::MetricsFailuresSeq __ret;
|
|
2850
|
+
try
|
|
2851
|
+
{
|
|
2852
|
+
__ret = __proxy->end_getMapMetricsFailures(__result);
|
|
2853
|
+
}
|
|
2854
|
+
catch(const ::Ice::Exception& ex)
|
|
2855
|
+
{
|
|
2856
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2857
|
+
return;
|
|
2858
|
+
}
|
|
2859
|
+
if(_response)
|
|
2860
|
+
{
|
|
2861
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
2862
|
+
}
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
private:
|
|
2866
|
+
|
|
2867
|
+
Response _response;
|
|
2868
|
+
};
|
|
2869
|
+
|
|
2870
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMapMetricsFailuresPtr
|
|
2871
|
+
newCallback_MetricsAdmin_getMapMetricsFailures(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsFailuresSeq&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2872
|
+
{
|
|
2873
|
+
return new Callback_MetricsAdmin_getMapMetricsFailures<T, CT>(instance, cb, excb, sentcb);
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMapMetricsFailuresPtr
|
|
2877
|
+
newCallback_MetricsAdmin_getMapMetricsFailures(T* instance, void (T::*cb)(const ::IceMX::MetricsFailuresSeq&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2878
|
+
{
|
|
2879
|
+
return new Callback_MetricsAdmin_getMapMetricsFailures<T, CT>(instance, cb, excb, sentcb);
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
template<class T>
|
|
2883
|
+
class CallbackNC_MetricsAdmin_getMetricsFailures : public Callback_MetricsAdmin_getMetricsFailures_Base, public ::IceInternal::TwowayCallbackNC<T>
|
|
2884
|
+
{
|
|
2885
|
+
public:
|
|
2886
|
+
|
|
2887
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2888
|
+
|
|
2889
|
+
typedef void (T::*Exception)(const ::Ice::Exception&);
|
|
2890
|
+
typedef void (T::*Sent)(bool);
|
|
2891
|
+
typedef void (T::*Response)(const ::IceMX::MetricsFailures&);
|
|
2892
|
+
|
|
2893
|
+
CallbackNC_MetricsAdmin_getMetricsFailures(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2894
|
+
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2895
|
+
{
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2899
|
+
{
|
|
2900
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2901
|
+
::IceMX::MetricsFailures __ret;
|
|
2902
|
+
try
|
|
2903
|
+
{
|
|
2904
|
+
__ret = __proxy->end_getMetricsFailures(__result);
|
|
2905
|
+
}
|
|
2906
|
+
catch(const ::Ice::Exception& ex)
|
|
2907
|
+
{
|
|
2908
|
+
::IceInternal::CallbackNC<T>::exception(__result, ex);
|
|
2909
|
+
return;
|
|
2910
|
+
}
|
|
2911
|
+
if(_response)
|
|
2912
|
+
{
|
|
2913
|
+
(::IceInternal::CallbackNC<T>::_callback.get()->*_response)(__ret);
|
|
2914
|
+
}
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
private:
|
|
2918
|
+
|
|
2919
|
+
Response _response;
|
|
2920
|
+
};
|
|
2921
|
+
|
|
2922
|
+
template<class T> Callback_MetricsAdmin_getMetricsFailuresPtr
|
|
2923
|
+
newCallback_MetricsAdmin_getMetricsFailures(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsFailures&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2924
|
+
{
|
|
2925
|
+
return new CallbackNC_MetricsAdmin_getMetricsFailures<T>(instance, cb, excb, sentcb);
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
template<class T> Callback_MetricsAdmin_getMetricsFailuresPtr
|
|
2929
|
+
newCallback_MetricsAdmin_getMetricsFailures(T* instance, void (T::*cb)(const ::IceMX::MetricsFailures&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
|
|
2930
|
+
{
|
|
2931
|
+
return new CallbackNC_MetricsAdmin_getMetricsFailures<T>(instance, cb, excb, sentcb);
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
template<class T, typename CT>
|
|
2935
|
+
class Callback_MetricsAdmin_getMetricsFailures : public Callback_MetricsAdmin_getMetricsFailures_Base, public ::IceInternal::TwowayCallback<T, CT>
|
|
2936
|
+
{
|
|
2937
|
+
public:
|
|
2938
|
+
|
|
2939
|
+
typedef IceUtil::Handle<T> TPtr;
|
|
2940
|
+
|
|
2941
|
+
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
|
|
2942
|
+
typedef void (T::*Sent)(bool , const CT&);
|
|
2943
|
+
typedef void (T::*Response)(const ::IceMX::MetricsFailures&, const CT&);
|
|
2944
|
+
|
|
2945
|
+
Callback_MetricsAdmin_getMetricsFailures(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
|
|
2946
|
+
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), _response(cb)
|
|
2947
|
+
{
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
virtual void completed(const ::Ice::AsyncResultPtr& __result) const
|
|
2951
|
+
{
|
|
2952
|
+
::IceMX::MetricsAdminPrx __proxy = ::IceMX::MetricsAdminPrx::uncheckedCast(__result->getProxy());
|
|
2953
|
+
::IceMX::MetricsFailures __ret;
|
|
2954
|
+
try
|
|
2955
|
+
{
|
|
2956
|
+
__ret = __proxy->end_getMetricsFailures(__result);
|
|
2957
|
+
}
|
|
2958
|
+
catch(const ::Ice::Exception& ex)
|
|
2959
|
+
{
|
|
2960
|
+
::IceInternal::Callback<T, CT>::exception(__result, ex);
|
|
2961
|
+
return;
|
|
2962
|
+
}
|
|
2963
|
+
if(_response)
|
|
2964
|
+
{
|
|
2965
|
+
(::IceInternal::Callback<T, CT>::_callback.get()->*_response)(__ret, CT::dynamicCast(__result->getCookie()));
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
private:
|
|
2970
|
+
|
|
2971
|
+
Response _response;
|
|
2972
|
+
};
|
|
2973
|
+
|
|
2974
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsFailuresPtr
|
|
2975
|
+
newCallback_MetricsAdmin_getMetricsFailures(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::IceMX::MetricsFailures&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2976
|
+
{
|
|
2977
|
+
return new Callback_MetricsAdmin_getMetricsFailures<T, CT>(instance, cb, excb, sentcb);
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
template<class T, typename CT> Callback_MetricsAdmin_getMetricsFailuresPtr
|
|
2981
|
+
newCallback_MetricsAdmin_getMetricsFailures(T* instance, void (T::*cb)(const ::IceMX::MetricsFailures&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
|
|
2982
|
+
{
|
|
2983
|
+
return new Callback_MetricsAdmin_getMetricsFailures<T, CT>(instance, cb, excb, sentcb);
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
2989
|
+
#endif
|