zeroc-ice 3.7.10.1__cp312-cp312-win_amd64.whl → 3.8.0.post1__cp312-cp312-win_amd64.whl
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.
- Glacier2/CannotCreateSessionException.py +40 -0
- Glacier2/IdentitySet.py +293 -0
- Glacier2/IdentitySet_forward.py +10 -0
- Glacier2/PermissionDeniedException.py +40 -0
- Glacier2/PermissionsVerifier.py +189 -0
- Glacier2/PermissionsVerifier_forward.py +10 -0
- Glacier2/Router.py +661 -0
- Glacier2/Router_forward.py +10 -0
- Glacier2/SSLInfo.py +62 -0
- Glacier2/SSLPermissionsVerifier.py +186 -0
- Glacier2/SSLPermissionsVerifier_forward.py +10 -0
- Glacier2/SSLSessionManager.py +192 -0
- Glacier2/SSLSessionManager_forward.py +10 -0
- Glacier2/Session.py +161 -0
- Glacier2/SessionControl.py +407 -0
- Glacier2/SessionControl_forward.py +10 -0
- Glacier2/SessionManager.py +189 -0
- Glacier2/SessionManager_forward.py +10 -0
- Glacier2/SessionNotExistException.py +39 -0
- Glacier2/Session_forward.py +10 -0
- Glacier2/StringSet.py +289 -0
- Glacier2/StringSet_forward.py +10 -0
- Glacier2/__init__.py +79 -226
- Glacier2/py.typed +0 -0
- Ice/AdapterAlreadyActiveException.py +35 -0
- Ice/AdapterNotFoundException.py +35 -0
- Ice/BTEndpointType.py +18 -0
- Ice/BTSEndpointType.py +18 -0
- Ice/Blobject.py +42 -0
- Ice/BoolSeq.py +10 -0
- Ice/Builtin.py +11 -0
- Ice/ByteSeq.py +10 -0
- Ice/Communicator.py +633 -0
- Ice/CompressBatch.py +25 -0
- Ice/Context.py +10 -0
- Ice/Current.py +47 -0
- Ice/Dispatch.py +122 -0
- Ice/DoubleSeq.py +10 -0
- Ice/EncodingVersion.py +41 -0
- Ice/EndpointSelectionType.py +22 -0
- Ice/EventLoopAdapter.py +52 -0
- Ice/Exception.py +27 -0
- Ice/FloatSeq.py +10 -0
- Ice/FormatType.py +22 -0
- Ice/Future.py +375 -0
- Ice/IcePyTypes.py +49 -0
- Ice/Identity.py +40 -0
- Ice/IdentitySeq.py +12 -0
- Ice/ImplicitContext.py +119 -0
- Ice/InitializationData.py +65 -0
- Ice/IntSeq.py +10 -0
- Ice/InvalidReplicaGroupIdException.py +34 -0
- Ice/InvocationFuture.py +155 -0
- Ice/LocalException.py +12 -0
- Ice/LocalExceptions.py +534 -0
- Ice/Locator.py +332 -0
- Ice/LocatorFinder.py +163 -0
- Ice/LocatorFinder_forward.py +10 -0
- Ice/LocatorRegistry.py +387 -0
- Ice/LocatorRegistry_forward.py +10 -0
- Ice/Locator_forward.py +10 -0
- Ice/LogMessage.py +51 -0
- Ice/LogMessageSeq.py +12 -0
- Ice/LogMessageType.py +51 -0
- Ice/LogMessageTypeSeq.py +12 -0
- Ice/Logger.py +100 -0
- Ice/LoggerAdmin.py +380 -0
- Ice/LoggerAdmin_forward.py +10 -0
- Ice/LongSeq.py +10 -0
- Ice/Object.py +150 -0
- Ice/ObjectAdapter.py +621 -0
- Ice/ObjectNotFoundException.py +35 -0
- Ice/ObjectProxySeq.py +12 -0
- Ice/ObjectPrx.py +934 -0
- Ice/ObjectPrx_forward.py +7 -0
- Ice/ObjectSeq.py +12 -0
- Ice/OperationMode.py +52 -0
- Ice/Process.py +217 -0
- Ice/ProcessLogger.py +41 -0
- Ice/Process_forward.py +10 -0
- Ice/Properties.py +371 -0
- Ice/PropertiesAdmin.py +302 -0
- Ice/PropertiesAdmin_forward.py +10 -0
- Ice/PropertyDict.py +10 -0
- Ice/ProtocolVersion.py +39 -0
- Ice/Proxy.py +126 -0
- Ice/RemoteLogger.py +238 -0
- Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
- Ice/RemoteLogger_forward.py +10 -0
- Ice/ReplyStatus.py +91 -0
- Ice/Router.py +322 -0
- Ice/RouterFinder.py +163 -0
- Ice/RouterFinder_forward.py +10 -0
- Ice/Router_forward.py +10 -0
- Ice/SSLEndpointType.py +18 -0
- Ice/ServantLocator.py +88 -0
- Ice/ServerNotFoundException.py +34 -0
- Ice/ShortSeq.py +10 -0
- Ice/SliceChecksumDict.py +10 -0
- Ice/SliceInfo.py +22 -0
- Ice/SlicedData.py +14 -0
- Ice/StringSeq.py +10 -0
- Ice/TCPEndpointType.py +18 -0
- Ice/ToStringMode.py +34 -0
- Ice/UDPEndpointType.py +18 -0
- Ice/URIEndpointType.py +18 -0
- Ice/UnknownSlicedValue.py +39 -0
- Ice/UserException.py +18 -0
- Ice/Util.py +171 -0
- Ice/Value.py +59 -0
- Ice/Value_forward.py +7 -0
- Ice/WSEndpointType.py +18 -0
- Ice/WSSEndpointType.py +18 -0
- Ice/_ArrayUtil.py +51 -0
- Ice/_LoggerI.py +32 -0
- Ice/__init__.py +369 -2008
- Ice/asyncio/EventLoopAdapter.py +31 -0
- Ice/asyncio/__init__.py +5 -0
- Ice/iAPEndpointType.py +18 -0
- Ice/iAPSEndpointType.py +18 -0
- Ice/py.typed +0 -0
- IceBox/AlreadyStartedException.py +34 -0
- IceBox/AlreadyStoppedException.py +34 -0
- IceBox/NoSuchServiceException.py +34 -0
- IceBox/ServiceManager.py +447 -0
- IceBox/ServiceManager_forward.py +10 -0
- IceBox/ServiceObserver.py +229 -0
- IceBox/ServiceObserver_forward.py +10 -0
- IceBox/__init__.py +33 -10
- IceBox/py.typed +0 -0
- IceGrid/AccessDeniedException.py +40 -0
- IceGrid/AdapterDescriptor.py +77 -0
- IceGrid/AdapterDescriptorSeq.py +12 -0
- IceGrid/AdapterDynamicInfo.py +46 -0
- IceGrid/AdapterDynamicInfoSeq.py +12 -0
- IceGrid/AdapterInfo.py +50 -0
- IceGrid/AdapterInfoSeq.py +12 -0
- IceGrid/AdapterNotExistException.py +40 -0
- IceGrid/AdapterObserver.py +338 -0
- IceGrid/AdapterObserver_forward.py +10 -0
- IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
- IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Admin.py +3662 -0
- IceGrid/AdminSession.py +1406 -0
- IceGrid/AdminSession_forward.py +10 -0
- IceGrid/Admin_forward.py +10 -0
- IceGrid/AllocationException.py +40 -0
- IceGrid/AllocationTimeoutException.py +35 -0
- IceGrid/ApplicationDescriptor.py +89 -0
- IceGrid/ApplicationDescriptorSeq.py +12 -0
- IceGrid/ApplicationInfo.py +63 -0
- IceGrid/ApplicationInfoSeq.py +12 -0
- IceGrid/ApplicationNotExistException.py +40 -0
- IceGrid/ApplicationObserver.py +374 -0
- IceGrid/ApplicationObserver_forward.py +10 -0
- IceGrid/ApplicationUpdateDescriptor.py +118 -0
- IceGrid/ApplicationUpdateInfo.py +51 -0
- IceGrid/BadSignalException.py +40 -0
- IceGrid/BoxedDistributionDescriptor.py +49 -0
- IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
- IceGrid/BoxedString.py +45 -0
- IceGrid/BoxedString_forward.py +10 -0
- IceGrid/CommunicatorDescriptor.py +79 -0
- IceGrid/CommunicatorDescriptor_forward.py +10 -0
- IceGrid/DbEnvDescriptor.py +55 -0
- IceGrid/DbEnvDescriptorSeq.py +12 -0
- IceGrid/DeploymentException.py +40 -0
- IceGrid/DistributionDescriptor.py +42 -0
- IceGrid/FileIterator.py +246 -0
- IceGrid/FileIterator_forward.py +10 -0
- IceGrid/FileNotAvailableException.py +49 -0
- IceGrid/FileParser.py +182 -0
- IceGrid/FileParser_forward.py +10 -0
- IceGrid/IceBoxDescriptor.py +55 -0
- IceGrid/IceBoxDescriptor_forward.py +10 -0
- IceGrid/LoadBalancingPolicy.py +45 -0
- IceGrid/LoadBalancingPolicy_forward.py +10 -0
- IceGrid/LoadInfo.py +43 -0
- IceGrid/LoadSample.py +45 -0
- IceGrid/Locator.py +232 -0
- IceGrid/Locator_forward.py +10 -0
- IceGrid/NodeDescriptor.py +71 -0
- IceGrid/NodeDescriptorDict.py +12 -0
- IceGrid/NodeDynamicInfo.py +57 -0
- IceGrid/NodeDynamicInfoSeq.py +12 -0
- IceGrid/NodeInfo.py +64 -0
- IceGrid/NodeNotExistException.py +40 -0
- IceGrid/NodeObserver.py +424 -0
- IceGrid/NodeObserver_forward.py +10 -0
- IceGrid/NodeUnreachableException.py +46 -0
- IceGrid/NodeUpdateDescriptor.py +92 -0
- IceGrid/NodeUpdateDescriptorSeq.py +12 -0
- IceGrid/ObjectDescriptor.py +48 -0
- IceGrid/ObjectDescriptorSeq.py +12 -0
- IceGrid/ObjectExistsException.py +44 -0
- IceGrid/ObjectInfo.py +46 -0
- IceGrid/ObjectInfoSeq.py +12 -0
- IceGrid/ObjectNotRegisteredException.py +44 -0
- IceGrid/ObjectObserver.py +347 -0
- IceGrid/ObjectObserver_forward.py +10 -0
- IceGrid/ObserverAlreadyRegisteredException.py +49 -0
- IceGrid/OrderedLoadBalancingPolicy.py +41 -0
- IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ParseException.py +40 -0
- IceGrid/PermissionDeniedException.py +40 -0
- IceGrid/PropertyDescriptor.py +39 -0
- IceGrid/PropertyDescriptorSeq.py +12 -0
- IceGrid/PropertySetDescriptor.py +49 -0
- IceGrid/PropertySetDescriptorDict.py +12 -0
- IceGrid/Query.py +451 -0
- IceGrid/Query_forward.py +10 -0
- IceGrid/RandomLoadBalancingPolicy.py +41 -0
- IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Registry.py +477 -0
- IceGrid/RegistryInfo.py +39 -0
- IceGrid/RegistryInfoSeq.py +12 -0
- IceGrid/RegistryNotExistException.py +40 -0
- IceGrid/RegistryObserver.py +282 -0
- IceGrid/RegistryObserver_forward.py +10 -0
- IceGrid/RegistryUnreachableException.py +46 -0
- IceGrid/Registry_forward.py +10 -0
- IceGrid/ReplicaGroupDescriptor.py +66 -0
- IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
- IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
- IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ServerDescriptor.py +107 -0
- IceGrid/ServerDescriptorSeq.py +12 -0
- IceGrid/ServerDescriptor_forward.py +10 -0
- IceGrid/ServerDynamicInfo.py +50 -0
- IceGrid/ServerDynamicInfoSeq.py +12 -0
- IceGrid/ServerInfo.py +62 -0
- IceGrid/ServerInstanceDescriptor.py +58 -0
- IceGrid/ServerInstanceDescriptorSeq.py +12 -0
- IceGrid/ServerNotExistException.py +40 -0
- IceGrid/ServerStartException.py +46 -0
- IceGrid/ServerState.py +70 -0
- IceGrid/ServerStopException.py +46 -0
- IceGrid/ServiceDescriptor.py +53 -0
- IceGrid/ServiceDescriptorSeq.py +12 -0
- IceGrid/ServiceDescriptor_forward.py +10 -0
- IceGrid/ServiceInstanceDescriptor.py +60 -0
- IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
- IceGrid/Session.py +498 -0
- IceGrid/Session_forward.py +10 -0
- IceGrid/StringObjectProxyDict.py +12 -0
- IceGrid/StringStringDict.py +10 -0
- IceGrid/TemplateDescriptor.py +55 -0
- IceGrid/TemplateDescriptorDict.py +12 -0
- IceGrid/UserAccountMapper.py +178 -0
- IceGrid/UserAccountMapper_forward.py +10 -0
- IceGrid/UserAccountNotFoundException.py +34 -0
- IceGrid/__init__.py +375 -17
- IceGrid/py.typed +0 -0
- IceMX/ChildInvocationMetrics.py +56 -0
- IceMX/ChildInvocationMetrics_forward.py +10 -0
- IceMX/CollocatedMetrics.py +42 -0
- IceMX/CollocatedMetrics_forward.py +10 -0
- IceMX/ConnectionMetrics.py +53 -0
- IceMX/ConnectionMetrics_forward.py +10 -0
- IceMX/DispatchMetrics.py +57 -0
- IceMX/DispatchMetrics_forward.py +10 -0
- IceMX/InvocationMetrics.py +66 -0
- IceMX/InvocationMetrics_forward.py +10 -0
- IceMX/Metrics.py +66 -0
- IceMX/MetricsAdmin.py +586 -0
- IceMX/MetricsAdmin_forward.py +10 -0
- IceMX/MetricsFailures.py +42 -0
- IceMX/MetricsFailuresSeq.py +12 -0
- IceMX/MetricsMap.py +12 -0
- IceMX/MetricsView.py +12 -0
- IceMX/Metrics_forward.py +10 -0
- IceMX/RemoteMetrics.py +42 -0
- IceMX/RemoteMetrics_forward.py +10 -0
- IceMX/SessionMetrics.py +73 -0
- IceMX/SessionMetrics_forward.py +10 -0
- IceMX/StringIntDict.py +10 -0
- IceMX/SubscriberMetrics.py +57 -0
- IceMX/SubscriberMetrics_forward.py +10 -0
- IceMX/ThreadMetrics.py +59 -0
- IceMX/ThreadMetrics_forward.py +10 -0
- IceMX/TopicMetrics.py +53 -0
- IceMX/TopicMetrics_forward.py +10 -0
- IceMX/UnknownMetricsView.py +34 -0
- IceMX/__init__.py +75 -12
- IceMX/py.typed +0 -0
- IcePy-stubs/__init__.pyi +739 -0
- IcePy.cp312-win_amd64.pdb +0 -0
- IcePy.cp312-win_amd64.pyd +0 -0
- IceStorm/AlreadySubscribed.py +34 -0
- IceStorm/BadQoS.py +40 -0
- IceStorm/Finder.py +163 -0
- IceStorm/Finder_forward.py +10 -0
- IceStorm/LinkExists.py +40 -0
- IceStorm/LinkInfo.py +50 -0
- IceStorm/LinkInfoSeq.py +12 -0
- IceStorm/NoSuchLink.py +40 -0
- IceStorm/NoSuchTopic.py +40 -0
- IceStorm/QoS.py +10 -0
- IceStorm/Topic.py +825 -0
- IceStorm/TopicDict.py +12 -0
- IceStorm/TopicExists.py +40 -0
- IceStorm/TopicManager.py +394 -0
- IceStorm/TopicManager_forward.py +10 -0
- IceStorm/Topic_forward.py +10 -0
- IceStorm/__init__.py +61 -10
- IceStorm/py.typed +0 -0
- slice/DataStorm/SampleEvent.ice +29 -0
- slice/Glacier2/Metrics.ice +47 -88
- slice/Glacier2/PermissionsVerifier.ice +55 -111
- slice/Glacier2/Router.ice +93 -186
- slice/Glacier2/SSLInfo.ice +42 -59
- slice/Glacier2/Session.ice +133 -274
- slice/Ice/BuiltinSequences.ice +54 -59
- slice/Ice/Context.ice +24 -0
- slice/Ice/EndpointTypes.ice +50 -48
- slice/Ice/Identity.ice +36 -75
- slice/Ice/Locator.ice +74 -239
- slice/Ice/LocatorRegistry.ice +77 -0
- slice/Ice/Metrics.ice +201 -436
- slice/Ice/OperationMode.ice +38 -0
- slice/Ice/Process.ice +28 -64
- slice/Ice/PropertiesAdmin.ice +37 -87
- slice/Ice/PropertyDict.ice +23 -0
- slice/Ice/RemoteLogger.ice +126 -226
- slice/Ice/ReplyStatus.ice +65 -0
- slice/Ice/Router.ice +54 -103
- slice/Ice/SliceChecksumDict.ice +18 -36
- slice/Ice/Version.ice +43 -51
- slice/IceBox/ServiceManager.ice +79 -0
- slice/IceGrid/Admin.ice +981 -1957
- slice/IceGrid/Descriptor.ice +519 -1094
- slice/IceGrid/Exception.ice +98 -396
- slice/IceGrid/FileParser.ice +36 -72
- slice/IceGrid/Registry.ice +130 -269
- slice/IceGrid/Session.ice +64 -128
- slice/IceGrid/UserAccountMapper.ice +34 -69
- slice/IceStorm/IceStorm.ice +186 -414
- slice/IceStorm/Metrics.ice +41 -83
- slice2py.py +20 -21
- zeroc_ice-3.8.0.post1.dist-info/METADATA +106 -0
- zeroc_ice-3.8.0.post1.dist-info/RECORD +344 -0
- {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +1 -1
- {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +1 -1
- Glacier2/Metrics_ice.py +0 -82
- Glacier2/PermissionsVerifierF_ice.py +0 -32
- Glacier2/PermissionsVerifier_ice.py +0 -284
- Glacier2/RouterF_ice.py +0 -28
- Glacier2/Router_ice.py +0 -618
- Glacier2/SSLInfo_ice.py +0 -179
- Glacier2/Session_ice.py +0 -1103
- Ice/BuiltinSequences_ice.py +0 -65
- Ice/CommunicatorF_ice.py +0 -27
- Ice/Communicator_ice.py +0 -469
- Ice/ConnectionF_ice.py +0 -33
- Ice/Connection_ice.py +0 -680
- Ice/Current_ice.py +0 -175
- Ice/EndpointF_ice.py +0 -45
- Ice/EndpointTypes_ice.py +0 -54
- Ice/Endpoint_ice.py +0 -304
- Ice/FacetMap_ice.py +0 -27
- Ice/Identity_ice.py +0 -133
- Ice/ImplicitContextF_ice.py +0 -27
- Ice/ImplicitContext_ice.py +0 -119
- Ice/InstrumentationF_ice.py +0 -38
- Ice/Instrumentation_ice.py +0 -566
- Ice/LocalException_ice.py +0 -1715
- Ice/LocatorF_ice.py +0 -32
- Ice/Locator_ice.py +0 -728
- Ice/LoggerF_ice.py +0 -27
- Ice/Logger_ice.py +0 -96
- Ice/Metrics_ice.py +0 -864
- Ice/ObjectAdapterF_ice.py +0 -27
- Ice/ObjectAdapter_ice.py +0 -461
- Ice/ObjectFactory_ice.py +0 -68
- Ice/PluginF_ice.py +0 -30
- Ice/Plugin_ice.py +0 -136
- Ice/ProcessF_ice.py +0 -28
- Ice/Process_ice.py +0 -175
- Ice/PropertiesAdmin_ice.py +0 -247
- Ice/PropertiesF_ice.py +0 -31
- Ice/Properties_ice.py +0 -199
- Ice/Py3/IceFuture.py +0 -52
- Ice/Py3/__init__.py +0 -3
- Ice/RemoteLogger_ice.py +0 -617
- Ice/RouterF_ice.py +0 -28
- Ice/Router_ice.py +0 -350
- Ice/ServantLocatorF_ice.py +0 -27
- Ice/ServantLocator_ice.py +0 -110
- Ice/SliceChecksumDict_ice.py +0 -29
- Ice/ValueFactory_ice.py +0 -125
- Ice/Version_ice.py +0 -217
- IceBox/IceBox_ice.py +0 -644
- IceGrid/Admin_ice.py +0 -6662
- IceGrid/Descriptor_ice.py +0 -1795
- IceGrid/Exception_ice.py +0 -592
- IceGrid/FileParser_ice.py +0 -171
- IceGrid/PluginFacade_ice.py +0 -288
- IceGrid/Registry_ice.py +0 -985
- IceGrid/Session_ice.py +0 -406
- IceGrid/UserAccountMapper_ice.py +0 -166
- IcePatch2/FileInfo_ice.py +0 -287
- IcePatch2/FileServer_ice.py +0 -555
- IcePatch2/__init__.py +0 -11
- IceStorm/IceStorm_ice.py +0 -1265
- IceStorm/Metrics_ice.py +0 -106
- slice/Glacier2/PermissionsVerifierF.ice +0 -30
- slice/Glacier2/RouterF.ice +0 -29
- slice/Ice/Communicator.ice +0 -676
- slice/Ice/CommunicatorF.ice +0 -31
- slice/Ice/Connection.ice +0 -516
- slice/Ice/ConnectionF.ice +0 -33
- slice/Ice/Current.ice +0 -170
- slice/Ice/Endpoint.ice +0 -291
- slice/Ice/EndpointF.ice +0 -43
- slice/Ice/FacetMap.ice +0 -36
- slice/Ice/ImplicitContext.ice +0 -119
- slice/Ice/ImplicitContextF.ice +0 -30
- slice/Ice/Instrumentation.ice +0 -509
- slice/Ice/InstrumentationF.ice +0 -38
- slice/Ice/LocalException.ice +0 -1040
- slice/Ice/LocatorF.ice +0 -32
- slice/Ice/Logger.ice +0 -99
- slice/Ice/LoggerF.ice +0 -31
- slice/Ice/ObjectAdapter.ice +0 -710
- slice/Ice/ObjectAdapterF.ice +0 -31
- slice/Ice/ObjectFactory.ice +0 -71
- slice/Ice/Plugin.ice +0 -131
- slice/Ice/PluginF.ice +0 -36
- slice/Ice/ProcessF.ice +0 -31
- slice/Ice/Properties.ice +0 -244
- slice/Ice/PropertiesF.ice +0 -32
- slice/Ice/RouterF.ice +0 -31
- slice/Ice/ServantLocator.ice +0 -136
- slice/Ice/ServantLocatorF.ice +0 -31
- slice/Ice/ValueFactory.ice +0 -133
- slice/IceBT/ConnectionInfo.ice +0 -59
- slice/IceBT/EndpointInfo.ice +0 -57
- slice/IceBT/Types.ice +0 -45
- slice/IceBox/IceBox.ice +0 -216
- slice/IceDiscovery/IceDiscovery.ice +0 -98
- slice/IceGrid/PluginFacade.ice +0 -329
- slice/IceIAP/ConnectionInfo.ice +0 -74
- slice/IceIAP/EndpointInfo.ice +0 -68
- slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +0 -83
- slice/IcePatch2/FileInfo.ice +0 -85
- slice/IcePatch2/FileServer.ice +0 -191
- slice/IceSSL/ConnectionInfo.ice +0 -54
- slice/IceSSL/ConnectionInfoF.ice +0 -31
- slice/IceSSL/EndpointInfo.ice +0 -45
- zeroc_ice-3.7.10.1.dist-info/LICENSE +0 -340
- zeroc_ice-3.7.10.1.dist-info/METADATA +0 -97
- zeroc_ice-3.7.10.1.dist-info/RECORD +0 -145
- {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
Ice/BuiltinSequences_ice.py
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.10
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `BuiltinSequences.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
|
|
20
|
-
# Start of module Ice
|
|
21
|
-
_M_Ice = Ice.openModule('Ice')
|
|
22
|
-
__name__ = 'Ice'
|
|
23
|
-
|
|
24
|
-
if '_t_BoolSeq' not in _M_Ice.__dict__:
|
|
25
|
-
_M_Ice._t_BoolSeq = IcePy.defineSequence('::Ice::BoolSeq', (), IcePy._t_bool)
|
|
26
|
-
|
|
27
|
-
if '_t_ByteSeq' not in _M_Ice.__dict__:
|
|
28
|
-
_M_Ice._t_ByteSeq = IcePy.defineSequence('::Ice::ByteSeq', (), IcePy._t_byte)
|
|
29
|
-
|
|
30
|
-
if '_t_ShortSeq' not in _M_Ice.__dict__:
|
|
31
|
-
_M_Ice._t_ShortSeq = IcePy.defineSequence('::Ice::ShortSeq', (), IcePy._t_short)
|
|
32
|
-
|
|
33
|
-
if '_t_IntSeq' not in _M_Ice.__dict__:
|
|
34
|
-
_M_Ice._t_IntSeq = IcePy.defineSequence('::Ice::IntSeq', (), IcePy._t_int)
|
|
35
|
-
|
|
36
|
-
if '_t_LongSeq' not in _M_Ice.__dict__:
|
|
37
|
-
_M_Ice._t_LongSeq = IcePy.defineSequence('::Ice::LongSeq', (), IcePy._t_long)
|
|
38
|
-
|
|
39
|
-
if '_t_FloatSeq' not in _M_Ice.__dict__:
|
|
40
|
-
_M_Ice._t_FloatSeq = IcePy.defineSequence('::Ice::FloatSeq', (), IcePy._t_float)
|
|
41
|
-
|
|
42
|
-
if '_t_DoubleSeq' not in _M_Ice.__dict__:
|
|
43
|
-
_M_Ice._t_DoubleSeq = IcePy.defineSequence('::Ice::DoubleSeq', (), IcePy._t_double)
|
|
44
|
-
|
|
45
|
-
if '_t_StringSeq' not in _M_Ice.__dict__:
|
|
46
|
-
_M_Ice._t_StringSeq = IcePy.defineSequence('::Ice::StringSeq', (), IcePy._t_string)
|
|
47
|
-
|
|
48
|
-
if '_t_ObjectSeq' not in _M_Ice.__dict__:
|
|
49
|
-
_M_Ice._t_ObjectSeq = IcePy.defineSequence('::Ice::ObjectSeq', (), IcePy._t_Value)
|
|
50
|
-
|
|
51
|
-
if '_t_ObjectProxySeq' not in _M_Ice.__dict__:
|
|
52
|
-
_M_Ice._t_ObjectProxySeq = IcePy.defineSequence('::Ice::ObjectProxySeq', (), IcePy._t_ObjectPrx)
|
|
53
|
-
|
|
54
|
-
# End of module Ice
|
|
55
|
-
|
|
56
|
-
Ice.sliceChecksums["::Ice::BoolSeq"] = "321b1d4186eaf796937e82eed711fe7f"
|
|
57
|
-
Ice.sliceChecksums["::Ice::ByteSeq"] = "eae189e6d7b57b6f9628e78293d6d7"
|
|
58
|
-
Ice.sliceChecksums["::Ice::DoubleSeq"] = "7fb8b78b3ab4b2e358d27dc4d6f1e330"
|
|
59
|
-
Ice.sliceChecksums["::Ice::FloatSeq"] = "eb848491fad1518427fd58a7330958e"
|
|
60
|
-
Ice.sliceChecksums["::Ice::IntSeq"] = "826eab2e95b89b0476198b6a36991dc"
|
|
61
|
-
Ice.sliceChecksums["::Ice::LongSeq"] = "325a51044cdee10b14ecc3c1672a86"
|
|
62
|
-
Ice.sliceChecksums["::Ice::ObjectProxySeq"] = "45ccc241c2bbfebfbd031e733a5832"
|
|
63
|
-
Ice.sliceChecksums["::Ice::ObjectSeq"] = "a1e80bc6b87e9687455a4faa4c2f295"
|
|
64
|
-
Ice.sliceChecksums["::Ice::ShortSeq"] = "32aadcc785b88fc7198ae3d262ff3acd"
|
|
65
|
-
Ice.sliceChecksums["::Ice::StringSeq"] = "7986f19514e3b04fbe4af53c7446e563"
|
Ice/CommunicatorF_ice.py
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.10
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `CommunicatorF.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
|
|
20
|
-
# Start of module Ice
|
|
21
|
-
_M_Ice = Ice.openModule('Ice')
|
|
22
|
-
__name__ = 'Ice'
|
|
23
|
-
|
|
24
|
-
if 'Communicator' not in _M_Ice.__dict__:
|
|
25
|
-
_M_Ice._t_Communicator = IcePy.declareValue('::Ice::Communicator')
|
|
26
|
-
|
|
27
|
-
# End of module Ice
|
Ice/Communicator_ice.py
DELETED
|
@@ -1,469 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.10
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `Communicator.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
import Ice.LoggerF_ice
|
|
20
|
-
import Ice.InstrumentationF_ice
|
|
21
|
-
import Ice.ObjectAdapterF_ice
|
|
22
|
-
import Ice.ObjectFactory_ice
|
|
23
|
-
import Ice.ValueFactory_ice
|
|
24
|
-
import Ice.Router_ice
|
|
25
|
-
import Ice.Locator_ice
|
|
26
|
-
import Ice.PluginF_ice
|
|
27
|
-
import Ice.ImplicitContextF_ice
|
|
28
|
-
import Ice.Current_ice
|
|
29
|
-
import Ice.Properties_ice
|
|
30
|
-
import Ice.FacetMap_ice
|
|
31
|
-
import Ice.Connection_ice
|
|
32
|
-
|
|
33
|
-
# Included module Ice
|
|
34
|
-
_M_Ice = Ice.openModule('Ice')
|
|
35
|
-
|
|
36
|
-
# Included module Ice.Instrumentation
|
|
37
|
-
_M_Ice.Instrumentation = Ice.openModule('Ice.Instrumentation')
|
|
38
|
-
|
|
39
|
-
# Start of module Ice
|
|
40
|
-
__name__ = 'Ice'
|
|
41
|
-
_M_Ice.__doc__ = """
|
|
42
|
-
The Ice core library. Among many other features, the Ice core
|
|
43
|
-
library manages all the communication tasks using an efficient
|
|
44
|
-
protocol (including protocol compression and support for both TCP
|
|
45
|
-
and UDP), provides a thread pool for multi-threaded servers, and
|
|
46
|
-
additional functionality that supports high scalability.
|
|
47
|
-
"""
|
|
48
|
-
|
|
49
|
-
if 'Communicator' not in _M_Ice.__dict__:
|
|
50
|
-
_M_Ice.Communicator = Ice.createTempClass()
|
|
51
|
-
class Communicator(object):
|
|
52
|
-
"""
|
|
53
|
-
The central object in Ice. One or more communicators can be
|
|
54
|
-
instantiated for an Ice application. Communicator instantiation
|
|
55
|
-
is language-specific, and not specified in Slice code.
|
|
56
|
-
"""
|
|
57
|
-
def __init__(self):
|
|
58
|
-
if Ice.getType(self) == _M_Ice.Communicator:
|
|
59
|
-
raise RuntimeError('Ice.Communicator is an abstract class')
|
|
60
|
-
|
|
61
|
-
def destroy(self):
|
|
62
|
-
"""
|
|
63
|
-
Destroy the communicator. This operation calls shutdown
|
|
64
|
-
implicitly. Calling destroy cleans up memory, and shuts down
|
|
65
|
-
this communicator's client functionality and destroys all object
|
|
66
|
-
adapters. Subsequent calls to destroy are ignored.
|
|
67
|
-
"""
|
|
68
|
-
raise NotImplementedError("method 'destroy' not implemented")
|
|
69
|
-
|
|
70
|
-
def shutdown(self):
|
|
71
|
-
"""
|
|
72
|
-
Shuts down this communicator's server functionality, which
|
|
73
|
-
includes the deactivation of all object adapters. Attempts to use a
|
|
74
|
-
deactivated object adapter raise ObjectAdapterDeactivatedException.
|
|
75
|
-
Subsequent calls to shutdown are ignored.
|
|
76
|
-
After shutdown returns, no new requests are processed. However, requests
|
|
77
|
-
that have been started before shutdown was called might still be active.
|
|
78
|
-
You can use waitForShutdown to wait for the completion of all
|
|
79
|
-
requests.
|
|
80
|
-
"""
|
|
81
|
-
raise NotImplementedError("method 'shutdown' not implemented")
|
|
82
|
-
|
|
83
|
-
def waitForShutdown(self):
|
|
84
|
-
"""
|
|
85
|
-
Wait until the application has called shutdown (or destroy).
|
|
86
|
-
On the server side, this operation blocks the calling thread
|
|
87
|
-
until all currently-executing operations have completed.
|
|
88
|
-
On the client side, the operation simply blocks until another
|
|
89
|
-
thread has called shutdown or destroy.
|
|
90
|
-
A typical use of this operation is to call it from the main thread,
|
|
91
|
-
which then waits until some other thread calls shutdown.
|
|
92
|
-
After shut-down is complete, the main thread returns and can do some
|
|
93
|
-
cleanup work before it finally calls destroy to shut down
|
|
94
|
-
the client functionality, and then exits the application.
|
|
95
|
-
"""
|
|
96
|
-
raise NotImplementedError("method 'waitForShutdown' not implemented")
|
|
97
|
-
|
|
98
|
-
def isShutdown(self):
|
|
99
|
-
"""
|
|
100
|
-
Check whether communicator has been shut down.
|
|
101
|
-
Returns: True if the communicator has been shut down; false otherwise.
|
|
102
|
-
"""
|
|
103
|
-
raise NotImplementedError("method 'isShutdown' not implemented")
|
|
104
|
-
|
|
105
|
-
def stringToProxy(self, str):
|
|
106
|
-
"""
|
|
107
|
-
Convert a stringified proxy into a proxy. For example,
|
|
108
|
-
MyCategory/MyObject:tcp -h some_host -p
|
|
109
|
-
10000 creates a proxy that refers to the Ice object
|
|
110
|
-
having an identity with a name "MyObject" and a category
|
|
111
|
-
"MyCategory", with the server running on host "some_host", port
|
|
112
|
-
10000. If the stringified proxy does not parse correctly, the
|
|
113
|
-
operation throws one of ProxyParseException, EndpointParseException,
|
|
114
|
-
or IdentityParseException. Refer to the Ice manual for a detailed
|
|
115
|
-
description of the syntax supported by stringified proxies.
|
|
116
|
-
Arguments:
|
|
117
|
-
str -- The stringified proxy to convert into a proxy.
|
|
118
|
-
Returns: The proxy, or nil if str is an empty string.
|
|
119
|
-
"""
|
|
120
|
-
raise NotImplementedError("method 'stringToProxy' not implemented")
|
|
121
|
-
|
|
122
|
-
def proxyToString(self, obj):
|
|
123
|
-
"""
|
|
124
|
-
Convert a proxy into a string.
|
|
125
|
-
Arguments:
|
|
126
|
-
obj -- The proxy to convert into a stringified proxy.
|
|
127
|
-
Returns: The stringified proxy, or an empty string if obj is nil.
|
|
128
|
-
"""
|
|
129
|
-
raise NotImplementedError("method 'proxyToString' not implemented")
|
|
130
|
-
|
|
131
|
-
def propertyToProxy(self, property):
|
|
132
|
-
"""
|
|
133
|
-
Convert a set of proxy properties into a proxy. The "base"
|
|
134
|
-
name supplied in the property argument refers to a
|
|
135
|
-
property containing a stringified proxy, such as
|
|
136
|
-
MyProxy=id:tcp -h localhost -p 10000. Additional
|
|
137
|
-
properties configure local settings for the proxy, such as
|
|
138
|
-
MyProxy.PreferSecure=1. The "Properties"
|
|
139
|
-
appendix in the Ice manual describes each of the supported
|
|
140
|
-
proxy properties.
|
|
141
|
-
Arguments:
|
|
142
|
-
property -- The base property name.
|
|
143
|
-
Returns: The proxy.
|
|
144
|
-
"""
|
|
145
|
-
raise NotImplementedError("method 'propertyToProxy' not implemented")
|
|
146
|
-
|
|
147
|
-
def proxyToProperty(self, proxy, property):
|
|
148
|
-
"""
|
|
149
|
-
Convert a proxy to a set of proxy properties.
|
|
150
|
-
Arguments:
|
|
151
|
-
proxy -- The proxy.
|
|
152
|
-
property -- The base property name.
|
|
153
|
-
Returns: The property set.
|
|
154
|
-
"""
|
|
155
|
-
raise NotImplementedError("method 'proxyToProperty' not implemented")
|
|
156
|
-
|
|
157
|
-
def stringToIdentity(self, str):
|
|
158
|
-
"""
|
|
159
|
-
Convert a string into an identity. If the string does not parse
|
|
160
|
-
correctly, the operation throws IdentityParseException.
|
|
161
|
-
Arguments:
|
|
162
|
-
str -- The string to convert into an identity.
|
|
163
|
-
Returns: The identity.
|
|
164
|
-
"""
|
|
165
|
-
raise NotImplementedError("method 'stringToIdentity' not implemented")
|
|
166
|
-
|
|
167
|
-
def identityToString(self, ident):
|
|
168
|
-
"""
|
|
169
|
-
Convert an identity into a string.
|
|
170
|
-
Arguments:
|
|
171
|
-
ident -- The identity to convert into a string.
|
|
172
|
-
Returns: The "stringified" identity.
|
|
173
|
-
"""
|
|
174
|
-
raise NotImplementedError("method 'identityToString' not implemented")
|
|
175
|
-
|
|
176
|
-
def createObjectAdapter(self, name):
|
|
177
|
-
"""
|
|
178
|
-
Create a new object adapter. The endpoints for the object
|
|
179
|
-
adapter are taken from the property name.Endpoints.
|
|
180
|
-
It is legal to create an object adapter with the empty string as
|
|
181
|
-
its name. Such an object adapter is accessible via bidirectional
|
|
182
|
-
connections or by collocated invocations that originate from the
|
|
183
|
-
same communicator as is used by the adapter.
|
|
184
|
-
Attempts to create a named object adapter for which no configuration
|
|
185
|
-
can be found raise InitializationException.
|
|
186
|
-
Arguments:
|
|
187
|
-
name -- The object adapter name.
|
|
188
|
-
Returns: The new object adapter.
|
|
189
|
-
"""
|
|
190
|
-
raise NotImplementedError("method 'createObjectAdapter' not implemented")
|
|
191
|
-
|
|
192
|
-
def createObjectAdapterWithEndpoints(self, name, endpoints):
|
|
193
|
-
"""
|
|
194
|
-
Create a new object adapter with endpoints. This operation sets
|
|
195
|
-
the property name.Endpoints, and then calls
|
|
196
|
-
createObjectAdapter. It is provided as a convenience
|
|
197
|
-
function.
|
|
198
|
-
Calling this operation with an empty name will result in a
|
|
199
|
-
UUID being generated for the name.
|
|
200
|
-
Arguments:
|
|
201
|
-
name -- The object adapter name.
|
|
202
|
-
endpoints -- The endpoints for the object adapter.
|
|
203
|
-
Returns: The new object adapter.
|
|
204
|
-
"""
|
|
205
|
-
raise NotImplementedError("method 'createObjectAdapterWithEndpoints' not implemented")
|
|
206
|
-
|
|
207
|
-
def createObjectAdapterWithRouter(self, name, rtr):
|
|
208
|
-
"""
|
|
209
|
-
Create a new object adapter with a router. This operation
|
|
210
|
-
creates a routed object adapter.
|
|
211
|
-
Calling this operation with an empty name will result in a
|
|
212
|
-
UUID being generated for the name.
|
|
213
|
-
Arguments:
|
|
214
|
-
name -- The object adapter name.
|
|
215
|
-
rtr -- The router.
|
|
216
|
-
Returns: The new object adapter.
|
|
217
|
-
"""
|
|
218
|
-
raise NotImplementedError("method 'createObjectAdapterWithRouter' not implemented")
|
|
219
|
-
|
|
220
|
-
def addObjectFactory(self, factory, id):
|
|
221
|
-
"""
|
|
222
|
-
Add an object factory to this communicator. Installing a
|
|
223
|
-
factory with an id for which a factory is already registered
|
|
224
|
-
throws AlreadyRegisteredException.
|
|
225
|
-
When unmarshaling an Ice object, the Ice run time reads the
|
|
226
|
-
most-derived type id off the wire and attempts to create an
|
|
227
|
-
instance of the type using a factory. If no instance is created,
|
|
228
|
-
either because no factory was found, or because all factories
|
|
229
|
-
returned nil, the behavior of the Ice run time depends on the
|
|
230
|
-
format with which the object was marshaled:
|
|
231
|
-
If the object uses the "sliced" format, Ice ascends the class
|
|
232
|
-
hierarchy until it finds a type that is recognized by a factory,
|
|
233
|
-
or it reaches the least-derived type. If no factory is found that
|
|
234
|
-
can create an instance, the run time throws NoValueFactoryException.
|
|
235
|
-
If the object uses the "compact" format, Ice immediately raises
|
|
236
|
-
NoValueFactoryException.
|
|
237
|
-
The following order is used to locate a factory for a type:
|
|
238
|
-
The Ice run-time looks for a factory registered
|
|
239
|
-
specifically for the type.
|
|
240
|
-
If no instance has been created, the Ice run-time looks
|
|
241
|
-
for the default factory, which is registered with an empty type id.
|
|
242
|
-
If no instance has been created by any of the preceding
|
|
243
|
-
steps, the Ice run-time looks for a factory that may have been
|
|
244
|
-
statically generated by the language mapping for non-abstract classes.
|
|
245
|
-
Arguments:
|
|
246
|
-
factory -- The factory to add.
|
|
247
|
-
id -- The type id for which the factory can create instances, or an empty string for the default factory.
|
|
248
|
-
"""
|
|
249
|
-
raise NotImplementedError("method 'addObjectFactory' not implemented")
|
|
250
|
-
|
|
251
|
-
def findObjectFactory(self, id):
|
|
252
|
-
"""
|
|
253
|
-
Find an object factory registered with this communicator.
|
|
254
|
-
Arguments:
|
|
255
|
-
id -- The type id for which the factory can create instances, or an empty string for the default factory.
|
|
256
|
-
Returns: The object factory, or null if no object factory was found for the given id.
|
|
257
|
-
"""
|
|
258
|
-
raise NotImplementedError("method 'findObjectFactory' not implemented")
|
|
259
|
-
|
|
260
|
-
def getImplicitContext(self):
|
|
261
|
-
"""
|
|
262
|
-
Get the implicit context associated with this communicator.
|
|
263
|
-
Returns: The implicit context associated with this communicator; returns null when the property Ice.ImplicitContext is not set or is set to None.
|
|
264
|
-
"""
|
|
265
|
-
raise NotImplementedError("method 'getImplicitContext' not implemented")
|
|
266
|
-
|
|
267
|
-
def getProperties(self):
|
|
268
|
-
"""
|
|
269
|
-
Get the properties for this communicator.
|
|
270
|
-
Returns: This communicator's properties.
|
|
271
|
-
"""
|
|
272
|
-
raise NotImplementedError("method 'getProperties' not implemented")
|
|
273
|
-
|
|
274
|
-
def getLogger(self):
|
|
275
|
-
"""
|
|
276
|
-
Get the logger for this communicator.
|
|
277
|
-
Returns: This communicator's logger.
|
|
278
|
-
"""
|
|
279
|
-
raise NotImplementedError("method 'getLogger' not implemented")
|
|
280
|
-
|
|
281
|
-
def getObserver(self):
|
|
282
|
-
"""
|
|
283
|
-
Get the observer resolver object for this communicator.
|
|
284
|
-
Returns: This communicator's observer resolver object.
|
|
285
|
-
"""
|
|
286
|
-
raise NotImplementedError("method 'getObserver' not implemented")
|
|
287
|
-
|
|
288
|
-
def getDefaultRouter(self):
|
|
289
|
-
"""
|
|
290
|
-
Get the default router this communicator.
|
|
291
|
-
Returns: The default router for this communicator.
|
|
292
|
-
"""
|
|
293
|
-
raise NotImplementedError("method 'getDefaultRouter' not implemented")
|
|
294
|
-
|
|
295
|
-
def setDefaultRouter(self, rtr):
|
|
296
|
-
"""
|
|
297
|
-
Set a default router for this communicator. All newly
|
|
298
|
-
created proxies will use this default router. To disable the
|
|
299
|
-
default router, null can be used. Note that this
|
|
300
|
-
operation has no effect on existing proxies.
|
|
301
|
-
You can also set a router for an individual proxy
|
|
302
|
-
by calling the operation ice_router on the proxy.
|
|
303
|
-
Arguments:
|
|
304
|
-
rtr -- The default router to use for this communicator.
|
|
305
|
-
"""
|
|
306
|
-
raise NotImplementedError("method 'setDefaultRouter' not implemented")
|
|
307
|
-
|
|
308
|
-
def getDefaultLocator(self):
|
|
309
|
-
"""
|
|
310
|
-
Get the default locator this communicator.
|
|
311
|
-
Returns: The default locator for this communicator.
|
|
312
|
-
"""
|
|
313
|
-
raise NotImplementedError("method 'getDefaultLocator' not implemented")
|
|
314
|
-
|
|
315
|
-
def setDefaultLocator(self, loc):
|
|
316
|
-
"""
|
|
317
|
-
Set a default Ice locator for this communicator. All newly
|
|
318
|
-
created proxy and object adapters will use this default
|
|
319
|
-
locator. To disable the default locator, null can be used.
|
|
320
|
-
Note that this operation has no effect on existing proxies or
|
|
321
|
-
object adapters.
|
|
322
|
-
You can also set a locator for an individual proxy by calling the
|
|
323
|
-
operation ice_locator on the proxy, or for an object adapter
|
|
324
|
-
by calling ObjectAdapter#setLocator on the object adapter.
|
|
325
|
-
Arguments:
|
|
326
|
-
loc -- The default locator to use for this communicator.
|
|
327
|
-
"""
|
|
328
|
-
raise NotImplementedError("method 'setDefaultLocator' not implemented")
|
|
329
|
-
|
|
330
|
-
def getPluginManager(self):
|
|
331
|
-
"""
|
|
332
|
-
Get the plug-in manager for this communicator.
|
|
333
|
-
Returns: This communicator's plug-in manager.
|
|
334
|
-
"""
|
|
335
|
-
raise NotImplementedError("method 'getPluginManager' not implemented")
|
|
336
|
-
|
|
337
|
-
def getValueFactoryManager(self):
|
|
338
|
-
"""
|
|
339
|
-
Get the value factory manager for this communicator.
|
|
340
|
-
Returns: This communicator's value factory manager.
|
|
341
|
-
"""
|
|
342
|
-
raise NotImplementedError("method 'getValueFactoryManager' not implemented")
|
|
343
|
-
|
|
344
|
-
def flushBatchRequests(self, compress):
|
|
345
|
-
"""
|
|
346
|
-
Flush any pending batch requests for this communicator.
|
|
347
|
-
This means all batch requests invoked on fixed proxies
|
|
348
|
-
for all connections associated with the communicator.
|
|
349
|
-
Any errors that occur while flushing a connection are ignored.
|
|
350
|
-
Arguments:
|
|
351
|
-
compress -- Specifies whether or not the queued batch requests should be compressed before being sent over the wire.
|
|
352
|
-
"""
|
|
353
|
-
raise NotImplementedError("method 'flushBatchRequests' not implemented")
|
|
354
|
-
|
|
355
|
-
def createAdmin(self, adminAdapter, adminId):
|
|
356
|
-
"""
|
|
357
|
-
Add the Admin object with all its facets to the provided object adapter.
|
|
358
|
-
If Ice.Admin.ServerId is set and the provided object adapter has a Locator,
|
|
359
|
-
createAdmin registers the Admin's Process facet with the Locator's LocatorRegistry.
|
|
360
|
-
createAdmin must only be called once; subsequent calls raise InitializationException.
|
|
361
|
-
Arguments:
|
|
362
|
-
adminAdapter -- The object adapter used to host the Admin object; if null and Ice.Admin.Endpoints is set, create, activate and use the Ice.Admin object adapter.
|
|
363
|
-
adminId -- The identity of the Admin object.
|
|
364
|
-
Returns: A proxy to the main ("") facet of the Admin object. Never returns a null proxy.
|
|
365
|
-
"""
|
|
366
|
-
raise NotImplementedError("method 'createAdmin' not implemented")
|
|
367
|
-
|
|
368
|
-
def getAdmin(self):
|
|
369
|
-
"""
|
|
370
|
-
Get a proxy to the main facet of the Admin object.
|
|
371
|
-
getAdmin also creates the Admin object and creates and activates the Ice.Admin object
|
|
372
|
-
adapter to host this Admin object if Ice.Admin.Enpoints is set. The identity of the Admin
|
|
373
|
-
object created by getAdmin is {value of Ice.Admin.InstanceName}/admin, or {UUID}/admin
|
|
374
|
-
when Ice.Admin.InstanceName is not set.
|
|
375
|
-
If Ice.Admin.DelayCreation is 0 or not set, getAdmin is called by the communicator
|
|
376
|
-
initialization, after initialization of all plugins.
|
|
377
|
-
Returns: A proxy to the main ("") facet of the Admin object, or a null proxy if no Admin object is configured.
|
|
378
|
-
"""
|
|
379
|
-
raise NotImplementedError("method 'getAdmin' not implemented")
|
|
380
|
-
|
|
381
|
-
def addAdminFacet(self, servant, facet):
|
|
382
|
-
"""
|
|
383
|
-
Add a new facet to the Admin object.
|
|
384
|
-
Adding a servant with a facet that is already registered
|
|
385
|
-
throws AlreadyRegisteredException.
|
|
386
|
-
Arguments:
|
|
387
|
-
servant -- The servant that implements the new Admin facet.
|
|
388
|
-
facet -- The name of the new Admin facet.
|
|
389
|
-
"""
|
|
390
|
-
raise NotImplementedError("method 'addAdminFacet' not implemented")
|
|
391
|
-
|
|
392
|
-
def removeAdminFacet(self, facet):
|
|
393
|
-
"""
|
|
394
|
-
Remove the following facet to the Admin object.
|
|
395
|
-
Removing a facet that was not previously registered throws
|
|
396
|
-
NotRegisteredException.
|
|
397
|
-
Arguments:
|
|
398
|
-
facet -- The name of the Admin facet.
|
|
399
|
-
Returns: The servant associated with this Admin facet.
|
|
400
|
-
"""
|
|
401
|
-
raise NotImplementedError("method 'removeAdminFacet' not implemented")
|
|
402
|
-
|
|
403
|
-
def findAdminFacet(self, facet):
|
|
404
|
-
"""
|
|
405
|
-
Returns a facet of the Admin object.
|
|
406
|
-
Arguments:
|
|
407
|
-
facet -- The name of the Admin facet.
|
|
408
|
-
Returns: The servant associated with this Admin facet, or null if no facet is registered with the given name.
|
|
409
|
-
"""
|
|
410
|
-
raise NotImplementedError("method 'findAdminFacet' not implemented")
|
|
411
|
-
|
|
412
|
-
def findAllAdminFacets(self):
|
|
413
|
-
"""
|
|
414
|
-
Returns a map of all facets of the Admin object.
|
|
415
|
-
Returns: A collection containing all the facet names and servants of the Admin object.
|
|
416
|
-
"""
|
|
417
|
-
raise NotImplementedError("method 'findAllAdminFacets' not implemented")
|
|
418
|
-
|
|
419
|
-
def __str__(self):
|
|
420
|
-
return IcePy.stringify(self, _M_Ice._t_Communicator)
|
|
421
|
-
|
|
422
|
-
__repr__ = __str__
|
|
423
|
-
|
|
424
|
-
_M_Ice._t_Communicator = IcePy.defineValue('::Ice::Communicator', Communicator, -1, (), False, True, None, ())
|
|
425
|
-
Communicator._ice_type = _M_Ice._t_Communicator
|
|
426
|
-
|
|
427
|
-
_M_Ice.Communicator = Communicator
|
|
428
|
-
del Communicator
|
|
429
|
-
|
|
430
|
-
if 'ToStringMode' not in _M_Ice.__dict__:
|
|
431
|
-
_M_Ice.ToStringMode = Ice.createTempClass()
|
|
432
|
-
class ToStringMode(Ice.EnumBase):
|
|
433
|
-
"""
|
|
434
|
-
The output mode for xxxToString method such as identityToString and proxyToString.
|
|
435
|
-
The actual encoding format for the string is the same for all modes: you
|
|
436
|
-
don't need to specify an encoding format or mode when reading such a string.
|
|
437
|
-
Enumerators:
|
|
438
|
-
Unicode -- Characters with ordinal values greater than 127 are kept as-is in the resulting string.
|
|
439
|
-
Non-printable ASCII characters with ordinal values 127 and below are encoded as \\t, \\n (etc.)
|
|
440
|
-
or \\unnnn.
|
|
441
|
-
ASCII -- Characters with ordinal values greater than 127 are encoded as universal character names in
|
|
442
|
-
the resulting string: \\unnnn for BMP characters and \\Unnnnnnnn for non-BMP characters.
|
|
443
|
-
Non-printable ASCII characters with ordinal values 127 and below are encoded as \\t, \\n (etc.)
|
|
444
|
-
or \\unnnn.
|
|
445
|
-
Compat -- Characters with ordinal values greater than 127 are encoded as a sequence of UTF-8 bytes using
|
|
446
|
-
octal escapes. Characters with ordinal values 127 and below are encoded as \\t, \\n (etc.) or
|
|
447
|
-
an octal escape. Use this mode to generate strings compatible with Ice 3.6 and earlier.
|
|
448
|
-
"""
|
|
449
|
-
|
|
450
|
-
def __init__(self, _n, _v):
|
|
451
|
-
Ice.EnumBase.__init__(self, _n, _v)
|
|
452
|
-
|
|
453
|
-
def valueOf(self, _n):
|
|
454
|
-
if _n in self._enumerators:
|
|
455
|
-
return self._enumerators[_n]
|
|
456
|
-
return None
|
|
457
|
-
valueOf = classmethod(valueOf)
|
|
458
|
-
|
|
459
|
-
ToStringMode.Unicode = ToStringMode("Unicode", 0)
|
|
460
|
-
ToStringMode.ASCII = ToStringMode("ASCII", 1)
|
|
461
|
-
ToStringMode.Compat = ToStringMode("Compat", 2)
|
|
462
|
-
ToStringMode._enumerators = { 0:ToStringMode.Unicode, 1:ToStringMode.ASCII, 2:ToStringMode.Compat }
|
|
463
|
-
|
|
464
|
-
_M_Ice._t_ToStringMode = IcePy.defineEnum('::Ice::ToStringMode', ToStringMode, (), ToStringMode._enumerators)
|
|
465
|
-
|
|
466
|
-
_M_Ice.ToStringMode = ToStringMode
|
|
467
|
-
del ToStringMode
|
|
468
|
-
|
|
469
|
-
# End of module Ice
|
Ice/ConnectionF_ice.py
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.10
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `ConnectionF.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
|
|
20
|
-
# Start of module Ice
|
|
21
|
-
_M_Ice = Ice.openModule('Ice')
|
|
22
|
-
__name__ = 'Ice'
|
|
23
|
-
|
|
24
|
-
if 'ConnectionInfo' not in _M_Ice.__dict__:
|
|
25
|
-
_M_Ice._t_ConnectionInfo = IcePy.declareValue('::Ice::ConnectionInfo')
|
|
26
|
-
|
|
27
|
-
if 'WSConnectionInfo' not in _M_Ice.__dict__:
|
|
28
|
-
_M_Ice._t_WSConnectionInfo = IcePy.declareValue('::Ice::WSConnectionInfo')
|
|
29
|
-
|
|
30
|
-
if 'Connection' not in _M_Ice.__dict__:
|
|
31
|
-
_M_Ice._t_Connection = IcePy.declareValue('::Ice::Connection')
|
|
32
|
-
|
|
33
|
-
# End of module Ice
|