-
Notifications
You must be signed in to change notification settings - Fork 56
/
moc_common_debug.pb.go
249 lines (213 loc) · 8.66 KB
/
moc_common_debug.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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: admin/debug/moc_common_debug.proto
package admin
import (
context "context"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type DebugOperation int32
const (
DebugOperation_DEBUGSERVER DebugOperation = 0
DebugOperation_STACKTRACE DebugOperation = 1
)
var DebugOperation_name = map[int32]string{
0: "DEBUGSERVER",
1: "STACKTRACE",
}
var DebugOperation_value = map[string]int32{
"DEBUGSERVER": 0,
"STACKTRACE": 1,
}
func (x DebugOperation) String() string {
return proto.EnumName(DebugOperation_name, int32(x))
}
func (DebugOperation) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_329de964e3bb5c81, []int{0}
}
type DebugRequest struct {
// Operation Type
OperationType DebugOperation `protobuf:"varint,1,opt,name=OperationType,proto3,enum=moc.common.admin.DebugOperation" json:"OperationType,omitempty"`
// Artibraty data
Data string `protobuf:"bytes,2,opt,name=Data,proto3" json:"Data,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DebugRequest) Reset() { *m = DebugRequest{} }
func (m *DebugRequest) String() string { return proto.CompactTextString(m) }
func (*DebugRequest) ProtoMessage() {}
func (*DebugRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_329de964e3bb5c81, []int{0}
}
func (m *DebugRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DebugRequest.Unmarshal(m, b)
}
func (m *DebugRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DebugRequest.Marshal(b, m, deterministic)
}
func (m *DebugRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DebugRequest.Merge(m, src)
}
func (m *DebugRequest) XXX_Size() int {
return xxx_messageInfo_DebugRequest.Size(m)
}
func (m *DebugRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DebugRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DebugRequest proto.InternalMessageInfo
func (m *DebugRequest) GetOperationType() DebugOperation {
if m != nil {
return m.OperationType
}
return DebugOperation_DEBUGSERVER
}
func (m *DebugRequest) GetData() string {
if m != nil {
return m.Data
}
return ""
}
type DebugResponse struct {
Result string `protobuf:"bytes,1,opt,name=Result,proto3" json:"Result,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DebugResponse) Reset() { *m = DebugResponse{} }
func (m *DebugResponse) String() string { return proto.CompactTextString(m) }
func (*DebugResponse) ProtoMessage() {}
func (*DebugResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_329de964e3bb5c81, []int{1}
}
func (m *DebugResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DebugResponse.Unmarshal(m, b)
}
func (m *DebugResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DebugResponse.Marshal(b, m, deterministic)
}
func (m *DebugResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DebugResponse.Merge(m, src)
}
func (m *DebugResponse) XXX_Size() int {
return xxx_messageInfo_DebugResponse.Size(m)
}
func (m *DebugResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DebugResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DebugResponse proto.InternalMessageInfo
func (m *DebugResponse) GetResult() string {
if m != nil {
return m.Result
}
return ""
}
func init() {
proto.RegisterEnum("moc.common.admin.DebugOperation", DebugOperation_name, DebugOperation_value)
proto.RegisterType((*DebugRequest)(nil), "moc.common.admin.DebugRequest")
proto.RegisterType((*DebugResponse)(nil), "moc.common.admin.DebugResponse")
}
func init() {
proto.RegisterFile("admin/debug/moc_common_debug.proto", fileDescriptor_329de964e3bb5c81)
}
var fileDescriptor_329de964e3bb5c81 = []byte{
// 272 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0x41, 0x4b, 0xc3, 0x30,
0x14, 0xc7, 0x57, 0x91, 0xc1, 0x9e, 0xae, 0x96, 0x1c, 0x64, 0x78, 0xd0, 0xd2, 0x8b, 0x53, 0xa1,
0xc1, 0xf9, 0x09, 0xba, 0xb5, 0x8a, 0xec, 0x20, 0x64, 0x55, 0xd0, 0xcb, 0x68, 0xbb, 0x58, 0xab,
0x26, 0x2f, 0x36, 0xa9, 0xe0, 0xb7, 0x97, 0xa6, 0x45, 0x98, 0xb0, 0x5b, 0xf2, 0xf2, 0xfb, 0xe5,
0xbd, 0xf7, 0x87, 0x20, 0xdb, 0x88, 0x4a, 0xd2, 0x0d, 0xcf, 0x9b, 0x92, 0x0a, 0x2c, 0xd6, 0x05,
0x0a, 0x81, 0x72, 0x6d, 0x0b, 0xa1, 0xaa, 0xd1, 0x20, 0xf1, 0x04, 0x16, 0x61, 0x57, 0x0f, 0x2d,
0x1e, 0xbc, 0xc3, 0x61, 0xdc, 0x02, 0x8c, 0x7f, 0x35, 0x5c, 0x1b, 0x72, 0x0b, 0xe3, 0x07, 0xc5,
0xeb, 0xcc, 0x54, 0x28, 0xd3, 0x1f, 0xc5, 0x27, 0x8e, 0xef, 0x4c, 0xdd, 0x99, 0x1f, 0xfe, 0x37,
0x43, 0xab, 0xfd, 0xb1, 0x6c, 0x5b, 0x23, 0x04, 0xf6, 0xe3, 0xcc, 0x64, 0x93, 0x3d, 0xdf, 0x99,
0x8e, 0x98, 0x3d, 0x07, 0xe7, 0x30, 0xee, 0x7b, 0x69, 0x85, 0x52, 0x73, 0x72, 0x0c, 0x43, 0xc6,
0x75, 0xf3, 0x69, 0x6c, 0x97, 0x11, 0xeb, 0x6f, 0x97, 0xd7, 0xe0, 0x6e, 0xff, 0x4e, 0x8e, 0xe0,
0x20, 0x4e, 0xe6, 0x8f, 0x77, 0xab, 0x84, 0x3d, 0x25, 0xcc, 0x1b, 0x10, 0x17, 0x60, 0x95, 0x46,
0x8b, 0x65, 0xca, 0xa2, 0x45, 0xe2, 0x39, 0xb3, 0x67, 0x00, 0xab, 0x44, 0x25, 0x97, 0x86, 0x2c,
0x61, 0x78, 0x2f, 0xbf, 0xf1, 0x83, 0x93, 0xd3, 0x1d, 0x83, 0xf7, 0xfb, 0x9e, 0x9c, 0xed, 0x7c,
0xef, 0x66, 0x0c, 0x06, 0xf3, 0xab, 0x97, 0x8b, 0xb2, 0x32, 0x6f, 0x4d, 0xde, 0x62, 0x54, 0x54,
0x45, 0x8d, 0x1a, 0x5f, 0x4d, 0x9b, 0x31, 0xad, 0x55, 0x41, 0x3b, 0x99, 0x5a, 0x39, 0x1f, 0xda,
0xa0, 0x6f, 0x7e, 0x03, 0x00, 0x00, 0xff, 0xff, 0xf7, 0xbb, 0xdc, 0x3e, 0x8e, 0x01, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// DebugAgentClient is the client API for DebugAgent service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type DebugAgentClient interface {
Invoke(ctx context.Context, in *DebugRequest, opts ...grpc.CallOption) (*DebugResponse, error)
}
type debugAgentClient struct {
cc *grpc.ClientConn
}
func NewDebugAgentClient(cc *grpc.ClientConn) DebugAgentClient {
return &debugAgentClient{cc}
}
func (c *debugAgentClient) Invoke(ctx context.Context, in *DebugRequest, opts ...grpc.CallOption) (*DebugResponse, error) {
out := new(DebugResponse)
err := c.cc.Invoke(ctx, "/moc.common.admin.DebugAgent/Invoke", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// DebugAgentServer is the server API for DebugAgent service.
type DebugAgentServer interface {
Invoke(context.Context, *DebugRequest) (*DebugResponse, error)
}
// UnimplementedDebugAgentServer can be embedded to have forward compatible implementations.
type UnimplementedDebugAgentServer struct {
}
func (*UnimplementedDebugAgentServer) Invoke(ctx context.Context, req *DebugRequest) (*DebugResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Invoke not implemented")
}
func RegisterDebugAgentServer(s *grpc.Server, srv DebugAgentServer) {
s.RegisterService(&_DebugAgent_serviceDesc, srv)
}
func _DebugAgent_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DebugRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DebugAgentServer).Invoke(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/moc.common.admin.DebugAgent/Invoke",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DebugAgentServer).Invoke(ctx, req.(*DebugRequest))
}
return interceptor(ctx, in, info, handler)
}
var _DebugAgent_serviceDesc = grpc.ServiceDesc{
ServiceName: "moc.common.admin.DebugAgent",
HandlerType: (*DebugAgentServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Invoke",
Handler: _DebugAgent_Invoke_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "admin/debug/moc_common_debug.proto",
}