-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotobufStorage_grpc.pb.go
231 lines (209 loc) · 7.68 KB
/
protobufStorage_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
// prevajanje datoteke *.proto na Arnes HPC:
// - namestitev modulov
// module load protobuf/23.0-GCCcore-12.2.0
// module load binutils/2.39-GCCcore-12.2.0
// go install google.golang.org/protobuf/cmd/[email protected] # samo ob prvi uporabi
// go install google.golang.org/grpc/cmd/[email protected] # samo ob prvi uporabi
// export PATH="$PATH:$(go env GOPATH)/bin"
// - prevajanje
// srun protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative protobufStorage.proto
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v4.23.0
// source: protobufStorage.proto
package protobufStorage
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
emptypb "google.golang.org/protobuf/types/known/emptypb"
)
// 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 (
CRUD_Create_FullMethodName = "/protobufStorage.CRUD/Create"
CRUD_Read_FullMethodName = "/protobufStorage.CRUD/Read"
CRUD_Update_FullMethodName = "/protobufStorage.CRUD/Update"
CRUD_Delete_FullMethodName = "/protobufStorage.CRUD/Delete"
)
// CRUDClient is the client API for CRUD 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 CRUDClient interface {
Create(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error)
Read(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*TodoStorage, error)
Update(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error)
Delete(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error)
}
type cRUDClient struct {
cc grpc.ClientConnInterface
}
func NewCRUDClient(cc grpc.ClientConnInterface) CRUDClient {
return &cRUDClient{cc}
}
func (c *cRUDClient) Create(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, CRUD_Create_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cRUDClient) Read(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*TodoStorage, error) {
out := new(TodoStorage)
err := c.cc.Invoke(ctx, CRUD_Read_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cRUDClient) Update(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, CRUD_Update_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *cRUDClient) Delete(ctx context.Context, in *Todo, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, CRUD_Delete_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// CRUDServer is the server API for CRUD service.
// All implementations must embed UnimplementedCRUDServer
// for forward compatibility
type CRUDServer interface {
Create(context.Context, *Todo) (*emptypb.Empty, error)
Read(context.Context, *Todo) (*TodoStorage, error)
Update(context.Context, *Todo) (*emptypb.Empty, error)
Delete(context.Context, *Todo) (*emptypb.Empty, error)
mustEmbedUnimplementedCRUDServer()
}
// UnimplementedCRUDServer must be embedded to have forward compatible implementations.
type UnimplementedCRUDServer struct {
}
func (UnimplementedCRUDServer) Create(context.Context, *Todo) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Create not implemented")
}
func (UnimplementedCRUDServer) Read(context.Context, *Todo) (*TodoStorage, error) {
return nil, status.Errorf(codes.Unimplemented, "method Read not implemented")
}
func (UnimplementedCRUDServer) Update(context.Context, *Todo) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Update not implemented")
}
func (UnimplementedCRUDServer) Delete(context.Context, *Todo) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
}
func (UnimplementedCRUDServer) mustEmbedUnimplementedCRUDServer() {}
// UnsafeCRUDServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to CRUDServer will
// result in compilation errors.
type UnsafeCRUDServer interface {
mustEmbedUnimplementedCRUDServer()
}
func RegisterCRUDServer(s grpc.ServiceRegistrar, srv CRUDServer) {
s.RegisterService(&CRUD_ServiceDesc, srv)
}
func _CRUD_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Todo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CRUDServer).Create(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CRUD_Create_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CRUDServer).Create(ctx, req.(*Todo))
}
return interceptor(ctx, in, info, handler)
}
func _CRUD_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Todo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CRUDServer).Read(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CRUD_Read_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CRUDServer).Read(ctx, req.(*Todo))
}
return interceptor(ctx, in, info, handler)
}
func _CRUD_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Todo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CRUDServer).Update(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CRUD_Update_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CRUDServer).Update(ctx, req.(*Todo))
}
return interceptor(ctx, in, info, handler)
}
func _CRUD_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Todo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CRUDServer).Delete(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: CRUD_Delete_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CRUDServer).Delete(ctx, req.(*Todo))
}
return interceptor(ctx, in, info, handler)
}
// CRUD_ServiceDesc is the grpc.ServiceDesc for CRUD service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var CRUD_ServiceDesc = grpc.ServiceDesc{
ServiceName: "protobufStorage.CRUD",
HandlerType: (*CRUDServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Create",
Handler: _CRUD_Create_Handler,
},
{
MethodName: "Read",
Handler: _CRUD_Read_Handler,
},
{
MethodName: "Update",
Handler: _CRUD_Update_Handler,
},
{
MethodName: "Delete",
Handler: _CRUD_Delete_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "protobufStorage.proto",
}