-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathuser_grpc.pb.go
408 lines (382 loc) · 16.4 KB
/
user_grpc.pb.go
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
//*
// Copyright (c) 2022 Peking University and Peking University Institute for Computing and Digital Economy
// SCOW is licensed under Mulan PSL v2.
// You can use this software according to the terms and conditions of the Mulan PSL v2.
// You may obtain a copy of Mulan PSL v2 at:
// http://license.coscl.org.cn/MulanPSL2
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
// EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
// MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
// See the Mulan PSL v2 for more details.
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc (unknown)
// source: user.proto
package gen
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.64.0 or later.
const _ = grpc.SupportPackageIsVersion9
const (
UserService_AddUserToAccount_FullMethodName = "/scow.scheduler_adapter.UserService/AddUserToAccount"
UserService_RemoveUserFromAccount_FullMethodName = "/scow.scheduler_adapter.UserService/RemoveUserFromAccount"
UserService_BlockUserInAccount_FullMethodName = "/scow.scheduler_adapter.UserService/BlockUserInAccount"
UserService_UnblockUserInAccount_FullMethodName = "/scow.scheduler_adapter.UserService/UnblockUserInAccount"
UserService_QueryUserInAccountBlockStatus_FullMethodName = "/scow.scheduler_adapter.UserService/QueryUserInAccountBlockStatus"
UserService_DeleteUser_FullMethodName = "/scow.scheduler_adapter.UserService/DeleteUser"
)
// UserServiceClient is the client API for UserService 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 UserServiceClient interface {
//
// description: add user to account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user already exists in account
// ALREADY_EXISTS, USER_ACCOUNT_ALREADY_EXISTS, {}
AddUserToAccount(ctx context.Context, in *AddUserToAccountRequest, opts ...grpc.CallOption) (*AddUserToAccountResponse, error)
//
// description: remove user from account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
RemoveUserFromAccount(ctx context.Context, in *RemoveUserFromAccountRequest, opts ...grpc.CallOption) (*RemoveUserFromAccountResponse, error)
//
// description: block user in account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
// special case:
// - already blocked, don't throw error
BlockUserInAccount(ctx context.Context, in *BlockUserInAccountRequest, opts ...grpc.CallOption) (*BlockUserInAccountResponse, error)
//
// description: unblock user in account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
// special case:
// - already unblocked, don't throw error
UnblockUserInAccount(ctx context.Context, in *UnblockUserInAccountRequest, opts ...grpc.CallOption) (*UnblockUserInAccountResponse, error)
//
// description: query if a user is blocked in an account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
QueryUserInAccountBlockStatus(ctx context.Context, in *QueryUserInAccountBlockStatusRequest, opts ...grpc.CallOption) (*QueryUserInAccountBlockStatusResponse, error)
//
// description: delete user
// errors:
// - user not exist
// NOT_FOUND, USER_NOT_FOUND, {}
DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*DeleteUserResponse, error)
}
type userServiceClient struct {
cc grpc.ClientConnInterface
}
func NewUserServiceClient(cc grpc.ClientConnInterface) UserServiceClient {
return &userServiceClient{cc}
}
func (c *userServiceClient) AddUserToAccount(ctx context.Context, in *AddUserToAccountRequest, opts ...grpc.CallOption) (*AddUserToAccountResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(AddUserToAccountResponse)
err := c.cc.Invoke(ctx, UserService_AddUserToAccount_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userServiceClient) RemoveUserFromAccount(ctx context.Context, in *RemoveUserFromAccountRequest, opts ...grpc.CallOption) (*RemoveUserFromAccountResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(RemoveUserFromAccountResponse)
err := c.cc.Invoke(ctx, UserService_RemoveUserFromAccount_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userServiceClient) BlockUserInAccount(ctx context.Context, in *BlockUserInAccountRequest, opts ...grpc.CallOption) (*BlockUserInAccountResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(BlockUserInAccountResponse)
err := c.cc.Invoke(ctx, UserService_BlockUserInAccount_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userServiceClient) UnblockUserInAccount(ctx context.Context, in *UnblockUserInAccountRequest, opts ...grpc.CallOption) (*UnblockUserInAccountResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(UnblockUserInAccountResponse)
err := c.cc.Invoke(ctx, UserService_UnblockUserInAccount_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userServiceClient) QueryUserInAccountBlockStatus(ctx context.Context, in *QueryUserInAccountBlockStatusRequest, opts ...grpc.CallOption) (*QueryUserInAccountBlockStatusResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(QueryUserInAccountBlockStatusResponse)
err := c.cc.Invoke(ctx, UserService_QueryUserInAccountBlockStatus_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userServiceClient) DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*DeleteUserResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(DeleteUserResponse)
err := c.cc.Invoke(ctx, UserService_DeleteUser_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
// UserServiceServer is the server API for UserService service.
// All implementations should embed UnimplementedUserServiceServer
// for forward compatibility.
type UserServiceServer interface {
//
// description: add user to account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user already exists in account
// ALREADY_EXISTS, USER_ACCOUNT_ALREADY_EXISTS, {}
AddUserToAccount(context.Context, *AddUserToAccountRequest) (*AddUserToAccountResponse, error)
//
// description: remove user from account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
RemoveUserFromAccount(context.Context, *RemoveUserFromAccountRequest) (*RemoveUserFromAccountResponse, error)
//
// description: block user in account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
// special case:
// - already blocked, don't throw error
BlockUserInAccount(context.Context, *BlockUserInAccountRequest) (*BlockUserInAccountResponse, error)
//
// description: unblock user in account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
// special case:
// - already unblocked, don't throw error
UnblockUserInAccount(context.Context, *UnblockUserInAccountRequest) (*UnblockUserInAccountResponse, error)
//
// description: query if a user is blocked in an account
// errors:
// - account not exist
// NOT_FOUND, ACCOUNT_NOT_FOUND, {}
// - user not exist in account
// NOT_FOUND, USER_ACCOUNT_NOT_FOUND, {}
QueryUserInAccountBlockStatus(context.Context, *QueryUserInAccountBlockStatusRequest) (*QueryUserInAccountBlockStatusResponse, error)
//
// description: delete user
// errors:
// - user not exist
// NOT_FOUND, USER_NOT_FOUND, {}
DeleteUser(context.Context, *DeleteUserRequest) (*DeleteUserResponse, error)
}
// UnimplementedUserServiceServer should be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedUserServiceServer struct{}
func (UnimplementedUserServiceServer) AddUserToAccount(context.Context, *AddUserToAccountRequest) (*AddUserToAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddUserToAccount not implemented")
}
func (UnimplementedUserServiceServer) RemoveUserFromAccount(context.Context, *RemoveUserFromAccountRequest) (*RemoveUserFromAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserFromAccount not implemented")
}
func (UnimplementedUserServiceServer) BlockUserInAccount(context.Context, *BlockUserInAccountRequest) (*BlockUserInAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method BlockUserInAccount not implemented")
}
func (UnimplementedUserServiceServer) UnblockUserInAccount(context.Context, *UnblockUserInAccountRequest) (*UnblockUserInAccountResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method UnblockUserInAccount not implemented")
}
func (UnimplementedUserServiceServer) QueryUserInAccountBlockStatus(context.Context, *QueryUserInAccountBlockStatusRequest) (*QueryUserInAccountBlockStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method QueryUserInAccountBlockStatus not implemented")
}
func (UnimplementedUserServiceServer) DeleteUser(context.Context, *DeleteUserRequest) (*DeleteUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteUser not implemented")
}
func (UnimplementedUserServiceServer) testEmbeddedByValue() {}
// UnsafeUserServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to UserServiceServer will
// result in compilation errors.
type UnsafeUserServiceServer interface {
mustEmbedUnimplementedUserServiceServer()
}
func RegisterUserServiceServer(s grpc.ServiceRegistrar, srv UserServiceServer) {
// If the following call pancis, it indicates UnimplementedUserServiceServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
t.testEmbeddedByValue()
}
s.RegisterService(&UserService_ServiceDesc, srv)
}
func _UserService_AddUserToAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddUserToAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).AddUserToAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_AddUserToAccount_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).AddUserToAccount(ctx, req.(*AddUserToAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _UserService_RemoveUserFromAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RemoveUserFromAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).RemoveUserFromAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_RemoveUserFromAccount_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).RemoveUserFromAccount(ctx, req.(*RemoveUserFromAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _UserService_BlockUserInAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(BlockUserInAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).BlockUserInAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_BlockUserInAccount_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).BlockUserInAccount(ctx, req.(*BlockUserInAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _UserService_UnblockUserInAccount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UnblockUserInAccountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).UnblockUserInAccount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_UnblockUserInAccount_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).UnblockUserInAccount(ctx, req.(*UnblockUserInAccountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _UserService_QueryUserInAccountBlockStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QueryUserInAccountBlockStatusRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).QueryUserInAccountBlockStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_QueryUserInAccountBlockStatus_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).QueryUserInAccountBlockStatus(ctx, req.(*QueryUserInAccountBlockStatusRequest))
}
return interceptor(ctx, in, info, handler)
}
func _UserService_DeleteUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteUserRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServiceServer).DeleteUser(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: UserService_DeleteUser_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServiceServer).DeleteUser(ctx, req.(*DeleteUserRequest))
}
return interceptor(ctx, in, info, handler)
}
// UserService_ServiceDesc is the grpc.ServiceDesc for UserService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var UserService_ServiceDesc = grpc.ServiceDesc{
ServiceName: "scow.scheduler_adapter.UserService",
HandlerType: (*UserServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "AddUserToAccount",
Handler: _UserService_AddUserToAccount_Handler,
},
{
MethodName: "RemoveUserFromAccount",
Handler: _UserService_RemoveUserFromAccount_Handler,
},
{
MethodName: "BlockUserInAccount",
Handler: _UserService_BlockUserInAccount_Handler,
},
{
MethodName: "UnblockUserInAccount",
Handler: _UserService_UnblockUserInAccount_Handler,
},
{
MethodName: "QueryUserInAccountBlockStatus",
Handler: _UserService_QueryUserInAccountBlockStatus_Handler,
},
{
MethodName: "DeleteUser",
Handler: _UserService_DeleteUser_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "user.proto",
}