6ab323bfec
* adds erasure_share_size to RS in pointerdb proto * adds makeErasureScheme helper method to segments store * cleans up makeErasureScheme function
824 lines
29 KiB
Go
824 lines
29 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: pointerdb.proto
|
|
|
|
/*
|
|
Package pointerdb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
pointerdb.proto
|
|
|
|
It has these top-level messages:
|
|
RedundancyScheme
|
|
EncryptionScheme
|
|
RemotePiece
|
|
RemoteSegment
|
|
Pointer
|
|
PutRequest
|
|
GetRequest
|
|
ListRequest
|
|
PutResponse
|
|
GetResponse
|
|
ListResponse
|
|
DeleteRequest
|
|
DeleteResponse
|
|
*/
|
|
package pointerdb
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type RedundancyScheme_SchemeType int32
|
|
|
|
const (
|
|
RedundancyScheme_RS RedundancyScheme_SchemeType = 0
|
|
)
|
|
|
|
var RedundancyScheme_SchemeType_name = map[int32]string{
|
|
0: "RS",
|
|
}
|
|
var RedundancyScheme_SchemeType_value = map[string]int32{
|
|
"RS": 0,
|
|
}
|
|
|
|
func (x RedundancyScheme_SchemeType) String() string {
|
|
return proto.EnumName(RedundancyScheme_SchemeType_name, int32(x))
|
|
}
|
|
func (RedundancyScheme_SchemeType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor0, []int{0, 0}
|
|
}
|
|
|
|
type EncryptionScheme_EncryptionType int32
|
|
|
|
const (
|
|
EncryptionScheme_AESGCM EncryptionScheme_EncryptionType = 0
|
|
EncryptionScheme_SECRETBOX EncryptionScheme_EncryptionType = 1
|
|
)
|
|
|
|
var EncryptionScheme_EncryptionType_name = map[int32]string{
|
|
0: "AESGCM",
|
|
1: "SECRETBOX",
|
|
}
|
|
var EncryptionScheme_EncryptionType_value = map[string]int32{
|
|
"AESGCM": 0,
|
|
"SECRETBOX": 1,
|
|
}
|
|
|
|
func (x EncryptionScheme_EncryptionType) String() string {
|
|
return proto.EnumName(EncryptionScheme_EncryptionType_name, int32(x))
|
|
}
|
|
func (EncryptionScheme_EncryptionType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor0, []int{1, 0}
|
|
}
|
|
|
|
type Pointer_DataType int32
|
|
|
|
const (
|
|
Pointer_INLINE Pointer_DataType = 0
|
|
Pointer_REMOTE Pointer_DataType = 1
|
|
)
|
|
|
|
var Pointer_DataType_name = map[int32]string{
|
|
0: "INLINE",
|
|
1: "REMOTE",
|
|
}
|
|
var Pointer_DataType_value = map[string]int32{
|
|
"INLINE": 0,
|
|
"REMOTE": 1,
|
|
}
|
|
|
|
func (x Pointer_DataType) String() string {
|
|
return proto.EnumName(Pointer_DataType_name, int32(x))
|
|
}
|
|
func (Pointer_DataType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{4, 0} }
|
|
|
|
type RedundancyScheme struct {
|
|
Type RedundancyScheme_SchemeType `protobuf:"varint,1,opt,name=type,enum=pointerdb.RedundancyScheme_SchemeType" json:"type,omitempty"`
|
|
// these values apply to RS encoding
|
|
MinReq int32 `protobuf:"varint,2,opt,name=min_req,json=minReq" json:"min_req,omitempty"`
|
|
Total int32 `protobuf:"varint,3,opt,name=total" json:"total,omitempty"`
|
|
RepairThreshold int32 `protobuf:"varint,4,opt,name=repair_threshold,json=repairThreshold" json:"repair_threshold,omitempty"`
|
|
SuccessThreshold int32 `protobuf:"varint,5,opt,name=success_threshold,json=successThreshold" json:"success_threshold,omitempty"`
|
|
ErasureShareSize int32 `protobuf:"varint,6,opt,name=erasure_share_size,json=erasureShareSize" json:"erasure_share_size,omitempty"`
|
|
}
|
|
|
|
func (m *RedundancyScheme) Reset() { *m = RedundancyScheme{} }
|
|
func (m *RedundancyScheme) String() string { return proto.CompactTextString(m) }
|
|
func (*RedundancyScheme) ProtoMessage() {}
|
|
func (*RedundancyScheme) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *RedundancyScheme) GetType() RedundancyScheme_SchemeType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return RedundancyScheme_RS
|
|
}
|
|
|
|
func (m *RedundancyScheme) GetMinReq() int32 {
|
|
if m != nil {
|
|
return m.MinReq
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RedundancyScheme) GetTotal() int32 {
|
|
if m != nil {
|
|
return m.Total
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RedundancyScheme) GetRepairThreshold() int32 {
|
|
if m != nil {
|
|
return m.RepairThreshold
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RedundancyScheme) GetSuccessThreshold() int32 {
|
|
if m != nil {
|
|
return m.SuccessThreshold
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RedundancyScheme) GetErasureShareSize() int32 {
|
|
if m != nil {
|
|
return m.ErasureShareSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type EncryptionScheme struct {
|
|
Type EncryptionScheme_EncryptionType `protobuf:"varint,1,opt,name=type,enum=pointerdb.EncryptionScheme_EncryptionType" json:"type,omitempty"`
|
|
EncryptedEncryptionKey []byte `protobuf:"bytes,2,opt,name=encrypted_encryption_key,json=encryptedEncryptionKey,proto3" json:"encrypted_encryption_key,omitempty"`
|
|
EncryptedStartingNonce []byte `protobuf:"bytes,3,opt,name=encrypted_starting_nonce,json=encryptedStartingNonce,proto3" json:"encrypted_starting_nonce,omitempty"`
|
|
}
|
|
|
|
func (m *EncryptionScheme) Reset() { *m = EncryptionScheme{} }
|
|
func (m *EncryptionScheme) String() string { return proto.CompactTextString(m) }
|
|
func (*EncryptionScheme) ProtoMessage() {}
|
|
func (*EncryptionScheme) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *EncryptionScheme) GetType() EncryptionScheme_EncryptionType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return EncryptionScheme_AESGCM
|
|
}
|
|
|
|
func (m *EncryptionScheme) GetEncryptedEncryptionKey() []byte {
|
|
if m != nil {
|
|
return m.EncryptedEncryptionKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *EncryptionScheme) GetEncryptedStartingNonce() []byte {
|
|
if m != nil {
|
|
return m.EncryptedStartingNonce
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RemotePiece struct {
|
|
PieceNum int32 `protobuf:"varint,1,opt,name=piece_num,json=pieceNum" json:"piece_num,omitempty"`
|
|
NodeId string `protobuf:"bytes,2,opt,name=node_id,json=nodeId" json:"node_id,omitempty"`
|
|
}
|
|
|
|
func (m *RemotePiece) Reset() { *m = RemotePiece{} }
|
|
func (m *RemotePiece) String() string { return proto.CompactTextString(m) }
|
|
func (*RemotePiece) ProtoMessage() {}
|
|
func (*RemotePiece) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *RemotePiece) GetPieceNum() int32 {
|
|
if m != nil {
|
|
return m.PieceNum
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RemotePiece) GetNodeId() string {
|
|
if m != nil {
|
|
return m.NodeId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type RemoteSegment struct {
|
|
Redundancy *RedundancyScheme `protobuf:"bytes,1,opt,name=redundancy" json:"redundancy,omitempty"`
|
|
PieceId string `protobuf:"bytes,2,opt,name=piece_id,json=pieceId" json:"piece_id,omitempty"`
|
|
RemotePieces []*RemotePiece `protobuf:"bytes,3,rep,name=remote_pieces,json=remotePieces" json:"remote_pieces,omitempty"`
|
|
MerkleRoot []byte `protobuf:"bytes,4,opt,name=merkle_root,json=merkleRoot,proto3" json:"merkle_root,omitempty"`
|
|
}
|
|
|
|
func (m *RemoteSegment) Reset() { *m = RemoteSegment{} }
|
|
func (m *RemoteSegment) String() string { return proto.CompactTextString(m) }
|
|
func (*RemoteSegment) ProtoMessage() {}
|
|
func (*RemoteSegment) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *RemoteSegment) GetRedundancy() *RedundancyScheme {
|
|
if m != nil {
|
|
return m.Redundancy
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RemoteSegment) GetPieceId() string {
|
|
if m != nil {
|
|
return m.PieceId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *RemoteSegment) GetRemotePieces() []*RemotePiece {
|
|
if m != nil {
|
|
return m.RemotePieces
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RemoteSegment) GetMerkleRoot() []byte {
|
|
if m != nil {
|
|
return m.MerkleRoot
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Pointer struct {
|
|
Type Pointer_DataType `protobuf:"varint,1,opt,name=type,enum=pointerdb.Pointer_DataType" json:"type,omitempty"`
|
|
InlineSegment []byte `protobuf:"bytes,3,opt,name=inline_segment,json=inlineSegment,proto3" json:"inline_segment,omitempty"`
|
|
Remote *RemoteSegment `protobuf:"bytes,4,opt,name=remote" json:"remote,omitempty"`
|
|
Size int64 `protobuf:"varint,5,opt,name=size" json:"size,omitempty"`
|
|
CreationDate *google_protobuf.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate" json:"creation_date,omitempty"`
|
|
ExpirationDate *google_protobuf.Timestamp `protobuf:"bytes,7,opt,name=expiration_date,json=expirationDate" json:"expiration_date,omitempty"`
|
|
Metadata []byte `protobuf:"bytes,8,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
}
|
|
|
|
func (m *Pointer) Reset() { *m = Pointer{} }
|
|
func (m *Pointer) String() string { return proto.CompactTextString(m) }
|
|
func (*Pointer) ProtoMessage() {}
|
|
func (*Pointer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *Pointer) GetType() Pointer_DataType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return Pointer_INLINE
|
|
}
|
|
|
|
func (m *Pointer) GetInlineSegment() []byte {
|
|
if m != nil {
|
|
return m.InlineSegment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Pointer) GetRemote() *RemoteSegment {
|
|
if m != nil {
|
|
return m.Remote
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Pointer) GetSize() int64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Pointer) GetCreationDate() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Pointer) GetExpirationDate() *google_protobuf.Timestamp {
|
|
if m != nil {
|
|
return m.ExpirationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Pointer) GetMetadata() []byte {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// PutRequest is a request message for the Put rpc call
|
|
type PutRequest struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer" json:"pointer,omitempty"`
|
|
APIKey []byte `protobuf:"bytes,3,opt,name=API_key,json=APIKey,proto3" json:"API_key,omitempty"`
|
|
}
|
|
|
|
func (m *PutRequest) Reset() { *m = PutRequest{} }
|
|
func (m *PutRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*PutRequest) ProtoMessage() {}
|
|
func (*PutRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *PutRequest) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PutRequest) GetPointer() *Pointer {
|
|
if m != nil {
|
|
return m.Pointer
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PutRequest) GetAPIKey() []byte {
|
|
if m != nil {
|
|
return m.APIKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetRequest is a request message for the Get rpc call
|
|
type GetRequest struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
APIKey []byte `protobuf:"bytes,2,opt,name=API_key,json=APIKey,proto3" json:"API_key,omitempty"`
|
|
}
|
|
|
|
func (m *GetRequest) Reset() { *m = GetRequest{} }
|
|
func (m *GetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRequest) ProtoMessage() {}
|
|
func (*GetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *GetRequest) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GetRequest) GetAPIKey() []byte {
|
|
if m != nil {
|
|
return m.APIKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ListRequest is a request message for the List rpc call
|
|
type ListRequest struct {
|
|
Prefix string `protobuf:"bytes,1,opt,name=prefix" json:"prefix,omitempty"`
|
|
StartAfter string `protobuf:"bytes,2,opt,name=start_after,json=startAfter" json:"start_after,omitempty"`
|
|
EndBefore string `protobuf:"bytes,3,opt,name=end_before,json=endBefore" json:"end_before,omitempty"`
|
|
Recursive bool `protobuf:"varint,4,opt,name=recursive" json:"recursive,omitempty"`
|
|
Limit int32 `protobuf:"varint,5,opt,name=limit" json:"limit,omitempty"`
|
|
MetaFlags uint32 `protobuf:"fixed32,6,opt,name=meta_flags,json=metaFlags" json:"meta_flags,omitempty"`
|
|
APIKey []byte `protobuf:"bytes,7,opt,name=API_key,json=APIKey,proto3" json:"API_key,omitempty"`
|
|
}
|
|
|
|
func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ListRequest) ProtoMessage() {}
|
|
func (*ListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *ListRequest) GetPrefix() string {
|
|
if m != nil {
|
|
return m.Prefix
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ListRequest) GetStartAfter() string {
|
|
if m != nil {
|
|
return m.StartAfter
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ListRequest) GetEndBefore() string {
|
|
if m != nil {
|
|
return m.EndBefore
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ListRequest) GetRecursive() bool {
|
|
if m != nil {
|
|
return m.Recursive
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *ListRequest) GetLimit() int32 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ListRequest) GetMetaFlags() uint32 {
|
|
if m != nil {
|
|
return m.MetaFlags
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ListRequest) GetAPIKey() []byte {
|
|
if m != nil {
|
|
return m.APIKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// PutResponse is a response message for the Put rpc call
|
|
type PutResponse struct {
|
|
}
|
|
|
|
func (m *PutResponse) Reset() { *m = PutResponse{} }
|
|
func (m *PutResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*PutResponse) ProtoMessage() {}
|
|
func (*PutResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
// GetResponse is a response message for the Get rpc call
|
|
type GetResponse struct {
|
|
Pointer []byte `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
|
|
}
|
|
|
|
func (m *GetResponse) Reset() { *m = GetResponse{} }
|
|
func (m *GetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetResponse) ProtoMessage() {}
|
|
func (*GetResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
func (m *GetResponse) GetPointer() []byte {
|
|
if m != nil {
|
|
return m.Pointer
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ListResponse is a response message for the List rpc call
|
|
type ListResponse struct {
|
|
Items []*ListResponse_Item `protobuf:"bytes,1,rep,name=items" json:"items,omitempty"`
|
|
More bool `protobuf:"varint,2,opt,name=more" json:"more,omitempty"`
|
|
}
|
|
|
|
func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ListResponse) ProtoMessage() {}
|
|
func (*ListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
func (m *ListResponse) GetItems() []*ListResponse_Item {
|
|
if m != nil {
|
|
return m.Items
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ListResponse) GetMore() bool {
|
|
if m != nil {
|
|
return m.More
|
|
}
|
|
return false
|
|
}
|
|
|
|
type ListResponse_Item struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer" json:"pointer,omitempty"`
|
|
}
|
|
|
|
func (m *ListResponse_Item) Reset() { *m = ListResponse_Item{} }
|
|
func (m *ListResponse_Item) String() string { return proto.CompactTextString(m) }
|
|
func (*ListResponse_Item) ProtoMessage() {}
|
|
func (*ListResponse_Item) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10, 0} }
|
|
|
|
func (m *ListResponse_Item) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ListResponse_Item) GetPointer() *Pointer {
|
|
if m != nil {
|
|
return m.Pointer
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteRequest struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
APIKey []byte `protobuf:"bytes,2,opt,name=API_key,json=APIKey,proto3" json:"API_key,omitempty"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
func (m *DeleteRequest) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetAPIKey() []byte {
|
|
if m != nil {
|
|
return m.APIKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeleteResponse is a response message for the Delete rpc call
|
|
type DeleteResponse struct {
|
|
}
|
|
|
|
func (m *DeleteResponse) Reset() { *m = DeleteResponse{} }
|
|
func (m *DeleteResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteResponse) ProtoMessage() {}
|
|
func (*DeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
|
|
|
|
func init() {
|
|
proto.RegisterType((*RedundancyScheme)(nil), "pointerdb.RedundancyScheme")
|
|
proto.RegisterType((*EncryptionScheme)(nil), "pointerdb.EncryptionScheme")
|
|
proto.RegisterType((*RemotePiece)(nil), "pointerdb.RemotePiece")
|
|
proto.RegisterType((*RemoteSegment)(nil), "pointerdb.RemoteSegment")
|
|
proto.RegisterType((*Pointer)(nil), "pointerdb.Pointer")
|
|
proto.RegisterType((*PutRequest)(nil), "pointerdb.PutRequest")
|
|
proto.RegisterType((*GetRequest)(nil), "pointerdb.GetRequest")
|
|
proto.RegisterType((*ListRequest)(nil), "pointerdb.ListRequest")
|
|
proto.RegisterType((*PutResponse)(nil), "pointerdb.PutResponse")
|
|
proto.RegisterType((*GetResponse)(nil), "pointerdb.GetResponse")
|
|
proto.RegisterType((*ListResponse)(nil), "pointerdb.ListResponse")
|
|
proto.RegisterType((*ListResponse_Item)(nil), "pointerdb.ListResponse.Item")
|
|
proto.RegisterType((*DeleteRequest)(nil), "pointerdb.DeleteRequest")
|
|
proto.RegisterType((*DeleteResponse)(nil), "pointerdb.DeleteResponse")
|
|
proto.RegisterEnum("pointerdb.RedundancyScheme_SchemeType", RedundancyScheme_SchemeType_name, RedundancyScheme_SchemeType_value)
|
|
proto.RegisterEnum("pointerdb.EncryptionScheme_EncryptionType", EncryptionScheme_EncryptionType_name, EncryptionScheme_EncryptionType_value)
|
|
proto.RegisterEnum("pointerdb.Pointer_DataType", Pointer_DataType_name, Pointer_DataType_value)
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// Client API for PointerDB service
|
|
|
|
type PointerDBClient interface {
|
|
// Put formats and hands off a file path to be saved to boltdb
|
|
Put(ctx context.Context, in *PutRequest, opts ...grpc.CallOption) (*PutResponse, error)
|
|
// Get formats and hands off a file path to get a small value from boltdb
|
|
Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error)
|
|
// List calls the bolt client's List function and returns all file paths
|
|
List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error)
|
|
// Delete formats and hands off a file path to delete from boltdb
|
|
Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
|
|
}
|
|
|
|
type pointerDBClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewPointerDBClient(cc *grpc.ClientConn) PointerDBClient {
|
|
return &pointerDBClient{cc}
|
|
}
|
|
|
|
func (c *pointerDBClient) Put(ctx context.Context, in *PutRequest, opts ...grpc.CallOption) (*PutResponse, error) {
|
|
out := new(PutResponse)
|
|
err := grpc.Invoke(ctx, "/pointerdb.PointerDB/Put", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pointerDBClient) Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error) {
|
|
out := new(GetResponse)
|
|
err := grpc.Invoke(ctx, "/pointerdb.PointerDB/Get", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pointerDBClient) List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error) {
|
|
out := new(ListResponse)
|
|
err := grpc.Invoke(ctx, "/pointerdb.PointerDB/List", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pointerDBClient) Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error) {
|
|
out := new(DeleteResponse)
|
|
err := grpc.Invoke(ctx, "/pointerdb.PointerDB/Delete", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for PointerDB service
|
|
|
|
type PointerDBServer interface {
|
|
// Put formats and hands off a file path to be saved to boltdb
|
|
Put(context.Context, *PutRequest) (*PutResponse, error)
|
|
// Get formats and hands off a file path to get a small value from boltdb
|
|
Get(context.Context, *GetRequest) (*GetResponse, error)
|
|
// List calls the bolt client's List function and returns all file paths
|
|
List(context.Context, *ListRequest) (*ListResponse, error)
|
|
// Delete formats and hands off a file path to delete from boltdb
|
|
Delete(context.Context, *DeleteRequest) (*DeleteResponse, error)
|
|
}
|
|
|
|
func RegisterPointerDBServer(s *grpc.Server, srv PointerDBServer) {
|
|
s.RegisterService(&_PointerDB_serviceDesc, srv)
|
|
}
|
|
|
|
func _PointerDB_Put_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PutRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PointerDBServer).Put(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pointerdb.PointerDB/Put",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PointerDBServer).Put(ctx, req.(*PutRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _PointerDB_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PointerDBServer).Get(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pointerdb.PointerDB/Get",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PointerDBServer).Get(ctx, req.(*GetRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _PointerDB_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ListRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PointerDBServer).List(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pointerdb.PointerDB/List",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PointerDBServer).List(ctx, req.(*ListRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _PointerDB_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DeleteRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PointerDBServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pointerdb.PointerDB/Delete",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PointerDBServer).Delete(ctx, req.(*DeleteRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _PointerDB_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "pointerdb.PointerDB",
|
|
HandlerType: (*PointerDBServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Put",
|
|
Handler: _PointerDB_Put_Handler,
|
|
},
|
|
{
|
|
MethodName: "Get",
|
|
Handler: _PointerDB_Get_Handler,
|
|
},
|
|
{
|
|
MethodName: "List",
|
|
Handler: _PointerDB_List_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _PointerDB_Delete_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "pointerdb.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("pointerdb.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 960 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xdd, 0x8e, 0xdb, 0x44,
|
|
0x14, 0x5e, 0x27, 0xbb, 0xce, 0xfa, 0x78, 0x93, 0x35, 0xa3, 0x92, 0xba, 0x69, 0x11, 0x2b, 0x4b,
|
|
0xc0, 0x42, 0xab, 0x80, 0x42, 0x25, 0x7e, 0xca, 0x8f, 0xf6, 0x27, 0x2c, 0x51, 0xdb, 0x6d, 0x34,
|
|
0xc9, 0x05, 0x77, 0x96, 0x37, 0x3e, 0x49, 0x46, 0x8d, 0x7f, 0x76, 0x3c, 0x46, 0x4d, 0xdf, 0x84,
|
|
0x3b, 0x5e, 0x86, 0x07, 0xe0, 0x41, 0x10, 0x17, 0xbc, 0x00, 0x9a, 0x19, 0x27, 0xb6, 0x77, 0xa1,
|
|
0x48, 0xf4, 0x26, 0x99, 0xf3, 0xcd, 0x77, 0xce, 0xcc, 0xf9, 0xce, 0x37, 0x86, 0xc3, 0x34, 0x61,
|
|
0xb1, 0x40, 0x1e, 0x5e, 0xf5, 0x53, 0x9e, 0x88, 0x84, 0x58, 0x5b, 0xa0, 0x77, 0x28, 0x58, 0x84,
|
|
0x99, 0x08, 0xa2, 0x54, 0xef, 0x79, 0xbf, 0x34, 0xc0, 0xa1, 0x18, 0xe6, 0x71, 0x18, 0xc4, 0xb3,
|
|
0xf5, 0x64, 0xb6, 0xc4, 0x08, 0xc9, 0xd7, 0xb0, 0x2b, 0xd6, 0x29, 0xba, 0xc6, 0x91, 0x71, 0xdc,
|
|
0x19, 0x7c, 0xd8, 0x2f, 0x0b, 0xde, 0xa4, 0xf6, 0xf5, 0xdf, 0x74, 0x9d, 0x22, 0x55, 0x39, 0xe4,
|
|
0x2e, 0xb4, 0x22, 0x16, 0xfb, 0x1c, 0xaf, 0xdd, 0xc6, 0x91, 0x71, 0xbc, 0x47, 0xcd, 0x88, 0xc5,
|
|
0x14, 0xaf, 0xc9, 0x1d, 0xd8, 0x13, 0x89, 0x08, 0x56, 0x6e, 0x53, 0xc1, 0x3a, 0x20, 0x1f, 0x83,
|
|
0xc3, 0x31, 0x0d, 0x18, 0xf7, 0xc5, 0x92, 0x63, 0xb6, 0x4c, 0x56, 0xa1, 0xbb, 0xab, 0x08, 0x87,
|
|
0x1a, 0x9f, 0x6e, 0x60, 0xf2, 0x10, 0xde, 0xc9, 0xf2, 0xd9, 0x0c, 0xb3, 0xac, 0xc2, 0xdd, 0x53,
|
|
0x5c, 0xa7, 0xd8, 0x28, 0xc9, 0x8f, 0x80, 0x20, 0x0f, 0xb2, 0x9c, 0xa3, 0x9f, 0x2d, 0x03, 0xf9,
|
|
0xcb, 0x5e, 0xa3, 0x6b, 0x6a, 0x76, 0xb1, 0x33, 0x91, 0x1b, 0x13, 0xf6, 0x1a, 0xbd, 0x3b, 0x00,
|
|
0x65, 0x23, 0xc4, 0x84, 0x06, 0x9d, 0x38, 0x3b, 0xde, 0x5f, 0x06, 0x38, 0xc3, 0x78, 0xc6, 0xd7,
|
|
0xa9, 0x60, 0x49, 0x5c, 0x68, 0xf3, 0x5d, 0x4d, 0x9b, 0x4f, 0x2a, 0xda, 0xdc, 0xa4, 0x56, 0x80,
|
|
0x8a, 0x3e, 0x5f, 0x82, 0x8b, 0x1a, 0xc7, 0xd0, 0xc7, 0x2d, 0xc3, 0x7f, 0x89, 0x6b, 0x25, 0xd8,
|
|
0x01, 0xed, 0x6e, 0xf7, 0xcb, 0x02, 0x4f, 0x71, 0x5d, 0xcf, 0xcc, 0x44, 0xc0, 0x05, 0x8b, 0x17,
|
|
0x7e, 0x9c, 0xc4, 0x33, 0x54, 0x9a, 0x56, 0x33, 0x27, 0xc5, 0xf6, 0xa5, 0xdc, 0xf5, 0x1e, 0x42,
|
|
0xa7, 0x7e, 0x17, 0x02, 0x60, 0x9e, 0x0c, 0x27, 0x17, 0x67, 0xcf, 0x9d, 0x1d, 0xd2, 0x06, 0x6b,
|
|
0x32, 0x3c, 0xa3, 0xc3, 0xe9, 0xe9, 0x8b, 0x9f, 0x1c, 0xc3, 0x3b, 0x03, 0x9b, 0x62, 0x94, 0x08,
|
|
0x1c, 0x33, 0x9c, 0x21, 0xb9, 0x0f, 0x56, 0x2a, 0x17, 0x7e, 0x9c, 0x47, 0xaa, 0xe9, 0x3d, 0xba,
|
|
0xaf, 0x80, 0xcb, 0x3c, 0x92, 0xc3, 0x8e, 0x93, 0x10, 0x7d, 0x16, 0xaa, 0xbb, 0x5b, 0xd4, 0x94,
|
|
0xe1, 0x28, 0xf4, 0x7e, 0x33, 0xa0, 0xad, 0xab, 0x4c, 0x70, 0x11, 0x61, 0x2c, 0xc8, 0x13, 0x00,
|
|
0xbe, 0x35, 0x8f, 0x2a, 0x64, 0x0f, 0xee, 0xbf, 0xc1, 0x59, 0xb4, 0x42, 0x27, 0xf7, 0x40, 0x9f,
|
|
0x59, 0x1e, 0xd4, 0x52, 0xf1, 0x28, 0x24, 0x4f, 0xa0, 0xcd, 0xd5, 0x41, 0xbe, 0x42, 0x32, 0xb7,
|
|
0x79, 0xd4, 0x3c, 0xb6, 0x07, 0xdd, 0x5a, 0xe9, 0x6d, 0x3b, 0xf4, 0x80, 0x97, 0x41, 0x46, 0xde,
|
|
0x07, 0x3b, 0x42, 0xfe, 0x72, 0x85, 0x3e, 0x4f, 0x12, 0xa1, 0x8c, 0x77, 0x40, 0x41, 0x43, 0x34,
|
|
0x49, 0x84, 0xf7, 0x47, 0x03, 0x5a, 0x63, 0x5d, 0x88, 0x7c, 0x5a, 0x9b, 0x7c, 0xf5, 0xee, 0x05,
|
|
0xa3, 0x7f, 0x1e, 0x88, 0xa0, 0x32, 0xea, 0x0f, 0xa0, 0xc3, 0xe2, 0x15, 0x8b, 0xd1, 0xcf, 0xb4,
|
|
0x08, 0xc5, 0x98, 0xda, 0x1a, 0xdd, 0x28, 0xf3, 0x19, 0x98, 0xfa, 0x52, 0xea, 0x7c, 0x7b, 0xe0,
|
|
0xde, 0xba, 0x7a, 0xc1, 0xa4, 0x05, 0x8f, 0x10, 0xd8, 0x55, 0x76, 0x96, 0xe6, 0x6f, 0x52, 0xb5,
|
|
0x26, 0xdf, 0x43, 0x7b, 0xc6, 0x31, 0x50, 0x5e, 0x0a, 0x03, 0xa1, 0xbd, 0x6e, 0x0f, 0x7a, 0xfd,
|
|
0x45, 0x92, 0x2c, 0x56, 0xa8, 0x9f, 0xfb, 0x55, 0x3e, 0xef, 0x4f, 0x37, 0x5f, 0x00, 0x7a, 0xb0,
|
|
0x49, 0x38, 0x0f, 0x04, 0x92, 0x33, 0x38, 0xc4, 0x57, 0x29, 0xe3, 0x95, 0x12, 0xad, 0xff, 0x2c,
|
|
0xd1, 0x29, 0x53, 0x54, 0x91, 0x1e, 0xec, 0x47, 0x28, 0x82, 0x30, 0x10, 0x81, 0xbb, 0xaf, 0x9a,
|
|
0xdd, 0xc6, 0x9e, 0x07, 0xfb, 0x1b, 0x81, 0xa4, 0xff, 0x46, 0x97, 0xcf, 0x46, 0x97, 0x43, 0x67,
|
|
0x47, 0xae, 0xe9, 0xf0, 0xf9, 0x8b, 0xe9, 0xd0, 0x31, 0xbc, 0x05, 0xc0, 0x38, 0x17, 0x14, 0xaf,
|
|
0x73, 0xcc, 0x84, 0xec, 0x33, 0x0d, 0xc4, 0x52, 0x29, 0x6e, 0x51, 0xb5, 0x26, 0x8f, 0xa0, 0x55,
|
|
0xc8, 0xa3, 0x9c, 0x60, 0x0f, 0xc8, 0xed, 0x41, 0xd0, 0x0d, 0x45, 0x1a, 0xf4, 0x64, 0x3c, 0x52,
|
|
0x8f, 0x4b, 0x6b, 0x6f, 0x9e, 0x8c, 0x47, 0x4f, 0x71, 0xed, 0x7d, 0x05, 0x70, 0x81, 0x6f, 0x3c,
|
|
0xa8, 0x92, 0xda, 0xa8, 0xa5, 0xfe, 0x6e, 0x80, 0xfd, 0x8c, 0x65, 0xdb, 0xe4, 0x2e, 0x98, 0x29,
|
|
0xc7, 0x39, 0x7b, 0x55, 0xa4, 0x17, 0x91, 0x34, 0x97, 0x7a, 0xa5, 0x7e, 0x30, 0xdf, 0xdc, 0xd6,
|
|
0xa2, 0xa0, 0xa0, 0x13, 0x89, 0x90, 0xf7, 0x00, 0x30, 0x0e, 0xfd, 0x2b, 0x9c, 0x27, 0x5c, 0x3f,
|
|
0x61, 0x8b, 0x5a, 0x18, 0x87, 0xa7, 0x0a, 0x20, 0x0f, 0xc0, 0xe2, 0x38, 0xcb, 0x79, 0xc6, 0x7e,
|
|
0xd6, 0xd6, 0xd8, 0xa7, 0x25, 0x20, 0x3f, 0xa7, 0x2b, 0x16, 0x31, 0x51, 0x7c, 0x01, 0x75, 0x20,
|
|
0x4b, 0x4a, 0xbd, 0xfd, 0xf9, 0x2a, 0x58, 0x64, 0xca, 0x02, 0x2d, 0x6a, 0x49, 0xe4, 0x07, 0x09,
|
|
0x54, 0x7b, 0x6a, 0xd5, 0x7a, 0x6a, 0x83, 0xad, 0x74, 0xcf, 0xd2, 0x24, 0xce, 0xd0, 0xfb, 0x08,
|
|
0x6c, 0xa5, 0x8e, 0x0e, 0x89, 0x5b, 0x6a, 0x6e, 0xa8, 0xb4, 0x4d, 0xe8, 0xfd, 0x6a, 0xc0, 0x81,
|
|
0xd6, 0xa2, 0xa0, 0x0e, 0x60, 0x8f, 0x09, 0x8c, 0x32, 0xd7, 0x50, 0xcf, 0xf0, 0x41, 0x65, 0x38,
|
|
0x55, 0x5e, 0x7f, 0x24, 0x30, 0xa2, 0x9a, 0x2a, 0xd5, 0x8f, 0xa4, 0x02, 0x0d, 0xd5, 0xa3, 0x5a,
|
|
0xf7, 0x7e, 0x84, 0x5d, 0x49, 0x79, 0x7b, 0x0b, 0x78, 0xdf, 0x40, 0xfb, 0x1c, 0x57, 0x28, 0xf0,
|
|
0x7f, 0x0d, 0xdb, 0x81, 0xce, 0x26, 0x5b, 0xdf, 0x7c, 0xf0, 0xa7, 0x01, 0x56, 0x71, 0xc8, 0xf9,
|
|
0x29, 0x79, 0x0c, 0xcd, 0x71, 0x2e, 0xc8, 0xbb, 0xd5, 0x1b, 0x6c, 0x0d, 0xdc, 0xeb, 0xde, 0x84,
|
|
0x0b, 0x95, 0x1e, 0x43, 0xf3, 0x02, 0xeb, 0x59, 0xa5, 0x1b, 0x6b, 0x59, 0xd5, 0x31, 0x7c, 0x01,
|
|
0xbb, 0x52, 0x43, 0xd2, 0xbd, 0x25, 0xaa, 0xce, 0xbb, 0xfb, 0x2f, 0x62, 0x93, 0x6f, 0xc1, 0xd4,
|
|
0x4d, 0x90, 0xea, 0xb7, 0xa5, 0xa6, 0x4a, 0xef, 0xde, 0x3f, 0xec, 0xe8, 0xf4, 0x2b, 0x53, 0x3d,
|
|
0xfc, 0xcf, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x0d, 0x6e, 0x14, 0xa6, 0x59, 0x08, 0x00, 0x00,
|
|
}
|