mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-02 17:10:18 +01:00
228 lines
6.6 KiB
Go
228 lines
6.6 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: test.proto
|
|
|
|
/*
|
|
Package testpb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
test.proto
|
|
|
|
It has these top-level messages:
|
|
FooRequest
|
|
FooResponse
|
|
*/
|
|
package testpb // import "go.opencensus.io/internal/testpb"
|
|
|
|
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 FooRequest struct {
|
|
Fail bool `protobuf:"varint,1,opt,name=fail" json:"fail,omitempty"`
|
|
SleepNanos int64 `protobuf:"varint,2,opt,name=sleep_nanos,json=sleepNanos" json:"sleep_nanos,omitempty"`
|
|
}
|
|
|
|
func (m *FooRequest) Reset() { *m = FooRequest{} }
|
|
func (m *FooRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*FooRequest) ProtoMessage() {}
|
|
func (*FooRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *FooRequest) GetFail() bool {
|
|
if m != nil {
|
|
return m.Fail
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *FooRequest) GetSleepNanos() int64 {
|
|
if m != nil {
|
|
return m.SleepNanos
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type FooResponse struct {
|
|
}
|
|
|
|
func (m *FooResponse) Reset() { *m = FooResponse{} }
|
|
func (m *FooResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*FooResponse) ProtoMessage() {}
|
|
func (*FooResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func init() {
|
|
proto.RegisterType((*FooRequest)(nil), "testpb.FooRequest")
|
|
proto.RegisterType((*FooResponse)(nil), "testpb.FooResponse")
|
|
}
|
|
|
|
// 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 Foo service
|
|
|
|
type FooClient interface {
|
|
Single(ctx context.Context, in *FooRequest, opts ...grpc.CallOption) (*FooResponse, error)
|
|
Multiple(ctx context.Context, opts ...grpc.CallOption) (Foo_MultipleClient, error)
|
|
}
|
|
|
|
type fooClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewFooClient(cc *grpc.ClientConn) FooClient {
|
|
return &fooClient{cc}
|
|
}
|
|
|
|
func (c *fooClient) Single(ctx context.Context, in *FooRequest, opts ...grpc.CallOption) (*FooResponse, error) {
|
|
out := new(FooResponse)
|
|
err := grpc.Invoke(ctx, "/testpb.Foo/Single", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *fooClient) Multiple(ctx context.Context, opts ...grpc.CallOption) (Foo_MultipleClient, error) {
|
|
stream, err := grpc.NewClientStream(ctx, &_Foo_serviceDesc.Streams[0], c.cc, "/testpb.Foo/Multiple", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &fooMultipleClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type Foo_MultipleClient interface {
|
|
Send(*FooRequest) error
|
|
Recv() (*FooResponse, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type fooMultipleClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *fooMultipleClient) Send(m *FooRequest) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *fooMultipleClient) Recv() (*FooResponse, error) {
|
|
m := new(FooResponse)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// Server API for Foo service
|
|
|
|
type FooServer interface {
|
|
Single(context.Context, *FooRequest) (*FooResponse, error)
|
|
Multiple(Foo_MultipleServer) error
|
|
}
|
|
|
|
func RegisterFooServer(s *grpc.Server, srv FooServer) {
|
|
s.RegisterService(&_Foo_serviceDesc, srv)
|
|
}
|
|
|
|
func _Foo_Single_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(FooRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FooServer).Single(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/testpb.Foo/Single",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FooServer).Single(ctx, req.(*FooRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Foo_Multiple_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(FooServer).Multiple(&fooMultipleServer{stream})
|
|
}
|
|
|
|
type Foo_MultipleServer interface {
|
|
Send(*FooResponse) error
|
|
Recv() (*FooRequest, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type fooMultipleServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *fooMultipleServer) Send(m *FooResponse) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *fooMultipleServer) Recv() (*FooRequest, error) {
|
|
m := new(FooRequest)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
var _Foo_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "testpb.Foo",
|
|
HandlerType: (*FooServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Single",
|
|
Handler: _Foo_Single_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Multiple",
|
|
Handler: _Foo_Multiple_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "test.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("test.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 165 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2a, 0x49, 0x2d, 0x2e,
|
|
0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x03, 0xb1, 0x0b, 0x92, 0x94, 0x1c, 0xb9, 0xb8,
|
|
0xdc, 0xf2, 0xf3, 0x83, 0x52, 0x0b, 0x4b, 0x53, 0x8b, 0x4b, 0x84, 0x84, 0xb8, 0x58, 0xd2, 0x12,
|
|
0x33, 0x73, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x82, 0xc0, 0x6c, 0x21, 0x79, 0x2e, 0xee, 0xe2,
|
|
0x9c, 0xd4, 0xd4, 0x82, 0xf8, 0xbc, 0xc4, 0xbc, 0xfc, 0x62, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xe6,
|
|
0x20, 0x2e, 0xb0, 0x90, 0x1f, 0x48, 0x44, 0x89, 0x97, 0x8b, 0x1b, 0x6c, 0x44, 0x71, 0x41, 0x7e,
|
|
0x5e, 0x71, 0xaa, 0x51, 0x21, 0x17, 0xb3, 0x5b, 0x7e, 0xbe, 0x90, 0x21, 0x17, 0x5b, 0x70, 0x66,
|
|
0x5e, 0x7a, 0x4e, 0xaa, 0x90, 0x90, 0x1e, 0xc4, 0x2e, 0x3d, 0x84, 0x45, 0x52, 0xc2, 0x28, 0x62,
|
|
0x10, 0x9d, 0x42, 0xe6, 0x5c, 0x1c, 0xbe, 0xa5, 0x39, 0x25, 0x99, 0x05, 0x24, 0x68, 0xd2, 0x60,
|
|
0x34, 0x60, 0x4c, 0x62, 0x03, 0xfb, 0xc9, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x37, 0xb1, 0x2d,
|
|
0x6e, 0xe1, 0x00, 0x00, 0x00,
|
|
}
|
|
|
|
//go:generate ./generate.sh
|