Skip to content
Snippets Groups Projects
core.pb.gw.go 14.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • Malte Bauch's avatar
    Malte Bauch committed
    // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
    // source: gosdn/core/core.proto
    
    /*
    Package core is a reverse proxy.
    
    It translates gRPC into RESTful JSON APIs.
    */
    package core
    
    import (
    	"context"
    	"io"
    	"net/http"
    
    	"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
    	"github.com/grpc-ecosystem/grpc-gateway/v2/utilities"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/grpclog"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/proto"
    )
    
    // Suppress "imported and not used" errors
    var _ codes.Code
    var _ io.Reader
    var _ status.Status
    var _ = runtime.String
    var _ = utilities.NewDoubleArray
    var _ = metadata.Join
    
    var (
    
    	filter_CoreService_GetPnd_0 = &utilities.DoubleArray{Encoding: map[string]int{"pid": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}}
    
    func request_CoreService_GetPnd_0(ctx context.Context, marshaler runtime.Marshaler, client CoreServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var protoReq GetPndRequest
    	var metadata runtime.ServerMetadata
    
    	var (
    		val string
    		ok  bool
    		err error
    		_   = err
    	)
    
    	val, ok = pathParams["pid"]
    	if !ok {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "pid")
    	}
    
    
    	protoReq.Pid, err = runtime.String(val)
    
    Malte Bauch's avatar
    Malte Bauch committed
    	if err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "pid", err)
    	}
    
    	if err := req.ParseForm(); err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_CoreService_GetPnd_0); err != nil {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	msg, err := client.GetPnd(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
    	return msg, metadata, err
    
    }
    
    
    func local_request_CoreService_GetPnd_0(ctx context.Context, marshaler runtime.Marshaler, server CoreServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var protoReq GetPndRequest
    	var metadata runtime.ServerMetadata
    
    	var (
    		val string
    		ok  bool
    		err error
    		_   = err
    	)
    
    	val, ok = pathParams["pid"]
    	if !ok {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "pid")
    	}
    
    
    	protoReq.Pid, err = runtime.String(val)
    
    Malte Bauch's avatar
    Malte Bauch committed
    	if err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "pid", err)
    	}
    
    	if err := req.ParseForm(); err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_CoreService_GetPnd_0); err != nil {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	msg, err := server.GetPnd(ctx, &protoReq)
    	return msg, metadata, err
    
    }
    
    var (
    
    	filter_CoreService_GetPndList_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
    
    func request_CoreService_GetPndList_0(ctx context.Context, marshaler runtime.Marshaler, client CoreServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var protoReq GetPndListRequest
    	var metadata runtime.ServerMetadata
    
    	if err := req.ParseForm(); err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_CoreService_GetPndList_0); err != nil {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	msg, err := client.GetPndList(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
    	return msg, metadata, err
    
    }
    
    
    func local_request_CoreService_GetPndList_0(ctx context.Context, marshaler runtime.Marshaler, server CoreServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var protoReq GetPndListRequest
    	var metadata runtime.ServerMetadata
    
    	if err := req.ParseForm(); err != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_CoreService_GetPndList_0); err != nil {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    	msg, err := server.GetPndList(ctx, &protoReq)
    	return msg, metadata, err
    
    }
    
    
    func request_CoreService_CreatePnd_0(ctx context.Context, marshaler runtime.Marshaler, client CoreServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    	var protoReq CreatePndRequest
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var metadata runtime.ServerMetadata
    
    	newReader, berr := utilities.IOReaderFactory(req.Body)
    	if berr != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
    	}
    	if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    
    	msg, err := client.CreatePnd(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
    
    Malte Bauch's avatar
    Malte Bauch committed
    	return msg, metadata, err
    
    }
    
    
    func local_request_CoreService_CreatePnd_0(ctx context.Context, marshaler runtime.Marshaler, server CoreServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
    	var protoReq CreatePndRequest
    
    Malte Bauch's avatar
    Malte Bauch committed
    	var metadata runtime.ServerMetadata
    
    	newReader, berr := utilities.IOReaderFactory(req.Body)
    	if berr != nil {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
    	}
    	if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
    		return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
    	}
    
    
    	msg, err := server.CreatePnd(ctx, &protoReq)
    
    Malte Bauch's avatar
    Malte Bauch committed
    	return msg, metadata, err
    
    }
    
    
    // RegisterCoreServiceHandlerServer registers the http handlers for service CoreService to "mux".
    // UnaryRPC     :call CoreServiceServer directly.
    
    Malte Bauch's avatar
    Malte Bauch committed
    // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
    
    // Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterCoreServiceHandlerFromEndpoint instead.
    func RegisterCoreServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CoreServiceServer) error {
    
    	mux.Handle("GET", pattern_CoreService_GetPnd_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		var stream runtime.ServerTransportStream
    		ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/gosdn.core.CoreService/GetPnd", runtime.WithHTTPPathPattern("/pnd/{pid}"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := local_request_CoreService_GetPnd_0(rctx, inboundMarshaler, server, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_GetPnd_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    	mux.Handle("GET", pattern_CoreService_GetPndList_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		var stream runtime.ServerTransportStream
    		ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/gosdn.core.CoreService/GetPndList", runtime.WithHTTPPathPattern("/pnds"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := local_request_CoreService_GetPndList_0(rctx, inboundMarshaler, server, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_GetPndList_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    	mux.Handle("POST", pattern_CoreService_CreatePnd_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		var stream runtime.ServerTransportStream
    		ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/gosdn.core.CoreService/CreatePnd", runtime.WithHTTPPathPattern("/pnds"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := local_request_CoreService_CreatePnd_0(rctx, inboundMarshaler, server, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_CreatePnd_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    // RegisterCoreServiceHandlerFromEndpoint is same as RegisterCoreServiceHandler but
    
    Malte Bauch's avatar
    Malte Bauch committed
    // automatically dials to "endpoint" and closes the connection when "ctx" gets done.
    
    func RegisterCoreServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    	conn, err := grpc.Dial(endpoint, opts...)
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if err != nil {
    			if cerr := conn.Close(); cerr != nil {
    				grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr)
    			}
    			return
    		}
    		go func() {
    			<-ctx.Done()
    			if cerr := conn.Close(); cerr != nil {
    				grpclog.Infof("Failed to close conn to %s: %v", endpoint, cerr)
    			}
    		}()
    	}()
    
    
    	return RegisterCoreServiceHandler(ctx, mux, conn)
    
    // RegisterCoreServiceHandler registers the http handlers for service CoreService to "mux".
    
    Malte Bauch's avatar
    Malte Bauch committed
    // The handlers forward requests to the grpc endpoint over "conn".
    
    func RegisterCoreServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error {
    	return RegisterCoreServiceHandlerClient(ctx, mux, NewCoreServiceClient(conn))
    
    // RegisterCoreServiceHandlerClient registers the http handlers for service CoreService
    // to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "CoreServiceClient".
    // Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "CoreServiceClient"
    
    Malte Bauch's avatar
    Malte Bauch committed
    // doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in
    
    // "CoreServiceClient" to call the correct interceptors.
    func RegisterCoreServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CoreServiceClient) error {
    
    	mux.Handle("GET", pattern_CoreService_GetPnd_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateContext(ctx, mux, req, "/gosdn.core.CoreService/GetPnd", runtime.WithHTTPPathPattern("/pnd/{pid}"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := request_CoreService_GetPnd_0(rctx, inboundMarshaler, client, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_GetPnd_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    	mux.Handle("GET", pattern_CoreService_GetPndList_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateContext(ctx, mux, req, "/gosdn.core.CoreService/GetPndList", runtime.WithHTTPPathPattern("/pnds"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := request_CoreService_GetPndList_0(rctx, inboundMarshaler, client, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_GetPndList_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    	mux.Handle("POST", pattern_CoreService_CreatePnd_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx, cancel := context.WithCancel(req.Context())
    		defer cancel()
    		inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
    
    		rctx, err := runtime.AnnotateContext(ctx, mux, req, "/gosdn.core.CoreService/CreatePnd", runtime.WithHTTPPathPattern("/pnds"))
    
    Malte Bauch's avatar
    Malte Bauch committed
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    		resp, md, err := request_CoreService_CreatePnd_0(rctx, inboundMarshaler, client, req, pathParams)
    
    Malte Bauch's avatar
    Malte Bauch committed
    		ctx = runtime.NewServerMetadataContext(ctx, md)
    		if err != nil {
    			runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
    			return
    		}
    
    
    		forward_CoreService_CreatePnd_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
    
    	pattern_CoreService_GetPnd_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"pnd", "pid"}, ""))
    
    	pattern_CoreService_GetPndList_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"pnds"}, ""))
    
    	pattern_CoreService_CreatePnd_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"pnds"}, ""))
    
    	forward_CoreService_GetPnd_0 = runtime.ForwardResponseMessage
    
    	forward_CoreService_GetPndList_0 = runtime.ForwardResponseMessage
    
    	forward_CoreService_CreatePnd_0 = runtime.ForwardResponseMessage
    
    Malte Bauch's avatar
    Malte Bauch committed
    )