grpcio-fips 1.53.2__0-cp38-cp38-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.
Files changed (62) hide show
  1. grpc/__init__.py +2174 -0
  2. grpc/_auth.py +68 -0
  3. grpc/_channel.py +1767 -0
  4. grpc/_common.py +177 -0
  5. grpc/_compression.py +63 -0
  6. grpc/_cython/__init__.py +13 -0
  7. grpc/_cython/_credentials/roots.pem +4337 -0
  8. grpc/_cython/_cygrpc/__init__.py +13 -0
  9. grpc/_cython/cygrpc.cp38-win_amd64.pyd +0 -0
  10. grpc/_grpcio_metadata.py +1 -0
  11. grpc/_interceptor.py +638 -0
  12. grpc/_plugin_wrapping.py +121 -0
  13. grpc/_runtime_protos.py +159 -0
  14. grpc/_server.py +1141 -0
  15. grpc/_simple_stubs.py +486 -0
  16. grpc/_typing.py +58 -0
  17. grpc/_utilities.py +180 -0
  18. grpc/aio/__init__.py +95 -0
  19. grpc/aio/_base_call.py +248 -0
  20. grpc/aio/_base_channel.py +348 -0
  21. grpc/aio/_base_server.py +369 -0
  22. grpc/aio/_call.py +649 -0
  23. grpc/aio/_channel.py +492 -0
  24. grpc/aio/_interceptor.py +1003 -0
  25. grpc/aio/_metadata.py +120 -0
  26. grpc/aio/_server.py +209 -0
  27. grpc/aio/_typing.py +35 -0
  28. grpc/aio/_utils.py +22 -0
  29. grpc/beta/__init__.py +13 -0
  30. grpc/beta/_client_adaptations.py +706 -0
  31. grpc/beta/_metadata.py +52 -0
  32. grpc/beta/_server_adaptations.py +385 -0
  33. grpc/beta/implementations.py +311 -0
  34. grpc/beta/interfaces.py +163 -0
  35. grpc/beta/utilities.py +149 -0
  36. grpc/experimental/__init__.py +128 -0
  37. grpc/experimental/aio/__init__.py +16 -0
  38. grpc/experimental/gevent.py +27 -0
  39. grpc/experimental/session_cache.py +45 -0
  40. grpc/framework/__init__.py +13 -0
  41. grpc/framework/common/__init__.py +13 -0
  42. grpc/framework/common/cardinality.py +26 -0
  43. grpc/framework/common/style.py +24 -0
  44. grpc/framework/foundation/__init__.py +13 -0
  45. grpc/framework/foundation/abandonment.py +22 -0
  46. grpc/framework/foundation/callable_util.py +94 -0
  47. grpc/framework/foundation/future.py +219 -0
  48. grpc/framework/foundation/logging_pool.py +71 -0
  49. grpc/framework/foundation/stream.py +43 -0
  50. grpc/framework/foundation/stream_util.py +148 -0
  51. grpc/framework/interfaces/__init__.py +13 -0
  52. grpc/framework/interfaces/base/__init__.py +13 -0
  53. grpc/framework/interfaces/base/base.py +325 -0
  54. grpc/framework/interfaces/base/utilities.py +71 -0
  55. grpc/framework/interfaces/face/__init__.py +13 -0
  56. grpc/framework/interfaces/face/face.py +1049 -0
  57. grpc/framework/interfaces/face/utilities.py +168 -0
  58. grpcio_fips-1.53.2.dist-info/LICENSE +610 -0
  59. grpcio_fips-1.53.2.dist-info/METADATA +139 -0
  60. grpcio_fips-1.53.2.dist-info/RECORD +62 -0
  61. grpcio_fips-1.53.2.dist-info/WHEEL +5 -0
  62. grpcio_fips-1.53.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,311 @@
