// Code generated by protoc-gen-go. DO NOT EDIT. // source: central-api.proto package central_api import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" import ( context "golang.org/x/net/context" grpc "google.golang.org/grpc" ) // 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.ProtoPackageIsVersion2 // please upgrade the proto package type ServerInput struct { Target string `protobuf:"bytes,1,opt,name=target" json:"target,omitempty"` Method string `protobuf:"bytes,2,opt,name=method" json:"method,omitempty"` Params []string `protobuf:"bytes,3,rep,name=params" json:"params,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *ServerInput) Reset() { *m = ServerInput{} } func (m *ServerInput) String() string { return proto.CompactTextString(m) } func (*ServerInput) ProtoMessage() {} func (*ServerInput) Descriptor() ([]byte, []int) { return fileDescriptor_central_api_90f582576a9bbfba, []int{0} } func (m *ServerInput) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ServerInput.Unmarshal(m, b) } func (m *ServerInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_ServerInput.Marshal(b, m, deterministic) } func (dst *ServerInput) XXX_Merge(src proto.Message) { xxx_messageInfo_ServerInput.Merge(dst, src) } func (m *ServerInput) XXX_Size() int { return xxx_messageInfo_ServerInput.Size(m) } func (m *ServerInput) XXX_DiscardUnknown() { xxx_messageInfo_ServerInput.DiscardUnknown(m) } var xxx_messageInfo_ServerInput proto.InternalMessageInfo func (m *ServerInput) GetTarget() string { if m != nil { return m.Target } return "" } func (m *ServerInput) GetMethod() string { if m != nil { return m.Method } return "" } func (m *ServerInput) GetParams() []string { if m != nil { return m.Params } return nil } type ServerParam struct { Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"` Data string `protobuf:"bytes,2,opt,name=data" json:"data,omitempty"` IsCollection bool `protobuf:"varint,3,opt,name=isCollection" json:"isCollection,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *ServerParam) Reset() { *m = ServerParam{} } func (m *ServerParam) String() string { return proto.CompactTextString(m) } func (*ServerParam) ProtoMessage() {} func (*ServerParam) Descriptor() ([]byte, []int) { return fileDescriptor_central_api_90f582576a9bbfba, []int{1} } func (m *ServerParam) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ServerParam.Unmarshal(m, b) } func (m *ServerParam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_ServerParam.Marshal(b, m, deterministic) } func (dst *ServerParam) XXX_Merge(src proto.Message) { xxx_messageInfo_ServerParam.Merge(dst, src) } func (m *ServerParam) XXX_Size() int { return xxx_messageInfo_ServerParam.Size(m) } func (m *ServerParam) XXX_DiscardUnknown() { xxx_messageInfo_ServerParam.DiscardUnknown(m) } var xxx_messageInfo_ServerParam proto.InternalMessageInfo func (m *ServerParam) GetType() string { if m != nil { return m.Type } return "" } func (m *ServerParam) GetData() string { if m != nil { return m.Data } return "" } func (m *ServerParam) GetIsCollection() bool { if m != nil { return m.IsCollection } return false } type ServerOutput struct { Result string `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *ServerOutput) Reset() { *m = ServerOutput{} } func (m *ServerOutput) String() string { return proto.CompactTextString(m) } func (*ServerOutput) ProtoMessage() {} func (*ServerOutput) Descriptor() ([]byte, []int) { return fileDescriptor_central_api_90f582576a9bbfba, []int{2} } func (m *ServerOutput) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ServerOutput.Unmarshal(m, b) } func (m *ServerOutput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_ServerOutput.Marshal(b, m, deterministic) } func (dst *ServerOutput) XXX_Merge(src proto.Message) { xxx_messageInfo_ServerOutput.Merge(dst, src) } func (m *ServerOutput) XXX_Size() int { return xxx_messageInfo_ServerOutput.Size(m) } func (m *ServerOutput) XXX_DiscardUnknown() { xxx_messageInfo_ServerOutput.DiscardUnknown(m) } var xxx_messageInfo_ServerOutput proto.InternalMessageInfo func (m *ServerOutput) GetResult() string { if m != nil { return m.Result } return "" } func init() { proto.RegisterType((*ServerInput)(nil), "ServerInput") proto.RegisterType((*ServerParam)(nil), "ServerParam") proto.RegisterType((*ServerOutput)(nil), "ServerOutput") } // 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 // Client API for CentralAPI service type CentralAPIClient interface { Exec(ctx context.Context, in *ServerInput, opts ...grpc.CallOption) (*ServerOutput, error) } type centralAPIClient struct { cc *grpc.ClientConn } func NewCentralAPIClient(cc *grpc.ClientConn) CentralAPIClient { return ¢ralAPIClient{cc} } func (c *centralAPIClient) Exec(ctx context.Context, in *ServerInput, opts ...grpc.CallOption) (*ServerOutput, error) { out := new(ServerOutput) err := grpc.Invoke(ctx, "/CentralAPI/exec", in, out, c.cc, opts...) if err != nil { return nil, err } return out, nil } // Server API for CentralAPI service type CentralAPIServer interface { Exec(context.Context, *ServerInput) (*ServerOutput, error) } func RegisterCentralAPIServer(s *grpc.Server, srv CentralAPIServer) { s.RegisterService(&_CentralAPI_serviceDesc, srv) } func _CentralAPI_Exec_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ServerInput) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CentralAPIServer).Exec(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/CentralAPI/Exec", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CentralAPIServer).Exec(ctx, req.(*ServerInput)) } return interceptor(ctx, in, info, handler) } var _CentralAPI_serviceDesc = grpc.ServiceDesc{ ServiceName: "CentralAPI", HandlerType: (*CentralAPIServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "exec", Handler: _CentralAPI_Exec_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "central-api.proto", } func init() { proto.RegisterFile("central-api.proto", fileDescriptor_central_api_90f582576a9bbfba) } var fileDescriptor_central_api_90f582576a9bbfba = []byte{ // 241 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xb1, 0x4e, 0xc3, 0x30, 0x10, 0x40, 0x31, 0xa9, 0x2a, 0x38, 0xc2, 0x80, 0x07, 0x14, 0xb1, 0x10, 0x59, 0xa2, 0xea, 0x82, 0x07, 0xfa, 0x05, 0xd0, 0xa9, 0x13, 0x51, 0x11, 0x03, 0xa3, 0x49, 0xaf, 0x10, 0xc9, 0xc9, 0x59, 0xce, 0xa5, 0xc0, 0x1f, 0xf0, 0xd9, 0xc8, 0xb1, 0x41, 0x61, 0xbb, 0xf7, 0x86, 0xa7, 0xbb, 0x83, 0x8b, 0x1a, 0x3b, 0xf6, 0xc6, 0xde, 0x1a, 0xd7, 0x68, 0xe7, 0x89, 0x49, 0x3d, 0xc3, 0xd9, 0x13, 0xfa, 0x03, 0xfa, 0x4d, 0xe7, 0x06, 0x96, 0x97, 0x30, 0x67, 0xe3, 0xdf, 0x90, 0x0b, 0x51, 0x8a, 0xe5, 0xe9, 0x36, 0x51, 0xf0, 0x2d, 0xf2, 0x3b, 0xed, 0x8a, 0xe3, 0xe8, 0x23, 0x05, 0xef, 0x8c, 0x37, 0x6d, 0x5f, 0x64, 0x65, 0x16, 0x7c, 0x24, 0xf5, 0xf2, 0x9b, 0xad, 0x02, 0x4b, 0x09, 0x33, 0xfe, 0x72, 0x98, 0xa2, 0xe3, 0x1c, 0xdc, 0xce, 0xb0, 0x49, 0xc1, 0x71, 0x96, 0x0a, 0xf2, 0xa6, 0x5f, 0x93, 0xb5, 0x58, 0x73, 0x43, 0x5d, 0x91, 0x95, 0x62, 0x79, 0xb2, 0xfd, 0xe7, 0xd4, 0x02, 0xf2, 0x98, 0x7e, 0x1c, 0x38, 0xad, 0xec, 0xb1, 0x1f, 0xec, 0xdf, 0xca, 0x91, 0xee, 0x56, 0x00, 0xeb, 0x78, 0xee, 0x7d, 0xb5, 0x91, 0x37, 0x30, 0xc3, 0x4f, 0xac, 0x65, 0xae, 0x27, 0xe7, 0x5e, 0x9d, 0xeb, 0x69, 0x4a, 0x1d, 0x3d, 0x2c, 0xe0, 0xba, 0xa6, 0x56, 0x5b, 0x32, 0x7b, 0x8b, 0x9a, 0x0e, 0xe8, 0xf7, 0x96, 0x3e, 0x74, 0xfa, 0x9b, 0x36, 0xae, 0xa9, 0xc4, 0xb7, 0x10, 0xaf, 0xf3, 0xf1, 0x7b, 0xab, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xcd, 0x0f, 0x07, 0x52, 0x01, 0x00, 0x00, }