12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- # Copyright 2018 gRPC authors.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- cdef class _GrpcArgWrapper:
- cdef grpc_arg arg
- cdef tuple _wrap_grpc_arg(grpc_arg arg):
- wrapped = _GrpcArgWrapper()
- wrapped.arg = arg
- return ("grpc.python._cygrpc._GrpcArgWrapper", wrapped)
- cdef grpc_arg _unwrap_grpc_arg(tuple wrapped_arg):
- cdef _GrpcArgWrapper wrapped = wrapped_arg[1]
- return wrapped.arg
- cdef class _ChannelArg:
- cdef void c(self, argument, references) except *:
- key, value = argument
- cdef bytes encoded_key = _encode(key)
- if encoded_key is not key:
- references.append(encoded_key)
- self.c_argument.key = encoded_key
- if isinstance(value, int):
- self.c_argument.type = GRPC_ARG_INTEGER
- self.c_argument.value.integer = value
- elif isinstance(value, (bytes, str, unicode,)):
- self.c_argument.type = GRPC_ARG_STRING
- encoded_value = _encode(value)
- if encoded_value is not value:
- references.append(encoded_value)
- self.c_argument.value.string = encoded_value
- elif isinstance(value, _GrpcArgWrapper):
- self.c_argument = (<_GrpcArgWrapper>value).arg
- elif hasattr(value, '__int__'):
- # Pointer objects must override __int__() to return
- # the underlying C address (Python ints are word size). The
- # lifecycle of the pointer is fixed to the lifecycle of the
- # python object wrapping it.
- self.c_argument.type = GRPC_ARG_POINTER
- self.c_argument.value.pointer.vtable = &default_vtable
- self.c_argument.value.pointer.address = <void*>(<intptr_t>int(value))
- else:
- raise TypeError(
- 'Expected int, bytes, or behavior, got {}'.format(type(value)))
- cdef class _ChannelArgs:
- def __cinit__(self, arguments):
- self._arguments = () if arguments is None else tuple(arguments)
- self._channel_args = []
- self._references = []
- self._c_arguments.arguments_length = len(self._arguments)
- if self._c_arguments.arguments_length != 0:
- self._c_arguments.arguments = <grpc_arg *>gpr_malloc(
- self._c_arguments.arguments_length * sizeof(grpc_arg))
- for index, argument in enumerate(self._arguments):
- channel_arg = _ChannelArg()
- channel_arg.c(argument, self._references)
- self._c_arguments.arguments[index] = channel_arg.c_argument
- self._channel_args.append(channel_arg)
- cdef grpc_channel_args *c_args(self) except *:
- return &self._c_arguments
- def __dealloc__(self):
- if self._c_arguments.arguments != NULL:
- gpr_free(self._c_arguments.arguments)
|