mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 17:22:20 +08:00
153 lines
5.4 KiB
Go
153 lines
5.4 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.4.0
|
|
// - protoc (unknown)
|
|
// source: blob.proto
|
|
|
|
package resourcepb
|
|
|
|
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.62.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion8
|
|
|
|
const (
|
|
BlobStore_PutBlob_FullMethodName = "/resource.BlobStore/PutBlob"
|
|
BlobStore_GetBlob_FullMethodName = "/resource.BlobStore/GetBlob"
|
|
)
|
|
|
|
// BlobStoreClient is the client API for BlobStore 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 BlobStoreClient interface {
|
|
// Upload a blob that will be saved in a resource
|
|
PutBlob(ctx context.Context, in *PutBlobRequest, opts ...grpc.CallOption) (*PutBlobResponse, error)
|
|
// Get blob contents. When possible, this will return a signed URL
|
|
// For large payloads, signed URLs are required to avoid protobuf message size limits
|
|
GetBlob(ctx context.Context, in *GetBlobRequest, opts ...grpc.CallOption) (*GetBlobResponse, error)
|
|
}
|
|
|
|
type blobStoreClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewBlobStoreClient(cc grpc.ClientConnInterface) BlobStoreClient {
|
|
return &blobStoreClient{cc}
|
|
}
|
|
|
|
func (c *blobStoreClient) PutBlob(ctx context.Context, in *PutBlobRequest, opts ...grpc.CallOption) (*PutBlobResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(PutBlobResponse)
|
|
err := c.cc.Invoke(ctx, BlobStore_PutBlob_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *blobStoreClient) GetBlob(ctx context.Context, in *GetBlobRequest, opts ...grpc.CallOption) (*GetBlobResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(GetBlobResponse)
|
|
err := c.cc.Invoke(ctx, BlobStore_GetBlob_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// BlobStoreServer is the server API for BlobStore service.
|
|
// All implementations should embed UnimplementedBlobStoreServer
|
|
// for forward compatibility
|
|
type BlobStoreServer interface {
|
|
// Upload a blob that will be saved in a resource
|
|
PutBlob(context.Context, *PutBlobRequest) (*PutBlobResponse, error)
|
|
// Get blob contents. When possible, this will return a signed URL
|
|
// For large payloads, signed URLs are required to avoid protobuf message size limits
|
|
GetBlob(context.Context, *GetBlobRequest) (*GetBlobResponse, error)
|
|
}
|
|
|
|
// UnimplementedBlobStoreServer should be embedded to have forward compatible implementations.
|
|
type UnimplementedBlobStoreServer struct {
|
|
}
|
|
|
|
func (UnimplementedBlobStoreServer) PutBlob(context.Context, *PutBlobRequest) (*PutBlobResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method PutBlob not implemented")
|
|
}
|
|
func (UnimplementedBlobStoreServer) GetBlob(context.Context, *GetBlobRequest) (*GetBlobResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetBlob not implemented")
|
|
}
|
|
|
|
// UnsafeBlobStoreServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to BlobStoreServer will
|
|
// result in compilation errors.
|
|
type UnsafeBlobStoreServer interface {
|
|
mustEmbedUnimplementedBlobStoreServer()
|
|
}
|
|
|
|
func RegisterBlobStoreServer(s grpc.ServiceRegistrar, srv BlobStoreServer) {
|
|
s.RegisterService(&BlobStore_ServiceDesc, srv)
|
|
}
|
|
|
|
func _BlobStore_PutBlob_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PutBlobRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(BlobStoreServer).PutBlob(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: BlobStore_PutBlob_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(BlobStoreServer).PutBlob(ctx, req.(*PutBlobRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _BlobStore_GetBlob_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetBlobRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(BlobStoreServer).GetBlob(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: BlobStore_GetBlob_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(BlobStoreServer).GetBlob(ctx, req.(*GetBlobRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// BlobStore_ServiceDesc is the grpc.ServiceDesc for BlobStore service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var BlobStore_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "resource.BlobStore",
|
|
HandlerType: (*BlobStoreServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "PutBlob",
|
|
Handler: _BlobStore_PutBlob_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetBlob",
|
|
Handler: _BlobStore_GetBlob_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "blob.proto",
|
|
}
|