dht.pb.go 6.14 KB
Newer Older
1 2
// Code generated by protoc-gen-gogo.
// source: dht.proto
3 4 5
// DO NOT EDIT!

/*
6
Package dht_pb is a generated protocol buffer package.
7 8

It is generated from these files:
9
	dht.proto
10 11

It has these top-level messages:
12
	Message
13
*/
14
package dht_pb
15

16
import proto "github.com/gogo/protobuf/proto"
George Antoniadis's avatar
George Antoniadis committed
17
import fmt "fmt"
18
import math "math"
George Antoniadis's avatar
George Antoniadis committed
19
import record_pb "github.com/libp2p/go-libp2p-record/pb"
20

21
// Reference imports to suppress errors if they are not otherwise used.
22
var _ = proto.Marshal
George Antoniadis's avatar
George Antoniadis committed
23
var _ = fmt.Errorf
24 25
var _ = math.Inf

26
type Message_MessageType int32
27 28

const (
29 30 31 32 33 34
	Message_PUT_VALUE     Message_MessageType = 0
	Message_GET_VALUE     Message_MessageType = 1
	Message_ADD_PROVIDER  Message_MessageType = 2
	Message_GET_PROVIDERS Message_MessageType = 3
	Message_FIND_NODE     Message_MessageType = 4
	Message_PING          Message_MessageType = 5
35 36
)

37
var Message_MessageType_name = map[int32]string{
38 39
	0: "PUT_VALUE",
	1: "GET_VALUE",
40 41 42 43
	2: "ADD_PROVIDER",
	3: "GET_PROVIDERS",
	4: "FIND_NODE",
	5: "PING",
44
}
45
var Message_MessageType_value = map[string]int32{
46 47 48 49 50 51
	"PUT_VALUE":     0,
	"GET_VALUE":     1,
	"ADD_PROVIDER":  2,
	"GET_PROVIDERS": 3,
	"FIND_NODE":     4,
	"PING":          5,
52 53
}

54 55
func (x Message_MessageType) Enum() *Message_MessageType {
	p := new(Message_MessageType)
56 57 58
	*p = x
	return p
}
59 60
func (x Message_MessageType) String() string {
	return proto.EnumName(Message_MessageType_name, int32(x))
61
}
62 63
func (x *Message_MessageType) UnmarshalJSON(data []byte) error {
	value, err := proto.UnmarshalJSONEnum(Message_MessageType_value, data, "Message_MessageType")
64 65 66
	if err != nil {
		return err
	}
67
	*x = Message_MessageType(value)
68 69 70
	return nil
}

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
type Message_ConnectionType int32

const (
	// sender does not have a connection to peer, and no extra information (default)
	Message_NOT_CONNECTED Message_ConnectionType = 0
	// sender has a live connection to peer
	Message_CONNECTED Message_ConnectionType = 1
	// sender recently connected to peer
	Message_CAN_CONNECT Message_ConnectionType = 2
	// sender recently tried to connect to peer repeatedly but failed to connect
	// ("try" here is loose, but this should signal "made strong effort, failed")
	Message_CANNOT_CONNECT Message_ConnectionType = 3
)

var Message_ConnectionType_name = map[int32]string{
	0: "NOT_CONNECTED",
	1: "CONNECTED",
	2: "CAN_CONNECT",
	3: "CANNOT_CONNECT",
}
var Message_ConnectionType_value = map[string]int32{
	"NOT_CONNECTED":  0,
	"CONNECTED":      1,
	"CAN_CONNECT":    2,
	"CANNOT_CONNECT": 3,
}

func (x Message_ConnectionType) Enum() *Message_ConnectionType {
	p := new(Message_ConnectionType)
	*p = x
	return p
}
func (x Message_ConnectionType) String() string {
	return proto.EnumName(Message_ConnectionType_name, int32(x))
}
func (x *Message_ConnectionType) UnmarshalJSON(data []byte) error {
	value, err := proto.UnmarshalJSONEnum(Message_ConnectionType_value, data, "Message_ConnectionType")
	if err != nil {
		return err
	}
	*x = Message_ConnectionType(value)
	return nil
}

