overflow db proxy grpc proto
This commit is contained in:
parent
7860b079b4
commit
eb6863d641
180
build/golang/grpc.pb.go
Normal file
180
build/golang/grpc.pb.go
Normal file
|
@ -0,0 +1,180 @@
|
||||||
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
|
// source: grpc.proto
|
||||||
|
|
||||||
|
/*
|
||||||
|
Package grpc is a generated protocol buffer package.
|
||||||
|
|
||||||
|
It is generated from these files:
|
||||||
|
grpc.proto
|
||||||
|
|
||||||
|
It has these top-level messages:
|
||||||
|
DBInput
|
||||||
|
DBOutput
|
||||||
|
*/
|
||||||
|
package grpc
|
||||||
|
|
||||||
|
import proto "github.com/golang/protobuf/proto"
|
||||||
|
import fmt "fmt"
|
||||||
|
import math "math"
|
||||||
|
|
||||||
|
import (
|
||||||
|
context "golang.org/x/net/context"
|
||||||
|
grpc1 "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 DBInput struct {
|
||||||
|
TargetDao string `protobuf:"bytes,1,opt,name=targetDao" json:"targetDao,omitempty"`
|
||||||
|
Method string `protobuf:"bytes,2,opt,name=method" json:"method,omitempty"`
|
||||||
|
Param map[string]string `protobuf:"bytes,3,rep,name=param" json:"param,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *DBInput) Reset() { *m = DBInput{} }
|
||||||
|
func (m *DBInput) String() string { return proto.CompactTextString(m) }
|
||||||
|
func (*DBInput) ProtoMessage() {}
|
||||||
|
func (*DBInput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
||||||
|
|
||||||
|
func (m *DBInput) GetTargetDao() string {
|
||||||
|
if m != nil {
|
||||||
|
return m.TargetDao
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *DBInput) GetMethod() string {
|
||||||
|
if m != nil {
|
||||||
|
return m.Method
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *DBInput) GetParam() map[string]string {
|
||||||
|
if m != nil {
|
||||||
|
return m.Param
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type DBOutput struct {
|
||||||
|
Result string `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *DBOutput) Reset() { *m = DBOutput{} }
|
||||||
|
func (m *DBOutput) String() string { return proto.CompactTextString(m) }
|
||||||
|
func (*DBOutput) ProtoMessage() {}
|
||||||
|
func (*DBOutput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||||||
|
|
||||||
|
func (m *DBOutput) GetResult() string {
|
||||||
|
if m != nil {
|
||||||
|
return m.Result
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
proto.RegisterType((*DBInput)(nil), "DBInput")
|
||||||
|
proto.RegisterType((*DBOutput)(nil), "DBOutput")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||||||
|
var _ context.Context
|
||||||
|
var _ grpc1.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 _ = grpc1.SupportPackageIsVersion4
|
||||||
|
|
||||||
|
// Client API for DB service
|
||||||
|
|
||||||
|
type DBClient interface {
|
||||||
|
Exec(ctx context.Context, in *DBInput, opts ...grpc1.CallOption) (*DBOutput, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
type dBClient struct {
|
||||||
|
cc *grpc1.ClientConn
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewDBClient(cc *grpc1.ClientConn) DBClient {
|
||||||
|
return &dBClient{cc}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *dBClient) Exec(ctx context.Context, in *DBInput, opts ...grpc1.CallOption) (*DBOutput, error) {
|
||||||
|
out := new(DBOutput)
|
||||||
|
err := grpc1.Invoke(ctx, "/DB/exec", in, out, c.cc, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Server API for DB service
|
||||||
|
|
||||||
|
type DBServer interface {
|
||||||
|
Exec(context.Context, *DBInput) (*DBOutput, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
func RegisterDBServer(s *grpc1.Server, srv DBServer) {
|
||||||
|
s.RegisterService(&_DB_serviceDesc, srv)
|
||||||
|
}
|
||||||
|
|
||||||
|
func _DB_Exec_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(DBInput)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(DBServer).Exec(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc1.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: "/DB/Exec",
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(DBServer).Exec(ctx, req.(*DBInput))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
|
var _DB_serviceDesc = grpc1.ServiceDesc{
|
||||||
|
ServiceName: "DB",
|
||||||
|
HandlerType: (*DBServer)(nil),
|
||||||
|
Methods: []grpc1.MethodDesc{
|
||||||
|
{
|
||||||
|
MethodName: "exec",
|
||||||
|
Handler: _DB_Exec_Handler,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Streams: []grpc1.StreamDesc{},
|
||||||
|
Metadata: "grpc.proto",
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() { proto.RegisterFile("grpc.proto", fileDescriptor0) }
|
||||||
|
|
||||||
|
var fileDescriptor0 = []byte{
|
||||||
|
// 233 bytes of a gzipped FileDescriptorProto
|
||||||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x90, 0x41, 0x4f, 0xc2, 0x40,
|
||||||
|
0x10, 0x85, 0x6d, 0x2b, 0x95, 0x8e, 0x17, 0xb3, 0x1a, 0xd2, 0x34, 0x98, 0x90, 0x7a, 0xc1, 0xcb,
|
||||||
|
0x1c, 0xf0, 0x42, 0x3c, 0x36, 0xeb, 0xc1, 0x93, 0x86, 0x7f, 0xb0, 0x94, 0x01, 0x8d, 0x5b, 0x66,
|
||||||
|
0xb3, 0xce, 0xa2, 0xfc, 0x1f, 0x7f, 0xa8, 0x29, 0x2c, 0xe1, 0xb6, 0xef, 0xdb, 0x79, 0xf3, 0x5e,
|
||||||
|
0x06, 0x60, 0xe3, 0x5d, 0x8b, 0xce, 0xb3, 0x70, 0xfd, 0x97, 0xc0, 0x95, 0x6e, 0x5e, 0xb7, 0x2e,
|
||||||
|
0x88, 0x1a, 0x43, 0x21, 0xc6, 0x6f, 0x48, 0xb4, 0xe1, 0x32, 0x99, 0x24, 0xd3, 0x62, 0x71, 0x06,
|
||||||
|
0x6a, 0x04, 0x79, 0x47, 0xf2, 0xc1, 0xab, 0x32, 0x3d, 0x7c, 0x45, 0xa5, 0x1e, 0x61, 0xe0, 0x8c,
|
||||||
|
0x37, 0x5d, 0x99, 0x4d, 0xb2, 0xe9, 0xf5, 0xec, 0x16, 0xe3, 0x3a, 0x7c, 0xef, 0xe9, 0xcb, 0x56,
|
||||||
|
0xfc, 0x7e, 0x71, 0x9c, 0xa8, 0xe6, 0x00, 0x67, 0xa8, 0x6e, 0x20, 0xfb, 0xa2, 0x7d, 0x0c, 0xea,
|
||||||
|
0x9f, 0xea, 0x0e, 0x06, 0x3b, 0x63, 0x03, 0xc5, 0x84, 0xa3, 0x78, 0x4e, 0xe7, 0x49, 0x5d, 0xc3,
|
||||||
|
0x50, 0x37, 0x6f, 0x41, 0xfa, 0x9a, 0x23, 0xc8, 0x3d, 0x7d, 0x07, 0x2b, 0xd1, 0x1a, 0xd5, 0xec,
|
||||||
|
0x01, 0x52, 0xdd, 0xa8, 0x7b, 0xb8, 0xa4, 0x5f, 0x6a, 0xd5, 0xf0, 0xd4, 0xa3, 0x2a, 0xf0, 0x64,
|
||||||
|
0xad, 0x2f, 0x9a, 0x31, 0x54, 0x2d, 0x77, 0x68, 0xd9, 0xac, 0x2d, 0x21, 0xef, 0xc8, 0xaf, 0x2d,
|
||||||
|
0xff, 0xe0, 0x6a, 0x89, 0xc6, 0x7d, 0x2e, 0xf3, 0xc3, 0x51, 0x9e, 0xfe, 0x03, 0x00, 0x00, 0xff,
|
||||||
|
0xff, 0x2f, 0xe5, 0x6c, 0xa7, 0x22, 0x01, 0x00, 0x00,
|
||||||
|
}
|
1558
build/java/com/loafle/overflow/db/api/Grpc.java
Normal file
1558
build/java/com/loafle/overflow/db/api/Grpc.java
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user