123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- """gRPC's experimental APIs.
- These APIs are subject to be removed during any minor version release.
- """
- import copy
- import functools
- import sys
- import warnings
- import grpc
- from grpc._cython import cygrpc as _cygrpc
- _EXPERIMENTAL_APIS_USED = set()
- class ChannelOptions(object):
- """Indicates a channel option unique to gRPC Python.
- This enumeration is part of an EXPERIMENTAL API.
- Attributes:
- SingleThreadedUnaryStream: Perform unary-stream RPCs on a single thread.
- """
- SingleThreadedUnaryStream = "SingleThreadedUnaryStream"
- class UsageError(Exception):
- """Raised by the gRPC library to indicate usage not allowed by the API."""
- _insecure_channel_credentials = grpc.ChannelCredentials(
- _cygrpc.channel_credentials_insecure())
- def insecure_channel_credentials():
- """Creates a ChannelCredentials for use with an insecure channel.
- THIS IS AN EXPERIMENTAL API.
- """
- return _insecure_channel_credentials
- class ExperimentalApiWarning(Warning):
- """A warning that an API is experimental."""
- def _warn_experimental(api_name, stack_offset):
- if api_name not in _EXPERIMENTAL_APIS_USED:
- _EXPERIMENTAL_APIS_USED.add(api_name)
- msg = ("'{}' is an experimental API. It is subject to change or ".
- format(api_name) +
- "removal between minor releases. Proceed with caution.")
- warnings.warn(msg, ExperimentalApiWarning, stacklevel=2 + stack_offset)
- def experimental_api(f):
- @functools.wraps(f)
- def _wrapper(*args, **kwargs):
- _warn_experimental(f.__name__, 1)
- return f(*args, **kwargs)
- return _wrapper
- def wrap_server_method_handler(wrapper, handler):
- """Wraps the server method handler function.
- The server implementation requires all server handlers being wrapped as
- RpcMethodHandler objects. This helper function ease the pain of writing
- server handler wrappers.
- Args:
- wrapper: A wrapper function that takes in a method handler behavior
- (the actual function) and returns a wrapped function.
- handler: A RpcMethodHandler object to be wrapped.
- Returns:
- A newly created RpcMethodHandler.
- """
- if not handler:
- return None
- if not handler.request_streaming:
- if not handler.response_streaming:
-
-
- return handler._replace(unary_unary=wrapper(handler.unary_unary))
- else:
- return handler._replace(unary_stream=wrapper(handler.unary_stream))
- else:
- if not handler.response_streaming:
- return handler._replace(stream_unary=wrapper(handler.stream_unary))
- else:
- return handler._replace(
- stream_stream=wrapper(handler.stream_stream))
- __all__ = (
- 'ChannelOptions',
- 'ExperimentalApiWarning',
- 'UsageError',
- 'insecure_channel_credentials',
- 'wrap_server_method_handler',
- )
- if sys.version_info > (3, 6):
- from grpc._simple_stubs import stream_stream
- from grpc._simple_stubs import stream_unary
- from grpc._simple_stubs import unary_stream
- from grpc._simple_stubs import unary_unary
- __all__ = __all__ + (unary_unary, unary_stream, stream_unary, stream_stream)
|