// Code generated by protoc-gen-connect-go. DO NOT EDIT. // // Source: edge/v1/edge_gateway.proto package edgev1connect import ( connect "connectrpc.com/connect" context "context" errors "errors" v1 "galaxy/gateway/proto/edge/v1" http "net/http" strings "strings" ) // This is a compile-time assertion to ensure that this generated file and the connect package are // compatible. If you get a compiler error that this constant is not defined, this code was // generated with a version of connect newer than the one compiled into your binary. You can fix the // problem by either regenerating this code with an older version of connect or updating the connect // version compiled into your binary. const _ = connect.IsAtLeastVersion1_13_0 const ( // GatewayName is the fully-qualified name of the Gateway service. GatewayName = "edge.v1.Gateway" ) // These constants are the fully-qualified names of the RPCs defined in this package. They're // exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route. // // Note that these are different from the fully-qualified method names used by // google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to // reflection-formatted method names, remove the leading slash and convert the remaining slash to a // period. const ( // GatewayExecuteCommandProcedure is the fully-qualified name of the Gateway's ExecuteCommand RPC. GatewayExecuteCommandProcedure = "/edge.v1.Gateway/ExecuteCommand" // GatewaySubscribeEventsProcedure is the fully-qualified name of the Gateway's SubscribeEvents RPC. GatewaySubscribeEventsProcedure = "/edge.v1.Gateway/SubscribeEvents" ) // GatewayClient is a client for the edge.v1.Gateway service. type GatewayClient interface { ExecuteCommand(context.Context, *connect.Request[v1.ExecuteCommandRequest]) (*connect.Response[v1.ExecuteCommandResponse], error) SubscribeEvents(context.Context, *connect.Request[v1.SubscribeEventsRequest]) (*connect.ServerStreamForClient[v1.GatewayEvent], error) } // NewGatewayClient constructs a client for the edge.v1.Gateway service. By default, it uses the // Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends // uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or // connect.WithGRPCWeb() options. // // The URL supplied here should be the base URL for the Connect or gRPC server (for example, // http://api.acme.com or https://acme.com/grpc). func NewGatewayClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) GatewayClient { baseURL = strings.TrimRight(baseURL, "/") gatewayMethods := v1.File_edge_v1_edge_gateway_proto.Services().ByName("Gateway").Methods() return &gatewayClient{ executeCommand: connect.NewClient[v1.ExecuteCommandRequest, v1.ExecuteCommandResponse]( httpClient, baseURL+GatewayExecuteCommandProcedure, connect.WithSchema(gatewayMethods.ByName("ExecuteCommand")), connect.WithClientOptions(opts...), ), subscribeEvents: connect.NewClient[v1.SubscribeEventsRequest, v1.GatewayEvent]( httpClient, baseURL+GatewaySubscribeEventsProcedure, connect.WithSchema(gatewayMethods.ByName("SubscribeEvents")), connect.WithClientOptions(opts...), ), } } // gatewayClient implements GatewayClient. type gatewayClient struct { executeCommand *connect.Client[v1.ExecuteCommandRequest, v1.ExecuteCommandResponse] subscribeEvents *connect.Client[v1.SubscribeEventsRequest, v1.GatewayEvent] } // ExecuteCommand calls edge.v1.Gateway.ExecuteCommand. func (c *gatewayClient) ExecuteCommand(ctx context.Context, req *connect.Request[v1.ExecuteCommandRequest]) (*connect.Response[v1.ExecuteCommandResponse], error) { return c.executeCommand.CallUnary(ctx, req) } // SubscribeEvents calls edge.v1.Gateway.SubscribeEvents. func (c *gatewayClient) SubscribeEvents(ctx context.Context, req *connect.Request[v1.SubscribeEventsRequest]) (*connect.ServerStreamForClient[v1.GatewayEvent], error) { return c.subscribeEvents.CallServerStream(ctx, req) } // GatewayHandler is an implementation of the edge.v1.Gateway service. type GatewayHandler interface { ExecuteCommand(context.Context, *connect.Request[v1.ExecuteCommandRequest]) (*connect.Response[v1.ExecuteCommandResponse], error) SubscribeEvents(context.Context, *connect.Request[v1.SubscribeEventsRequest], *connect.ServerStream[v1.GatewayEvent]) error } // NewGatewayHandler builds an HTTP handler from the service implementation. It returns the path on // which to mount the handler and the handler itself. // // By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf // and JSON codecs. They also support gzip compression. func NewGatewayHandler(svc GatewayHandler, opts ...connect.HandlerOption) (string, http.Handler) { gatewayMethods := v1.File_edge_v1_edge_gateway_proto.Services().ByName("Gateway").Methods() gatewayExecuteCommandHandler := connect.NewUnaryHandler( GatewayExecuteCommandProcedure, svc.ExecuteCommand, connect.WithSchema(gatewayMethods.ByName("ExecuteCommand")), connect.WithHandlerOptions(opts...), ) gatewaySubscribeEventsHandler := connect.NewServerStreamHandler( GatewaySubscribeEventsProcedure, svc.SubscribeEvents, connect.WithSchema(gatewayMethods.ByName("SubscribeEvents")), connect.WithHandlerOptions(opts...), ) return "/edge.v1.Gateway/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { switch r.URL.Path { case GatewayExecuteCommandProcedure: gatewayExecuteCommandHandler.ServeHTTP(w, r) case GatewaySubscribeEventsProcedure: gatewaySubscribeEventsHandler.ServeHTTP(w, r) default: http.NotFound(w, r) } }) } // UnimplementedGatewayHandler returns CodeUnimplemented from all methods. type UnimplementedGatewayHandler struct{} func (UnimplementedGatewayHandler) ExecuteCommand(context.Context, *connect.Request[v1.ExecuteCommandRequest]) (*connect.Response[v1.ExecuteCommandResponse], error) { return nil, connect.NewError(connect.CodeUnimplemented, errors.New("edge.v1.Gateway.ExecuteCommand is not implemented")) } func (UnimplementedGatewayHandler) SubscribeEvents(context.Context, *connect.Request[v1.SubscribeEventsRequest], *connect.ServerStream[v1.GatewayEvent]) error { return connect.NewError(connect.CodeUnimplemented, errors.New("edge.v1.Gateway.SubscribeEvents is not implemented")) }