implement simple tui with humans data
This commit is contained in:
@@ -0,0 +1,164 @@
|
||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v5.28.3
|
||||
// source: helios/messenger/messenger.proto
|
||||
|
||||
package pbmessenger
|
||||
|
||||
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 (
|
||||
MessengerService_Stream_FullMethodName = "/helios.messenger.MessengerService/Stream"
|
||||
MessengerService_ListClients_FullMethodName = "/helios.messenger.MessengerService/ListClients"
|
||||
)
|
||||
|
||||
// MessengerServiceClient is the client API for MessengerService 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.
|
||||
//
|
||||
// Helios' messenger service serves as a dumb 'pipe' for communication between clients of the same account
|
||||
type MessengerServiceClient interface {
|
||||
// Note: must set hostname & authorization (session_id) headers
|
||||
// Send heartbeats to keep connection alive.
|
||||
// Also make sure to have reconnect logic as helios deployments does zero-downtime deploys, but still terminates old pods.
|
||||
Stream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[OutboundMessage, InboundMessage], error)
|
||||
ListClients(ctx context.Context, in *ListClientsRequest, opts ...grpc.CallOption) (*ListClientsResponse, error)
|
||||
}
|
||||
|
||||
type messengerServiceClient struct {
|
||||
cc grpc.ClientConnInterface
|
||||
}
|
||||
|
||||
func NewMessengerServiceClient(cc grpc.ClientConnInterface) MessengerServiceClient {
|
||||
return &messengerServiceClient{cc}
|
||||
}
|
||||
|
||||
func (c *messengerServiceClient) Stream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[OutboundMessage, InboundMessage], error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
stream, err := c.cc.NewStream(ctx, &MessengerService_ServiceDesc.Streams[0], MessengerService_Stream_FullMethodName, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
x := &grpc.GenericClientStream[OutboundMessage, InboundMessage]{ClientStream: stream}
|
||||
return x, nil
|
||||
}
|
||||
|
||||
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
||||
type MessengerService_StreamClient = grpc.BidiStreamingClient[OutboundMessage, InboundMessage]
|
||||
|
||||
func (c *messengerServiceClient) ListClients(ctx context.Context, in *ListClientsRequest, opts ...grpc.CallOption) (*ListClientsResponse, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(ListClientsResponse)
|
||||
err := c.cc.Invoke(ctx, MessengerService_ListClients_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// MessengerServiceServer is the server API for MessengerService service.
|
||||
// All implementations must embed UnimplementedMessengerServiceServer
|
||||
// for forward compatibility.
|
||||
//
|
||||
// Helios' messenger service serves as a dumb 'pipe' for communication between clients of the same account
|
||||
type MessengerServiceServer interface {
|
||||
// Note: must set hostname & authorization (session_id) headers
|
||||
// Send heartbeats to keep connection alive.
|
||||
// Also make sure to have reconnect logic as helios deployments does zero-downtime deploys, but still terminates old pods.
|
||||
Stream(grpc.BidiStreamingServer[OutboundMessage, InboundMessage]) error
|
||||
ListClients(context.Context, *ListClientsRequest) (*ListClientsResponse, error)
|
||||
mustEmbedUnimplementedMessengerServiceServer()
|
||||
}
|
||||
|
||||
// UnimplementedMessengerServiceServer 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 UnimplementedMessengerServiceServer struct{}
|
||||
|
||||
func (UnimplementedMessengerServiceServer) Stream(grpc.BidiStreamingServer[OutboundMessage, InboundMessage]) error {
|
||||
return status.Errorf(codes.Unimplemented, "method Stream not implemented")
|
||||
}
|
||||
func (UnimplementedMessengerServiceServer) ListClients(context.Context, *ListClientsRequest) (*ListClientsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method ListClients not implemented")
|
||||
}
|
||||
func (UnimplementedMessengerServiceServer) mustEmbedUnimplementedMessengerServiceServer() {}
|
||||
func (UnimplementedMessengerServiceServer) testEmbeddedByValue() {}
|
||||
|
||||
// UnsafeMessengerServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||
// Use of this interface is not recommended, as added methods to MessengerServiceServer will
|
||||
// result in compilation errors.
|
||||
type UnsafeMessengerServiceServer interface {
|
||||
mustEmbedUnimplementedMessengerServiceServer()
|
||||
}
|
||||
|
||||
func RegisterMessengerServiceServer(s grpc.ServiceRegistrar, srv MessengerServiceServer) {
|
||||
// If the following call pancis, it indicates UnimplementedMessengerServiceServer 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(&MessengerService_ServiceDesc, srv)
|
||||
}
|
||||
|
||||
func _MessengerService_Stream_Handler(srv interface{}, stream grpc.ServerStream) error {
|
||||
return srv.(MessengerServiceServer).Stream(&grpc.GenericServerStream[OutboundMessage, InboundMessage]{ServerStream: stream})
|
||||
}
|
||||
|
||||
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
||||
type MessengerService_StreamServer = grpc.BidiStreamingServer[OutboundMessage, InboundMessage]
|
||||
|
||||
func _MessengerService_ListClients_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ListClientsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(MessengerServiceServer).ListClients(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: MessengerService_ListClients_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(MessengerServiceServer).ListClients(ctx, req.(*ListClientsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
// MessengerService_ServiceDesc is the grpc.ServiceDesc for MessengerService service.
|
||||
// It's only intended for direct use with grpc.RegisterService,
|
||||
// and not to be introspected or modified (even as a copy)
|
||||
var MessengerService_ServiceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "helios.messenger.MessengerService",
|
||||
HandlerType: (*MessengerServiceServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "ListClients",
|
||||
Handler: _MessengerService_ListClients_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{
|
||||
{
|
||||
StreamName: "Stream",
|
||||
Handler: _MessengerService_Stream_Handler,
|
||||
ServerStreams: true,
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "helios/messenger/messenger.proto",
|
||||
}
|
||||
Reference in New Issue
Block a user