-
Notifications
You must be signed in to change notification settings - Fork 6
/
node_pb2_grpc.py
288 lines (259 loc) · 11.9 KB
/
node_pb2_grpc.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
import node_pb2 as node__pb2
class NodeStub(object):
"""Node service API
Node service provides general information about the node itself, the services
it supports, chain information and node version.
"""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.GetSyncStatus = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/GetSyncStatus',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.SyncStatus.FromString,
)
self.GetGenesis = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/GetGenesis',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.Genesis.FromString,
)
self.GetVersion = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/GetVersion',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.Version.FromString,
)
self.ListImplementedServices = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/ListImplementedServices',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.ImplementedServices.FromString,
)
self.GetHost = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/GetHost',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.HostData.FromString,
)
self.GetPeer = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/GetPeer',
request_serializer=node__pb2.PeerRequest.SerializeToString,
response_deserializer=node__pb2.Peer.FromString,
)
self.ListPeers = channel.unary_unary(
'/ethereum.eth.v1alpha1.Node/ListPeers',
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
response_deserializer=node__pb2.Peers.FromString,
)
class NodeServicer(object):
"""Node service API
Node service provides general information about the node itself, the services
it supports, chain information and node version.
"""
def GetSyncStatus(self, request, context):
"""Retrieve the current network sync status of the node.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetGenesis(self, request, context):
"""Retrieve information about the genesis of Ethereum 2.0.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetVersion(self, request, context):
"""Retrieve information about the running Ethereum 2.0 node.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ListImplementedServices(self, request, context):
"""Retrieve the list of services implemented and enabled by this node.
Any service not present in this list may return UNIMPLEMENTED or
PERMISSION_DENIED. The server may also support fetching services by grpc
reflection.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetHost(self, request, context):
"""Retrieves the peer data of the local peer.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetPeer(self, request, context):
"""Retrieve the peer corresponding to the provided peer id.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ListPeers(self, request, context):
"""Retrieve the list of peers currently connected to this node.
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_NodeServicer_to_server(servicer, server):
rpc_method_handlers = {
'GetSyncStatus': grpc.unary_unary_rpc_method_handler(
servicer.GetSyncStatus,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.SyncStatus.SerializeToString,
),
'GetGenesis': grpc.unary_unary_rpc_method_handler(
servicer.GetGenesis,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.Genesis.SerializeToString,
),
'GetVersion': grpc.unary_unary_rpc_method_handler(
servicer.GetVersion,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.Version.SerializeToString,
),
'ListImplementedServices': grpc.unary_unary_rpc_method_handler(
servicer.ListImplementedServices,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.ImplementedServices.SerializeToString,
),
'GetHost': grpc.unary_unary_rpc_method_handler(
servicer.GetHost,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.HostData.SerializeToString,
),
'GetPeer': grpc.unary_unary_rpc_method_handler(
servicer.GetPeer,
request_deserializer=node__pb2.PeerRequest.FromString,
response_serializer=node__pb2.Peer.SerializeToString,
),
'ListPeers': grpc.unary_unary_rpc_method_handler(
servicer.ListPeers,
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
response_serializer=node__pb2.Peers.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'ethereum.eth.v1alpha1.Node', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
class Node(object):
"""Node service API
Node service provides general information about the node itself, the services
it supports, chain information and node version.
"""
@staticmethod
def GetSyncStatus(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/GetSyncStatus',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.SyncStatus.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetGenesis(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/GetGenesis',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.Genesis.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetVersion(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/GetVersion',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.Version.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def ListImplementedServices(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/ListImplementedServices',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.ImplementedServices.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetHost(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/GetHost',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.HostData.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetPeer(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/GetPeer',
node__pb2.PeerRequest.SerializeToString,
node__pb2.Peer.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def ListPeers(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/ethereum.eth.v1alpha1.Node/ListPeers',
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
node__pb2.Peers.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)