4f40280c71
checking in go generated stuff is recommended by https://blog.golang.org/generate
393 lines
14 KiB
Go
393 lines
14 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: overlay.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package overlay is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
overlay.proto
|
|
|
|
It has these top-level messages:
|
|
LookupRequest
|
|
LookupResponse
|
|
FindStorageNodesResponse
|
|
FindStorageNodesRequest
|
|
NodeAddress
|
|
OverlayOptions
|
|
NodeRep
|
|
Node
|
|
*/
|
|
package overlay
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import google_protobuf "github.com/golang/protobuf/ptypes/duration"
|
|
|
|
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
|
|
|
|
// NodeTransport is an enum of possible transports for the overlay network
|
|
type NodeTransport int32
|
|
|
|
const (
|
|
NodeTransport_TCP NodeTransport = 0
|
|
)
|
|
|
|
var NodeTransport_name = map[int32]string{
|
|
0: "TCP",
|
|
}
|
|
var NodeTransport_value = map[string]int32{
|
|
"TCP": 0,
|
|
}
|
|
|
|
func (x NodeTransport) String() string {
|
|
return proto.EnumName(NodeTransport_name, int32(x))
|
|
}
|
|
func (NodeTransport) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
// LookupRequest is is request message for the lookup rpc call
|
|
type LookupRequest struct {
|
|
NodeID string `protobuf:"bytes,1,opt,name=nodeID" json:"nodeID,omitempty"`
|
|
}
|
|
|
|
func (m *LookupRequest) Reset() { *m = LookupRequest{} }
|
|
func (m *LookupRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LookupRequest) ProtoMessage() {}
|
|
func (*LookupRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *LookupRequest) GetNodeID() string {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// LookupResponse is is response message for the lookup rpc call
|
|
type LookupResponse struct {
|
|
NodeAddress *NodeAddress `protobuf:"bytes,1,opt,name=nodeAddress" json:"nodeAddress,omitempty"`
|
|
}
|
|
|
|
func (m *LookupResponse) Reset() { *m = LookupResponse{} }
|
|
func (m *LookupResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*LookupResponse) ProtoMessage() {}
|
|
func (*LookupResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *LookupResponse) GetNodeAddress() *NodeAddress {
|
|
if m != nil {
|
|
return m.NodeAddress
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// FindStorageNodesResponse is is response message for the FindStorageNodes rpc call
|
|
type FindStorageNodesResponse struct {
|
|
Node []*Node `protobuf:"bytes,1,rep,name=node" json:"node,omitempty"`
|
|
}
|
|
|
|
func (m *FindStorageNodesResponse) Reset() { *m = FindStorageNodesResponse{} }
|
|
func (m *FindStorageNodesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*FindStorageNodesResponse) ProtoMessage() {}
|
|
func (*FindStorageNodesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *FindStorageNodesResponse) GetNode() []*Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// FindStorageNodesRequest is is request message for the FindStorageNodes rpc call
|
|
type FindStorageNodesRequest struct {
|
|
ObjectSize int64 `protobuf:"varint,1,opt,name=objectSize" json:"objectSize,omitempty"`
|
|
ContractLength *google_protobuf.Duration `protobuf:"bytes,2,opt,name=contractLength" json:"contractLength,omitempty"`
|
|
Opts *OverlayOptions `protobuf:"bytes,3,opt,name=opts" json:"opts,omitempty"`
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) Reset() { *m = FindStorageNodesRequest{} }
|
|
func (m *FindStorageNodesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*FindStorageNodesRequest) ProtoMessage() {}
|
|
func (*FindStorageNodesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *FindStorageNodesRequest) GetObjectSize() int64 {
|
|
if m != nil {
|
|
return m.ObjectSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) GetContractLength() *google_protobuf.Duration {
|
|
if m != nil {
|
|
return m.ContractLength
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FindStorageNodesRequest) GetOpts() *OverlayOptions {
|
|
if m != nil {
|
|
return m.Opts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// NodeAddress contains the information needed to communicate with a node on the network
|
|
type NodeAddress struct {
|
|
Transport NodeTransport `protobuf:"varint,1,opt,name=transport,enum=NodeTransport" json:"transport,omitempty"`
|
|
Address string `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
|
|
}
|
|
|
|
func (m *NodeAddress) Reset() { *m = NodeAddress{} }
|
|
func (m *NodeAddress) String() string { return proto.CompactTextString(m) }
|
|
func (*NodeAddress) ProtoMessage() {}
|
|
func (*NodeAddress) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *NodeAddress) GetTransport() NodeTransport {
|
|
if m != nil {
|
|
return m.Transport
|
|
}
|
|
return NodeTransport_TCP
|
|
}
|
|
|
|
func (m *NodeAddress) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// OverlayOptions is a set of criteria that a node must meet to be considered for a storage opportunity
|
|
type OverlayOptions struct {
|
|
MaxLatency *google_protobuf.Duration `protobuf:"bytes,1,opt,name=maxLatency" json:"maxLatency,omitempty"`
|
|
MinReputation *NodeRep `protobuf:"bytes,2,opt,name=minReputation" json:"minReputation,omitempty"`
|
|
MinSpeedKbps int64 `protobuf:"varint,3,opt,name=minSpeedKbps" json:"minSpeedKbps,omitempty"`
|
|
}
|
|
|
|
func (m *OverlayOptions) Reset() { *m = OverlayOptions{} }
|
|
func (m *OverlayOptions) String() string { return proto.CompactTextString(m) }
|
|
func (*OverlayOptions) ProtoMessage() {}
|
|
func (*OverlayOptions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *OverlayOptions) GetMaxLatency() *google_protobuf.Duration {
|
|
if m != nil {
|
|
return m.MaxLatency
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OverlayOptions) GetMinReputation() *NodeRep {
|
|
if m != nil {
|
|
return m.MinReputation
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OverlayOptions) GetMinSpeedKbps() int64 {
|
|
if m != nil {
|
|
return m.MinSpeedKbps
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// NodeRep is the reputation characteristics of a node
|
|
type NodeRep struct {
|
|
}
|
|
|
|
func (m *NodeRep) Reset() { *m = NodeRep{} }
|
|
func (m *NodeRep) String() string { return proto.CompactTextString(m) }
|
|
func (*NodeRep) ProtoMessage() {}
|
|
func (*NodeRep) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
// Node represents a node in the overlay network
|
|
type Node struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Address *NodeAddress `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
|
|
}
|
|
|
|
func (m *Node) Reset() { *m = Node{} }
|
|
func (m *Node) String() string { return proto.CompactTextString(m) }
|
|
func (*Node) ProtoMessage() {}
|
|
func (*Node) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *Node) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Node) GetAddress() *NodeAddress {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*LookupRequest)(nil), "LookupRequest")
|
|
proto.RegisterType((*LookupResponse)(nil), "LookupResponse")
|
|
proto.RegisterType((*FindStorageNodesResponse)(nil), "FindStorageNodesResponse")
|
|
proto.RegisterType((*FindStorageNodesRequest)(nil), "FindStorageNodesRequest")
|
|
proto.RegisterType((*NodeAddress)(nil), "NodeAddress")
|
|
proto.RegisterType((*OverlayOptions)(nil), "OverlayOptions")
|
|
proto.RegisterType((*NodeRep)(nil), "NodeRep")
|
|
proto.RegisterType((*Node)(nil), "Node")
|
|
proto.RegisterEnum("NodeTransport", NodeTransport_name, NodeTransport_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 Overlay service
|
|
|
|
type OverlayClient interface {
|
|
// Lookup finds a nodes address from the network
|
|
Lookup(ctx context.Context, in *LookupRequest, opts ...grpc.CallOption) (*LookupResponse, error)
|
|
// FindStorageNodes finds a list of nodes in the network that meet the specified request parameters
|
|
FindStorageNodes(ctx context.Context, in *FindStorageNodesRequest, opts ...grpc.CallOption) (*FindStorageNodesResponse, error)
|
|
}
|
|
|
|
type overlayClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewOverlayClient(cc *grpc.ClientConn) OverlayClient {
|
|
return &overlayClient{cc}
|
|
}
|
|
|
|
func (c *overlayClient) Lookup(ctx context.Context, in *LookupRequest, opts ...grpc.CallOption) (*LookupResponse, error) {
|
|
out := new(LookupResponse)
|
|
err := grpc.Invoke(ctx, "/Overlay/Lookup", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *overlayClient) FindStorageNodes(ctx context.Context, in *FindStorageNodesRequest, opts ...grpc.CallOption) (*FindStorageNodesResponse, error) {
|
|
out := new(FindStorageNodesResponse)
|
|
err := grpc.Invoke(ctx, "/Overlay/FindStorageNodes", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for Overlay service
|
|
|
|
type OverlayServer interface {
|
|
// Lookup finds a nodes address from the network
|
|
Lookup(context.Context, *LookupRequest) (*LookupResponse, error)
|
|
// FindStorageNodes finds a list of nodes in the network that meet the specified request parameters
|
|
FindStorageNodes(context.Context, *FindStorageNodesRequest) (*FindStorageNodesResponse, error)
|
|
}
|
|
|
|
func RegisterOverlayServer(s *grpc.Server, srv OverlayServer) {
|
|
s.RegisterService(&_Overlay_serviceDesc, srv)
|
|
}
|
|
|
|
func _Overlay_Lookup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LookupRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(OverlayServer).Lookup(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Overlay/Lookup",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(OverlayServer).Lookup(ctx, req.(*LookupRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Overlay_FindStorageNodes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(FindStorageNodesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(OverlayServer).FindStorageNodes(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/Overlay/FindStorageNodes",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(OverlayServer).FindStorageNodes(ctx, req.(*FindStorageNodesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _Overlay_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "Overlay",
|
|
HandlerType: (*OverlayServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Lookup",
|
|
Handler: _Overlay_Lookup_Handler,
|
|
},
|
|
{
|
|
MethodName: "FindStorageNodes",
|
|
Handler: _Overlay_FindStorageNodes_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "overlay.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("overlay.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 444 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x92, 0x51, 0x6f, 0xd3, 0x30,
|
|
0x10, 0xc7, 0x49, 0x53, 0x5a, 0x7a, 0x5d, 0xb3, 0xc9, 0x0f, 0x90, 0xf6, 0x61, 0x9a, 0x8c, 0x04,
|
|
0x03, 0x21, 0x4f, 0x2a, 0xe2, 0x81, 0x17, 0xc4, 0xc4, 0x04, 0x42, 0x54, 0x0c, 0xb9, 0xe3, 0x03,
|
|
0xb8, 0xf5, 0x51, 0x02, 0xab, 0x6d, 0x6c, 0x07, 0x31, 0x24, 0x3e, 0x0b, 0xe2, 0x9b, 0xa2, 0x38,
|
|
0x0e, 0x6b, 0x8a, 0xba, 0xb7, 0xdc, 0xfd, 0xff, 0xe7, 0xdc, 0xfd, 0xf4, 0x87, 0x91, 0xfe, 0x8e,
|
|
0xf6, 0x52, 0x5c, 0x31, 0x63, 0xb5, 0xd7, 0x93, 0xc3, 0x95, 0xd6, 0xab, 0x4b, 0x3c, 0x09, 0xd5,
|
|
0xa2, 0xfc, 0x74, 0x22, 0x4b, 0x2b, 0x7c, 0xa1, 0x55, 0xad, 0xd3, 0x87, 0x30, 0x9a, 0x69, 0xfd,
|
|
0xb5, 0x34, 0x1c, 0xbf, 0x95, 0xe8, 0x3c, 0xb9, 0x0b, 0x3d, 0xa5, 0x25, 0xbe, 0x3d, 0xcb, 0x93,
|
|
0xa3, 0xe4, 0x78, 0xc0, 0x63, 0x45, 0x5f, 0x42, 0xd6, 0x18, 0x9d, 0xd1, 0xca, 0x21, 0x61, 0x30,
|
|
0xac, 0xb4, 0x53, 0x29, 0x2d, 0x3a, 0x17, 0xec, 0xc3, 0xe9, 0x1e, 0x7b, 0x7f, 0xdd, 0xe3, 0x9b,
|
|
0x06, 0xfa, 0x0c, 0xf2, 0xd7, 0x85, 0x92, 0x73, 0xaf, 0xad, 0x58, 0x61, 0x65, 0x73, 0xff, 0xde,
|
|
0x1a, 0x43, 0xb7, 0xb2, 0xe6, 0xc9, 0x51, 0x7a, 0x3c, 0x9c, 0xde, 0x0e, 0x8f, 0xf0, 0xd0, 0xa2,
|
|
0x7f, 0x12, 0xb8, 0xf7, 0xff, 0x5c, 0xbd, 0xec, 0x21, 0x80, 0x5e, 0x7c, 0xc1, 0xa5, 0x9f, 0x17,
|
|
0x3f, 0x31, 0x6c, 0x90, 0xf2, 0x8d, 0x0e, 0x39, 0x85, 0x6c, 0xa9, 0x95, 0xb7, 0x62, 0xe9, 0x67,
|
|
0xa8, 0x56, 0xfe, 0x73, 0xde, 0x09, 0x5b, 0x8e, 0x59, 0x8d, 0x85, 0x35, 0x58, 0xd8, 0x59, 0xc4,
|
|
0xc2, 0xb7, 0x06, 0xc8, 0x7d, 0xe8, 0x6a, 0xe3, 0x5d, 0x9e, 0x86, 0xc1, 0x7d, 0x76, 0x5e, 0xe3,
|
|
0x3d, 0x37, 0x95, 0xdb, 0xf1, 0x20, 0xd2, 0x8f, 0x30, 0xdc, 0x38, 0x9b, 0x3c, 0x81, 0x81, 0xb7,
|
|
0x42, 0x39, 0xa3, 0xad, 0x0f, 0x5b, 0x65, 0xd3, 0x2c, 0x9c, 0x74, 0xd1, 0x74, 0xf9, 0xb5, 0x81,
|
|
0xe4, 0xd0, 0x17, 0x91, 0x61, 0x27, 0x20, 0x6f, 0x4a, 0xfa, 0x3b, 0x81, 0xac, 0xfd, 0x3f, 0xf2,
|
|
0x1c, 0x60, 0x2d, 0x7e, 0xcc, 0x84, 0x47, 0xb5, 0xbc, 0x8a, 0xcc, 0x6f, 0xb8, 0x66, 0xc3, 0x4c,
|
|
0x18, 0x8c, 0xd6, 0x85, 0xe2, 0x68, 0x4a, 0x1f, 0xc4, 0xc8, 0xe2, 0x4e, 0x0d, 0x1b, 0x0d, 0x6f,
|
|
0xcb, 0x84, 0xc2, 0xde, 0xba, 0x50, 0x73, 0x83, 0x28, 0xdf, 0x2d, 0x4c, 0x4d, 0x20, 0xe5, 0xad,
|
|
0x1e, 0x1d, 0x40, 0x3f, 0x4e, 0xd3, 0x17, 0xd0, 0xad, 0x3e, 0x49, 0x06, 0x9d, 0x42, 0xc6, 0xf0,
|
|
0x74, 0x0a, 0x49, 0x1e, 0xb4, 0xcf, 0xdb, 0x8e, 0x48, 0x23, 0x3e, 0xce, 0x61, 0xd4, 0x42, 0x44,
|
|
0xfa, 0x90, 0x5e, 0xbc, 0xfa, 0x70, 0x70, 0x6b, 0xfa, 0x0b, 0xfa, 0x91, 0x02, 0x79, 0x04, 0xbd,
|
|
0x3a, 0x85, 0x24, 0x63, 0xad, 0xdc, 0x4e, 0xf6, 0xd9, 0x56, 0x3c, 0xdf, 0xc0, 0xc1, 0x76, 0x6c,
|
|
0x48, 0xce, 0x76, 0x24, 0x69, 0x32, 0x66, 0xbb, 0xb2, 0xb9, 0xe8, 0x05, 0xac, 0x4f, 0xff, 0x06,
|
|
0x00, 0x00, 0xff, 0xff, 0xe2, 0x47, 0x66, 0x29, 0x5a, 0x03, 0x00, 0x00,
|
|
}
|