-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcalculator_pb2.py
212 lines (174 loc) · 7.1 KB
/
calculator_pb2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: calculator.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
from google.protobuf import descriptor_pb2
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
DESCRIPTOR = _descriptor.FileDescriptor(
name='calculator.proto',
package='',
syntax='proto3',
serialized_pb=_b('\n\x10\x63\x61lculator.proto\"\x17\n\x06Number\x12\r\n\x05value\x18\x01 \x01(\x02\x32.\n\nCalculator\x12 \n\nSquareRoot\x12\x07.Number\x1a\x07.Number\"\x00\x62\x06proto3')
)
_NUMBER = _descriptor.Descriptor(
name='Number',
full_name='Number',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='value', full_name='Number.value', index=0,
number=1, type=2, cpp_type=6, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
],
serialized_start=20,
serialized_end=43,
)
DESCRIPTOR.message_types_by_name['Number'] = _NUMBER
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
Number = _reflection.GeneratedProtocolMessageType('Number', (_message.Message,), dict(
DESCRIPTOR = _NUMBER,
__module__ = 'calculator_pb2'
# @@protoc_insertion_point(class_scope:Number)
))
_sym_db.RegisterMessage(Number)
_CALCULATOR = _descriptor.ServiceDescriptor(
name='Calculator',
full_name='Calculator',
file=DESCRIPTOR,
index=0,
options=None,
serialized_start=45,
serialized_end=91,
methods=[
_descriptor.MethodDescriptor(
name='SquareRoot',
full_name='Calculator.SquareRoot',
index=0,
containing_service=None,
input_type=_NUMBER,
output_type=_NUMBER,
options=None,
),
])
_sym_db.RegisterServiceDescriptor(_CALCULATOR)
DESCRIPTOR.services_by_name['Calculator'] = _CALCULATOR
try:
# THESE ELEMENTS WILL BE DEPRECATED.
# Please use the generated *_pb2_grpc.py files instead.
import grpc
from grpc.beta import implementations as beta_implementations
from grpc.beta import interfaces as beta_interfaces
from grpc.framework.common import cardinality
from grpc.framework.interfaces.face import utilities as face_utilities
class CalculatorStub(object):
# missing associated documentation comment in .proto file
pass
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.SquareRoot = channel.unary_unary(
'/Calculator/SquareRoot',
request_serializer=Number.SerializeToString,
response_deserializer=Number.FromString,
)
class CalculatorServicer(object):
# missing associated documentation comment in .proto file
pass
def SquareRoot(self, request, context):
# missing associated documentation comment in .proto file
pass
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_CalculatorServicer_to_server(servicer, server):
rpc_method_handlers = {
'SquareRoot': grpc.unary_unary_rpc_method_handler(
servicer.SquareRoot,
request_deserializer=Number.FromString,
response_serializer=Number.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'Calculator', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
class BetaCalculatorServicer(object):
"""The Beta API is deprecated for 0.15.0 and later.
It is recommended to use the GA API (classes and functions in this
file not marked beta) for all further purposes. This class was generated
only to ease transition from grpcio<0.15.0 to grpcio>=0.15.0."""
# missing associated documentation comment in .proto file
pass
def SquareRoot(self, request, context):
# missing associated documentation comment in .proto file
pass
context.code(beta_interfaces.StatusCode.UNIMPLEMENTED)
class BetaCalculatorStub(object):
"""The Beta API is deprecated for 0.15.0 and later.
It is recommended to use the GA API (classes and functions in this
file not marked beta) for all further purposes. This class was generated
only to ease transition from grpcio<0.15.0 to grpcio>=0.15.0."""
# missing associated documentation comment in .proto file
pass
def SquareRoot(self, request, timeout, metadata=None, with_call=False, protocol_options=None):
# missing associated documentation comment in .proto file
pass
raise NotImplementedError()
SquareRoot.future = None
def beta_create_Calculator_server(servicer, pool=None, pool_size=None, default_timeout=None, maximum_timeout=None):
"""The Beta API is deprecated for 0.15.0 and later.
It is recommended to use the GA API (classes and functions in this
file not marked beta) for all further purposes. This function was
generated only to ease transition from grpcio<0.15.0 to grpcio>=0.15.0"""
request_deserializers = {
('Calculator', 'SquareRoot'): Number.FromString,
}
response_serializers = {
('Calculator', 'SquareRoot'): Number.SerializeToString,
}
method_implementations = {
('Calculator', 'SquareRoot'): face_utilities.unary_unary_inline(servicer.SquareRoot),
}
server_options = beta_implementations.server_options(request_deserializers=request_deserializers, response_serializers=response_serializers, thread_pool=pool, thread_pool_size=pool_size, default_timeout=default_timeout, maximum_timeout=maximum_timeout)
return beta_implementations.server(method_implementations, options=server_options)
def beta_create_Calculator_stub(channel, host=None, metadata_transformer=None, pool=None, pool_size=None):
"""The Beta API is deprecated for 0.15.0 and later.
It is recommended to use the GA API (classes and functions in this
file not marked beta) for all further purposes. This function was
generated only to ease transition from grpcio<0.15.0 to grpcio>=0.15.0"""
request_serializers = {
('Calculator', 'SquareRoot'): Number.SerializeToString,
}
response_deserializers = {
('Calculator', 'SquareRoot'): Number.FromString,
}
cardinalities = {
'SquareRoot': cardinality.Cardinality.UNARY_UNARY,
}
stub_options = beta_implementations.stub_options(host=host, metadata_transformer=metadata_transformer, request_serializers=request_serializers, response_deserializers=response_deserializers, thread_pool=pool, thread_pool_size=pool_size)
return beta_implementations.dynamic_stub(channel, 'Calculator', cardinalities, options=stub_options)
except ImportError:
pass
# @@protoc_insertion_point(module_scope)