2022-11-19 22:17:24 +01:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.2.0
// - protoc (unknown)
// source: tvix/store/protos/rpc_blobstore.proto
package storev1
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.32.0 or later.
const _ = grpc . SupportPackageIsVersion7
// BlobServiceClient is the client API for BlobService 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 BlobServiceClient interface {
2022-12-27 18:33:04 +01:00
// Stat exposes metadata about a given blob,
// such as more granular chunking, baos.
// It implicitly allows checking for existence too, as asking this for a
// non-existing Blob will return a Status::not_found grpc error.
// If there's no more granular chunking available, the response will simply
// contain a single chunk.
Stat ( ctx context . Context , in * StatBlobRequest , opts ... grpc . CallOption ) ( * BlobMeta , error )
2023-02-03 22:53:46 +01:00
// Read returns a stream of BlobChunk, which is just a stream of bytes with
// the digest specified in ReadBlobRequest.
//
// The server may decide on whatever chunking it may seem fit as a size for
// the individual BlobChunk sent in the response stream.
//
// It specifically is NOT necessarily using chunk sizes communicated in a
// previous Stat request.
//
// It's up to the specific store to decide on whether it allows Read on a
// Blob at all, or only on smaller chunks communicated in a Stat() call
// first.
//
// Clients are enouraged to Stat() first, and then only read the individual
// chunks they don't have yet.
2022-12-27 18:33:04 +01:00
Read ( ctx context . Context , in * ReadBlobRequest , opts ... grpc . CallOption ) ( BlobService_ReadClient , error )
// Put uploads a Blob, by reading a stream of bytes.
2023-02-03 22:53:46 +01:00
//
// The way the data is chunked up in individual BlobChunk messages sent in
// the stream has no effect on how the server ends up chunking blobs up.
2022-12-27 18:32:07 +01:00
Put ( ctx context . Context , opts ... grpc . CallOption ) ( BlobService_PutClient , error )
2022-11-19 22:17:24 +01:00
}
type blobServiceClient struct {
cc grpc . ClientConnInterface
}
func NewBlobServiceClient ( cc grpc . ClientConnInterface ) BlobServiceClient {
return & blobServiceClient { cc }
}
2022-12-27 18:33:04 +01:00
func ( c * blobServiceClient ) Stat ( ctx context . Context , in * StatBlobRequest , opts ... grpc . CallOption ) ( * BlobMeta , error ) {
out := new ( BlobMeta )
err := c . cc . Invoke ( ctx , "/tvix.store.v1.BlobService/Stat" , in , out , opts ... )
2022-11-19 22:17:24 +01:00
if err != nil {
return nil , err
}
2022-12-27 18:33:04 +01:00
return out , nil
}
func ( c * blobServiceClient ) Read ( ctx context . Context , in * ReadBlobRequest , opts ... grpc . CallOption ) ( BlobService_ReadClient , error ) {
stream , err := c . cc . NewStream ( ctx , & BlobService_ServiceDesc . Streams [ 0 ] , "/tvix.store.v1.BlobService/Read" , opts ... )
if err != nil {
return nil , err
}
x := & blobServiceReadClient { stream }
2022-12-27 18:32:07 +01:00
if err := x . ClientStream . SendMsg ( in ) ; err != nil {
return nil , err
}
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
return x , nil
}
2022-12-27 18:33:04 +01:00
type BlobService_ReadClient interface {
2022-12-27 18:32:07 +01:00
Recv ( ) ( * BlobChunk , error )
grpc . ClientStream
}
2022-12-27 18:33:04 +01:00
type blobServiceReadClient struct {
2022-12-27 18:32:07 +01:00
grpc . ClientStream
}
2022-12-27 18:33:04 +01:00
func ( x * blobServiceReadClient ) Recv ( ) ( * BlobChunk , error ) {
2022-12-27 18:32:07 +01:00
m := new ( BlobChunk )
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
2022-11-19 22:17:24 +01:00
}
2022-12-27 18:32:07 +01:00
func ( c * blobServiceClient ) Put ( ctx context . Context , opts ... grpc . CallOption ) ( BlobService_PutClient , error ) {
stream , err := c . cc . NewStream ( ctx , & BlobService_ServiceDesc . Streams [ 1 ] , "/tvix.store.v1.BlobService/Put" , opts ... )
2022-11-19 22:17:24 +01:00
if err != nil {
return nil , err
}
2022-12-27 18:32:07 +01:00
x := & blobServicePutClient { stream }
return x , nil
}
type BlobService_PutClient interface {
Send ( * BlobChunk ) error
CloseAndRecv ( ) ( * PutBlobResponse , error )
grpc . ClientStream
}
type blobServicePutClient struct {
grpc . ClientStream
}
func ( x * blobServicePutClient ) Send ( m * BlobChunk ) error {
return x . ClientStream . SendMsg ( m )
}
func ( x * blobServicePutClient ) CloseAndRecv ( ) ( * PutBlobResponse , error ) {
if err := x . ClientStream . CloseSend ( ) ; err != nil {
return nil , err
}
m := new ( PutBlobResponse )
if err := x . ClientStream . RecvMsg ( m ) ; err != nil {
return nil , err
}
return m , nil
2022-11-19 22:17:24 +01:00
}
// BlobServiceServer is the server API for BlobService service.
// All implementations must embed UnimplementedBlobServiceServer
// for forward compatibility
type BlobServiceServer interface {
2022-12-27 18:33:04 +01:00
// Stat exposes metadata about a given blob,
// such as more granular chunking, baos.
// It implicitly allows checking for existence too, as asking this for a
// non-existing Blob will return a Status::not_found grpc error.
// If there's no more granular chunking available, the response will simply
// contain a single chunk.
Stat ( context . Context , * StatBlobRequest ) ( * BlobMeta , error )
2023-02-03 22:53:46 +01:00
// Read returns a stream of BlobChunk, which is just a stream of bytes with
// the digest specified in ReadBlobRequest.
//
// The server may decide on whatever chunking it may seem fit as a size for
// the individual BlobChunk sent in the response stream.
//
// It specifically is NOT necessarily using chunk sizes communicated in a
// previous Stat request.
//
// It's up to the specific store to decide on whether it allows Read on a
// Blob at all, or only on smaller chunks communicated in a Stat() call
// first.
//
// Clients are enouraged to Stat() first, and then only read the individual
// chunks they don't have yet.
2022-12-27 18:33:04 +01:00
Read ( * ReadBlobRequest , BlobService_ReadServer ) error
// Put uploads a Blob, by reading a stream of bytes.
2023-02-03 22:53:46 +01:00
//
// The way the data is chunked up in individual BlobChunk messages sent in
// the stream has no effect on how the server ends up chunking blobs up.
2022-12-27 18:32:07 +01:00
Put ( BlobService_PutServer ) error
2022-11-19 22:17:24 +01:00
mustEmbedUnimplementedBlobServiceServer ( )
}
// UnimplementedBlobServiceServer must be embedded to have forward compatible implementations.
type UnimplementedBlobServiceServer struct {
}
2022-12-27 18:33:04 +01:00
func ( UnimplementedBlobServiceServer ) Stat ( context . Context , * StatBlobRequest ) ( * BlobMeta , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Stat not implemented" )
}
func ( UnimplementedBlobServiceServer ) Read ( * ReadBlobRequest , BlobService_ReadServer ) error {
return status . Errorf ( codes . Unimplemented , "method Read not implemented" )
2022-11-19 22:17:24 +01:00
}
2022-12-27 18:32:07 +01:00
func ( UnimplementedBlobServiceServer ) Put ( BlobService_PutServer ) error {
return status . Errorf ( codes . Unimplemented , "method Put not implemented" )
2022-11-19 22:17:24 +01:00
}
func ( UnimplementedBlobServiceServer ) mustEmbedUnimplementedBlobServiceServer ( ) { }
// UnsafeBlobServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to BlobServiceServer will
// result in compilation errors.
type UnsafeBlobServiceServer interface {
mustEmbedUnimplementedBlobServiceServer ( )
}
func RegisterBlobServiceServer ( s grpc . ServiceRegistrar , srv BlobServiceServer ) {
s . RegisterService ( & BlobService_ServiceDesc , srv )
}
2022-12-27 18:33:04 +01:00
func _BlobService_Stat_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( StatBlobRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( BlobServiceServer ) . Stat ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : "/tvix.store.v1.BlobService/Stat" ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( BlobServiceServer ) . Stat ( ctx , req . ( * StatBlobRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _BlobService_Read_Handler ( srv interface { } , stream grpc . ServerStream ) error {
m := new ( ReadBlobRequest )
2022-12-27 18:32:07 +01:00
if err := stream . RecvMsg ( m ) ; err != nil {
return err
2022-11-19 22:17:24 +01:00
}
2022-12-27 18:33:04 +01:00
return srv . ( BlobServiceServer ) . Read ( m , & blobServiceReadServer { stream } )
2022-12-27 18:32:07 +01:00
}
2022-12-27 18:33:04 +01:00
type BlobService_ReadServer interface {
2022-12-27 18:32:07 +01:00
Send ( * BlobChunk ) error
grpc . ServerStream
}
2022-12-27 18:33:04 +01:00
type blobServiceReadServer struct {
2022-12-27 18:32:07 +01:00
grpc . ServerStream
}
2022-12-27 18:33:04 +01:00
func ( x * blobServiceReadServer ) Send ( m * BlobChunk ) error {
2022-12-27 18:32:07 +01:00
return x . ServerStream . SendMsg ( m )
2022-11-19 22:17:24 +01:00
}
2022-12-27 18:32:07 +01:00
func _BlobService_Put_Handler ( srv interface { } , stream grpc . ServerStream ) error {
return srv . ( BlobServiceServer ) . Put ( & blobServicePutServer { stream } )
}
type BlobService_PutServer interface {
SendAndClose ( * PutBlobResponse ) error
Recv ( ) ( * BlobChunk , error )
grpc . ServerStream
}
type blobServicePutServer struct {
grpc . ServerStream
}
func ( x * blobServicePutServer ) SendAndClose ( m * PutBlobResponse ) error {
return x . ServerStream . SendMsg ( m )
}
func ( x * blobServicePutServer ) Recv ( ) ( * BlobChunk , error ) {
m := new ( BlobChunk )
if err := x . ServerStream . RecvMsg ( m ) ; err != nil {
2022-11-19 22:17:24 +01:00
return nil , err
}
2022-12-27 18:32:07 +01:00
return m , nil
2022-11-19 22:17:24 +01:00
}
// BlobService_ServiceDesc is the grpc.ServiceDesc for BlobService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var BlobService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "tvix.store.v1.BlobService" ,
HandlerType : ( * BlobServiceServer ) ( nil ) ,
2022-12-27 18:33:04 +01:00
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Stat" ,
Handler : _BlobService_Stat_Handler ,
} ,
} ,
2022-12-27 18:32:07 +01:00
Streams : [ ] grpc . StreamDesc {
2022-11-19 22:17:24 +01:00
{
2022-12-27 18:33:04 +01:00
StreamName : "Read" ,
Handler : _BlobService_Read_Handler ,
2022-12-27 18:32:07 +01:00
ServerStreams : true ,
2022-11-19 22:17:24 +01:00
} ,
{
2022-12-27 18:32:07 +01:00
StreamName : "Put" ,
Handler : _BlobService_Put_Handler ,
ClientStreams : true ,
2022-11-19 22:17:24 +01:00
} ,
} ,
Metadata : "tvix/store/protos/rpc_blobstore.proto" ,
}