-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathctpecs_grpc.pb.go
More file actions
444 lines (411 loc) · 15.1 KB
/
ctpecs_grpc.pb.go
File metadata and controls
444 lines (411 loc) · 15.1 KB
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v5.29.3
// source: protos/ctpecs.proto
package ctpecs
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
const (
CTPd_PrepareForRun_FullMethodName = "/ctpd.CTPd/PrepareForRun"
CTPd_RunLoad_FullMethodName = "/ctpd.CTPd/RunLoad"
CTPd_RunUnload_FullMethodName = "/ctpd.CTPd/RunUnload"
CTPd_RunStart_FullMethodName = "/ctpd.CTPd/RunStart"
CTPd_RunStatus_FullMethodName = "/ctpd.CTPd/RunStatus"
CTPd_RunList_FullMethodName = "/ctpd.CTPd/RunList"
CTPd_RunStop_FullMethodName = "/ctpd.CTPd/RunStop"
CTPd_RunConfig_FullMethodName = "/ctpd.CTPd/RunConfig"
CTPd_RunCleanup_FullMethodName = "/ctpd.CTPd/RunCleanup"
CTPd_TPCReset_FullMethodName = "/ctpd.CTPd/TPCReset"
)
// CTPdClient is the client API for CTPd service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
type CTPdClient interface {
// global run:
PrepareForRun(ctx context.Context, in *RunPrepareRequest, opts ...grpc.CallOption) (*RunReply, error)
RunLoad(ctx context.Context, in *RunLoadRequest, opts ...grpc.CallOption) (*RunReply, error)
RunUnload(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error)
// stdalone and global runs:
RunStart(ctx context.Context, in *RunStartRequest, opts ...grpc.CallOption) (*RunReply, error)
RunStatus(ctx context.Context, in *RunStatusRequest, opts ...grpc.CallOption) (*RunReply, error)
RunList(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error)
RunStop(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error)
RunConfig(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error)
RunCleanup(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error)
TPCReset(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error)
}
type cTPdClient struct {
cc grpc.ClientConnInterface
}
func NewCTPdClient(cc grpc.ClientConnInterface) CTPdClient {
return &cTPdClient{cc}
}
func (c *cTPdClient) PrepareForRun(ctx context.Context, in *RunPrepareRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_PrepareForRun_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunLoad(ctx context.Context, in *RunLoadRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunLoad_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunUnload(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunUnload_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunStart(ctx context.Context, in *RunStartRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunStart_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunStatus(ctx context.Context, in *RunStatusRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunStatus_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunList(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunList_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunStop(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunStop_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunConfig(ctx context.Context, in *RunStopRequest, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunConfig_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) RunCleanup(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_RunCleanup_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cTPdClient) TPCReset(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*RunReply, error) {
out := new(RunReply)
err := c.cc.Invoke(ctx, CTPd_TPCReset_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// CTPdServer is the server API for CTPd service.
// All implementations should embed UnimplementedCTPdServer
// for forward compatibility
type CTPdServer interface {
// global run:
PrepareForRun(context.Context, *RunPrepareRequest) (*RunReply, error)
RunLoad(context.Context, *RunLoadRequest) (*RunReply, error)
RunUnload(context.Context, *RunStopRequest) (*RunReply, error)
// stdalone and global runs:
RunStart(context.Context, *RunStartRequest) (*RunReply, error)
RunStatus(context.Context, *RunStatusRequest) (*RunReply, error)
RunList(context.Context, *Empty) (*RunReply, error)
RunStop(context.Context, *RunStopRequest) (*RunReply, error)
RunConfig(context.Context, *RunStopRequest) (*RunReply, error)
RunCleanup(context.Context, *Empty) (*RunReply, error)
TPCReset(context.Context, *Empty) (*RunReply, error)
}
// UnimplementedCTPdServer should be embedded to have forward compatible implementations.
type UnimplementedCTPdServer struct {
}
func (UnimplementedCTPdServer) PrepareForRun(context.Context, *RunPrepareRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method PrepareForRun not implemented")
}
func (UnimplementedCTPdServer) RunLoad(context.Context, *RunLoadRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunLoad not implemented")
}
func (UnimplementedCTPdServer) RunUnload(context.Context, *RunStopRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunUnload not implemented")
}
func (UnimplementedCTPdServer) RunStart(context.Context, *RunStartRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunStart not implemented")
}
func (UnimplementedCTPdServer) RunStatus(context.Context, *RunStatusRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunStatus not implemented")
}
func (UnimplementedCTPdServer) RunList(context.Context, *Empty) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunList not implemented")
}
func (UnimplementedCTPdServer) RunStop(context.Context, *RunStopRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunStop not implemented")
}
func (UnimplementedCTPdServer) RunConfig(context.Context, *RunStopRequest) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunConfig not implemented")
}
func (UnimplementedCTPdServer) RunCleanup(context.Context, *Empty) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method RunCleanup not implemented")
}
func (UnimplementedCTPdServer) TPCReset(context.Context, *Empty) (*RunReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method TPCReset not implemented")
}
// UnsafeCTPdServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to CTPdServer will
// result in compilation errors.
type UnsafeCTPdServer interface {
mustEmbedUnimplementedCTPdServer()
}
func RegisterCTPdServer(s grpc.ServiceRegistrar, srv CTPdServer) {
s.RegisterService(&CTPd_ServiceDesc, srv)
}
func _CTPd_PrepareForRun_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunPrepareRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).PrepareForRun(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_PrepareForRun_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).PrepareForRun(ctx, req.(*RunPrepareRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunLoad_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunLoadRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunLoad(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunLoad_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunLoad(ctx, req.(*RunLoadRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunUnload_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunStopRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunUnload(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunUnload_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunUnload(ctx, req.(*RunStopRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunStart_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunStartRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunStart(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunStart_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunStart(ctx, req.(*RunStartRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunStatusRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunStatus_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunStatus(ctx, req.(*RunStatusRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunList_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunList(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunStop_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunStopRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunStop(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunStop_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunStop(ctx, req.(*RunStopRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunStopRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunConfig_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunConfig(ctx, req.(*RunStopRequest))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_RunCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).RunCleanup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_RunCleanup_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).RunCleanup(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _CTPd_TPCReset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CTPdServer).TPCReset(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CTPd_TPCReset_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CTPdServer).TPCReset(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
// CTPd_ServiceDesc is the grpc.ServiceDesc for CTPd service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var CTPd_ServiceDesc = grpc.ServiceDesc{
ServiceName: "ctpd.CTPd",
HandlerType: (*CTPdServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "PrepareForRun",
Handler: _CTPd_PrepareForRun_Handler,
},
{
MethodName: "RunLoad",
Handler: _CTPd_RunLoad_Handler,
},
{
MethodName: "RunUnload",
Handler: _CTPd_RunUnload_Handler,
},
{
MethodName: "RunStart",
Handler: _CTPd_RunStart_Handler,
},
{
MethodName: "RunStatus",
Handler: _CTPd_RunStatus_Handler,
},
{
MethodName: "RunList",
Handler: _CTPd_RunList_Handler,
},
{
MethodName: "RunStop",
Handler: _CTPd_RunStop_Handler,
},
{
MethodName: "RunConfig",
Handler: _CTPd_RunConfig_Handler,
},
{
MethodName: "RunCleanup",
Handler: _CTPd_RunCleanup_Handler,
},
{
MethodName: "TPCReset",
Handler: _CTPd_TPCReset_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "protos/ctpecs.proto",
}