115 116
type Message struct {
	// defines what type of message it is.
117
	Type *Message_MessageType `protobuf:"varint,1,opt,name=type,enum=dht.pb.Message_MessageType" json:"type,omitempty"`
118 119 120 121 122 123 124
	// defines what coral cluster level this query/response belongs to.
	ClusterLevelRaw *int32 `protobuf:"varint,10,opt,name=clusterLevelRaw" json:"clusterLevelRaw,omitempty"`
	// Used to specify the key associated with this message.
	// PUT_VALUE, GET_VALUE, ADD_PROVIDER, GET_PROVIDERS
	Key *string `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"`
	// Used to return a value
	// PUT_VALUE, GET_VALUE
George Antoniadis's avatar
George Antoniadis committed
125
	Record *record_pb.Record `protobuf:"bytes,3,opt,name=record" json:"record,omitempty"`
126 127 128 129 130 131 132 133 134
	// Used to return peers closer to a key in a query
	// GET_VALUE, GET_PROVIDERS, FIND_NODE
	CloserPeers []*Message_Peer `protobuf:"bytes,8,rep,name=closerPeers" json:"closerPeers,omitempty"`
	// Used to return Providers
	// GET_VALUE, ADD_PROVIDER, GET_PROVIDERS
	ProviderPeers    []*Message_Peer `protobuf:"bytes,9,rep,name=providerPeers" json:"providerPeers,omitempty"`
	XXX_unrecognized []byte          `json:"-"`
}

George Antoniadis's avatar
George Antoniadis committed
135 136 137
func (m *Message) Reset()         { *m = Message{} }
func (m *Message) String() string { return proto.CompactTextString(m) }
func (*Message) ProtoMessage()    {}
138 139

func (m *Message) GetType() Message_MessageType {
140 141 142
	if m != nil && m.Type != nil {
		return *m.Type
	}
143
	return Message_PUT_VALUE
144 145
}

146 147 148 149 150 151 152 153
func (m *Message) GetClusterLevelRaw() int32 {
	if m != nil && m.ClusterLevelRaw != nil {
		return *m.ClusterLevelRaw
	}
	return 0
}

func (m *Message) GetKey() string {
154 155 156 157 158 159
	if m != nil && m.Key != nil {
		return *m.Key
	}
	return ""
}

George Antoniadis's avatar
George Antoniadis committed
160
func (m *Message) GetRecord() *record_pb.Record {
161
	if m != nil {
162
		return m.Record
163 164 165 166
	}
	return nil
}

167 168 169
func (m *Message) GetCloserPeers() []*Message_Peer {
	if m != nil {
		return m.CloserPeers
170
	}
171
	return nil
172 173
}

174
func (m *Message) GetProviderPeers() []*Message_Peer {
175
	if m != nil {
176
		return m.ProviderPeers
177 178 179 180
	}
	return nil
}

181
type Message_Peer struct {
182 183 184
	// ID of a given peer.
	Id *string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
	// multiaddrs for a given peer
185
	Addrs [][]byte `protobuf:"bytes,2,rep,name=addrs" json:"addrs,omitempty"`
186 187 188
	// used to signal the sender's connection capabilities to the peer
	Connection       *Message_ConnectionType `protobuf:"varint,3,opt,name=connection,enum=dht.pb.Message_ConnectionType" json:"connection,omitempty"`
	XXX_unrecognized []byte                  `json:"-"`
189 190
}

George Antoniadis's avatar
George Antoniadis committed
191 192 193
func (m *Message_Peer) Reset()         { *m = Message_Peer{} }
func (m *Message_Peer) String() string { return proto.CompactTextString(m) }
func (*Message_Peer) ProtoMessage()    {}
194

195
func (m *Message_Peer) GetId() string {
196 197 198 199 200 201
	if m != nil && m.Id != nil {
		return *m.Id
	}
	return ""
}

202
func (m *Message_Peer) GetAddrs() [][]byte {
203 204
	if m != nil {
		return m.Addrs
205
	}
206 207 208 209 210 211 212 213
	return nil
}

func (m *Message_Peer) GetConnection() Message_ConnectionType {
	if m != nil && m.Connection != nil {
		return *m.Connection
	}
	return Message_NOT_CONNECTED
214 215
}

216
func init() {
George Antoniadis's avatar
George Antoniadis committed
217 218
	proto.RegisterType((*Message)(nil), "dht.pb.Message")
	proto.RegisterType((*Message_Peer)(nil), "dht.pb.Message.Peer")
219
	proto.RegisterEnum("dht.pb.Message_MessageType", Message_MessageType_name, Message_MessageType_value)
220
	proto.RegisterEnum("dht.pb.Message_ConnectionType", Message_ConnectionType_name, Message_ConnectionType_value)
221
}