zeroc-ice 3.7.0 → 3.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ICE_LICENSE +1 -1
- data/bin/slice2rb +1 -1
- data/ext/Communicator.cpp +72 -2
- data/ext/Communicator.h +1 -1
- data/ext/Config.h +11 -1
- data/ext/Connection.cpp +22 -2
- data/ext/Connection.h +4 -1
- data/ext/Endpoint.cpp +1 -1
- data/ext/Endpoint.h +1 -1
- data/ext/ImplicitContext.cpp +1 -1
- data/ext/ImplicitContext.h +1 -1
- data/ext/Init.cpp +1 -1
- data/ext/Logger.cpp +1 -1
- data/ext/Logger.h +1 -1
- data/ext/Operation.cpp +1 -1
- data/ext/Operation.h +1 -1
- data/ext/Properties.cpp +1 -1
- data/ext/Properties.h +1 -1
- data/ext/Proxy.cpp +70 -1
- data/ext/Proxy.h +1 -1
- data/ext/Slice.cpp +1 -1
- data/ext/Slice.h +1 -1
- data/ext/Types.cpp +21 -5
- data/ext/Types.h +1 -1
- data/ext/Util.cpp +1 -1
- data/ext/Util.h +1 -1
- data/ext/ValueFactoryManager.cpp +2 -2
- data/ext/ValueFactoryManager.h +2 -2
- data/ext/ice/cpp/include/Ice/Application.h +234 -76
- data/ext/ice/cpp/include/Ice/AsyncResult.h +77 -1
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +1 -1
- data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +35 -2
- data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -1
- data/ext/ice/cpp/include/Ice/Buffer.h +1 -1
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +43 -1
- data/ext/ice/cpp/include/Ice/Comparable.h +81 -1
- data/ext/ice/cpp/include/Ice/Config.h +8 -1
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +97 -1
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +3 -1
- data/ext/ice/cpp/include/Ice/ConsoleUtil.h +1 -1
- data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +1 -1
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +17 -2
- data/ext/ice/cpp/include/Ice/Dispatcher.h +22 -2
- data/ext/ice/cpp/include/Ice/DynamicLibrary.h +1 -1
- data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -1
- data/ext/ice/cpp/include/Ice/Exception.h +57 -15
- data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +19 -1
- data/ext/ice/cpp/include/Ice/FactoryTable.h +12 -2
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
- data/ext/ice/cpp/include/Ice/Format.h +13 -14
- data/ext/ice/cpp/include/Ice/Functional.h +6 -1
- data/ext/ice/cpp/include/Ice/GCObject.h +1 -1
- data/ext/ice/cpp/include/Ice/Handle.h +1 -1
- data/ext/ice/cpp/include/Ice/Ice.h +1 -1
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +38 -3
- data/ext/ice/cpp/include/Ice/Incoming.h +15 -2
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +37 -4
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +1 -1
- data/ext/ice/cpp/include/Ice/Initialize.h +764 -98
- data/ext/ice/cpp/include/Ice/InputStream.h +637 -112
- data/ext/ice/cpp/include/Ice/InstanceF.h +1 -1
- data/ext/ice/cpp/include/Ice/InterfaceByValue.h +17 -1
- data/ext/ice/cpp/include/Ice/LocalObject.h +5 -1
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +37 -6
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +3 -1
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +3 -1
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +3 -1
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +46 -23
- data/ext/ice/cpp/include/Ice/Object.h +338 -47
- data/ext/ice/cpp/include/Ice/ObjectF.h +5 -1
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +1 -1
- data/ext/ice/cpp/include/Ice/Optional.h +22 -6
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +15 -1
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +1 -1
- data/ext/ice/cpp/include/Ice/OutputStream.h +436 -92
- data/ext/ice/cpp/include/Ice/Protocol.h +31 -1
- data/ext/ice/cpp/include/Ice/Proxy.h +2244 -190
- data/ext/ice/cpp/include/Ice/ProxyF.h +3 -1
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +10 -1
- data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
- data/ext/ice/cpp/include/Ice/RegisterPlugins.h +67 -9
- data/ext/ice/cpp/include/Ice/RequestHandlerF.h +1 -1
- data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +1 -1
- data/ext/ice/cpp/include/Ice/SHA1.h +1 -1
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
- data/ext/ice/cpp/include/Ice/Service.h +267 -138
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -1
- data/ext/ice/cpp/include/Ice/SlicedData.h +80 -33
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +4 -1
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +324 -116
- data/ext/ice/cpp/include/Ice/StringConverter.h +32 -1
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
- data/ext/ice/cpp/include/Ice/UUID.h +2 -1
- data/ext/ice/cpp/include/Ice/UniquePtr.h +2 -2
- data/ext/ice/cpp/include/Ice/UniqueRef.h +6 -2
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +6 -1
- data/ext/ice/cpp/include/Ice/Value.h +41 -1
- data/ext/ice/cpp/include/Ice/ValueF.h +3 -1
- data/ext/ice/cpp/include/IceSSL/Config.h +1 -1
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +1 -1
- data/ext/ice/cpp/include/IceSSL/OpenSSL.h +75 -53
- data/ext/ice/cpp/include/IceSSL/Plugin.h +323 -218
- data/ext/ice/cpp/include/IceSSL/SChannel.h +34 -27
- data/ext/ice/cpp/include/IceSSL/SecureTransport.h +35 -28
- data/ext/ice/cpp/include/IceSSL/UWP.h +33 -24
- data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Cond.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Config.h +11 -3
- data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +1 -1
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +59 -31
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Exception.h +1 -1
- data/ext/ice/cpp/include/IceUtil/FileUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Functional.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Handle.h +1 -1
- data/ext/ice/cpp/include/IceUtil/IceUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Iterator.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Lock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Mutex.h +2 -5
- data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +1 -1
- data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Optional.h +95 -1
- data/ext/ice/cpp/include/IceUtil/Options.h +1 -1
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
- data/ext/ice/cpp/include/IceUtil/RecMutex.h +1 -1
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +4 -4
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +5 -3
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Shared.h +1 -1
- data/ext/ice/cpp/include/IceUtil/StopWatch.h +1 -1
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +106 -86
- data/ext/ice/cpp/include/IceUtil/StringUtil.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Thread.h +1 -1
- data/ext/ice/cpp/include/IceUtil/ThreadException.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Time.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Timer.h +5 -1
- data/ext/ice/cpp/include/IceUtil/UUID.h +5 -1
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +80 -20
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +927 -130
- data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Connection.h +990 -194
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +21 -9
- data/ext/ice/cpp/include/generated/Ice/Current.h +180 -17
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +484 -118
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +41 -17
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +29 -3
- data/ext/ice/cpp/include/generated/Ice/FacetMap.h +11 -5
- data/ext/ice/cpp/include/generated/Ice/Identity.h +56 -7
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +150 -28
- data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +629 -83
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +19 -7
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +5104 -794
- data/ext/ice/cpp/include/generated/Ice/Locator.h +2222 -443
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +27 -9
- data/ext/ice/cpp/include/generated/Ice/Logger.h +104 -26
- data/ext/ice/cpp/include/generated/Ice/LoggerF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +2534 -455
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1004 -126
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +72 -12
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +142 -28
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +17 -7
- data/ext/ice/cpp/include/generated/Ice/Process.h +511 -71
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +18 -6
- data/ext/ice/cpp/include/generated/Ice/Properties.h +306 -58
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +737 -121
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +22 -8
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +1526 -279
- data/ext/ice/cpp/include/generated/Ice/Router.h +1009 -198
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +18 -6
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +174 -18
- data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +13 -5
- data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +13 -3
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +177 -23
- data/ext/ice/cpp/include/generated/Ice/Version.h +43 -13
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +71 -15
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +13 -5
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +39 -9
- data/ext/ice/cpp/src/Ice/ACM.cpp +12 -3
- data/ext/ice/cpp/src/Ice/ACM.h +1 -1
- data/ext/ice/cpp/src/Ice/ACMF.h +1 -1
- data/ext/ice/cpp/src/Ice/Acceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Acceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -1
- data/ext/ice/cpp/src/Ice/ArgVector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ArgVector.h +1 -1
- data/ext/ice/cpp/src/Ice/AsyncResult.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Base64.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Base64.h +1 -1
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +1 -1
- data/ext/ice/cpp/src/Ice/Buffer.cpp +1 -1
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/Communicator.cpp +6 -4
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +34 -13
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +10 -10
- data/ext/ice/cpp/src/Ice/Cond.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +11 -6
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +1 -1
- data/ext/ice/cpp/src/Ice/Connection.cpp +27 -11
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +24 -19
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +45 -37
- data/ext/ice/cpp/src/Ice/ConnectionI.h +10 -8
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/Connector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Connector.h +1 -1
- data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -1
- data/ext/ice/cpp/src/Ice/CountDownLatch.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +5 -7
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -1
- data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -1
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +24 -10
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +7 -13
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +2 -2
- data/ext/ice/cpp/src/Ice/EndpointI.h +5 -5
- data/ext/ice/cpp/src/Ice/EndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/EventHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +1 -1
- data/ext/ice/cpp/src/Ice/Exception.cpp +1 -1
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +1 -1
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +1 -1
- data/ext/ice/cpp/src/Ice/GCObject.cpp +1 -1
- data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -1
- data/ext/ice/cpp/src/Ice/HttpParser.h +1 -1
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +24 -29
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +5 -5
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +1 -1
- data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +2 -13
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +1 -1
- data/ext/ice/cpp/src/Ice/Incoming.cpp +1 -1
- data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/IncomingRequest.h +1 -1
- data/ext/ice/cpp/src/Ice/Initialize.cpp +10 -16
- data/ext/ice/cpp/src/Ice/InputStream.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Instance.cpp +13 -34
- data/ext/ice/cpp/src/Ice/Instance.h +1 -1
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +33 -13
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/InstrumentationI.h +1 -1
- data/ext/ice/cpp/src/Ice/LocalException.cpp +279 -279
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Locator.cpp +287 -174
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +4 -9
- data/ext/ice/cpp/src/Ice/LocatorInfo.h +1 -1
- data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -1
- data/ext/ice/cpp/src/Ice/Logger.cpp +6 -4
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/LoggerAdminI.h +1 -1
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/LoggerI.h +1 -1
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Metrics.cpp +297 -109
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +2 -7
- data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Network.cpp +188 -225
- data/ext/ice/cpp/src/Ice/Network.h +3 -12
- data/ext/ice/cpp/src/Ice/NetworkF.h +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxy.h +1 -1
- data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -1
- data/ext/ice/cpp/src/Ice/Object.cpp +7 -4
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +53 -19
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +116 -150
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +11 -11
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +25 -42
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Plugin.cpp +9 -5
- data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +15 -34
- data/ext/ice/cpp/src/Ice/PluginManagerI.h +3 -3
- data/ext/ice/cpp/src/Ice/Process.cpp +69 -40
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Properties.cpp +6 -4
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +89 -54
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +1 -1
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +15 -21
- data/ext/ice/cpp/src/Ice/PropertiesI.h +10 -10
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +4 -2
- data/ext/ice/cpp/src/Ice/PropertyNames.h +2 -2
- data/ext/ice/cpp/src/Ice/Protocol.cpp +5 -13
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +1 -1
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -1
- data/ext/ice/cpp/src/Ice/Proxy.cpp +46 -1
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ProxyFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/Reference.cpp +56 -6
- data/ext/ice/cpp/src/Ice/Reference.h +13 -2
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +51 -90
- data/ext/ice/cpp/src/Ice/ReferenceFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -1
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +203 -117
- data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +1 -1
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueue.h +1 -1
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
- data/ext/ice/cpp/src/Ice/Router.cpp +167 -89
- data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/RouterInfo.cpp +6 -28
- data/ext/ice/cpp/src/Ice/RouterInfo.h +1 -3
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
- data/ext/ice/cpp/src/Ice/SHA1.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Selector.cpp +19 -26
- data/ext/ice/cpp/src/Ice/Selector.h +1 -1
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +6 -4
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ServantManager.cpp +15 -31
- data/ext/ice/cpp/src/Ice/ServantManager.h +1 -1
- data/ext/ice/cpp/src/Ice/SharedContext.h +1 -1
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +3 -3
- data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +1 -1
- data/ext/ice/cpp/src/Ice/SlicedData.cpp +1 -1
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +32 -52
- data/ext/ice/cpp/src/Ice/StreamSocket.h +1 -1
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +10 -1
- data/ext/ice/cpp/src/Ice/StringUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +1 -1
- data/ext/ice/cpp/src/Ice/SysLoggerI.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +5 -13
- data/ext/ice/cpp/src/Ice/TcpAcceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +8 -11
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +1 -1
- data/ext/ice/cpp/src/Ice/Thread.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +13 -13
- data/ext/ice/cpp/src/Ice/ThreadPool.h +1 -1
- data/ext/ice/cpp/src/Ice/Timer.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -1
- data/ext/ice/cpp/src/Ice/TraceLevelsF.h +1 -1
- data/ext/ice/cpp/src/Ice/TraceUtil.cpp +1 -1
- data/ext/ice/cpp/src/Ice/TraceUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Transceiver.h +1 -1
- data/ext/ice/cpp/src/Ice/TransceiverF.h +1 -1
- data/ext/ice/cpp/src/Ice/UdpConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +19 -27
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +2 -2
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +17 -54
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +1 -1
- data/ext/ice/cpp/src/Ice/Value.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +9 -5
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +3 -6
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +2 -2
- data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
- data/ext/ice/cpp/src/Ice/VirtualShared.h +1 -1
- data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +1 -1
- data/ext/ice/cpp/src/Ice/WSAcceptor.h +1 -1
- data/ext/ice/cpp/src/Ice/WSConnector.cpp +1 -1
- data/ext/ice/cpp/src/Ice/WSConnector.h +1 -1
- data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +4 -5
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +2 -2
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +8 -9
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +85 -27
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +599 -113
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +1 -1
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +1 -1
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +1 -1
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +70 -24
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +635 -69
- data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +1 -1
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +71 -9
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +2 -4
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/CertificateI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +6 -4
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +2 -4
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +2 -2
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +2 -2
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +6 -4
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/Instance.h +1 -1
- data/ext/ice/cpp/src/IceSSL/InstanceF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +25 -62
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +1 -1
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/PluginI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/RFC2253.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +19 -27
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +7 -16
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +7 -10
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +1 -1
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +4 -5
- data/ext/ice/cpp/src/IceSSL/TrustManager.h +1 -1
- data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngine.h +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +1 -1
- data/ext/ice/cpp/src/IceSSL/Util.cpp +1 -1
- data/ext/ice/cpp/src/IceSSL/Util.h +1 -1
- data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +1 -1
- data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +5 -5
- data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Options.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Random.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +1 -5
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/Unicode.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Unicode.h +1 -1
- data/ext/ice/cpp/src/IceUtil/UtilException.cpp +1 -1
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +160 -150
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +9 -8
- data/ext/ice/cpp/src/Slice/Checksum.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Checksum.h +1 -1
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +1 -1
- data/ext/ice/cpp/src/Slice/FileTracker.h +1 -1
- data/ext/ice/cpp/src/Slice/Grammar.cpp +567 -585
- data/ext/ice/cpp/src/Slice/Grammar.h +2 -2
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +131 -47
- data/ext/ice/cpp/src/Slice/JavaUtil.h +10 -5
- data/ext/ice/cpp/src/Slice/MD5.cpp +1 -1
- data/ext/ice/cpp/src/Slice/MD5.h +1 -1
- data/ext/ice/cpp/src/Slice/PHPUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/PHPUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Parser.cpp +383 -101
- data/ext/ice/cpp/src/Slice/Parser.h +40 -3
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
- data/ext/ice/cpp/src/Slice/Preprocessor.h +2 -2
- data/ext/ice/cpp/src/Slice/Python.cpp +7 -15
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +66 -9
- data/ext/ice/cpp/src/Slice/PythonUtil.h +2 -2
- data/ext/ice/cpp/src/Slice/Ruby.cpp +1 -1
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +2 -2
- data/ext/ice/cpp/src/Slice/RubyUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Scanner.cpp +214 -135
- data/ext/ice/cpp/src/Slice/SliceUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +99 -17
- data/ext/ice/cpp/src/Slice/Util.h +5 -4
- data/ice.gemspec +2 -2
- data/lib/Glacier2.rb +1 -1
- data/lib/Glacier2/Metrics.rb +2 -2
- data/lib/Glacier2/PermissionsVerifier.rb +2 -2
- data/lib/Glacier2/PermissionsVerifierF.rb +2 -2
- data/lib/Glacier2/Router.rb +2 -2
- data/lib/Glacier2/RouterF.rb +2 -2
- data/lib/Glacier2/SSLInfo.rb +2 -2
- data/lib/Glacier2/Session.rb +2 -2
- data/lib/Ice.rb +2 -2
- data/lib/Ice/BuiltinSequences.rb +2 -2
- data/lib/Ice/Communicator.rb +2 -2
- data/lib/Ice/CommunicatorF.rb +2 -2
- data/lib/Ice/Connection.rb +2 -2
- data/lib/Ice/ConnectionF.rb +2 -2
- data/lib/Ice/Current.rb +2 -2
- data/lib/Ice/Endpoint.rb +2 -2
- data/lib/Ice/EndpointF.rb +2 -2
- data/lib/Ice/EndpointTypes.rb +2 -2
- data/lib/Ice/FacetMap.rb +2 -2
- data/lib/Ice/Identity.rb +2 -2
- data/lib/Ice/ImplicitContext.rb +2 -2
- data/lib/Ice/ImplicitContextF.rb +2 -2
- data/lib/Ice/Instrumentation.rb +2 -2
- data/lib/Ice/InstrumentationF.rb +2 -2
- data/lib/Ice/LocalException.rb +2 -2
- data/lib/Ice/Locator.rb +2 -2
- data/lib/Ice/LocatorF.rb +2 -2
- data/lib/Ice/Logger.rb +2 -2
- data/lib/Ice/LoggerF.rb +2 -2
- data/lib/Ice/Metrics.rb +2 -2
- data/lib/Ice/ObjectAdapter.rb +2 -2
- data/lib/Ice/ObjectAdapterF.rb +2 -2
- data/lib/Ice/ObjectFactory.rb +2 -2
- data/lib/Ice/Plugin.rb +2 -2
- data/lib/Ice/PluginF.rb +2 -2
- data/lib/Ice/Process.rb +2 -2
- data/lib/Ice/ProcessF.rb +2 -2
- data/lib/Ice/Properties.rb +2 -2
- data/lib/Ice/PropertiesAdmin.rb +2 -2
- data/lib/Ice/PropertiesF.rb +2 -2
- data/lib/Ice/RemoteLogger.rb +2 -2
- data/lib/Ice/Router.rb +2 -2
- data/lib/Ice/RouterF.rb +2 -2
- data/lib/Ice/ServantLocator.rb +2 -2
- data/lib/Ice/ServantLocatorF.rb +2 -2
- data/lib/Ice/SliceChecksumDict.rb +2 -2
- data/lib/Ice/ValueFactory.rb +2 -2
- data/lib/Ice/Version.rb +2 -2
- data/lib/IceBox.rb +1 -1
- data/lib/IceBox/IceBox.rb +2 -2
- data/lib/IceGrid.rb +1 -1
- data/lib/IceGrid/Admin.rb +2 -2
- data/lib/IceGrid/Descriptor.rb +2 -2
- data/lib/IceGrid/Exception.rb +2 -2
- data/lib/IceGrid/FileParser.rb +2 -2
- data/lib/IceGrid/PluginFacade.rb +2 -2
- data/lib/IceGrid/Registry.rb +2 -2
- data/lib/IceGrid/Session.rb +2 -2
- data/lib/IceGrid/UserAccountMapper.rb +2 -2
- data/lib/IcePatch2.rb +1 -1
- data/lib/IcePatch2/FileInfo.rb +2 -2
- data/lib/IcePatch2/FileServer.rb +2 -2
- data/lib/IceStorm.rb +1 -1
- data/lib/IceStorm/IceStorm.rb +2 -2
- data/lib/IceStorm/Metrics.rb +2 -2
- data/slice/Glacier2/Metrics.ice +2 -2
- data/slice/Glacier2/PermissionsVerifier.ice +2 -2
- data/slice/Glacier2/PermissionsVerifierF.ice +2 -2
- data/slice/Glacier2/Router.ice +2 -2
- data/slice/Glacier2/RouterF.ice +2 -2
- data/slice/Glacier2/SSLInfo.ice +2 -2
- data/slice/Glacier2/Session.ice +2 -2
- data/slice/Ice/BuiltinSequences.ice +2 -2
- data/slice/Ice/Communicator.ice +66 -73
- data/slice/Ice/CommunicatorF.ice +2 -2
- data/slice/Ice/Connection.ice +47 -17
- data/slice/Ice/ConnectionF.ice +2 -2
- data/slice/Ice/Current.ice +4 -5
- data/slice/Ice/Endpoint.ice +16 -16
- data/slice/Ice/EndpointF.ice +2 -2
- data/slice/Ice/EndpointTypes.ice +2 -2
- data/slice/Ice/FacetMap.ice +2 -2
- data/slice/Ice/Identity.ice +2 -2
- data/slice/Ice/ImplicitContext.ice +6 -6
- data/slice/Ice/ImplicitContextF.ice +2 -2
- data/slice/Ice/Instrumentation.ice +2 -2
- data/slice/Ice/InstrumentationF.ice +2 -2
- data/slice/Ice/LocalException.ice +2 -2
- data/slice/Ice/Locator.ice +3 -3
- data/slice/Ice/LocatorF.ice +2 -2
- data/slice/Ice/Logger.ice +2 -2
- data/slice/Ice/LoggerF.ice +2 -2
- data/slice/Ice/Metrics.ice +2 -2
- data/slice/Ice/ObjectAdapter.ice +10 -10
- data/slice/Ice/ObjectAdapterF.ice +2 -2
- data/slice/Ice/ObjectFactory.ice +3 -3
- data/slice/Ice/Plugin.ice +4 -4
- data/slice/Ice/PluginF.ice +2 -2
- data/slice/Ice/Process.ice +2 -2
- data/slice/Ice/ProcessF.ice +2 -2
- data/slice/Ice/Properties.ice +11 -11
- data/slice/Ice/PropertiesAdmin.ice +2 -2
- data/slice/Ice/PropertiesF.ice +2 -2
- data/slice/Ice/RemoteLogger.ice +12 -23
- data/slice/Ice/Router.ice +2 -2
- data/slice/Ice/RouterF.ice +2 -2
- data/slice/Ice/ServantLocator.ice +2 -2
- data/slice/Ice/ServantLocatorF.ice +2 -2
- data/slice/Ice/SliceChecksumDict.ice +2 -2
- data/slice/Ice/ValueFactory.ice +14 -16
- data/slice/Ice/Version.ice +2 -2
- data/slice/IceBT/ConnectionInfo.ice +2 -2
- data/slice/IceBT/EndpointInfo.ice +2 -2
- data/slice/IceBT/Types.ice +2 -2
- data/slice/IceBox/IceBox.ice +3 -4
- data/slice/IceDiscovery/IceDiscovery.ice +2 -2
- data/slice/IceGrid/Admin.ice +2 -2
- data/slice/IceGrid/Descriptor.ice +2 -2
- data/slice/IceGrid/Exception.ice +2 -2
- data/slice/IceGrid/FileParser.ice +2 -2
- data/slice/IceGrid/PluginFacade.ice +6 -6
- data/slice/IceGrid/Registry.ice +2 -2
- data/slice/IceGrid/Session.ice +2 -2
- data/slice/IceGrid/UserAccountMapper.ice +2 -2
- data/slice/IceIAP/ConnectionInfo.ice +2 -2
- data/slice/IceIAP/EndpointInfo.ice +2 -2
- data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +2 -2
- data/slice/IcePatch2/FileInfo.ice +2 -2
- data/slice/IcePatch2/FileServer.ice +2 -2
- data/slice/IceSSL/ConnectionInfo.ice +2 -2
- data/slice/IceSSL/ConnectionInfoF.ice +2 -2
- data/slice/IceSSL/EndpointInfo.ice +2 -2
- data/slice/IceStorm/IceStorm.ice +5 -6
- data/slice/IceStorm/Metrics.ice +2 -2
- metadata +3 -13
- data/BZIP2_LICENSE +0 -42
- data/ext/ice/bzip2/blocksort.c +0 -1094
- data/ext/ice/bzip2/bzlib.c +0 -1572
- data/ext/ice/bzip2/bzlib.h +0 -282
- data/ext/ice/bzip2/bzlib_private.h +0 -509
- data/ext/ice/bzip2/compress.c +0 -672
- data/ext/ice/bzip2/crctable.c +0 -104
- data/ext/ice/bzip2/decompress.c +0 -646
- data/ext/ice/bzip2/huffman.c +0 -205
- data/ext/ice/bzip2/randtable.c +0 -84
@@ -1,13 +1,13 @@
|
|
1
1
|
// **********************************************************************
|
2
2
|
//
|
3
|
-
// Copyright (c) 2003-
|
3
|
+
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
|
4
4
|
//
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
7
7
|
//
|
8
8
|
// **********************************************************************
|
9
9
|
//
|
10
|
-
// Ice version 3.7.
|
10
|
+
// Ice version 3.7.1
|
11
11
|
//
|
12
12
|
// <auto-generated>
|
13
13
|
//
|
@@ -40,7 +40,7 @@
|
|
40
40
|
# if ICE_INT_VERSION % 100 > 50
|
41
41
|
# error Beta header file detected
|
42
42
|
# endif
|
43
|
-
# if ICE_INT_VERSION % 100 <
|
43
|
+
# if ICE_INT_VERSION % 100 < 1
|
44
44
|
# error Ice patch level mismatch!
|
45
45
|
# endif
|
46
46
|
#endif
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// **********************************************************************
|
2
2
|
//
|
3
|
-
// Copyright (c) 2003-
|
3
|
+
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
|
4
4
|
//
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// **********************************************************************
|
2
2
|
//
|
3
|
-
// Copyright (c) 2003-
|
3
|
+
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
|
4
4
|
//
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
@@ -1,13 +1,13 @@
|
|
1
1
|
// **********************************************************************
|
2
2
|
//
|
3
|
-
// Copyright (c) 2003-
|
3
|
+
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
|
4
4
|
//
|
5
5
|
// This copy of Ice is licensed to you under the terms described in the
|
6
6
|
// ICE_LICENSE file included in this distribution.
|
7
7
|
//
|
8
8
|
// **********************************************************************
|
9
9
|
//
|
10
|
-
// Ice version 3.7.
|
10
|
+
// Ice version 3.7.1
|
11
11
|
//
|
12
12
|
// <auto-generated>
|
13
13
|
//
|
@@ -42,7 +42,7 @@
|
|
42
42
|
# if ICE_INT_VERSION % 100 > 50
|
43
43
|
# error Beta header file detected
|
44
44
|
# endif
|
45
|
-
# if ICE_INT_VERSION % 100 <
|
45
|
+
# if ICE_INT_VERSION % 100 < 1
|
46
46
|
# error Ice patch level mismatch!
|
47
47
|
# endif
|
48
48
|
#endif
|
@@ -777,14 +777,14 @@ Ice::ResponseSentException::ice_staticId()
|
|
777
777
|
|
778
778
|
#else // C++98 mapping
|
779
779
|
|
780
|
-
Ice::InitializationException::InitializationException(const char*
|
781
|
-
|
780
|
+
Ice::InitializationException::InitializationException(const char* file, int line) :
|
781
|
+
LocalException(file, line)
|
782
782
|
{
|
783
783
|
}
|
784
784
|
|
785
|
-
Ice::InitializationException::InitializationException(const char*
|
786
|
-
|
787
|
-
reason(
|
785
|
+
Ice::InitializationException::InitializationException(const char* file, int line, const ::std::string& reason) :
|
786
|
+
LocalException(file, line),
|
787
|
+
reason(reason)
|
788
788
|
{
|
789
789
|
}
|
790
790
|
|
@@ -810,14 +810,14 @@ Ice::InitializationException::ice_throw() const
|
|
810
810
|
throw *this;
|
811
811
|
}
|
812
812
|
|
813
|
-
Ice::PluginInitializationException::PluginInitializationException(const char*
|
814
|
-
|
813
|
+
Ice::PluginInitializationException::PluginInitializationException(const char* file, int line) :
|
814
|
+
LocalException(file, line)
|
815
815
|
{
|
816
816
|
}
|
817
817
|
|
818
|
-
Ice::PluginInitializationException::PluginInitializationException(const char*
|
819
|
-
|
820
|
-
reason(
|
818
|
+
Ice::PluginInitializationException::PluginInitializationException(const char* file, int line, const ::std::string& reason) :
|
819
|
+
LocalException(file, line),
|
820
|
+
reason(reason)
|
821
821
|
{
|
822
822
|
}
|
823
823
|
|
@@ -843,8 +843,8 @@ Ice::PluginInitializationException::ice_throw() const
|
|
843
843
|
throw *this;
|
844
844
|
}
|
845
845
|
|
846
|
-
Ice::CollocationOptimizationException::CollocationOptimizationException(const char*
|
847
|
-
|
846
|
+
Ice::CollocationOptimizationException::CollocationOptimizationException(const char* file, int line) :
|
847
|
+
LocalException(file, line)
|
848
848
|
{
|
849
849
|
}
|
850
850
|
|
@@ -870,15 +870,15 @@ Ice::CollocationOptimizationException::ice_throw() const
|
|
870
870
|
throw *this;
|
871
871
|
}
|
872
872
|
|
873
|
-
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char*
|
874
|
-
|
873
|
+
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line) :
|
874
|
+
LocalException(file, line)
|
875
875
|
{
|
876
876
|
}
|
877
877
|
|
878
|
-
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char*
|
879
|
-
|
880
|
-
kindOfObject(
|
881
|
-
id(
|
878
|
+
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
|
879
|
+
LocalException(file, line),
|
880
|
+
kindOfObject(kindOfObject),
|
881
|
+
id(id)
|
882
882
|
{
|
883
883
|
}
|
884
884
|
|
@@ -904,15 +904,15 @@ Ice::AlreadyRegisteredException::ice_throw() const
|
|
904
904
|
throw *this;
|
905
905
|
}
|
906
906
|
|
907
|
-
Ice::NotRegisteredException::NotRegisteredException(const char*
|
908
|
-
|
907
|
+
Ice::NotRegisteredException::NotRegisteredException(const char* file, int line) :
|
908
|
+
LocalException(file, line)
|
909
909
|
{
|
910
910
|
}
|
911
911
|
|
912
|
-
Ice::NotRegisteredException::NotRegisteredException(const char*
|
913
|
-
|
914
|
-
kindOfObject(
|
915
|
-
id(
|
912
|
+
Ice::NotRegisteredException::NotRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
|
913
|
+
LocalException(file, line),
|
914
|
+
kindOfObject(kindOfObject),
|
915
|
+
id(id)
|
916
916
|
{
|
917
917
|
}
|
918
918
|
|
@@ -938,14 +938,14 @@ Ice::NotRegisteredException::ice_throw() const
|
|
938
938
|
throw *this;
|
939
939
|
}
|
940
940
|
|
941
|
-
Ice::TwowayOnlyException::TwowayOnlyException(const char*
|
942
|
-
|
941
|
+
Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line) :
|
942
|
+
LocalException(file, line)
|
943
943
|
{
|
944
944
|
}
|
945
945
|
|
946
|
-
Ice::TwowayOnlyException::TwowayOnlyException(const char*
|
947
|
-
|
948
|
-
operation(
|
946
|
+
Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line, const ::std::string& operation) :
|
947
|
+
LocalException(file, line),
|
948
|
+
operation(operation)
|
949
949
|
{
|
950
950
|
}
|
951
951
|
|
@@ -971,8 +971,8 @@ Ice::TwowayOnlyException::ice_throw() const
|
|
971
971
|
throw *this;
|
972
972
|
}
|
973
973
|
|
974
|
-
Ice::CloneNotImplementedException::CloneNotImplementedException(const char*
|
975
|
-
|
974
|
+
Ice::CloneNotImplementedException::CloneNotImplementedException(const char* file, int line) :
|
975
|
+
LocalException(file, line)
|
976
976
|
{
|
977
977
|
}
|
978
978
|
|
@@ -998,14 +998,14 @@ Ice::CloneNotImplementedException::ice_throw() const
|
|
998
998
|
throw *this;
|
999
999
|
}
|
1000
1000
|
|
1001
|
-
Ice::UnknownException::UnknownException(const char*
|
1002
|
-
|
1001
|
+
Ice::UnknownException::UnknownException(const char* file, int line) :
|
1002
|
+
LocalException(file, line)
|
1003
1003
|
{
|
1004
1004
|
}
|
1005
1005
|
|
1006
|
-
Ice::UnknownException::UnknownException(const char*
|
1007
|
-
|
1008
|
-
unknown(
|
1006
|
+
Ice::UnknownException::UnknownException(const char* file, int line, const ::std::string& unknown) :
|
1007
|
+
LocalException(file, line),
|
1008
|
+
unknown(unknown)
|
1009
1009
|
{
|
1010
1010
|
}
|
1011
1011
|
|
@@ -1031,13 +1031,13 @@ Ice::UnknownException::ice_throw() const
|
|
1031
1031
|
throw *this;
|
1032
1032
|
}
|
1033
1033
|
|
1034
|
-
Ice::UnknownLocalException::UnknownLocalException(const char*
|
1035
|
-
|
1034
|
+
Ice::UnknownLocalException::UnknownLocalException(const char* file, int line) :
|
1035
|
+
UnknownException(file, line)
|
1036
1036
|
{
|
1037
1037
|
}
|
1038
1038
|
|
1039
|
-
Ice::UnknownLocalException::UnknownLocalException(const char*
|
1040
|
-
|
1039
|
+
Ice::UnknownLocalException::UnknownLocalException(const char* file, int line, const ::std::string& unknown) :
|
1040
|
+
UnknownException(file, line, unknown)
|
1041
1041
|
{
|
1042
1042
|
}
|
1043
1043
|
|
@@ -1063,13 +1063,13 @@ Ice::UnknownLocalException::ice_throw() const
|
|
1063
1063
|
throw *this;
|
1064
1064
|
}
|
1065
1065
|
|
1066
|
-
Ice::UnknownUserException::UnknownUserException(const char*
|
1067
|
-
|
1066
|
+
Ice::UnknownUserException::UnknownUserException(const char* file, int line) :
|
1067
|
+
UnknownException(file, line)
|
1068
1068
|
{
|
1069
1069
|
}
|
1070
1070
|
|
1071
|
-
Ice::UnknownUserException::UnknownUserException(const char*
|
1072
|
-
|
1071
|
+
Ice::UnknownUserException::UnknownUserException(const char* file, int line, const ::std::string& unknown) :
|
1072
|
+
UnknownException(file, line, unknown)
|
1073
1073
|
{
|
1074
1074
|
}
|
1075
1075
|
|
@@ -1095,8 +1095,8 @@ Ice::UnknownUserException::ice_throw() const
|
|
1095
1095
|
throw *this;
|
1096
1096
|
}
|
1097
1097
|
|
1098
|
-
Ice::VersionMismatchException::VersionMismatchException(const char*
|
1099
|
-
|
1098
|
+
Ice::VersionMismatchException::VersionMismatchException(const char* file, int line) :
|
1099
|
+
LocalException(file, line)
|
1100
1100
|
{
|
1101
1101
|
}
|
1102
1102
|
|
@@ -1122,8 +1122,8 @@ Ice::VersionMismatchException::ice_throw() const
|
|
1122
1122
|
throw *this;
|
1123
1123
|
}
|
1124
1124
|
|
1125
|
-
Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char*
|
1126
|
-
|
1125
|
+
Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char* file, int line) :
|
1126
|
+
LocalException(file, line)
|
1127
1127
|
{
|
1128
1128
|
}
|
1129
1129
|
|
@@ -1149,14 +1149,14 @@ Ice::CommunicatorDestroyedException::ice_throw() const
|
|
1149
1149
|
throw *this;
|
1150
1150
|
}
|
1151
1151
|
|
1152
|
-
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char*
|
1153
|
-
|
1152
|
+
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line) :
|
1153
|
+
LocalException(file, line)
|
1154
1154
|
{
|
1155
1155
|
}
|
1156
1156
|
|
1157
|
-
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char*
|
1158
|
-
|
1159
|
-
name(
|
1157
|
+
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line, const ::std::string& name) :
|
1158
|
+
LocalException(file, line),
|
1159
|
+
name(name)
|
1160
1160
|
{
|
1161
1161
|
}
|
1162
1162
|
|
@@ -1182,14 +1182,14 @@ Ice::ObjectAdapterDeactivatedException::ice_throw() const
|
|
1182
1182
|
throw *this;
|
1183
1183
|
}
|
1184
1184
|
|
1185
|
-
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char*
|
1186
|
-
|
1185
|
+
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line) :
|
1186
|
+
LocalException(file, line)
|
1187
1187
|
{
|
1188
1188
|
}
|
1189
1189
|
|
1190
|
-
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char*
|
1191
|
-
|
1192
|
-
id(
|
1190
|
+
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line, const ::std::string& id) :
|
1191
|
+
LocalException(file, line),
|
1192
|
+
id(id)
|
1193
1193
|
{
|
1194
1194
|
}
|
1195
1195
|
|
@@ -1215,14 +1215,14 @@ Ice::ObjectAdapterIdInUseException::ice_throw() const
|
|
1215
1215
|
throw *this;
|
1216
1216
|
}
|
1217
1217
|
|
1218
|
-
Ice::NoEndpointException::NoEndpointException(const char*
|
1219
|
-
|
1218
|
+
Ice::NoEndpointException::NoEndpointException(const char* file, int line) :
|
1219
|
+
LocalException(file, line)
|
1220
1220
|
{
|
1221
1221
|
}
|
1222
1222
|
|
1223
|
-
Ice::NoEndpointException::NoEndpointException(const char*
|
1224
|
-
|
1225
|
-
proxy(
|
1223
|
+
Ice::NoEndpointException::NoEndpointException(const char* file, int line, const ::std::string& proxy) :
|
1224
|
+
LocalException(file, line),
|
1225
|
+
proxy(proxy)
|
1226
1226
|
{
|
1227
1227
|
}
|
1228
1228
|
|
@@ -1248,14 +1248,14 @@ Ice::NoEndpointException::ice_throw() const
|
|
1248
1248
|
throw *this;
|
1249
1249
|
}
|
1250
1250
|
|
1251
|
-
Ice::EndpointParseException::EndpointParseException(const char*
|
1252
|
-
|
1251
|
+
Ice::EndpointParseException::EndpointParseException(const char* file, int line) :
|
1252
|
+
LocalException(file, line)
|
1253
1253
|
{
|
1254
1254
|
}
|
1255
1255
|
|
1256
|
-
Ice::EndpointParseException::EndpointParseException(const char*
|
1257
|
-
|
1258
|
-
str(
|
1256
|
+
Ice::EndpointParseException::EndpointParseException(const char* file, int line, const ::std::string& str) :
|
1257
|
+
LocalException(file, line),
|
1258
|
+
str(str)
|
1259
1259
|
{
|
1260
1260
|
}
|
1261
1261
|
|
@@ -1281,14 +1281,14 @@ Ice::EndpointParseException::ice_throw() const
|
|
1281
1281
|
throw *this;
|
1282
1282
|
}
|
1283
1283
|
|
1284
|
-
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char*
|
1285
|
-
|
1284
|
+
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line) :
|
1285
|
+
LocalException(file, line)
|
1286
1286
|
{
|
1287
1287
|
}
|
1288
1288
|
|
1289
|
-
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char*
|
1290
|
-
|
1291
|
-
str(
|
1289
|
+
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line, const ::std::string& str) :
|
1290
|
+
LocalException(file, line),
|
1291
|
+
str(str)
|
1292
1292
|
{
|
1293
1293
|
}
|
1294
1294
|
|
@@ -1314,14 +1314,14 @@ Ice::EndpointSelectionTypeParseException::ice_throw() const
|
|
1314
1314
|
throw *this;
|
1315
1315
|
}
|
1316
1316
|
|
1317
|
-
Ice::VersionParseException::VersionParseException(const char*
|
1318
|
-
|
1317
|
+
Ice::VersionParseException::VersionParseException(const char* file, int line) :
|
1318
|
+
LocalException(file, line)
|
1319
1319
|
{
|
1320
1320
|
}
|
1321
1321
|
|
1322
|
-
Ice::VersionParseException::VersionParseException(const char*
|
1323
|
-
|
1324
|
-
str(
|
1322
|
+
Ice::VersionParseException::VersionParseException(const char* file, int line, const ::std::string& str) :
|
1323
|
+
LocalException(file, line),
|
1324
|
+
str(str)
|
1325
1325
|
{
|
1326
1326
|
}
|
1327
1327
|
|
@@ -1347,14 +1347,14 @@ Ice::VersionParseException::ice_throw() const
|
|
1347
1347
|
throw *this;
|
1348
1348
|
}
|
1349
1349
|
|
1350
|
-
Ice::IdentityParseException::IdentityParseException(const char*
|
1351
|
-
|
1350
|
+
Ice::IdentityParseException::IdentityParseException(const char* file, int line) :
|
1351
|
+
LocalException(file, line)
|
1352
1352
|
{
|
1353
1353
|
}
|
1354
1354
|
|
1355
|
-
Ice::IdentityParseException::IdentityParseException(const char*
|
1356
|
-
|
1357
|
-
str(
|
1355
|
+
Ice::IdentityParseException::IdentityParseException(const char* file, int line, const ::std::string& str) :
|
1356
|
+
LocalException(file, line),
|
1357
|
+
str(str)
|
1358
1358
|
{
|
1359
1359
|
}
|
1360
1360
|
|
@@ -1380,14 +1380,14 @@ Ice::IdentityParseException::ice_throw() const
|
|
1380
1380
|
throw *this;
|
1381
1381
|
}
|
1382
1382
|
|
1383
|
-
Ice::ProxyParseException::ProxyParseException(const char*
|
1384
|
-
|
1383
|
+
Ice::ProxyParseException::ProxyParseException(const char* file, int line) :
|
1384
|
+
LocalException(file, line)
|
1385
1385
|
{
|
1386
1386
|
}
|
1387
1387
|
|
1388
|
-
Ice::ProxyParseException::ProxyParseException(const char*
|
1389
|
-
|
1390
|
-
str(
|
1388
|
+
Ice::ProxyParseException::ProxyParseException(const char* file, int line, const ::std::string& str) :
|
1389
|
+
LocalException(file, line),
|
1390
|
+
str(str)
|
1391
1391
|
{
|
1392
1392
|
}
|
1393
1393
|
|
@@ -1413,14 +1413,14 @@ Ice::ProxyParseException::ice_throw() const
|
|
1413
1413
|
throw *this;
|
1414
1414
|
}
|
1415
1415
|
|
1416
|
-
Ice::IllegalIdentityException::IllegalIdentityException(const char*
|
1417
|
-
|
1416
|
+
Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line) :
|
1417
|
+
LocalException(file, line)
|
1418
1418
|
{
|
1419
1419
|
}
|
1420
1420
|
|
1421
|
-
Ice::IllegalIdentityException::IllegalIdentityException(const char*
|
1422
|
-
|
1423
|
-
id(
|
1421
|
+
Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line, const Identity& id) :
|
1422
|
+
LocalException(file, line),
|
1423
|
+
id(id)
|
1424
1424
|
{
|
1425
1425
|
}
|
1426
1426
|
|
@@ -1446,14 +1446,14 @@ Ice::IllegalIdentityException::ice_throw() const
|
|
1446
1446
|
throw *this;
|
1447
1447
|
}
|
1448
1448
|
|
1449
|
-
Ice::IllegalServantException::IllegalServantException(const char*
|
1450
|
-
|
1449
|
+
Ice::IllegalServantException::IllegalServantException(const char* file, int line) :
|
1450
|
+
LocalException(file, line)
|
1451
1451
|
{
|
1452
1452
|
}
|
1453
1453
|
|
1454
|
-
Ice::IllegalServantException::IllegalServantException(const char*
|
1455
|
-
|
1456
|
-
reason(
|
1454
|
+
Ice::IllegalServantException::IllegalServantException(const char* file, int line, const ::std::string& reason) :
|
1455
|
+
LocalException(file, line),
|
1456
|
+
reason(reason)
|
1457
1457
|
{
|
1458
1458
|
}
|
1459
1459
|
|
@@ -1479,16 +1479,16 @@ Ice::IllegalServantException::ice_throw() const
|
|
1479
1479
|
throw *this;
|
1480
1480
|
}
|
1481
1481
|
|
1482
|
-
Ice::RequestFailedException::RequestFailedException(const char*
|
1483
|
-
|
1482
|
+
Ice::RequestFailedException::RequestFailedException(const char* file, int line) :
|
1483
|
+
LocalException(file, line)
|
1484
1484
|
{
|
1485
1485
|
}
|
1486
1486
|
|
1487
|
-
Ice::RequestFailedException::RequestFailedException(const char*
|
1488
|
-
|
1489
|
-
id(
|
1490
|
-
facet(
|
1491
|
-
operation(
|
1487
|
+
Ice::RequestFailedException::RequestFailedException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
1488
|
+
LocalException(file, line),
|
1489
|
+
id(id),
|
1490
|
+
facet(facet),
|
1491
|
+
operation(operation)
|
1492
1492
|
{
|
1493
1493
|
}
|
1494
1494
|
|
@@ -1514,13 +1514,13 @@ Ice::RequestFailedException::ice_throw() const
|
|
1514
1514
|
throw *this;
|
1515
1515
|
}
|
1516
1516
|
|
1517
|
-
Ice::ObjectNotExistException::ObjectNotExistException(const char*
|
1518
|
-
|
1517
|
+
Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line) :
|
1518
|
+
RequestFailedException(file, line)
|
1519
1519
|
{
|
1520
1520
|
}
|
1521
1521
|
|
1522
|
-
Ice::ObjectNotExistException::ObjectNotExistException(const char*
|
1523
|
-
|
1522
|
+
Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
1523
|
+
RequestFailedException(file, line, id, facet, operation)
|
1524
1524
|
{
|
1525
1525
|
}
|
1526
1526
|
|
@@ -1546,13 +1546,13 @@ Ice::ObjectNotExistException::ice_throw() const
|
|
1546
1546
|
throw *this;
|
1547
1547
|
}
|
1548
1548
|
|
1549
|
-
Ice::FacetNotExistException::FacetNotExistException(const char*
|
1550
|
-
|
1549
|
+
Ice::FacetNotExistException::FacetNotExistException(const char* file, int line) :
|
1550
|
+
RequestFailedException(file, line)
|
1551
1551
|
{
|
1552
1552
|
}
|
1553
1553
|
|
1554
|
-
Ice::FacetNotExistException::FacetNotExistException(const char*
|
1555
|
-
|
1554
|
+
Ice::FacetNotExistException::FacetNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
1555
|
+
RequestFailedException(file, line, id, facet, operation)
|
1556
1556
|
{
|
1557
1557
|
}
|
1558
1558
|
|
@@ -1578,13 +1578,13 @@ Ice::FacetNotExistException::ice_throw() const
|
|
1578
1578
|
throw *this;
|
1579
1579
|
}
|
1580
1580
|
|
1581
|
-
Ice::OperationNotExistException::OperationNotExistException(const char*
|
1582
|
-
|
1581
|
+
Ice::OperationNotExistException::OperationNotExistException(const char* file, int line) :
|
1582
|
+
RequestFailedException(file, line)
|
1583
1583
|
{
|
1584
1584
|
}
|
1585
1585
|
|
1586
|
-
Ice::OperationNotExistException::OperationNotExistException(const char*
|
1587
|
-
|
1586
|
+
Ice::OperationNotExistException::OperationNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
1587
|
+
RequestFailedException(file, line, id, facet, operation)
|
1588
1588
|
{
|
1589
1589
|
}
|
1590
1590
|
|
@@ -1610,15 +1610,15 @@ Ice::OperationNotExistException::ice_throw() const
|
|
1610
1610
|
throw *this;
|
1611
1611
|
}
|
1612
1612
|
|
1613
|
-
Ice::SyscallException::SyscallException(const char*
|
1614
|
-
|
1613
|
+
Ice::SyscallException::SyscallException(const char* file, int line) :
|
1614
|
+
LocalException(file, line),
|
1615
1615
|
error(0)
|
1616
1616
|
{
|
1617
1617
|
}
|
1618
1618
|
|
1619
|
-
Ice::SyscallException::SyscallException(const char*
|
1620
|
-
|
1621
|
-
error(
|
1619
|
+
Ice::SyscallException::SyscallException(const char* file, int line, Int error) :
|
1620
|
+
LocalException(file, line),
|
1621
|
+
error(error)
|
1622
1622
|
{
|
1623
1623
|
}
|
1624
1624
|
|
@@ -1644,13 +1644,13 @@ Ice::SyscallException::ice_throw() const
|
|
1644
1644
|
throw *this;
|
1645
1645
|
}
|
1646
1646
|
|
1647
|
-
Ice::SocketException::SocketException(const char*
|
1648
|
-
|
1647
|
+
Ice::SocketException::SocketException(const char* file, int line) :
|
1648
|
+
SyscallException(file, line)
|
1649
1649
|
{
|
1650
1650
|
}
|
1651
1651
|
|
1652
|
-
Ice::SocketException::SocketException(const char*
|
1653
|
-
|
1652
|
+
Ice::SocketException::SocketException(const char* file, int line, Int error) :
|
1653
|
+
SyscallException(file, line, error)
|
1654
1654
|
{
|
1655
1655
|
}
|
1656
1656
|
|
@@ -1676,14 +1676,14 @@ Ice::SocketException::ice_throw() const
|
|
1676
1676
|
throw *this;
|
1677
1677
|
}
|
1678
1678
|
|
1679
|
-
Ice::CFNetworkException::CFNetworkException(const char*
|
1680
|
-
|
1679
|
+
Ice::CFNetworkException::CFNetworkException(const char* file, int line) :
|
1680
|
+
SocketException(file, line)
|
1681
1681
|
{
|
1682
1682
|
}
|
1683
1683
|
|
1684
|
-
Ice::CFNetworkException::CFNetworkException(const char*
|
1685
|
-
|
1686
|
-
domain(
|
1684
|
+
Ice::CFNetworkException::CFNetworkException(const char* file, int line, Int error, const ::std::string& domain) :
|
1685
|
+
SocketException(file, line, error),
|
1686
|
+
domain(domain)
|
1687
1687
|
{
|
1688
1688
|
}
|
1689
1689
|
|
@@ -1709,14 +1709,14 @@ Ice::CFNetworkException::ice_throw() const
|
|
1709
1709
|
throw *this;
|
1710
1710
|
}
|
1711
1711
|
|
1712
|
-
Ice::FileException::FileException(const char*
|
1713
|
-
|
1712
|
+
Ice::FileException::FileException(const char* file, int line) :
|
1713
|
+
SyscallException(file, line)
|
1714
1714
|
{
|
1715
1715
|
}
|
1716
1716
|
|
1717
|
-
Ice::FileException::FileException(const char*
|
1718
|
-
|
1719
|
-
path(
|
1717
|
+
Ice::FileException::FileException(const char* file, int line, Int error, const ::std::string& path) :
|
1718
|
+
SyscallException(file, line, error),
|
1719
|
+
path(path)
|
1720
1720
|
{
|
1721
1721
|
}
|
1722
1722
|
|
@@ -1742,13 +1742,13 @@ Ice::FileException::ice_throw() const
|
|
1742
1742
|
throw *this;
|
1743
1743
|
}
|
1744
1744
|
|
1745
|
-
Ice::ConnectFailedException::ConnectFailedException(const char*
|
1746
|
-
|
1745
|
+
Ice::ConnectFailedException::ConnectFailedException(const char* file, int line) :
|
1746
|
+
SocketException(file, line)
|
1747
1747
|
{
|
1748
1748
|
}
|
1749
1749
|
|
1750
|
-
Ice::ConnectFailedException::ConnectFailedException(const char*
|
1751
|
-
|
1750
|
+
Ice::ConnectFailedException::ConnectFailedException(const char* file, int line, Int error) :
|
1751
|
+
SocketException(file, line, error)
|
1752
1752
|
{
|
1753
1753
|
}
|
1754
1754
|
|
@@ -1774,13 +1774,13 @@ Ice::ConnectFailedException::ice_throw() const
|
|
1774
1774
|
throw *this;
|
1775
1775
|
}
|
1776
1776
|
|
1777
|
-
Ice::ConnectionRefusedException::ConnectionRefusedException(const char*
|
1778
|
-
|
1777
|
+
Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line) :
|
1778
|
+
ConnectFailedException(file, line)
|
1779
1779
|
{
|
1780
1780
|
}
|
1781
1781
|
|
1782
|
-
Ice::ConnectionRefusedException::ConnectionRefusedException(const char*
|
1783
|
-
|
1782
|
+
Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line, Int error) :
|
1783
|
+
ConnectFailedException(file, line, error)
|
1784
1784
|
{
|
1785
1785
|
}
|
1786
1786
|
|
@@ -1806,13 +1806,13 @@ Ice::ConnectionRefusedException::ice_throw() const
|
|
1806
1806
|
throw *this;
|
1807
1807
|
}
|
1808
1808
|
|
1809
|
-
Ice::ConnectionLostException::ConnectionLostException(const char*
|
1810
|
-
|
1809
|
+
Ice::ConnectionLostException::ConnectionLostException(const char* file, int line) :
|
1810
|
+
SocketException(file, line)
|
1811
1811
|
{
|
1812
1812
|
}
|
1813
1813
|
|
1814
|
-
Ice::ConnectionLostException::ConnectionLostException(const char*
|
1815
|
-
|
1814
|
+
Ice::ConnectionLostException::ConnectionLostException(const char* file, int line, Int error) :
|
1815
|
+
SocketException(file, line, error)
|
1816
1816
|
{
|
1817
1817
|
}
|
1818
1818
|
|
@@ -1838,16 +1838,16 @@ Ice::ConnectionLostException::ice_throw() const
|
|
1838
1838
|
throw *this;
|
1839
1839
|
}
|
1840
1840
|
|
1841
|
-
Ice::DNSException::DNSException(const char*
|
1842
|
-
|
1841
|
+
Ice::DNSException::DNSException(const char* file, int line) :
|
1842
|
+
LocalException(file, line),
|
1843
1843
|
error(0)
|
1844
1844
|
{
|
1845
1845
|
}
|
1846
1846
|
|
1847
|
-
Ice::DNSException::DNSException(const char*
|
1848
|
-
|
1849
|
-
error(
|
1850
|
-
host(
|
1847
|
+
Ice::DNSException::DNSException(const char* file, int line, Int error, const ::std::string& host) :
|
1848
|
+
LocalException(file, line),
|
1849
|
+
error(error),
|
1850
|
+
host(host)
|
1851
1851
|
{
|
1852
1852
|
}
|
1853
1853
|
|
@@ -1873,8 +1873,8 @@ Ice::DNSException::ice_throw() const
|
|
1873
1873
|
throw *this;
|
1874
1874
|
}
|
1875
1875
|
|
1876
|
-
Ice::OperationInterruptedException::OperationInterruptedException(const char*
|
1877
|
-
|
1876
|
+
Ice::OperationInterruptedException::OperationInterruptedException(const char* file, int line) :
|
1877
|
+
LocalException(file, line)
|
1878
1878
|
{
|
1879
1879
|
}
|
1880
1880
|
|
@@ -1900,8 +1900,8 @@ Ice::OperationInterruptedException::ice_throw() const
|
|
1900
1900
|
throw *this;
|
1901
1901
|
}
|
1902
1902
|
|
1903
|
-
Ice::TimeoutException::TimeoutException(const char*
|
1904
|
-
|
1903
|
+
Ice::TimeoutException::TimeoutException(const char* file, int line) :
|
1904
|
+
LocalException(file, line)
|
1905
1905
|
{
|
1906
1906
|
}
|
1907
1907
|
|
@@ -1927,8 +1927,8 @@ Ice::TimeoutException::ice_throw() const
|
|
1927
1927
|
throw *this;
|
1928
1928
|
}
|
1929
1929
|
|
1930
|
-
Ice::ConnectTimeoutException::ConnectTimeoutException(const char*
|
1931
|
-
|
1930
|
+
Ice::ConnectTimeoutException::ConnectTimeoutException(const char* file, int line) :
|
1931
|
+
TimeoutException(file, line)
|
1932
1932
|
{
|
1933
1933
|
}
|
1934
1934
|
|
@@ -1954,8 +1954,8 @@ Ice::ConnectTimeoutException::ice_throw() const
|
|
1954
1954
|
throw *this;
|
1955
1955
|
}
|
1956
1956
|
|
1957
|
-
Ice::CloseTimeoutException::CloseTimeoutException(const char*
|
1958
|
-
|
1957
|
+
Ice::CloseTimeoutException::CloseTimeoutException(const char* file, int line) :
|
1958
|
+
TimeoutException(file, line)
|
1959
1959
|
{
|
1960
1960
|
}
|
1961
1961
|
|
@@ -1981,8 +1981,8 @@ Ice::CloseTimeoutException::ice_throw() const
|
|
1981
1981
|
throw *this;
|
1982
1982
|
}
|
1983
1983
|
|
1984
|
-
Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char*
|
1985
|
-
|
1984
|
+
Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char* file, int line) :
|
1985
|
+
TimeoutException(file, line)
|
1986
1986
|
{
|
1987
1987
|
}
|
1988
1988
|
|
@@ -2008,8 +2008,8 @@ Ice::ConnectionTimeoutException::ice_throw() const
|
|
2008
2008
|
throw *this;
|
2009
2009
|
}
|
2010
2010
|
|
2011
|
-
Ice::InvocationTimeoutException::InvocationTimeoutException(const char*
|
2012
|
-
|
2011
|
+
Ice::InvocationTimeoutException::InvocationTimeoutException(const char* file, int line) :
|
2012
|
+
TimeoutException(file, line)
|
2013
2013
|
{
|
2014
2014
|
}
|
2015
2015
|
|
@@ -2035,8 +2035,8 @@ Ice::InvocationTimeoutException::ice_throw() const
|
|
2035
2035
|
throw *this;
|
2036
2036
|
}
|
2037
2037
|
|
2038
|
-
Ice::InvocationCanceledException::InvocationCanceledException(const char*
|
2039
|
-
|
2038
|
+
Ice::InvocationCanceledException::InvocationCanceledException(const char* file, int line) :
|
2039
|
+
LocalException(file, line)
|
2040
2040
|
{
|
2041
2041
|
}
|
2042
2042
|
|
@@ -2062,14 +2062,14 @@ Ice::InvocationCanceledException::ice_throw() const
|
|
2062
2062
|
throw *this;
|
2063
2063
|
}
|
2064
2064
|
|
2065
|
-
Ice::ProtocolException::ProtocolException(const char*
|
2066
|
-
|
2065
|
+
Ice::ProtocolException::ProtocolException(const char* file, int line) :
|
2066
|
+
LocalException(file, line)
|
2067
2067
|
{
|
2068
2068
|
}
|
2069
2069
|
|
2070
|
-
Ice::ProtocolException::ProtocolException(const char*
|
2071
|
-
|
2072
|
-
reason(
|
2070
|
+
Ice::ProtocolException::ProtocolException(const char* file, int line, const ::std::string& reason) :
|
2071
|
+
LocalException(file, line),
|
2072
|
+
reason(reason)
|
2073
2073
|
{
|
2074
2074
|
}
|
2075
2075
|
|
@@ -2095,14 +2095,14 @@ Ice::ProtocolException::ice_throw() const
|
|
2095
2095
|
throw *this;
|
2096
2096
|
}
|
2097
2097
|
|
2098
|
-
Ice::BadMagicException::BadMagicException(const char*
|
2099
|
-
|
2098
|
+
Ice::BadMagicException::BadMagicException(const char* file, int line) :
|
2099
|
+
ProtocolException(file, line)
|
2100
2100
|
{
|
2101
2101
|
}
|
2102
2102
|
|
2103
|
-
Ice::BadMagicException::BadMagicException(const char*
|
2104
|
-
|
2105
|
-
badMagic(
|
2103
|
+
Ice::BadMagicException::BadMagicException(const char* file, int line, const ::std::string& reason, const ByteSeq& badMagic) :
|
2104
|
+
ProtocolException(file, line, reason),
|
2105
|
+
badMagic(badMagic)
|
2106
2106
|
{
|
2107
2107
|
}
|
2108
2108
|
|
@@ -2128,15 +2128,15 @@ Ice::BadMagicException::ice_throw() const
|
|
2128
2128
|
throw *this;
|
2129
2129
|
}
|
2130
2130
|
|
2131
|
-
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char*
|
2132
|
-
|
2131
|
+
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line) :
|
2132
|
+
ProtocolException(file, line)
|
2133
2133
|
{
|
2134
2134
|
}
|
2135
2135
|
|
2136
|
-
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char*
|
2137
|
-
|
2138
|
-
bad(
|
2139
|
-
supported(
|
2136
|
+
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line, const ::std::string& reason, const ProtocolVersion& bad, const ProtocolVersion& supported) :
|
2137
|
+
ProtocolException(file, line, reason),
|
2138
|
+
bad(bad),
|
2139
|
+
supported(supported)
|
2140
2140
|
{
|
2141
2141
|
}
|
2142
2142
|
|
@@ -2162,15 +2162,15 @@ Ice::UnsupportedProtocolException::ice_throw() const
|
|
2162
2162
|
throw *this;
|
2163
2163
|
}
|
2164
2164
|
|
2165
|
-
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char*
|
2166
|
-
|
2165
|
+
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line) :
|
2166
|
+
ProtocolException(file, line)
|
2167
2167
|
{
|
2168
2168
|
}
|
2169
2169
|
|
2170
|
-
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char*
|
2171
|
-
|
2172
|
-
bad(
|
2173
|
-
supported(
|
2170
|
+
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line, const ::std::string& reason, const EncodingVersion& bad, const EncodingVersion& supported) :
|
2171
|
+
ProtocolException(file, line, reason),
|
2172
|
+
bad(bad),
|
2173
|
+
supported(supported)
|
2174
2174
|
{
|
2175
2175
|
}
|
2176
2176
|
|
@@ -2196,13 +2196,13 @@ Ice::UnsupportedEncodingException::ice_throw() const
|
|
2196
2196
|
throw *this;
|
2197
2197
|
}
|
2198
2198
|
|
2199
|
-
Ice::UnknownMessageException::UnknownMessageException(const char*
|
2200
|
-
|
2199
|
+
Ice::UnknownMessageException::UnknownMessageException(const char* file, int line) :
|
2200
|
+
ProtocolException(file, line)
|
2201
2201
|
{
|
2202
2202
|
}
|
2203
2203
|
|
2204
|
-
Ice::UnknownMessageException::UnknownMessageException(const char*
|
2205
|
-
|
2204
|
+
Ice::UnknownMessageException::UnknownMessageException(const char* file, int line, const ::std::string& reason) :
|
2205
|
+
ProtocolException(file, line, reason)
|
2206
2206
|
{
|
2207
2207
|
}
|
2208
2208
|
|
@@ -2228,13 +2228,13 @@ Ice::UnknownMessageException::ice_throw() const
|
|
2228
2228
|
throw *this;
|
2229
2229
|
}
|
2230
2230
|
|
2231
|
-
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char*
|
2232
|
-
|
2231
|
+
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line) :
|
2232
|
+
ProtocolException(file, line)
|
2233
2233
|
{
|
2234
2234
|
}
|
2235
2235
|
|
2236
|
-
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char*
|
2237
|
-
|
2236
|
+
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line, const ::std::string& reason) :
|
2237
|
+
ProtocolException(file, line, reason)
|
2238
2238
|
{
|
2239
2239
|
}
|
2240
2240
|
|
@@ -2260,13 +2260,13 @@ Ice::ConnectionNotValidatedException::ice_throw() const
|
|
2260
2260
|
throw *this;
|
2261
2261
|
}
|
2262
2262
|
|
2263
|
-
Ice::UnknownRequestIdException::UnknownRequestIdException(const char*
|
2264
|
-
|
2263
|
+
Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line) :
|
2264
|
+
ProtocolException(file, line)
|
2265
2265
|
{
|
2266
2266
|
}
|
2267
2267
|
|
2268
|
-
Ice::UnknownRequestIdException::UnknownRequestIdException(const char*
|
2269
|
-
|
2268
|
+
Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line, const ::std::string& reason) :
|
2269
|
+
ProtocolException(file, line, reason)
|
2270
2270
|
{
|
2271
2271
|
}
|
2272
2272
|
|
@@ -2292,13 +2292,13 @@ Ice::UnknownRequestIdException::ice_throw() const
|
|
2292
2292
|
throw *this;
|
2293
2293
|
}
|
2294
2294
|
|
2295
|
-
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char*
|
2296
|
-
|
2295
|
+
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line) :
|
2296
|
+
ProtocolException(file, line)
|
2297
2297
|
{
|
2298
2298
|
}
|
2299
2299
|
|
2300
|
-
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char*
|
2301
|
-
|
2300
|
+
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line, const ::std::string& reason) :
|
2301
|
+
ProtocolException(file, line, reason)
|
2302
2302
|
{
|
2303
2303
|
}
|
2304
2304
|
|
@@ -2324,13 +2324,13 @@ Ice::UnknownReplyStatusException::ice_throw() const
|
|
2324
2324
|
throw *this;
|
2325
2325
|
}
|
2326
2326
|
|
2327
|
-
Ice::CloseConnectionException::CloseConnectionException(const char*
|
2328
|
-
|
2327
|
+
Ice::CloseConnectionException::CloseConnectionException(const char* file, int line) :
|
2328
|
+
ProtocolException(file, line)
|
2329
2329
|
{
|
2330
2330
|
}
|
2331
2331
|
|
2332
|
-
Ice::CloseConnectionException::CloseConnectionException(const char*
|
2333
|
-
|
2332
|
+
Ice::CloseConnectionException::CloseConnectionException(const char* file, int line, const ::std::string& reason) :
|
2333
|
+
ProtocolException(file, line, reason)
|
2334
2334
|
{
|
2335
2335
|
}
|
2336
2336
|
|
@@ -2356,14 +2356,14 @@ Ice::CloseConnectionException::ice_throw() const
|
|
2356
2356
|
throw *this;
|
2357
2357
|
}
|
2358
2358
|
|
2359
|
-
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char*
|
2360
|
-
|
2359
|
+
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line) :
|
2360
|
+
LocalException(file, line)
|
2361
2361
|
{
|
2362
2362
|
}
|
2363
2363
|
|
2364
|
-
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char*
|
2365
|
-
|
2366
|
-
graceful(
|
2364
|
+
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line, bool graceful) :
|
2365
|
+
LocalException(file, line),
|
2366
|
+
graceful(graceful)
|
2367
2367
|
{
|
2368
2368
|
}
|
2369
2369
|
|
@@ -2389,13 +2389,13 @@ Ice::ConnectionManuallyClosedException::ice_throw() const
|
|
2389
2389
|
throw *this;
|
2390
2390
|
}
|
2391
2391
|
|
2392
|
-
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char*
|
2393
|
-
|
2392
|
+
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line) :
|
2393
|
+
ProtocolException(file, line)
|
2394
2394
|
{
|
2395
2395
|
}
|
2396
2396
|
|
2397
|
-
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char*
|
2398
|
-
|
2397
|
+
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line, const ::std::string& reason) :
|
2398
|
+
ProtocolException(file, line, reason)
|
2399
2399
|
{
|
2400
2400
|
}
|
2401
2401
|
|
@@ -2421,13 +2421,13 @@ Ice::IllegalMessageSizeException::ice_throw() const
|
|
2421
2421
|
throw *this;
|
2422
2422
|
}
|
2423
2423
|
|
2424
|
-
Ice::CompressionException::CompressionException(const char*
|
2425
|
-
|
2424
|
+
Ice::CompressionException::CompressionException(const char* file, int line) :
|
2425
|
+
ProtocolException(file, line)
|
2426
2426
|
{
|
2427
2427
|
}
|
2428
2428
|
|
2429
|
-
Ice::CompressionException::CompressionException(const char*
|
2430
|
-
|
2429
|
+
Ice::CompressionException::CompressionException(const char* file, int line, const ::std::string& reason) :
|
2430
|
+
ProtocolException(file, line, reason)
|
2431
2431
|
{
|
2432
2432
|
}
|
2433
2433
|
|
@@ -2453,13 +2453,13 @@ Ice::CompressionException::ice_throw() const
|
|
2453
2453
|
throw *this;
|
2454
2454
|
}
|
2455
2455
|
|
2456
|
-
Ice::DatagramLimitException::DatagramLimitException(const char*
|
2457
|
-
|
2456
|
+
Ice::DatagramLimitException::DatagramLimitException(const char* file, int line) :
|
2457
|
+
ProtocolException(file, line)
|
2458
2458
|
{
|
2459
2459
|
}
|
2460
2460
|
|
2461
|
-
Ice::DatagramLimitException::DatagramLimitException(const char*
|
2462
|
-
|
2461
|
+
Ice::DatagramLimitException::DatagramLimitException(const char* file, int line, const ::std::string& reason) :
|
2462
|
+
ProtocolException(file, line, reason)
|
2463
2463
|
{
|
2464
2464
|
}
|
2465
2465
|
|
@@ -2485,13 +2485,13 @@ Ice::DatagramLimitException::ice_throw() const
|
|
2485
2485
|
throw *this;
|
2486
2486
|
}
|
2487
2487
|
|
2488
|
-
Ice::MarshalException::MarshalException(const char*
|
2489
|
-
|
2488
|
+
Ice::MarshalException::MarshalException(const char* file, int line) :
|
2489
|
+
ProtocolException(file, line)
|
2490
2490
|
{
|
2491
2491
|
}
|
2492
2492
|
|
2493
|
-
Ice::MarshalException::MarshalException(const char*
|
2494
|
-
|
2493
|
+
Ice::MarshalException::MarshalException(const char* file, int line, const ::std::string& reason) :
|
2494
|
+
ProtocolException(file, line, reason)
|
2495
2495
|
{
|
2496
2496
|
}
|
2497
2497
|
|
@@ -2517,13 +2517,13 @@ Ice::MarshalException::ice_throw() const
|
|
2517
2517
|
throw *this;
|
2518
2518
|
}
|
2519
2519
|
|
2520
|
-
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char*
|
2521
|
-
|
2520
|
+
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line) :
|
2521
|
+
MarshalException(file, line)
|
2522
2522
|
{
|
2523
2523
|
}
|
2524
2524
|
|
2525
|
-
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char*
|
2526
|
-
|
2525
|
+
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line, const ::std::string& reason) :
|
2526
|
+
MarshalException(file, line, reason)
|
2527
2527
|
{
|
2528
2528
|
}
|
2529
2529
|
|
@@ -2549,13 +2549,13 @@ Ice::ProxyUnmarshalException::ice_throw() const
|
|
2549
2549
|
throw *this;
|
2550
2550
|
}
|
2551
2551
|
|
2552
|
-
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char*
|
2553
|
-
|
2552
|
+
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line) :
|
2553
|
+
MarshalException(file, line)
|
2554
2554
|
{
|
2555
2555
|
}
|
2556
2556
|
|
2557
|
-
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char*
|
2558
|
-
|
2557
|
+
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line, const ::std::string& reason) :
|
2558
|
+
MarshalException(file, line, reason)
|
2559
2559
|
{
|
2560
2560
|
}
|
2561
2561
|
|
@@ -2581,14 +2581,14 @@ Ice::UnmarshalOutOfBoundsException::ice_throw() const
|
|
2581
2581
|
throw *this;
|
2582
2582
|
}
|
2583
2583
|
|
2584
|
-
Ice::NoValueFactoryException::NoValueFactoryException(const char*
|
2585
|
-
|
2584
|
+
Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line) :
|
2585
|
+
MarshalException(file, line)
|
2586
2586
|
{
|
2587
2587
|
}
|
2588
2588
|
|
2589
|
-
Ice::NoValueFactoryException::NoValueFactoryException(const char*
|
2590
|
-
|
2591
|
-
type(
|
2589
|
+
Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line, const ::std::string& reason, const ::std::string& type) :
|
2590
|
+
MarshalException(file, line, reason),
|
2591
|
+
type(type)
|
2592
2592
|
{
|
2593
2593
|
}
|
2594
2594
|
|
@@ -2614,15 +2614,15 @@ Ice::NoValueFactoryException::ice_throw() const
|
|
2614
2614
|
throw *this;
|
2615
2615
|
}
|
2616
2616
|
|
2617
|
-
Ice::UnexpectedObjectException::UnexpectedObjectException(const char*
|
2618
|
-
|
2617
|
+
Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line) :
|
2618
|
+
MarshalException(file, line)
|
2619
2619
|
{
|
2620
2620
|
}
|
2621
2621
|
|
2622
|
-
Ice::UnexpectedObjectException::UnexpectedObjectException(const char*
|
2623
|
-
|
2624
|
-
type(
|
2625
|
-
expectedType(
|
2622
|
+
Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line, const ::std::string& reason, const ::std::string& type, const ::std::string& expectedType) :
|
2623
|
+
MarshalException(file, line, reason),
|
2624
|
+
type(type),
|
2625
|
+
expectedType(expectedType)
|
2626
2626
|
{
|
2627
2627
|
}
|
2628
2628
|
|
@@ -2648,13 +2648,13 @@ Ice::UnexpectedObjectException::ice_throw() const
|
|
2648
2648
|
throw *this;
|
2649
2649
|
}
|
2650
2650
|
|
2651
|
-
Ice::MemoryLimitException::MemoryLimitException(const char*
|
2652
|
-
|
2651
|
+
Ice::MemoryLimitException::MemoryLimitException(const char* file, int line) :
|
2652
|
+
MarshalException(file, line)
|
2653
2653
|
{
|
2654
2654
|
}
|
2655
2655
|
|
2656
|
-
Ice::MemoryLimitException::MemoryLimitException(const char*
|
2657
|
-
|
2656
|
+
Ice::MemoryLimitException::MemoryLimitException(const char* file, int line, const ::std::string& reason) :
|
2657
|
+
MarshalException(file, line, reason)
|
2658
2658
|
{
|
2659
2659
|
}
|
2660
2660
|
|
@@ -2680,13 +2680,13 @@ Ice::MemoryLimitException::ice_throw() const
|
|
2680
2680
|
throw *this;
|
2681
2681
|
}
|
2682
2682
|
|
2683
|
-
Ice::StringConversionException::StringConversionException(const char*
|
2684
|
-
|
2683
|
+
Ice::StringConversionException::StringConversionException(const char* file, int line) :
|
2684
|
+
MarshalException(file, line)
|
2685
2685
|
{
|
2686
2686
|
}
|
2687
2687
|
|
2688
|
-
Ice::StringConversionException::StringConversionException(const char*
|
2689
|
-
|
2688
|
+
Ice::StringConversionException::StringConversionException(const char* file, int line, const ::std::string& reason) :
|
2689
|
+
MarshalException(file, line, reason)
|
2690
2690
|
{
|
2691
2691
|
}
|
2692
2692
|
|
@@ -2712,13 +2712,13 @@ Ice::StringConversionException::ice_throw() const
|
|
2712
2712
|
throw *this;
|
2713
2713
|
}
|
2714
2714
|
|
2715
|
-
Ice::EncapsulationException::EncapsulationException(const char*
|
2716
|
-
|
2715
|
+
Ice::EncapsulationException::EncapsulationException(const char* file, int line) :
|
2716
|
+
MarshalException(file, line)
|
2717
2717
|
{
|
2718
2718
|
}
|
2719
2719
|
|
2720
|
-
Ice::EncapsulationException::EncapsulationException(const char*
|
2721
|
-
|
2720
|
+
Ice::EncapsulationException::EncapsulationException(const char* file, int line, const ::std::string& reason) :
|
2721
|
+
MarshalException(file, line, reason)
|
2722
2722
|
{
|
2723
2723
|
}
|
2724
2724
|
|
@@ -2744,14 +2744,14 @@ Ice::EncapsulationException::ice_throw() const
|
|
2744
2744
|
throw *this;
|
2745
2745
|
}
|
2746
2746
|
|
2747
|
-
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char*
|
2748
|
-
|
2747
|
+
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line) :
|
2748
|
+
LocalException(file, line)
|
2749
2749
|
{
|
2750
2750
|
}
|
2751
2751
|
|
2752
|
-
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char*
|
2753
|
-
|
2754
|
-
unsupportedFeature(
|
2752
|
+
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line, const ::std::string& unsupportedFeature) :
|
2753
|
+
LocalException(file, line),
|
2754
|
+
unsupportedFeature(unsupportedFeature)
|
2755
2755
|
{
|
2756
2756
|
}
|
2757
2757
|
|
@@ -2777,14 +2777,14 @@ Ice::FeatureNotSupportedException::ice_throw() const
|
|
2777
2777
|
throw *this;
|
2778
2778
|
}
|
2779
2779
|
|
2780
|
-
Ice::SecurityException::SecurityException(const char*
|
2781
|
-
|
2780
|
+
Ice::SecurityException::SecurityException(const char* file, int line) :
|
2781
|
+
LocalException(file, line)
|
2782
2782
|
{
|
2783
2783
|
}
|
2784
2784
|
|
2785
|
-
Ice::SecurityException::SecurityException(const char*
|
2786
|
-
|
2787
|
-
reason(
|
2785
|
+
Ice::SecurityException::SecurityException(const char* file, int line, const ::std::string& reason) :
|
2786
|
+
LocalException(file, line),
|
2787
|
+
reason(reason)
|
2788
2788
|
{
|
2789
2789
|
}
|
2790
2790
|
|
@@ -2810,8 +2810,8 @@ Ice::SecurityException::ice_throw() const
|
|
2810
2810
|
throw *this;
|
2811
2811
|
}
|
2812
2812
|
|
2813
|
-
Ice::FixedProxyException::FixedProxyException(const char*
|
2814
|
-
|
2813
|
+
Ice::FixedProxyException::FixedProxyException(const char* file, int line) :
|
2814
|
+
LocalException(file, line)
|
2815
2815
|
{
|
2816
2816
|
}
|
2817
2817
|
|
@@ -2837,8 +2837,8 @@ Ice::FixedProxyException::ice_throw() const
|
|
2837
2837
|
throw *this;
|
2838
2838
|
}
|
2839
2839
|
|
2840
|
-
Ice::ResponseSentException::ResponseSentException(const char*
|
2841
|
-
|
2840
|
+
Ice::ResponseSentException::ResponseSentException(const char* file, int line) :
|
2841
|
+
LocalException(file, line)
|
2842
2842
|
{
|
2843
2843
|
}
|
2844
2844
|
|