1
+ # Copyright 2015-2016 gRPC authors.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Entry points into the Beta API of gRPC Python."""
15
+
16
+ # threading is referenced from specification in this module.
17
+ import threading # pylint: disable=unused-import
18
+
19
+ # interfaces, cardinality, and face are referenced from specification in this
20
+ # module.
21
+ import grpc
22
+ from grpc import _auth
23
+ from grpc.beta import _client_adaptations
24
+ from grpc.beta import _metadata
25
+ from grpc.beta import _server_adaptations
26
+ from grpc.beta import interfaces # pylint: disable=unused-import
27
+ from grpc.framework.common import cardinality # pylint: disable=unused-import
28
+ from grpc.framework.interfaces.face import \
29
+ face # pylint: disable=unused-import
30
+
31
+ # pylint: disable=too-many-arguments
32
+
33
+ ChannelCredentials = grpc.ChannelCredentials
34
+ ssl_channel_credentials = grpc.ssl_channel_credentials
35
+ CallCredentials = grpc.CallCredentials
36
+
37
+
38
+ def metadata_call_credentials(metadata_plugin, name=None):
39
+
40
+ def plugin(context, callback):
41
+
42
+ def wrapped_callback(beta_metadata, error):
43
+ callback(_metadata.unbeta(beta_metadata), error)
44
+
45
+ metadata_plugin(context, wrapped_callback)
46
+
47
+ return grpc.metadata_call_credentials(plugin, name=name)
48
+
49
+
50
+ def google_call_credentials(credentials):
51
+ """Construct CallCredentials from GoogleCredentials.
52
+
53
+ Args:
54
+ credentials: A GoogleCredentials object from the oauth2client library.
55
+
56
+ Returns:
57
+ A CallCredentials object for use in a GRPCCallOptions object.
58
+ """
59
+ return metadata_call_credentials(_auth.GoogleCallCredentials(credentials))
60
+
61
+
62
+ access_token_call_credentials = grpc.access_token_call_credentials
63
+ composite_call_credentials = grpc.composite_call_credentials
64
+ composite_channel_credentials = grpc.composite_channel_credentials
65
+
66
+
67
+ class Channel(object):
68
+ """A channel to a remote host through which RPCs may be conducted.
69
+
70
+ Only the "subscribe" and "unsubscribe" methods are supported for application
71
+ use. This class' instance constructor and all other attributes are
72
+ unsupported.
73
+ """
74
+
75
+ def __init__(self, channel):
76
+ self._channel = channel
77
+
78
+ def subscribe(self, callback, try_to_connect=None):
79
+ """Subscribes to this Channel's connectivity.
80
+
81
+ Args:
82
+ callback: A callable to be invoked and passed an
83
+ interfaces.ChannelConnectivity identifying this Channel's connectivity.
84
+ The callable will be invoked immediately upon subscription and again for
85
+ every change to this Channel's connectivity thereafter until it is
86
+ unsubscribed.
87
+ try_to_connect: A boolean indicating whether or not this Channel should
88
+ attempt to connect if it is not already connected and ready to conduct
89
+ RPCs.
90
+ """
91
+ self._channel.subscribe(callback, try_to_connect=try_to_connect)
92
+
93
+ def unsubscribe(self, callback):
94
+ """Unsubscribes a callback from this Channel's connectivity.
95
+
96
+ Args:
97
+ callback: A callable previously registered with this Channel from having
98
+ been passed to its "subscribe" method.
99
+ """
100
+ self._channel.unsubscribe(callback)
101
+
102
+
103
+ def insecure_channel(host, port):
104
+ """Creates an insecure Channel to a remote host.
105
+
106
+ Args:
107
+ host: The name of the remote host to which to connect.
108
+ port: The port of the remote host to which to connect.
109
+ If None only the 'host' part will be used.
110
+
111
+ Returns:
112
+ A Channel to the remote host through which RPCs may be conducted.
113
+ """
114
+ channel = grpc.insecure_channel(host if port is None else '%s:%d' %
115
+ (host, port))
116
+ return Channel(channel)
117
+
118
+
119
+ def secure_channel(host, port, channel_credentials):
120
+ """Creates a secure Channel to a remote host.
121
+
122
+ Args:
123
+ host: The name of the remote host to which to connect.
124
+ port: The port of the remote host to which to connect.
125
+ If None only the 'host' part will be used.
126
+ channel_credentials: A ChannelCredentials.
127
+
128
+ Returns:
129
+ A secure Channel to the remote host through which RPCs may be conducted.
130
+ """
131
+ channel = grpc.secure_channel(
132
+ host if port is None else '%s:%d' % (host, port), channel_credentials)
133
+ return Channel(channel)
134
+
135
+
136
+ class StubOptions(object):
137
+ """A value encapsulating the various options for creation of a Stub.
138
+
139
+ This class and its instances have no supported interface - it exists to define
140
+ the type of its instances and its instances exist to be passed to other
141
+ functions.
142
+ """
143
+
144
+ def __init__(self, host, request_serializers, response_deserializers,
145
+ metadata_transformer, thread_pool, thread_pool_size):
146
+ self.host = host
147
+ self.request_serializers = request_serializers
148
+ self.response_deserializers = response_deserializers
149
+ self.metadata_transformer = metadata_transformer
150
+ self.thread_pool = thread_pool
151
+ self.thread_pool_size = thread_pool_size
152
+
153
+
154
+ _EMPTY_STUB_OPTIONS = StubOptions(None, None, None, None, None, None)
155
+
156
+
157
+ def stub_options(host=None,
158
+ request_serializers=None,
159
+ response_deserializers=None,
160
+ metadata_transformer=None,
161
+ thread_pool=None,
162
+ thread_pool_size=None):
163
+ """Creates a StubOptions value to be passed at stub creation.
164
+
165
+ All parameters are optional and should always be passed by keyword.
166
+
167
+ Args:
168
+ host: A host string to set on RPC calls.
169
+ request_serializers: A dictionary from service name-method name pair to
170
+ request serialization behavior.
171
+ response_deserializers: A dictionary from service name-method name pair to
172
+ response deserialization behavior.
173
+ metadata_transformer: A callable that given a metadata object produces
174
+ another metadata object to be used in the underlying communication on the
175
+ wire.
176
+ thread_pool: A thread pool to use in stubs.
177
+ thread_pool_size: The size of thread pool to create for use in stubs;
178
+ ignored if thread_pool has been passed.
179
+
180
+ Returns:
181
+ A StubOptions value created from the passed parameters.
182
+ """
183
+ return StubOptions(host, request_serializers, response_deserializers,
184
+ metadata_transformer, thread_pool, thread_pool_size)
185
+
186
+
187
+ def generic_stub(channel, options=None):
188
+ """Creates a face.GenericStub on which RPCs can be made.
189
+
190
+ Args:
191
+ channel: A Channel for use by the created stub.
192
+ options: A StubOptions customizing the created stub.
193
+
194
+ Returns:
195
+ A face.GenericStub on which RPCs can be made.
196
+ """
197
+ effective_options = _EMPTY_STUB_OPTIONS if options is None else options
198
+ return _client_adaptations.generic_stub(
199
+ channel._channel, # pylint: disable=protected-access
200
+ effective_options.host,
201
+ effective_options.metadata_transformer,
202
+ effective_options.request_serializers,
203
+ effective_options.response_deserializers)
204
+
205
+
206
+ def dynamic_stub(channel, service, cardinalities, options=None):
207
+ """Creates a face.DynamicStub with which RPCs can be invoked.
208
+
209
+ Args:
210
+ channel: A Channel for the returned face.DynamicStub to use.
211
+ service: The package-qualified full name of the service.
212
+ cardinalities: A dictionary from RPC method name to cardinality.Cardinality
213
+ value identifying the cardinality of the RPC method.
214
+ options: An optional StubOptions value further customizing the functionality
215
+ of the returned face.DynamicStub.
216
+
217
+ Returns:
218
+ A face.DynamicStub with which RPCs can be invoked.
219
+ """
220
+ effective_options = _EMPTY_STUB_OPTIONS if options is None else options
221
+ return _client_adaptations.dynamic_stub(
222
+ channel._channel, # pylint: disable=protected-access
223
+ service,
224
+ cardinalities,
225
+ effective_options.host,
226
+ effective_options.metadata_transformer,
227
+ effective_options.request_serializers,
228
+ effective_options.response_deserializers)
229
+
230
+
231
+ ServerCredentials = grpc.ServerCredentials
232
+ ssl_server_credentials = grpc.ssl_server_credentials
233
+
234
+
235
+ class ServerOptions(object):
236
+ """A value encapsulating the various options for creation of a Server.
237
+
238
+ This class and its instances have no supported interface - it exists to define
239
+ the type of its instances and its instances exist to be passed to other
240
+ functions.
241
+ """
242
+
243
+ def __init__(self, multi_method_implementation, request_deserializers,
244
+ response_serializers, thread_pool, thread_pool_size,
245
+ default_timeout, maximum_timeout):
246
+ self.multi_method_implementation = multi_method_implementation
247
+ self.request_deserializers = request_deserializers
248
+ self.response_serializers = response_serializers
249
+ self.thread_pool = thread_pool
250
+ self.thread_pool_size = thread_pool_size
251
+ self.default_timeout = default_timeout
252
+ self.maximum_timeout = maximum_timeout
253
+
254
+
255
+ _EMPTY_SERVER_OPTIONS = ServerOptions(None, None, None, None, None, None, None)
256
+
257
+
258
+ def server_options(multi_method_implementation=None,
259
+ request_deserializers=None,
260
+ response_serializers=None,
261
+ thread_pool=None,
262
+ thread_pool_size=None,
263
+ default_timeout=None,
264
+ maximum_timeout=None):
265
+ """Creates a ServerOptions value to be passed at server creation.
266
+
267
+ All parameters are optional and should always be passed by keyword.
268
+
269
+ Args:
270
+ multi_method_implementation: A face.MultiMethodImplementation to be called
271
+ to service an RPC if the server has no specific method implementation for
272
+ the name of the RPC for which service was requested.
273
+ request_deserializers: A dictionary from service name-method name pair to
274
+ request deserialization behavior.
275
+ response_serializers: A dictionary from service name-method name pair to
276
+ response serialization behavior.
277
+ thread_pool: A thread pool to use in stubs.
278
+ thread_pool_size: The size of thread pool to create for use in stubs;
279
+ ignored if thread_pool has been passed.
280
+ default_timeout: A duration in seconds to allow for RPC service when
281
+ servicing RPCs that did not include a timeout value when invoked.
282
+ maximum_timeout: A duration in seconds to allow for RPC service when
283
+ servicing RPCs no matter what timeout value was passed when the RPC was
284
+ invoked.
285
+
286
+ Returns:
287
+ A StubOptions value created from the passed parameters.
288
+ """
289
+ return ServerOptions(multi_method_implementation, request_deserializers,
290
+ response_serializers, thread_pool, thread_pool_size,
291
+ default_timeout, maximum_timeout)
292
+
293
+
294
+ def server(service_implementations, options=None):
295
+ """Creates an interfaces.Server with which RPCs can be serviced.
296
+
297
+ Args:
298
+ service_implementations: A dictionary from service name-method name pair to
299
+ face.MethodImplementation.
300
+ options: An optional ServerOptions value further customizing the
301
+ functionality of the returned Server.
302
+
303
+ Returns:
304
+ An interfaces.Server with which RPCs can be serviced.
305
+ """
306
+ effective_options = _EMPTY_SERVER_OPTIONS if options is None else options
307
+ return _server_adaptations.server(
308
+ service_implementations, effective_options.multi_method_implementation,
309
+ effective_options.request_deserializers,
310
+ effective_options.response_serializers, effective_options.thread_pool,
311
+ effective_options.thread_pool_size)
@@ -0,0 +1,163 @@
1
+ # Copyright 2015 gRPC authors.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Constants and interfaces of the Beta API of gRPC Python."""
15
+
16
+ import abc
17
+
18
+ import grpc
19
+
20
+ ChannelConnectivity = grpc.ChannelConnectivity
21
+ # FATAL_FAILURE was a Beta-API name for SHUTDOWN
22
+ ChannelConnectivity.FATAL_FAILURE = ChannelConnectivity.SHUTDOWN
23
+
24
+ StatusCode = grpc.StatusCode
25
+
26
+
27
+ class GRPCCallOptions(object):
28
+ """A value encapsulating gRPC-specific options passed on RPC invocation.
29
+
30
+ This class and its instances have no supported interface - it exists to
31
+ define the type of its instances and its instances exist to be passed to
32
+ other functions.
33
+ """
34
+
35
+ def __init__(self, disable_compression, subcall_of, credentials):
36
+ self.disable_compression = disable_compression
37
+ self.subcall_of = subcall_of
38
+ self.credentials = credentials
39
+
40
+
41
+ def grpc_call_options(disable_compression=False, credentials=None):
42
+ """Creates a GRPCCallOptions value to be passed at RPC invocation.
43
+
44
+ All parameters are optional and should always be passed by keyword.
45
+
46
+ Args:
47
+ disable_compression: A boolean indicating whether or not compression should
48
+ be disabled for the request object of the RPC. Only valid for
49
+ request-unary RPCs.
50
+ credentials: A CallCredentials object to use for the invoked RPC.
51
+ """
52
+ return GRPCCallOptions(disable_compression, None, credentials)
53
+
54
+
55
+ GRPCAuthMetadataContext = grpc.AuthMetadataContext
56
+ GRPCAuthMetadataPluginCallback = grpc.AuthMetadataPluginCallback
57
+ GRPCAuthMetadataPlugin = grpc.AuthMetadataPlugin
58
+
59
+
60
+ class GRPCServicerContext(abc.ABC):
61
+ """Exposes gRPC-specific options and behaviors to code servicing RPCs."""
62
+
63
+ @abc.abstractmethod
64
+ def peer(self):
65
+ """Identifies the peer that invoked the RPC being serviced.
66
+
67
+ Returns:
68
+ A string identifying the peer that invoked the RPC being serviced.
69
+ """
70
+ raise NotImplementedError()
71
+
72
+ @abc.abstractmethod
73
+ def disable_next_response_compression(self):
74
+ """Disables compression of the next response passed by the application."""
75
+ raise NotImplementedError()
76
+
77
+
78
+ class GRPCInvocationContext(abc.ABC):
79
+ """Exposes gRPC-specific options and behaviors to code invoking RPCs."""
80
+
81
+ @abc.abstractmethod
82
+ def disable_next_request_compression(self):
83
+ """Disables compression of the next request passed by the application."""
84
+ raise NotImplementedError()
85
+
86
+
87
+ class Server(abc.ABC):
88
+ """Services RPCs."""
89
+
90
+ @abc.abstractmethod
91
+ def add_insecure_port(self, address):
92
+ """Reserves a port for insecure RPC service once this Server becomes active.
93
+
94
+ This method may only be called before calling this Server's start method is
95
+ called.
96
+
97
+ Args:
98
+ address: The address for which to open a port.
99
+
100
+ Returns:
101
+ An integer port on which RPCs will be serviced after this link has been
102
+ started. This is typically the same number as the port number contained
103
+ in the passed address, but will likely be different if the port number
104
+ contained in the passed address was zero.
105
+ """
106
+ raise NotImplementedError()
107
+
108
+ @abc.abstractmethod
109
+ def add_secure_port(self, address, server_credentials):
110
+ """Reserves a port for secure RPC service after this Server becomes active.
111
+
112
+ This method may only be called before calling this Server's start method is
113
+ called.
114
+
115
+ Args:
116
+ address: The address for which to open a port.
117
+ server_credentials: A ServerCredentials.
118
+
119
+ Returns:
120
+ An integer port on which RPCs will be serviced after this link has been
121
+ started. This is typically the same number as the port number contained
122
+ in the passed address, but will likely be different if the port number
123
+ contained in the passed address was zero.
124
+ """
125
+ raise NotImplementedError()
126
+
127
+ @abc.abstractmethod
128
+ def start(self):
129
+ """Starts this Server's service of RPCs.
130
+
131
+ This method may only be called while the server is not serving RPCs (i.e. it
132
+ is not idempotent).
133
+ """
134
+ raise NotImplementedError()
135
+
136
+ @abc.abstractmethod
137
+ def stop(self, grace):
138
+ """Stops this Server's service of RPCs.
139
+
140
+ All calls to this method immediately stop service of new RPCs. When existing
141
+ RPCs are aborted is controlled by the grace period parameter passed to this
142
+ method.
143
+
144
+ This method may be called at any time and is idempotent. Passing a smaller
145
+ grace value than has been passed in a previous call will have the effect of
146
+ stopping the Server sooner. Passing a larger grace value than has been
147
+ passed in a previous call will not have the effect of stopping the server
148
+ later.
149
+
150
+ Args:
151
+ grace: A duration of time in seconds to allow existing RPCs to complete
152
+ before being aborted by this Server's stopping. May be zero for
153
+ immediate abortion of all in-progress RPCs.
154
+
155
+ Returns:
156
+ A threading.Event that will be set when this Server has completely
157
+ stopped. The returned event may not be set until after the full grace
158
+ period (if some ongoing RPC continues for the full length of the period)
159
+ of it may be set much sooner (such as if this Server had no RPCs underway
160
+ at the time it was stopped or if all RPCs that it had underway completed
161
+ very early in the grace period).
162
+ """
163
+ raise NotImplementedError()
grpc/beta/utilities.py ADDED
@@ -0,0 +1,149 @@
1
+ # Copyright 2015 gRPC authors.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Utilities for the gRPC Python Beta API."""
15
+
16
+ import threading
17
+ import time
18
+
19
+ # implementations is referenced from specification in this module.
20
+ from grpc.beta import implementations # pylint: disable=unused-import
21
+ from grpc.beta import interfaces
22
+ from grpc.framework.foundation import callable_util
23
+ from grpc.framework.foundation import future
24
+
25
+ _DONE_CALLBACK_EXCEPTION_LOG_MESSAGE = (
26
+ 'Exception calling connectivity future "done" callback!')
27
+
28
+
29
+ class _ChannelReadyFuture(future.Future):
30
+
31
+ def __init__(self, channel):
32
+ self._condition = threading.Condition()
33
+ self._channel = channel
34
+
35
+ self._matured = False
36
+ self._cancelled = False
37
+ self._done_callbacks = []
38
+
39
+ def _block(self, timeout):
40
+ until = None if timeout is None else time.time() + timeout
41
+ with self._condition:
42
+ while True:
43
+ if self._cancelled:
44
+ raise future.CancelledError()
45
+ elif self._matured:
46
+ return
47
+ else:
48
+ if until is None:
49
+ self._condition.wait()
50
+ else:
51
+ remaining = until - time.time()
52
+ if remaining < 0:
53
+ raise future.TimeoutError()
54
+ else:
55
+ self._condition.wait(timeout=remaining)
56
+
57
+ def _update(self, connectivity):
58
+ with self._condition:
59
+ if (not self._cancelled and
60
+ connectivity is interfaces.ChannelConnectivity.READY):
61
+ self._matured = True
62
+ self._channel.unsubscribe(self._update)
63
+ self._condition.notify_all()
64
+ done_callbacks = tuple(self._done_callbacks)
65
+ self._done_callbacks = None
66
+ else:
67
+ return
68
+
69
+ for done_callback in done_callbacks:
70
+ callable_util.call_logging_exceptions(
71
+ done_callback, _DONE_CALLBACK_EXCEPTION_LOG_MESSAGE, self)
72
+
73
+ def cancel(self):
74
+ with self._condition:
75
+ if not self._matured:
76
+ self._cancelled = True
77
+ self._channel.unsubscribe(self._update)
78
+ self._condition.notify_all()
79
+ done_callbacks = tuple(self._done_callbacks)
80
+ self._done_callbacks = None
81
+ else:
82
+ return False
83
+
84
+ for done_callback in done_callbacks:
85
+ callable_util.call_logging_exceptions(
86
+ done_callback, _DONE_CALLBACK_EXCEPTION_LOG_MESSAGE, self)
87
+
88
+ return True
89
+
90
+ def cancelled(self):
91
+ with self._condition:
92
+ return self._cancelled
93
+
94
+ def running(self):
95
+ with self._condition:
96
+ return not self._cancelled and not self._matured
97
+
98
+ def done(self):
99
+ with self._condition:
100
+ return self._cancelled or self._matured
101
+
102
+ def result(self, timeout=None):
103
+ self._block(timeout)
104
+ return None
105
+
106
+ def exception(self, timeout=None):
107
+ self._block(timeout)
108
+ return None
109
+
110
+ def traceback(self, timeout=None):
111
+ self._block(timeout)
112
+ return None
113
+
114
+ def add_done_callback(self, fn):
115
+ with self._condition:
116
+ if not self._cancelled and not self._matured:
117
+ self._done_callbacks.append(fn)
118
+ return
119
+
120
+ fn(self)
121
+
122
+ def start(self):
123
+ with self._condition:
124
+ self._channel.subscribe(self._update, try_to_connect=True)
125
+
126
+ def __del__(self):
127
+ with self._condition:
128
+ if not self._cancelled and not self._matured:
129
+ self._channel.unsubscribe(self._update)
130
+
131
+
132
+ def channel_ready_future(channel):
133
+ """Creates a future.Future tracking when an implementations.Channel is ready.
134
+
135
+ Cancelling the returned future.Future does not tell the given
136
+ implementations.Channel to abandon attempts it may have been making to
137
+ connect; cancelling merely deactivates the return future.Future's
138
+ subscription to the given implementations.Channel's connectivity.
139
+
140
+ Args:
141
+ channel: An implementations.Channel.
142
+
143
+ Returns:
144
+ A future.Future that matures when the given Channel has connectivity
145
+ interfaces.ChannelConnectivity.READY.
146
+ """
147
+ ready_future = _ChannelReadyFuture(channel)
148
+ ready_future.start()
149
+ return ready_future