1220 lines
45 KiB
Go
1220 lines
45 KiB
Go
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
// source: pointerdb.proto
|
|
|
|
package pb
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
_ "github.com/gogo/protobuf/gogoproto"
|
|
proto "github.com/gogo/protobuf/proto"
|
|
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
|
grpc "google.golang.org/grpc"
|
|
math "math"
|
|
)
|
|
|
|
// 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.GoGoProtoPackageIsVersion2 // 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 fileDescriptor_75fef806d28fc810, []int{0, 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 fileDescriptor_75fef806d28fc810, []int{3, 0}
|
|
}
|
|
|
|
type RedundancyScheme struct {
|
|
Type RedundancyScheme_SchemeType `protobuf:"varint,1,opt,name=type,proto3,enum=pointerdb.RedundancyScheme_SchemeType" json:"type,omitempty"`
|
|
// these values apply to RS encoding
|
|
MinReq int32 `protobuf:"varint,2,opt,name=min_req,json=minReq,proto3" json:"min_req,omitempty"`
|
|
Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
|
|
RepairThreshold int32 `protobuf:"varint,4,opt,name=repair_threshold,json=repairThreshold,proto3" json:"repair_threshold,omitempty"`
|
|
SuccessThreshold int32 `protobuf:"varint,5,opt,name=success_threshold,json=successThreshold,proto3" json:"success_threshold,omitempty"`
|
|
ErasureShareSize int32 `protobuf:"varint,6,opt,name=erasure_share_size,json=erasureShareSize,proto3" json:"erasure_share_size,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RedundancyScheme) Reset() { *m = RedundancyScheme{} }
|
|
func (m *RedundancyScheme) String() string { return proto.CompactTextString(m) }
|
|
func (*RedundancyScheme) ProtoMessage() {}
|
|
func (*RedundancyScheme) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{0}
|
|
}
|
|
func (m *RedundancyScheme) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RedundancyScheme.Unmarshal(m, b)
|
|
}
|
|
func (m *RedundancyScheme) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RedundancyScheme.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RedundancyScheme) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RedundancyScheme.Merge(m, src)
|
|
}
|
|
func (m *RedundancyScheme) XXX_Size() int {
|
|
return xxx_messageInfo_RedundancyScheme.Size(m)
|
|
}
|
|
func (m *RedundancyScheme) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RedundancyScheme.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RedundancyScheme proto.InternalMessageInfo
|
|
|
|
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 RemotePiece struct {
|
|
PieceNum int32 `protobuf:"varint,1,opt,name=piece_num,json=pieceNum,proto3" json:"piece_num,omitempty"`
|
|
NodeId NodeID `protobuf:"bytes,2,opt,name=node_id,json=nodeId,proto3,customtype=NodeID" json:"node_id"`
|
|
Hash *PieceHash `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RemotePiece) Reset() { *m = RemotePiece{} }
|
|
func (m *RemotePiece) String() string { return proto.CompactTextString(m) }
|
|
func (*RemotePiece) ProtoMessage() {}
|
|
func (*RemotePiece) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{1}
|
|
}
|
|
func (m *RemotePiece) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RemotePiece.Unmarshal(m, b)
|
|
}
|
|
func (m *RemotePiece) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RemotePiece.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RemotePiece) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RemotePiece.Merge(m, src)
|
|
}
|
|
func (m *RemotePiece) XXX_Size() int {
|
|
return xxx_messageInfo_RemotePiece.Size(m)
|
|
}
|
|
func (m *RemotePiece) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RemotePiece.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RemotePiece proto.InternalMessageInfo
|
|
|
|
func (m *RemotePiece) GetPieceNum() int32 {
|
|
if m != nil {
|
|
return m.PieceNum
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RemotePiece) GetHash() *PieceHash {
|
|
if m != nil {
|
|
return m.Hash
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RemoteSegment struct {
|
|
Redundancy *RedundancyScheme `protobuf:"bytes,1,opt,name=redundancy,proto3" json:"redundancy,omitempty"`
|
|
RootPieceId PieceID `protobuf:"bytes,2,opt,name=root_piece_id,json=rootPieceId,proto3,customtype=PieceID" json:"root_piece_id"`
|
|
RemotePieces []*RemotePiece `protobuf:"bytes,3,rep,name=remote_pieces,json=remotePieces,proto3" json:"remote_pieces,omitempty"`
|
|
MerkleRoot []byte `protobuf:"bytes,4,opt,name=merkle_root,json=merkleRoot,proto3" json:"merkle_root,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RemoteSegment) Reset() { *m = RemoteSegment{} }
|
|
func (m *RemoteSegment) String() string { return proto.CompactTextString(m) }
|
|
func (*RemoteSegment) ProtoMessage() {}
|
|
func (*RemoteSegment) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{2}
|
|
}
|
|
func (m *RemoteSegment) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RemoteSegment.Unmarshal(m, b)
|
|
}
|
|
func (m *RemoteSegment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RemoteSegment.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RemoteSegment) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RemoteSegment.Merge(m, src)
|
|
}
|
|
func (m *RemoteSegment) XXX_Size() int {
|
|
return xxx_messageInfo_RemoteSegment.Size(m)
|
|
}
|
|
func (m *RemoteSegment) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RemoteSegment.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RemoteSegment proto.InternalMessageInfo
|
|
|
|
func (m *RemoteSegment) GetRedundancy() *RedundancyScheme {
|
|
if m != nil {
|
|
return m.Redundancy
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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,proto3,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,proto3" json:"remote,omitempty"`
|
|
SegmentSize int64 `protobuf:"varint,5,opt,name=segment_size,json=segmentSize,proto3" json:"segment_size,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ExpirationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
|
|
Metadata []byte `protobuf:"bytes,8,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Pointer) Reset() { *m = Pointer{} }
|
|
func (m *Pointer) String() string { return proto.CompactTextString(m) }
|
|
func (*Pointer) ProtoMessage() {}
|
|
func (*Pointer) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{3}
|
|
}
|
|
func (m *Pointer) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Pointer.Unmarshal(m, b)
|
|
}
|
|
func (m *Pointer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Pointer.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Pointer) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Pointer.Merge(m, src)
|
|
}
|
|
func (m *Pointer) XXX_Size() int {
|
|
return xxx_messageInfo_Pointer.Size(m)
|
|
}
|
|
func (m *Pointer) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Pointer.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Pointer proto.InternalMessageInfo
|
|
|
|
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) GetSegmentSize() int64 {
|
|
if m != nil {
|
|
return m.SegmentSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Pointer) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Pointer) GetExpirationDate() *timestamp.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,proto3" json:"path,omitempty"`
|
|
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer,proto3" json:"pointer,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PutRequest) Reset() { *m = PutRequest{} }
|
|
func (m *PutRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*PutRequest) ProtoMessage() {}
|
|
func (*PutRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{4}
|
|
}
|
|
func (m *PutRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PutRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *PutRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PutRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PutRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PutRequest.Merge(m, src)
|
|
}
|
|
func (m *PutRequest) XXX_Size() int {
|
|
return xxx_messageInfo_PutRequest.Size(m)
|
|
}
|
|
func (m *PutRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PutRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PutRequest proto.InternalMessageInfo
|
|
|
|
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
|
|
}
|
|
|
|
// GetRequest is a request message for the Get rpc call
|
|
type GetRequest struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetRequest) Reset() { *m = GetRequest{} }
|
|
func (m *GetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRequest) ProtoMessage() {}
|
|
func (*GetRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{5}
|
|
}
|
|
func (m *GetRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetRequest.Merge(m, src)
|
|
}
|
|
func (m *GetRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetRequest.Size(m)
|
|
}
|
|
func (m *GetRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetRequest) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// ListRequest is a request message for the List rpc call
|
|
type ListRequest struct {
|
|
Prefix string `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
|
StartAfter string `protobuf:"bytes,2,opt,name=start_after,json=startAfter,proto3" json:"start_after,omitempty"`
|
|
EndBefore string `protobuf:"bytes,3,opt,name=end_before,json=endBefore,proto3" json:"end_before,omitempty"`
|
|
Recursive bool `protobuf:"varint,4,opt,name=recursive,proto3" json:"recursive,omitempty"`
|
|
Limit int32 `protobuf:"varint,5,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
MetaFlags uint32 `protobuf:"fixed32,6,opt,name=meta_flags,json=metaFlags,proto3" json:"meta_flags,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ListRequest) ProtoMessage() {}
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{6}
|
|
}
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListRequest.Merge(m, src)
|
|
}
|
|
func (m *ListRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ListRequest.Size(m)
|
|
}
|
|
func (m *ListRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListRequest proto.InternalMessageInfo
|
|
|
|
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
|
|
}
|
|
|
|
// PutResponse is a response message for the Put rpc call
|
|
type PutResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PutResponse) Reset() { *m = PutResponse{} }
|
|
func (m *PutResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*PutResponse) ProtoMessage() {}
|
|
func (*PutResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{7}
|
|
}
|
|
func (m *PutResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PutResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *PutResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PutResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PutResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PutResponse.Merge(m, src)
|
|
}
|
|
func (m *PutResponse) XXX_Size() int {
|
|
return xxx_messageInfo_PutResponse.Size(m)
|
|
}
|
|
func (m *PutResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PutResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PutResponse proto.InternalMessageInfo
|
|
|
|
// GetResponse is a response message for the Get rpc call
|
|
type GetResponse struct {
|
|
Pointer *Pointer `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
|
|
Nodes []*Node `protobuf:"bytes,2,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
Pba *PayerBandwidthAllocation `protobuf:"bytes,3,opt,name=pba,proto3" json:"pba,omitempty"`
|
|
Authorization *SignedMessage `protobuf:"bytes,4,opt,name=authorization,proto3" json:"authorization,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetResponse) Reset() { *m = GetResponse{} }
|
|
func (m *GetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetResponse) ProtoMessage() {}
|
|
func (*GetResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{8}
|
|
}
|
|
func (m *GetResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetResponse.Merge(m, src)
|
|
}
|
|
func (m *GetResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetResponse.Size(m)
|
|
}
|
|
func (m *GetResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetResponse) GetPointer() *Pointer {
|
|
if m != nil {
|
|
return m.Pointer
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetResponse) GetNodes() []*Node {
|
|
if m != nil {
|
|
return m.Nodes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetResponse) GetPba() *PayerBandwidthAllocation {
|
|
if m != nil {
|
|
return m.Pba
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetResponse) GetAuthorization() *SignedMessage {
|
|
if m != nil {
|
|
return m.Authorization
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ListResponse is a response message for the List rpc call
|
|
type ListResponse struct {
|
|
Items []*ListResponse_Item `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
|
|
More bool `protobuf:"varint,2,opt,name=more,proto3" json:"more,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ListResponse) ProtoMessage() {}
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{9}
|
|
}
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListResponse.Merge(m, src)
|
|
}
|
|
func (m *ListResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ListResponse.Size(m)
|
|
}
|
|
func (m *ListResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
|
|
|
|
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,proto3" json:"path,omitempty"`
|
|
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer,proto3" json:"pointer,omitempty"`
|
|
IsPrefix bool `protobuf:"varint,3,opt,name=is_prefix,json=isPrefix,proto3" json:"is_prefix,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
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 fileDescriptor_75fef806d28fc810, []int{9, 0}
|
|
}
|
|
func (m *ListResponse_Item) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ListResponse_Item.Unmarshal(m, b)
|
|
}
|
|
func (m *ListResponse_Item) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ListResponse_Item.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ListResponse_Item) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ListResponse_Item.Merge(m, src)
|
|
}
|
|
func (m *ListResponse_Item) XXX_Size() int {
|
|
return xxx_messageInfo_ListResponse_Item.Size(m)
|
|
}
|
|
func (m *ListResponse_Item) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ListResponse_Item.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ListResponse_Item proto.InternalMessageInfo
|
|
|
|
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
|
|
}
|
|
|
|
func (m *ListResponse_Item) GetIsPrefix() bool {
|
|
if m != nil {
|
|
return m.IsPrefix
|
|
}
|
|
return false
|
|
}
|
|
|
|
type DeleteRequest struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{10}
|
|
}
|
|
func (m *DeleteRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteRequest.Merge(m, src)
|
|
}
|
|
func (m *DeleteRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteRequest.Size(m)
|
|
}
|
|
func (m *DeleteRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteRequest proto.InternalMessageInfo
|
|
|
|
func (m *DeleteRequest) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// DeleteResponse is a response message for the Delete rpc call
|
|
type DeleteResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteResponse) Reset() { *m = DeleteResponse{} }
|
|
func (m *DeleteResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteResponse) ProtoMessage() {}
|
|
func (*DeleteResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{11}
|
|
}
|
|
func (m *DeleteResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteResponse.Merge(m, src)
|
|
}
|
|
func (m *DeleteResponse) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteResponse.Size(m)
|
|
}
|
|
func (m *DeleteResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteResponse proto.InternalMessageInfo
|
|
|
|
// IterateRequest is a request message for the Iterate rpc call
|
|
type IterateRequest struct {
|
|
Prefix string `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
|
First string `protobuf:"bytes,2,opt,name=first,proto3" json:"first,omitempty"`
|
|
Recurse bool `protobuf:"varint,3,opt,name=recurse,proto3" json:"recurse,omitempty"`
|
|
Reverse bool `protobuf:"varint,4,opt,name=reverse,proto3" json:"reverse,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IterateRequest) Reset() { *m = IterateRequest{} }
|
|
func (m *IterateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*IterateRequest) ProtoMessage() {}
|
|
func (*IterateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{12}
|
|
}
|
|
func (m *IterateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IterateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *IterateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IterateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IterateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IterateRequest.Merge(m, src)
|
|
}
|
|
func (m *IterateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_IterateRequest.Size(m)
|
|
}
|
|
func (m *IterateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IterateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IterateRequest proto.InternalMessageInfo
|
|
|
|
func (m *IterateRequest) GetPrefix() string {
|
|
if m != nil {
|
|
return m.Prefix
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IterateRequest) GetFirst() string {
|
|
if m != nil {
|
|
return m.First
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IterateRequest) GetRecurse() bool {
|
|
if m != nil {
|
|
return m.Recurse
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *IterateRequest) GetReverse() bool {
|
|
if m != nil {
|
|
return m.Reverse
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PayerBandwidthAllocationRequest struct {
|
|
Action BandwidthAction `protobuf:"varint,1,opt,name=action,proto3,enum=piecestoreroutes.BandwidthAction" json:"action,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PayerBandwidthAllocationRequest) Reset() { *m = PayerBandwidthAllocationRequest{} }
|
|
func (m *PayerBandwidthAllocationRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*PayerBandwidthAllocationRequest) ProtoMessage() {}
|
|
func (*PayerBandwidthAllocationRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{13}
|
|
}
|
|
func (m *PayerBandwidthAllocationRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PayerBandwidthAllocationRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *PayerBandwidthAllocationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PayerBandwidthAllocationRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PayerBandwidthAllocationRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PayerBandwidthAllocationRequest.Merge(m, src)
|
|
}
|
|
func (m *PayerBandwidthAllocationRequest) XXX_Size() int {
|
|
return xxx_messageInfo_PayerBandwidthAllocationRequest.Size(m)
|
|
}
|
|
func (m *PayerBandwidthAllocationRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PayerBandwidthAllocationRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PayerBandwidthAllocationRequest proto.InternalMessageInfo
|
|
|
|
func (m *PayerBandwidthAllocationRequest) GetAction() BandwidthAction {
|
|
if m != nil {
|
|
return m.Action
|
|
}
|
|
return BandwidthAction_PUT
|
|
}
|
|
|
|
type PayerBandwidthAllocationResponse struct {
|
|
Pba *PayerBandwidthAllocation `protobuf:"bytes,1,opt,name=pba,proto3" json:"pba,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PayerBandwidthAllocationResponse) Reset() { *m = PayerBandwidthAllocationResponse{} }
|
|
func (m *PayerBandwidthAllocationResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*PayerBandwidthAllocationResponse) ProtoMessage() {}
|
|
func (*PayerBandwidthAllocationResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_75fef806d28fc810, []int{14}
|
|
}
|
|
func (m *PayerBandwidthAllocationResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PayerBandwidthAllocationResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *PayerBandwidthAllocationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PayerBandwidthAllocationResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PayerBandwidthAllocationResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PayerBandwidthAllocationResponse.Merge(m, src)
|
|
}
|
|
func (m *PayerBandwidthAllocationResponse) XXX_Size() int {
|
|
return xxx_messageInfo_PayerBandwidthAllocationResponse.Size(m)
|
|
}
|
|
func (m *PayerBandwidthAllocationResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PayerBandwidthAllocationResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PayerBandwidthAllocationResponse proto.InternalMessageInfo
|
|
|
|
func (m *PayerBandwidthAllocationResponse) GetPba() *PayerBandwidthAllocation {
|
|
if m != nil {
|
|
return m.Pba
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("pointerdb.RedundancyScheme_SchemeType", RedundancyScheme_SchemeType_name, RedundancyScheme_SchemeType_value)
|
|
proto.RegisterEnum("pointerdb.Pointer_DataType", Pointer_DataType_name, Pointer_DataType_value)
|
|
proto.RegisterType((*RedundancyScheme)(nil), "pointerdb.RedundancyScheme")
|
|
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.RegisterType((*IterateRequest)(nil), "pointerdb.IterateRequest")
|
|
proto.RegisterType((*PayerBandwidthAllocationRequest)(nil), "pointerdb.PayerBandwidthAllocationRequest")
|
|
proto.RegisterType((*PayerBandwidthAllocationResponse)(nil), "pointerdb.PayerBandwidthAllocationResponse")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("pointerdb.proto", fileDescriptor_75fef806d28fc810) }
|
|
|
|
var fileDescriptor_75fef806d28fc810 = []byte{
|
|
// 1129 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x6f, 0x6f, 0x1b, 0xc5,
|
|
0x13, 0xae, 0xff, 0xc7, 0x73, 0x76, 0xe2, 0xae, 0xfa, 0x4b, 0xfd, 0x73, 0x8b, 0x92, 0x1e, 0x2a,
|
|
0x94, 0xb6, 0x72, 0x91, 0x5b, 0x09, 0x41, 0x41, 0xa8, 0x21, 0xa1, 0x58, 0x6a, 0x43, 0xb4, 0xc9,
|
|
0x2b, 0x84, 0x74, 0x6c, 0x7c, 0x13, 0x7b, 0x85, 0xef, 0xf6, 0xba, 0xbb, 0x57, 0x9a, 0x7c, 0x13,
|
|
0xbe, 0x09, 0x6f, 0x78, 0xcf, 0x67, 0xe0, 0x45, 0x91, 0x10, 0x1f, 0x83, 0x17, 0x68, 0xff, 0x9c,
|
|
0x7d, 0x6e, 0x48, 0x8a, 0xe0, 0x4d, 0x72, 0x33, 0xf3, 0xcc, 0xec, 0xec, 0x3c, 0xcf, 0x8e, 0x61,
|
|
0x23, 0x13, 0x3c, 0xd5, 0x28, 0xe3, 0xe3, 0x61, 0x26, 0x85, 0x16, 0xa4, 0xbd, 0x70, 0x0c, 0xb6,
|
|
0xa6, 0x42, 0x4c, 0xe7, 0xf8, 0xc0, 0x06, 0x8e, 0xf3, 0x93, 0x07, 0x9a, 0x27, 0xa8, 0x34, 0x4b,
|
|
0x32, 0x87, 0x1d, 0xc0, 0x54, 0x4c, 0x45, 0xf1, 0x9d, 0x8a, 0x18, 0xfd, 0x77, 0x2f, 0xe3, 0x38,
|
|
0x41, 0xa5, 0x85, 0x2c, 0x3c, 0x1d, 0x21, 0x63, 0x94, 0xca, 0x59, 0xe1, 0x8f, 0x55, 0xe8, 0x51,
|
|
0x8c, 0xf3, 0x34, 0x66, 0xe9, 0xe4, 0xf4, 0x70, 0x32, 0xc3, 0x04, 0xc9, 0x27, 0x50, 0xd7, 0xa7,
|
|
0x19, 0xf6, 0x2b, 0xdb, 0x95, 0x3b, 0xeb, 0xa3, 0xf7, 0x86, 0xcb, 0xc6, 0xde, 0x84, 0x0e, 0xdd,
|
|
0xbf, 0xa3, 0xd3, 0x0c, 0xa9, 0xcd, 0x21, 0xd7, 0xa1, 0x95, 0xf0, 0x34, 0x92, 0xf8, 0xa2, 0x5f,
|
|
0xdd, 0xae, 0xdc, 0x69, 0xd0, 0x66, 0xc2, 0x53, 0x8a, 0x2f, 0xc8, 0x35, 0x68, 0x68, 0xa1, 0xd9,
|
|
0xbc, 0x5f, 0xb3, 0x6e, 0x67, 0x90, 0x0f, 0xa0, 0x27, 0x31, 0x63, 0x5c, 0x46, 0x7a, 0x26, 0x51,
|
|
0xcd, 0xc4, 0x3c, 0xee, 0xd7, 0x2d, 0x60, 0xc3, 0xf9, 0x8f, 0x0a, 0x37, 0xb9, 0x07, 0x57, 0x55,
|
|
0x3e, 0x99, 0xa0, 0x52, 0x25, 0x6c, 0xc3, 0x62, 0x7b, 0x3e, 0xb0, 0x04, 0xdf, 0x07, 0x82, 0x92,
|
|
0xa9, 0x5c, 0x62, 0xa4, 0x66, 0xcc, 0xfc, 0xe5, 0x67, 0xd8, 0x6f, 0x3a, 0xb4, 0x8f, 0x1c, 0x9a,
|
|
0xc0, 0x21, 0x3f, 0xc3, 0xf0, 0x1a, 0xc0, 0xf2, 0x22, 0xa4, 0x09, 0x55, 0x7a, 0xd8, 0xbb, 0x12,
|
|
0x9e, 0x41, 0x40, 0x31, 0x11, 0x1a, 0x0f, 0xcc, 0x0c, 0xc9, 0x0d, 0x68, 0xdb, 0x61, 0x46, 0x69,
|
|
0x9e, 0xd8, 0xd1, 0x34, 0xe8, 0x9a, 0x75, 0xec, 0xe7, 0x09, 0x79, 0x1f, 0x5a, 0x66, 0xea, 0x11,
|
|
0x8f, 0xed, 0xb5, 0x3b, 0x3b, 0xeb, 0xbf, 0xbc, 0xde, 0xba, 0xf2, 0xeb, 0xeb, 0xad, 0xe6, 0xbe,
|
|
0x88, 0x71, 0xbc, 0x4b, 0x9b, 0x26, 0x3c, 0x8e, 0xc9, 0x6d, 0xa8, 0xcf, 0x98, 0x9a, 0xd9, 0x29,
|
|
0x04, 0xa3, 0xab, 0x43, 0xcf, 0x86, 0x3d, 0xe2, 0x2b, 0xa6, 0x66, 0xd4, 0x86, 0xc3, 0xdf, 0x2a,
|
|
0xd0, 0x75, 0x87, 0x1f, 0xe2, 0x34, 0xc1, 0x54, 0x93, 0xc7, 0x00, 0x72, 0x31, 0x7d, 0x7b, 0x7e,
|
|
0x30, 0xba, 0x71, 0x09, 0x35, 0xb4, 0x04, 0x27, 0x0f, 0xa1, 0x2b, 0x85, 0xd0, 0x91, 0xbb, 0xc0,
|
|
0xa2, 0xc9, 0x0d, 0xdf, 0x64, 0xcb, 0x1e, 0x3f, 0xde, 0xa5, 0x81, 0x41, 0x39, 0x23, 0x26, 0x8f,
|
|
0xa1, 0x2b, 0x6d, 0x0b, 0x2e, 0x4d, 0xf5, 0x6b, 0xdb, 0xb5, 0x3b, 0xc1, 0x68, 0x73, 0xe5, 0xd0,
|
|
0xc5, 0x7c, 0x68, 0x47, 0x2e, 0x0d, 0x45, 0xb6, 0x20, 0x48, 0x50, 0x7e, 0x3f, 0xc7, 0xc8, 0x94,
|
|
0xb4, 0x9c, 0x76, 0x28, 0x38, 0x17, 0x15, 0x42, 0x87, 0x7f, 0x56, 0xa1, 0x75, 0xe0, 0x0a, 0x91,
|
|
0x07, 0x2b, 0x82, 0x2b, 0xdf, 0xca, 0x23, 0x86, 0xbb, 0x4c, 0xb3, 0x92, 0xca, 0x6e, 0xc3, 0x3a,
|
|
0x4f, 0xe7, 0x3c, 0xc5, 0x48, 0xb9, 0xf1, 0xd8, 0x79, 0x76, 0x68, 0xd7, 0x79, 0x8b, 0x99, 0x7d,
|
|
0x08, 0x4d, 0xd7, 0x94, 0x3d, 0x3f, 0x18, 0xf5, 0xcf, 0xb5, 0xee, 0x91, 0xd4, 0xe3, 0xc8, 0x2d,
|
|
0xe8, 0xf8, 0x8a, 0x4e, 0x31, 0x46, 0x5f, 0x35, 0x1a, 0x78, 0x9f, 0x11, 0x0b, 0xf9, 0x1c, 0xba,
|
|
0x13, 0x89, 0x4c, 0x73, 0x91, 0x46, 0x31, 0xd3, 0x4e, 0x55, 0xc1, 0x68, 0x30, 0x74, 0x6f, 0x74,
|
|
0x58, 0xbc, 0xd1, 0xe1, 0x51, 0xf1, 0x46, 0x69, 0xa7, 0x48, 0xd8, 0x65, 0x1a, 0xc9, 0x17, 0xb0,
|
|
0x81, 0xaf, 0x32, 0x2e, 0x4b, 0x25, 0x5a, 0x6f, 0x2d, 0xb1, 0xbe, 0x4c, 0xb1, 0x45, 0x06, 0xb0,
|
|
0x96, 0xa0, 0x66, 0x31, 0xd3, 0xac, 0xbf, 0x66, 0xef, 0xbe, 0xb0, 0xc3, 0x10, 0xd6, 0x8a, 0x79,
|
|
0x11, 0x80, 0xe6, 0x78, 0xff, 0xd9, 0x78, 0x7f, 0xaf, 0x77, 0xc5, 0x7c, 0xd3, 0xbd, 0xe7, 0x5f,
|
|
0x1f, 0xed, 0xf5, 0x2a, 0xe1, 0x3e, 0xc0, 0x41, 0xae, 0x29, 0xbe, 0xc8, 0x51, 0x69, 0x42, 0xa0,
|
|
0x9e, 0x31, 0x3d, 0xb3, 0x04, 0xb4, 0xa9, 0xfd, 0x26, 0xf7, 0xa1, 0xe5, 0xa7, 0x65, 0xd5, 0x12,
|
|
0x8c, 0xc8, 0x79, 0x5e, 0x68, 0x01, 0x09, 0xb7, 0x01, 0x9e, 0xe2, 0x65, 0xf5, 0xc2, 0x9f, 0x2a,
|
|
0x10, 0x3c, 0xe3, 0x6a, 0x81, 0xd9, 0x84, 0x66, 0x26, 0xf1, 0x84, 0xbf, 0xf2, 0x28, 0x6f, 0x19,
|
|
0xe5, 0x28, 0xcd, 0xa4, 0x8e, 0xd8, 0x49, 0x71, 0x76, 0x9b, 0x82, 0x75, 0x3d, 0x31, 0x1e, 0xf2,
|
|
0x0e, 0x00, 0xa6, 0x71, 0x74, 0x8c, 0x27, 0x42, 0xa2, 0x25, 0xbe, 0x4d, 0xdb, 0x98, 0xc6, 0x3b,
|
|
0xd6, 0x41, 0x6e, 0x42, 0x5b, 0xe2, 0x24, 0x97, 0x8a, 0xbf, 0x74, 0xbc, 0xaf, 0xd1, 0xa5, 0xc3,
|
|
0xac, 0xa1, 0x39, 0x4f, 0xb8, 0xf6, 0x9b, 0xc3, 0x19, 0xa6, 0xa4, 0x99, 0x5e, 0x74, 0x32, 0x67,
|
|
0x53, 0x65, 0x09, 0x6d, 0xd1, 0xb6, 0xf1, 0x7c, 0x69, 0x1c, 0x61, 0x17, 0x02, 0x3b, 0x2c, 0x95,
|
|
0x89, 0x54, 0x61, 0xf8, 0x7b, 0x05, 0x02, 0x7b, 0x59, 0x67, 0x97, 0x27, 0x55, 0x79, 0xeb, 0xa4,
|
|
0xc8, 0x36, 0x34, 0xcc, 0x2e, 0x50, 0xfd, 0xaa, 0x7d, 0x4e, 0x30, 0xb4, 0xeb, 0xda, 0xac, 0x09,
|
|
0xea, 0x02, 0xe4, 0x53, 0xa8, 0x65, 0xc7, 0xcc, 0xaf, 0x88, 0xbb, 0xc3, 0xe5, 0x0a, 0x97, 0x22,
|
|
0xd7, 0xa8, 0x86, 0x07, 0xec, 0x14, 0xe5, 0x0e, 0x4b, 0xe3, 0x1f, 0x78, 0xac, 0x67, 0x4f, 0xe6,
|
|
0x73, 0x31, 0xb1, 0xc2, 0xa0, 0x26, 0x8d, 0xec, 0x41, 0x97, 0xe5, 0x7a, 0x26, 0x24, 0x3f, 0xb3,
|
|
0x5e, 0xaf, 0xfd, 0xad, 0xf3, 0x75, 0x0e, 0xf9, 0x34, 0xc5, 0xf8, 0x39, 0x2a, 0xc5, 0xa6, 0x48,
|
|
0x57, 0xb3, 0xc2, 0x9f, 0x2b, 0xd0, 0x71, 0x74, 0xf9, 0x5b, 0x8e, 0xa0, 0xc1, 0x35, 0x26, 0xaa,
|
|
0x5f, 0xb1, 0x7d, 0xdf, 0x2c, 0xdd, 0xb1, 0x8c, 0x1b, 0x8e, 0x35, 0x26, 0xd4, 0x41, 0x8d, 0x0e,
|
|
0x12, 0x43, 0x52, 0xd5, 0xd2, 0x60, 0xbf, 0x07, 0x08, 0x75, 0x03, 0xf9, 0xef, 0x9a, 0x33, 0x1b,
|
|
0x99, 0xab, 0xc8, 0x8b, 0xa8, 0x66, 0x8f, 0x58, 0xe3, 0xea, 0xc0, 0xda, 0xe1, 0xbb, 0xd0, 0xdd,
|
|
0xc5, 0x39, 0x6a, 0xbc, 0x4c, 0x93, 0x3d, 0x58, 0x2f, 0x40, 0x9e, 0x5b, 0x09, 0xeb, 0x63, 0x8d,
|
|
0x92, 0x2d, 0xf3, 0x2e, 0xd2, 0xe9, 0x35, 0x68, 0x9c, 0x70, 0xa9, 0xb4, 0x57, 0xa8, 0x33, 0x48,
|
|
0x1f, 0x5a, 0x4e, 0x6c, 0xe8, 0x3b, 0x2a, 0x4c, 0x17, 0x79, 0x89, 0x26, 0x52, 0x2f, 0x22, 0xd6,
|
|
0x0c, 0xbf, 0x85, 0xad, 0x0b, 0x29, 0xf5, 0x4d, 0x7c, 0x0c, 0x4d, 0x36, 0xb1, 0x6c, 0xba, 0x1d,
|
|
0x79, 0xeb, 0x3c, 0x9b, 0xcb, 0x6c, 0x0b, 0xa4, 0x3e, 0x21, 0xfc, 0x0e, 0xb6, 0x2f, 0xae, 0xee,
|
|
0xb9, 0xf5, 0x8a, 0xab, 0xfc, 0x2b, 0xc5, 0x8d, 0xfe, 0xa8, 0x42, 0xdb, 0x93, 0xb3, 0xbb, 0x43,
|
|
0x1e, 0x41, 0xed, 0x20, 0xd7, 0xe4, 0x7f, 0x65, 0xe6, 0x16, 0x9b, 0x66, 0xb0, 0xf9, 0xa6, 0xdb,
|
|
0x77, 0xf0, 0x08, 0x6a, 0x4f, 0x71, 0x35, 0x6b, 0xb9, 0x4f, 0x56, 0xb2, 0xca, 0x2f, 0xef, 0x23,
|
|
0xa8, 0x1b, 0xed, 0x91, 0xcd, 0x73, 0x62, 0x74, 0x79, 0xd7, 0x2f, 0x10, 0x29, 0xf9, 0x0c, 0x9a,
|
|
0x8e, 0x78, 0x52, 0xfe, 0x4d, 0x58, 0x11, 0xcc, 0xe0, 0xff, 0x7f, 0x13, 0xf1, 0xe9, 0x0a, 0xfa,
|
|
0x17, 0x8d, 0x84, 0xdc, 0x2d, 0xdf, 0xf0, 0x72, 0x5a, 0x07, 0xf7, 0xfe, 0x11, 0xd6, 0x1d, 0xba,
|
|
0x53, 0xff, 0xa6, 0x9a, 0x1d, 0x1f, 0x37, 0xed, 0x8f, 0xc3, 0xc3, 0xbf, 0x02, 0x00, 0x00, 0xff,
|
|
0xff, 0x02, 0xf8, 0xe5, 0x03, 0x2f, 0x0a, 0x00, 0x00,
|
|
}
|
|
|
|
// 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
|
|
|
|
// PointerDBClient is the client API for PointerDB service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
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)
|
|
// PayerBandwidthAllocation returns signed payer bandwidth allocation struct
|
|
PayerBandwidthAllocation(ctx context.Context, in *PayerBandwidthAllocationRequest, opts ...grpc.CallOption) (*PayerBandwidthAllocationResponse, 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 := c.cc.Invoke(ctx, "/pointerdb.PointerDB/Put", in, out, 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 := c.cc.Invoke(ctx, "/pointerdb.PointerDB/Get", in, out, 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 := c.cc.Invoke(ctx, "/pointerdb.PointerDB/List", in, out, 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 := c.cc.Invoke(ctx, "/pointerdb.PointerDB/Delete", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pointerDBClient) PayerBandwidthAllocation(ctx context.Context, in *PayerBandwidthAllocationRequest, opts ...grpc.CallOption) (*PayerBandwidthAllocationResponse, error) {
|
|
out := new(PayerBandwidthAllocationResponse)
|
|
err := c.cc.Invoke(ctx, "/pointerdb.PointerDB/PayerBandwidthAllocation", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// PointerDBServer is the 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)
|
|
// PayerBandwidthAllocation returns signed payer bandwidth allocation struct
|
|
PayerBandwidthAllocation(context.Context, *PayerBandwidthAllocationRequest) (*PayerBandwidthAllocationResponse, 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)
|
|
}
|
|
|
|
func _PointerDB_PayerBandwidthAllocation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PayerBandwidthAllocationRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PointerDBServer).PayerBandwidthAllocation(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pointerdb.PointerDB/PayerBandwidthAllocation",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PointerDBServer).PayerBandwidthAllocation(ctx, req.(*PayerBandwidthAllocationRequest))
|
|
}
|
|
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,
|
|
},
|
|
{
|
|
MethodName: "PayerBandwidthAllocation",
|
|
Handler: _PointerDB_PayerBandwidthAllocation_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "pointerdb.proto",
|
|
}
|