feat: add a gRPC endpoint
This commit is contained in:
274
grpc/grpc.pb.go
Normal file
274
grpc/grpc.pb.go
Normal file
@ -0,0 +1,274 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.36.6
|
||||
// protoc v3.21.12
|
||||
// source: grpc.proto
|
||||
|
||||
package grpc
|
||||
|
||||
import (
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
unsafe "unsafe"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
type WhoamiRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *WhoamiRequest) Reset() {
|
||||
*x = WhoamiRequest{}
|
||||
mi := &file_grpc_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *WhoamiRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*WhoamiRequest) ProtoMessage() {}
|
||||
|
||||
func (x *WhoamiRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[0]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use WhoamiRequest.ProtoReflect.Descriptor instead.
|
||||
func (*WhoamiRequest) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
type WhoamiReply struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
Hostname string `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"`
|
||||
Iface []string `protobuf:"bytes,3,rep,name=iface,proto3" json:"iface,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) Reset() {
|
||||
*x = WhoamiReply{}
|
||||
mi := &file_grpc_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*WhoamiReply) ProtoMessage() {}
|
||||
|
||||
func (x *WhoamiReply) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[1]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use WhoamiReply.ProtoReflect.Descriptor instead.
|
||||
func (*WhoamiReply) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetName() string {
|
||||
if x != nil {
|
||||
return x.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetHostname() string {
|
||||
if x != nil {
|
||||
return x.Hostname
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *WhoamiReply) GetIface() []string {
|
||||
if x != nil {
|
||||
return x.Iface
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// The empty request message
|
||||
type BenchRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *BenchRequest) Reset() {
|
||||
*x = BenchRequest{}
|
||||
mi := &file_grpc_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *BenchRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BenchRequest) ProtoMessage() {}
|
||||
|
||||
func (x *BenchRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[2]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BenchRequest.ProtoReflect.Descriptor instead.
|
||||
func (*BenchRequest) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
// The response message containing simple data
|
||||
type BenchReply struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Data int32 `protobuf:"varint,1,opt,name=data,proto3" json:"data,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *BenchReply) Reset() {
|
||||
*x = BenchReply{}
|
||||
mi := &file_grpc_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *BenchReply) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*BenchReply) ProtoMessage() {}
|
||||
|
||||
func (x *BenchReply) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_grpc_proto_msgTypes[3]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use BenchReply.ProtoReflect.Descriptor instead.
|
||||
func (*BenchReply) Descriptor() ([]byte, []int) {
|
||||
return file_grpc_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *BenchReply) GetData() int32 {
|
||||
if x != nil {
|
||||
return x.Data
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
var File_grpc_proto protoreflect.FileDescriptor
|
||||
|
||||
const file_grpc_proto_rawDesc = "" +
|
||||
"\n" +
|
||||
"\n" +
|
||||
"grpc.proto\x12\x06whoami\"\x0f\n" +
|
||||
"\rWhoamiRequest\"S\n" +
|
||||
"\vWhoamiReply\x12\x12\n" +
|
||||
"\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
|
||||
"\bhostname\x18\x02 \x01(\tR\bhostname\x12\x14\n" +
|
||||
"\x05iface\x18\x03 \x03(\tR\x05iface\"\x0e\n" +
|
||||
"\fBenchRequest\" \n" +
|
||||
"\n" +
|
||||
"BenchReply\x12\x12\n" +
|
||||
"\x04data\x18\x01 \x01(\x05R\x04data2u\n" +
|
||||
"\x06Whoami\x126\n" +
|
||||
"\x06Whoami\x12\x15.whoami.WhoamiRequest\x1a\x13.whoami.WhoamiReply\"\x00\x123\n" +
|
||||
"\x05Bench\x12\x14.whoami.BenchRequest\x1a\x12.whoami.BenchReply\"\x00B\bZ\x06./grpcb\x06proto3"
|
||||
|
||||
var (
|
||||
file_grpc_proto_rawDescOnce sync.Once
|
||||
file_grpc_proto_rawDescData []byte
|
||||
)
|
||||
|
||||
func file_grpc_proto_rawDescGZIP() []byte {
|
||||
file_grpc_proto_rawDescOnce.Do(func() {
|
||||
file_grpc_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_grpc_proto_rawDesc), len(file_grpc_proto_rawDesc)))
|
||||
})
|
||||
return file_grpc_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_grpc_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||
var file_grpc_proto_goTypes = []any{
|
||||
(*WhoamiRequest)(nil), // 0: whoami.WhoamiRequest
|
||||
(*WhoamiReply)(nil), // 1: whoami.WhoamiReply
|
||||
(*BenchRequest)(nil), // 2: whoami.BenchRequest
|
||||
(*BenchReply)(nil), // 3: whoami.BenchReply
|
||||
}
|
||||
var file_grpc_proto_depIdxs = []int32{
|
||||
0, // 0: whoami.Whoami.Whoami:input_type -> whoami.WhoamiRequest
|
||||
2, // 1: whoami.Whoami.Bench:input_type -> whoami.BenchRequest
|
||||
1, // 2: whoami.Whoami.Whoami:output_type -> whoami.WhoamiReply
|
||||
3, // 3: whoami.Whoami.Bench:output_type -> whoami.BenchReply
|
||||
2, // [2:4] is the sub-list for method output_type
|
||||
0, // [0:2] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_grpc_proto_init() }
|
||||
func file_grpc_proto_init() {
|
||||
if File_grpc_proto != nil {
|
||||
return
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_grpc_proto_rawDesc), len(file_grpc_proto_rawDesc)),
|
||||
NumEnums: 0,
|
||||
NumMessages: 4,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_grpc_proto_goTypes,
|
||||
DependencyIndexes: file_grpc_proto_depIdxs,
|
||||
MessageInfos: file_grpc_proto_msgTypes,
|
||||
}.Build()
|
||||
File_grpc_proto = out.File
|
||||
file_grpc_proto_goTypes = nil
|
||||
file_grpc_proto_depIdxs = nil
|
||||
}
|
159
grpc/grpc_grpc.pb.go
Normal file
159
grpc/grpc_grpc.pb.go
Normal file
@ -0,0 +1,159 @@
|
||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.21.12
|
||||
// source: grpc.proto
|
||||
|
||||
package grpc
|
||||
|
||||
import (
|
||||
context "context"
|
||||
grpc "google.golang.org/grpc"
|
||||
codes "google.golang.org/grpc/codes"
|
||||
status "google.golang.org/grpc/status"
|
||||
)
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the grpc package it is being compiled against.
|
||||
// Requires gRPC-Go v1.64.0 or later.
|
||||
const _ = grpc.SupportPackageIsVersion9
|
||||
|
||||
const (
|
||||
Whoami_Whoami_FullMethodName = "/whoami.Whoami/Whoami"
|
||||
Whoami_Bench_FullMethodName = "/whoami.Whoami/Bench"
|
||||
)
|
||||
|
||||
// WhoamiClient is the client API for Whoami service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||||
type WhoamiClient interface {
|
||||
Whoami(ctx context.Context, in *WhoamiRequest, opts ...grpc.CallOption) (*WhoamiReply, error)
|
||||
Bench(ctx context.Context, in *BenchRequest, opts ...grpc.CallOption) (*BenchReply, error)
|
||||
}
|
||||
|
||||
type whoamiClient struct {
|
||||
cc grpc.ClientConnInterface
|
||||
}
|
||||
|
||||
func NewWhoamiClient(cc grpc.ClientConnInterface) WhoamiClient {
|
||||
return &whoamiClient{cc}
|
||||
}
|
||||
|
||||
func (c *whoamiClient) Whoami(ctx context.Context, in *WhoamiRequest, opts ...grpc.CallOption) (*WhoamiReply, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(WhoamiReply)
|
||||
err := c.cc.Invoke(ctx, Whoami_Whoami_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *whoamiClient) Bench(ctx context.Context, in *BenchRequest, opts ...grpc.CallOption) (*BenchReply, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(BenchReply)
|
||||
err := c.cc.Invoke(ctx, Whoami_Bench_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// WhoamiServer is the server API for Whoami service.
|
||||
// All implementations must embed UnimplementedWhoamiServer
|
||||
// for forward compatibility.
|
||||
type WhoamiServer interface {
|
||||
Whoami(context.Context, *WhoamiRequest) (*WhoamiReply, error)
|
||||
Bench(context.Context, *BenchRequest) (*BenchReply, error)
|
||||
mustEmbedUnimplementedWhoamiServer()
|
||||
}
|
||||
|
||||
// UnimplementedWhoamiServer must be embedded to have
|
||||
// forward compatible implementations.
|
||||
//
|
||||
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
||||
// pointer dereference when methods are called.
|
||||
type UnimplementedWhoamiServer struct{}
|
||||
|
||||
func (UnimplementedWhoamiServer) Whoami(context.Context, *WhoamiRequest) (*WhoamiReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method Whoami not implemented")
|
||||
}
|
||||
func (UnimplementedWhoamiServer) Bench(context.Context, *BenchRequest) (*BenchReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method Bench not implemented")
|
||||
}
|
||||
func (UnimplementedWhoamiServer) mustEmbedUnimplementedWhoamiServer() {}
|
||||
func (UnimplementedWhoamiServer) testEmbeddedByValue() {}
|
||||
|
||||
// UnsafeWhoamiServer may be embedded to opt out of forward compatibility for this service.
|
||||
// Use of this interface is not recommended, as added methods to WhoamiServer will
|
||||
// result in compilation errors.
|
||||
type UnsafeWhoamiServer interface {
|
||||
mustEmbedUnimplementedWhoamiServer()
|
||||
}
|
||||
|
||||
func RegisterWhoamiServer(s grpc.ServiceRegistrar, srv WhoamiServer) {
|
||||
// If the following call pancis, it indicates UnimplementedWhoamiServer was
|
||||
// embedded by pointer and is nil. This will cause panics if an
|
||||
// unimplemented method is ever invoked, so we test this at initialization
|
||||
// time to prevent it from happening at runtime later due to I/O.
|
||||
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
||||
t.testEmbeddedByValue()
|
||||
}
|
||||
s.RegisterService(&Whoami_ServiceDesc, srv)
|
||||
}
|
||||
|
||||
func _Whoami_Whoami_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(WhoamiRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(WhoamiServer).Whoami(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: Whoami_Whoami_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(WhoamiServer).Whoami(ctx, req.(*WhoamiRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Whoami_Bench_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(BenchRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(WhoamiServer).Bench(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: Whoami_Bench_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(WhoamiServer).Bench(ctx, req.(*BenchRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
// Whoami_ServiceDesc is the grpc.ServiceDesc for Whoami service.
|
||||
// It's only intended for direct use with grpc.RegisterService,
|
||||
// and not to be introspected or modified (even as a copy)
|
||||
var Whoami_ServiceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "whoami.Whoami",
|
||||
HandlerType: (*WhoamiServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "Whoami",
|
||||
Handler: _Whoami_Whoami_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "Bench",
|
||||
Handler: _Whoami_Bench_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "grpc.proto",
|
||||
}
|
Reference in New Issue
Block a user