OSDN Git Service

add package
[bytom/vapor.git] / vendor / github.com / hashicorp / go-plugin / examples / grpc / proto / kv.pb.go
diff --git a/vendor/github.com/hashicorp/go-plugin/examples/grpc/proto/kv.pb.go b/vendor/github.com/hashicorp/go-plugin/examples/grpc/proto/kv.pb.go
new file mode 100644 (file)
index 0000000..6ddbdaf
--- /dev/null
@@ -0,0 +1,229 @@
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// source: kv.proto
+
+/*
+Package proto is a generated protocol buffer package.
+
+It is generated from these files:
+       kv.proto
+
+It has these top-level messages:
+       GetRequest
+       GetResponse
+       PutRequest
+       Empty
+*/
+package proto
+
+import proto1 "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 _ = proto1.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 _ = proto1.ProtoPackageIsVersion2 // please upgrade the proto package
+
+type GetRequest struct {
+       Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
+}
+
+func (m *GetRequest) Reset()                    { *m = GetRequest{} }
+func (m *GetRequest) String() string            { return proto1.CompactTextString(m) }
+func (*GetRequest) ProtoMessage()               {}
+func (*GetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
+
+func (m *GetRequest) GetKey() string {
+       if m != nil {
+               return m.Key
+       }
+       return ""
+}
+
+type GetResponse struct {
+       Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
+}
+
+func (m *GetResponse) Reset()                    { *m = GetResponse{} }
+func (m *GetResponse) String() string            { return proto1.CompactTextString(m) }
+func (*GetResponse) ProtoMessage()               {}
+func (*GetResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
+
+func (m *GetResponse) GetValue() []byte {
+       if m != nil {
+               return m.Value
+       }
+       return nil
+}
+
+type PutRequest struct {
+       Key   string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
+       Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
+}
+
+func (m *PutRequest) Reset()                    { *m = PutRequest{} }
+func (m *PutRequest) String() string            { return proto1.CompactTextString(m) }
+func (*PutRequest) ProtoMessage()               {}
+func (*PutRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
+
+func (m *PutRequest) GetKey() string {
+       if m != nil {
+               return m.Key
+       }
+       return ""
+}
+
+func (m *PutRequest) GetValue() []byte {
+       if m != nil {
+               return m.Value
+       }
+       return nil
+}
+
+type Empty struct {
+}
+
+func (m *Empty) Reset()                    { *m = Empty{} }
+func (m *Empty) String() string            { return proto1.CompactTextString(m) }
+func (*Empty) ProtoMessage()               {}
+func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
+
+func init() {
+       proto1.RegisterType((*GetRequest)(nil), "proto.GetRequest")
+       proto1.RegisterType((*GetResponse)(nil), "proto.GetResponse")
+       proto1.RegisterType((*PutRequest)(nil), "proto.PutRequest")
+       proto1.RegisterType((*Empty)(nil), "proto.Empty")
+}
+
+// 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 KV service
+
+type KVClient interface {
+       Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error)
+       Put(ctx context.Context, in *PutRequest, opts ...grpc.CallOption) (*Empty, error)
+}
+
+type kVClient struct {
+       cc *grpc.ClientConn
+}
+
+func NewKVClient(cc *grpc.ClientConn) KVClient {
+       return &kVClient{cc}
+}
+
+func (c *kVClient) Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error) {
+       out := new(GetResponse)
+       err := grpc.Invoke(ctx, "/proto.KV/Get", in, out, c.cc, opts...)
+       if err != nil {
+               return nil, err
+       }
+       return out, nil
+}
+
+func (c *kVClient) Put(ctx context.Context, in *PutRequest, opts ...grpc.CallOption) (*Empty, error) {
+       out := new(Empty)
+       err := grpc.Invoke(ctx, "/proto.KV/Put", in, out, c.cc, opts...)
+       if err != nil {
+               return nil, err
+       }
+       return out, nil
+}
+
+// Server API for KV service
+
+type KVServer interface {
+       Get(context.Context, *GetRequest) (*GetResponse, error)
+       Put(context.Context, *PutRequest) (*Empty, error)
+}
+
+func RegisterKVServer(s *grpc.Server, srv KVServer) {
+       s.RegisterService(&_KV_serviceDesc, srv)
+}
+
+func _KV_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+       in := new(GetRequest)
+       if err := dec(in); err != nil {
+               return nil, err
+       }
+       if interceptor == nil {
+               return srv.(KVServer).Get(ctx, in)
+       }
+       info := &grpc.UnaryServerInfo{
+               Server:     srv,
+               FullMethod: "/proto.KV/Get",
+       }
+       handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+               return srv.(KVServer).Get(ctx, req.(*GetRequest))
+       }
+       return interceptor(ctx, in, info, handler)
+}
+
+func _KV_Put_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+       in := new(PutRequest)
+       if err := dec(in); err != nil {
+               return nil, err
+       }
+       if interceptor == nil {
+               return srv.(KVServer).Put(ctx, in)
+       }
+       info := &grpc.UnaryServerInfo{
+               Server:     srv,
+               FullMethod: "/proto.KV/Put",
+       }
+       handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+               return srv.(KVServer).Put(ctx, req.(*PutRequest))
+       }
+       return interceptor(ctx, in, info, handler)
+}
+
+var _KV_serviceDesc = grpc.ServiceDesc{
+       ServiceName: "proto.KV",
+       HandlerType: (*KVServer)(nil),
+       Methods: []grpc.MethodDesc{
+               {
+                       MethodName: "Get",
+                       Handler:    _KV_Get_Handler,
+               },
+               {
+                       MethodName: "Put",
+                       Handler:    _KV_Put_Handler,
+               },
+       },
+       Streams:  []grpc.StreamDesc{},
+       Metadata: "kv.proto",
+}
+
+func init() { proto1.RegisterFile("kv.proto", fileDescriptor0) }
+
+var fileDescriptor0 = []byte{
+       // 162 bytes of a gzipped FileDescriptorProto
+       0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xc8, 0x2e, 0xd3, 0x2b,
+       0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05, 0x53, 0x4a, 0x72, 0x5c, 0x5c, 0xee, 0xa9, 0x25, 0x41,
+       0xa9, 0x85, 0xa5, 0xa9, 0xc5, 0x25, 0x42, 0x02, 0x5c, 0xcc, 0xd9, 0xa9, 0x95, 0x12, 0x8c, 0x0a,
+       0x8c, 0x1a, 0x9c, 0x41, 0x20, 0xa6, 0x92, 0x32, 0x17, 0x37, 0x58, 0xbe, 0xb8, 0x20, 0x3f, 0xaf,
+       0x38, 0x55, 0x48, 0x84, 0x8b, 0xb5, 0x2c, 0x31, 0xa7, 0x34, 0x15, 0xac, 0x84, 0x27, 0x08, 0xc2,
+       0x51, 0x32, 0xe1, 0xe2, 0x0a, 0x28, 0xc5, 0x6d, 0x08, 0x42, 0x17, 0x13, 0xb2, 0x2e, 0x76, 0x2e,
+       0x56, 0xd7, 0xdc, 0x82, 0x92, 0x4a, 0xa3, 0x28, 0x2e, 0x26, 0xef, 0x30, 0x21, 0x1d, 0x2e, 0x66,
+       0xf7, 0xd4, 0x12, 0x21, 0x41, 0x88, 0xfb, 0xf4, 0x10, 0xae, 0x92, 0x12, 0x42, 0x16, 0x82, 0x3a,
+       0x44, 0x8d, 0x8b, 0x39, 0xa0, 0x14, 0xa1, 0x1a, 0x61, 0xbd, 0x14, 0x0f, 0x54, 0x08, 0x6c, 0x76,
+       0x12, 0x1b, 0x98, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x06, 0x32, 0x05, 0x89, 0xf9, 0x00,
+       0x00, 0x00,
+}