|
@@ -0,0 +1,2266 @@
|
|
|
+// Code generated by protoc-gen-gogo.
|
|
|
+// source: networkdb.proto
|
|
|
+// DO NOT EDIT!
|
|
|
+
|
|
|
+/*
|
|
|
+ Package networkdb is a generated protocol buffer package.
|
|
|
+
|
|
|
+ It is generated from these files:
|
|
|
+ networkdb.proto
|
|
|
+
|
|
|
+ It has these top-level messages:
|
|
|
+ GossipMessage
|
|
|
+ NetworkEvent
|
|
|
+ NetworkEntry
|
|
|
+ NetworkPushPull
|
|
|
+ TableEvent
|
|
|
+ BulkSyncMessage
|
|
|
+ CompoundMessage
|
|
|
+*/
|
|
|
+package networkdb
|
|
|
+
|
|
|
+import proto "github.com/gogo/protobuf/proto"
|
|
|
+import fmt "fmt"
|
|
|
+import math "math"
|
|
|
+import _ "github.com/gogo/protobuf/gogoproto"
|
|
|
+
|
|
|
+import github_com_hashicorp_serf_serf "github.com/hashicorp/serf/serf"
|
|
|
+
|
|
|
+import strings "strings"
|
|
|
+import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
|
|
|
+import sort "sort"
|
|
|
+import strconv "strconv"
|
|
|
+import reflect "reflect"
|
|
|
+
|
|
|
+import io "io"
|
|
|
+
|
|
|
+// 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.
|
|
|
+const _ = proto.GoGoProtoPackageIsVersion1
|
|
|
+
|
|
|
+// MessageType enum defines all the core message types that networkdb
|
|
|
+// uses to communicate to peers.
|
|
|
+type MessageType int32
|
|
|
+
|
|
|
+const (
|
|
|
+ MessageTypeInvalid MessageType = 0
|
|
|
+ // NetworEvent message type is used to communicate network
|
|
|
+ // attachments on the node.
|
|
|
+ MessageTypeNetworkEvent MessageType = 1
|
|
|
+ // TableEvent message type is used to communicate any table
|
|
|
+ // CRUD event that happened on the node.
|
|
|
+ MessageTypeTableEvent MessageType = 2
|
|
|
+ // PushPull message type is used to syncup all network
|
|
|
+ // attachments on a peer node either during startup of this
|
|
|
+ // node or with a random peer node periodically thereafter.
|
|
|
+ MessageTypePushPull MessageType = 3
|
|
|
+ // BulkSync message is used to bulksync the whole networkdb
|
|
|
+ // state with a peer node during startup of this node or with
|
|
|
+ // a random peer node periodically thereafter.
|
|
|
+ MessageTypeBulkSync MessageType = 4
|
|
|
+ // Compound message type is used to form a compound message
|
|
|
+ // which is a pack of many message of above types, packed into
|
|
|
+ // a single compound message.
|
|
|
+ MessageTypeCompound MessageType = 5
|
|
|
+)
|
|
|
+
|
|
|
+var MessageType_name = map[int32]string{
|
|
|
+ 0: "INVALID",
|
|
|
+ 1: "NETWORK_EVENT",
|
|
|
+ 2: "TABLE_EVENT",
|
|
|
+ 3: "PUSH_PULL",
|
|
|
+ 4: "BULK_SYNC",
|
|
|
+ 5: "COMPOUND",
|
|
|
+}
|
|
|
+var MessageType_value = map[string]int32{
|
|
|
+ "INVALID": 0,
|
|
|
+ "NETWORK_EVENT": 1,
|
|
|
+ "TABLE_EVENT": 2,
|
|
|
+ "PUSH_PULL": 3,
|
|
|
+ "BULK_SYNC": 4,
|
|
|
+ "COMPOUND": 5,
|
|
|
+}
|
|
|
+
|
|
|
+func (x MessageType) String() string {
|
|
|
+ return proto.EnumName(MessageType_name, int32(x))
|
|
|
+}
|
|
|
+func (MessageType) EnumDescriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{0} }
|
|
|
+
|
|
|
+type NetworkEvent_Type int32
|
|
|
+
|
|
|
+const (
|
|
|
+ NetworkEventTypeInvalid NetworkEvent_Type = 0
|
|
|
+ // Join event is generated when this node joins a network.
|
|
|
+ NetworkEventTypeJoin NetworkEvent_Type = 1
|
|
|
+ // Leave event is generated when this node leaves a network.
|
|
|
+ NetworkEventTypeLeave NetworkEvent_Type = 2
|
|
|
+)
|
|
|
+
|
|
|
+var NetworkEvent_Type_name = map[int32]string{
|
|
|
+ 0: "INVALID",
|
|
|
+ 1: "JOIN",
|
|
|
+ 2: "LEAVE",
|
|
|
+}
|
|
|
+var NetworkEvent_Type_value = map[string]int32{
|
|
|
+ "INVALID": 0,
|
|
|
+ "JOIN": 1,
|
|
|
+ "LEAVE": 2,
|
|
|
+}
|
|
|
+
|
|
|
+func (x NetworkEvent_Type) String() string {
|
|
|
+ return proto.EnumName(NetworkEvent_Type_name, int32(x))
|
|
|
+}
|
|
|
+func (NetworkEvent_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{1, 0} }
|
|
|
+
|
|
|
+type TableEvent_Type int32
|
|
|
+
|
|
|
+const (
|
|
|
+ TableEventTypeInvalid TableEvent_Type = 0
|
|
|
+ // Create signifies that this table entry was just
|
|
|
+ // created.
|
|
|
+ TableEventTypeCreate TableEvent_Type = 1
|
|
|
+ // Update signifies that this table entry was just
|
|
|
+ // updated.
|
|
|
+ TableEventTypeUpdate TableEvent_Type = 2
|
|
|
+ // Delete signifies that this table entry was just
|
|
|
+ // updated.
|
|
|
+ TableEventTypeDelete TableEvent_Type = 3
|
|
|
+)
|
|
|
+
|
|
|
+var TableEvent_Type_name = map[int32]string{
|
|
|
+ 0: "INVALID",
|
|
|
+ 1: "CREATE",
|
|
|
+ 2: "UPDATE",
|
|
|
+ 3: "DELETE",
|
|
|
+}
|
|
|
+var TableEvent_Type_value = map[string]int32{
|
|
|
+ "INVALID": 0,
|
|
|
+ "CREATE": 1,
|
|
|
+ "UPDATE": 2,
|
|
|
+ "DELETE": 3,
|
|
|
+}
|
|
|
+
|
|
|
+func (x TableEvent_Type) String() string {
|
|
|
+ return proto.EnumName(TableEvent_Type_name, int32(x))
|
|
|
+}
|
|
|
+func (TableEvent_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{4, 0} }
|
|
|
+
|
|
|
+// GossipMessage is a basic message header used by all messages types.
|
|
|
+type GossipMessage struct {
|
|
|
+ Type MessageType `protobuf:"varint,1,opt,name=type,proto3,enum=networkdb.MessageType" json:"type,omitempty"`
|
|
|
+ Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *GossipMessage) Reset() { *m = GossipMessage{} }
|
|
|
+func (*GossipMessage) ProtoMessage() {}
|
|
|
+func (*GossipMessage) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{0} }
|
|
|
+
|
|
|
+// NetworkEvent message payload definition.
|
|
|
+type NetworkEvent struct {
|
|
|
+ Type NetworkEvent_Type `protobuf:"varint,1,opt,name=type,proto3,enum=networkdb.NetworkEvent_Type" json:"type,omitempty"`
|
|
|
+ // Lamport time using a network lamport clock indicating the
|
|
|
+ // time this event was generated on the node where it was
|
|
|
+ // generated.
|
|
|
+ LTime github_com_hashicorp_serf_serf.LamportTime `protobuf:"varint,2,opt,name=l_time,json=lTime,proto3,customtype=github.com/hashicorp/serf/serf.LamportTime" json:"l_time"`
|
|
|
+ // Source node name.
|
|
|
+ NodeName string `protobuf:"bytes,3,opt,name=node_name,json=nodeName,proto3" json:"node_name,omitempty"`
|
|
|
+ // ID of the network for which the event is generated.
|
|
|
+ NetworkID string `protobuf:"bytes,4,opt,name=network_id,json=networkId,proto3" json:"network_id,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEvent) Reset() { *m = NetworkEvent{} }
|
|
|
+func (*NetworkEvent) ProtoMessage() {}
|
|
|
+func (*NetworkEvent) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{1} }
|
|
|
+
|
|
|
+// NetworkEntry for push pull of networks.
|
|
|
+type NetworkEntry struct {
|
|
|
+ // ID of the network
|
|
|
+ NetworkID string `protobuf:"bytes,1,opt,name=network_id,json=networkId,proto3" json:"network_id,omitempty"`
|
|
|
+ // Latest lamport time of the network attachment when this
|
|
|
+ // network event was recorded.
|
|
|
+ LTime github_com_hashicorp_serf_serf.LamportTime `protobuf:"varint,2,opt,name=l_time,json=lTime,proto3,customtype=github.com/hashicorp/serf/serf.LamportTime" json:"l_time"`
|
|
|
+ // Source node name where this network attachment happened.
|
|
|
+ NodeName string `protobuf:"bytes,3,opt,name=node_name,json=nodeName,proto3" json:"node_name,omitempty"`
|
|
|
+ // Indicates if a leave from this network is in progress.
|
|
|
+ Leaving bool `protobuf:"varint,4,opt,name=leaving,proto3" json:"leaving,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEntry) Reset() { *m = NetworkEntry{} }
|
|
|
+func (*NetworkEntry) ProtoMessage() {}
|
|
|
+func (*NetworkEntry) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{2} }
|
|
|
+
|
|
|
+// NetworkPushpull message payload definition.
|
|
|
+type NetworkPushPull struct {
|
|
|
+ // Lamport time when this push pull was initiated.
|
|
|
+ LTime github_com_hashicorp_serf_serf.LamportTime `protobuf:"varint,1,opt,name=l_time,json=lTime,proto3,customtype=github.com/hashicorp/serf/serf.LamportTime" json:"l_time"`
|
|
|
+ Networks []*NetworkEntry `protobuf:"bytes,2,rep,name=networks" json:"networks,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkPushPull) Reset() { *m = NetworkPushPull{} }
|
|
|
+func (*NetworkPushPull) ProtoMessage() {}
|
|
|
+func (*NetworkPushPull) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{3} }
|
|
|
+
|
|
|
+func (m *NetworkPushPull) GetNetworks() []*NetworkEntry {
|
|
|
+ if m != nil {
|
|
|
+ return m.Networks
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// TableEvent message payload definition.
|
|
|
+type TableEvent struct {
|
|
|
+ Type TableEvent_Type `protobuf:"varint,1,opt,name=type,proto3,enum=networkdb.TableEvent_Type" json:"type,omitempty"`
|
|
|
+ // Lamport time when this event was generated.
|
|
|
+ LTime github_com_hashicorp_serf_serf.LamportTime `protobuf:"varint,2,opt,name=l_time,json=lTime,proto3,customtype=github.com/hashicorp/serf/serf.LamportTime" json:"l_time"`
|
|
|
+ // Node name where this event originated.
|
|
|
+ NodeName string `protobuf:"bytes,3,opt,name=node_name,json=nodeName,proto3" json:"node_name,omitempty"`
|
|
|
+ // ID of the network to which this table entry belongs.
|
|
|
+ NetworkID string `protobuf:"bytes,4,opt,name=network_id,json=networkId,proto3" json:"network_id,omitempty"`
|
|
|
+ // Name of the table to which this table entry belongs.
|
|
|
+ TableName string `protobuf:"bytes,5,opt,name=table_name,json=tableName,proto3" json:"table_name,omitempty"`
|
|
|
+ // Entry key.
|
|
|
+ Key string `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
+ // Entry value.
|
|
|
+ Value []byte `protobuf:"bytes,7,opt,name=value,proto3" json:"value,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *TableEvent) Reset() { *m = TableEvent{} }
|
|
|
+func (*TableEvent) ProtoMessage() {}
|
|
|
+func (*TableEvent) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{4} }
|
|
|
+
|
|
|
+// BulkSync message payload definition.
|
|
|
+type BulkSyncMessage struct {
|
|
|
+ // Lamport time when this bulk sync was initiated.
|
|
|
+ LTime github_com_hashicorp_serf_serf.LamportTime `protobuf:"varint,1,opt,name=l_time,json=lTime,proto3,customtype=github.com/hashicorp/serf/serf.LamportTime" json:"l_time"`
|
|
|
+ // Indicates if this bulksync is a response to a bulk sync
|
|
|
+ // request from a peer node.
|
|
|
+ Unsolicited bool `protobuf:"varint,2,opt,name=unsolicited,proto3" json:"unsolicited,omitempty"`
|
|
|
+ // Name of the node which is producing this bulk sync message.
|
|
|
+ NodeName string `protobuf:"bytes,3,opt,name=node_name,json=nodeName,proto3" json:"node_name,omitempty"`
|
|
|
+ // List of network names whose table entries are getting
|
|
|
+ // bulksynced as part of the bulksync.
|
|
|
+ Networks []string `protobuf:"bytes,4,rep,name=networks" json:"networks,omitempty"`
|
|
|
+ // Bulksync payload
|
|
|
+ Payload []byte `protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *BulkSyncMessage) Reset() { *m = BulkSyncMessage{} }
|
|
|
+func (*BulkSyncMessage) ProtoMessage() {}
|
|
|
+func (*BulkSyncMessage) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{5} }
|
|
|
+
|
|
|
+// Compound message payload definition.
|
|
|
+type CompoundMessage struct {
|
|
|
+ // A list of simple messages.
|
|
|
+ Messages []*CompoundMessage_SimpleMessage `protobuf:"bytes,1,rep,name=messages" json:"messages,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage) Reset() { *m = CompoundMessage{} }
|
|
|
+func (*CompoundMessage) ProtoMessage() {}
|
|
|
+func (*CompoundMessage) Descriptor() ([]byte, []int) { return fileDescriptorNetworkdb, []int{6} }
|
|
|
+
|
|
|
+func (m *CompoundMessage) GetMessages() []*CompoundMessage_SimpleMessage {
|
|
|
+ if m != nil {
|
|
|
+ return m.Messages
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+type CompoundMessage_SimpleMessage struct {
|
|
|
+ // Bytestring payload of a message constructed using
|
|
|
+ // other message type definitions.
|
|
|
+ Payload []byte `protobuf:"bytes,1,opt,name=Payload,json=payload,proto3" json:"Payload,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage_SimpleMessage) Reset() { *m = CompoundMessage_SimpleMessage{} }
|
|
|
+func (*CompoundMessage_SimpleMessage) ProtoMessage() {}
|
|
|
+func (*CompoundMessage_SimpleMessage) Descriptor() ([]byte, []int) {
|
|
|
+ return fileDescriptorNetworkdb, []int{6, 0}
|
|
|
+}
|
|
|
+
|
|
|
+func init() {
|
|
|
+ proto.RegisterType((*GossipMessage)(nil), "networkdb.GossipMessage")
|
|
|
+ proto.RegisterType((*NetworkEvent)(nil), "networkdb.NetworkEvent")
|
|
|
+ proto.RegisterType((*NetworkEntry)(nil), "networkdb.NetworkEntry")
|
|
|
+ proto.RegisterType((*NetworkPushPull)(nil), "networkdb.NetworkPushPull")
|
|
|
+ proto.RegisterType((*TableEvent)(nil), "networkdb.TableEvent")
|
|
|
+ proto.RegisterType((*BulkSyncMessage)(nil), "networkdb.BulkSyncMessage")
|
|
|
+ proto.RegisterType((*CompoundMessage)(nil), "networkdb.CompoundMessage")
|
|
|
+ proto.RegisterType((*CompoundMessage_SimpleMessage)(nil), "networkdb.CompoundMessage.SimpleMessage")
|
|
|
+ proto.RegisterEnum("networkdb.MessageType", MessageType_name, MessageType_value)
|
|
|
+ proto.RegisterEnum("networkdb.NetworkEvent_Type", NetworkEvent_Type_name, NetworkEvent_Type_value)
|
|
|
+ proto.RegisterEnum("networkdb.TableEvent_Type", TableEvent_Type_name, TableEvent_Type_value)
|
|
|
+}
|
|
|
+func (this *GossipMessage) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 6)
|
|
|
+ s = append(s, "&networkdb.GossipMessage{")
|
|
|
+ s = append(s, "Type: "+fmt.Sprintf("%#v", this.Type)+",\n")
|
|
|
+ s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *NetworkEvent) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 8)
|
|
|
+ s = append(s, "&networkdb.NetworkEvent{")
|
|
|
+ s = append(s, "Type: "+fmt.Sprintf("%#v", this.Type)+",\n")
|
|
|
+ s = append(s, "LTime: "+fmt.Sprintf("%#v", this.LTime)+",\n")
|
|
|
+ s = append(s, "NodeName: "+fmt.Sprintf("%#v", this.NodeName)+",\n")
|
|
|
+ s = append(s, "NetworkID: "+fmt.Sprintf("%#v", this.NetworkID)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *NetworkEntry) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 8)
|
|
|
+ s = append(s, "&networkdb.NetworkEntry{")
|
|
|
+ s = append(s, "NetworkID: "+fmt.Sprintf("%#v", this.NetworkID)+",\n")
|
|
|
+ s = append(s, "LTime: "+fmt.Sprintf("%#v", this.LTime)+",\n")
|
|
|
+ s = append(s, "NodeName: "+fmt.Sprintf("%#v", this.NodeName)+",\n")
|
|
|
+ s = append(s, "Leaving: "+fmt.Sprintf("%#v", this.Leaving)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *NetworkPushPull) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 6)
|
|
|
+ s = append(s, "&networkdb.NetworkPushPull{")
|
|
|
+ s = append(s, "LTime: "+fmt.Sprintf("%#v", this.LTime)+",\n")
|
|
|
+ if this.Networks != nil {
|
|
|
+ s = append(s, "Networks: "+fmt.Sprintf("%#v", this.Networks)+",\n")
|
|
|
+ }
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *TableEvent) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 11)
|
|
|
+ s = append(s, "&networkdb.TableEvent{")
|
|
|
+ s = append(s, "Type: "+fmt.Sprintf("%#v", this.Type)+",\n")
|
|
|
+ s = append(s, "LTime: "+fmt.Sprintf("%#v", this.LTime)+",\n")
|
|
|
+ s = append(s, "NodeName: "+fmt.Sprintf("%#v", this.NodeName)+",\n")
|
|
|
+ s = append(s, "NetworkID: "+fmt.Sprintf("%#v", this.NetworkID)+",\n")
|
|
|
+ s = append(s, "TableName: "+fmt.Sprintf("%#v", this.TableName)+",\n")
|
|
|
+ s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n")
|
|
|
+ s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *BulkSyncMessage) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 9)
|
|
|
+ s = append(s, "&networkdb.BulkSyncMessage{")
|
|
|
+ s = append(s, "LTime: "+fmt.Sprintf("%#v", this.LTime)+",\n")
|
|
|
+ s = append(s, "Unsolicited: "+fmt.Sprintf("%#v", this.Unsolicited)+",\n")
|
|
|
+ s = append(s, "NodeName: "+fmt.Sprintf("%#v", this.NodeName)+",\n")
|
|
|
+ s = append(s, "Networks: "+fmt.Sprintf("%#v", this.Networks)+",\n")
|
|
|
+ s = append(s, "Payload: "+fmt.Sprintf("%#v", this.Payload)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *CompoundMessage) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 5)
|
|
|
+ s = append(s, "&networkdb.CompoundMessage{")
|
|
|
+ if this.Messages != nil {
|
|
|
+ s = append(s, "Messages: "+fmt.Sprintf("%#v", this.Messages)+",\n")
|
|
|
+ }
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func (this *CompoundMessage_SimpleMessage) GoString() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := make([]string, 0, 5)
|
|
|
+ s = append(s, "&networkdb.CompoundMessage_SimpleMessage{")
|
|
|
+ s = append(s, "Payload: "+fmt.Sprintf("%#v", this.Payload)+",\n")
|
|
|
+ s = append(s, "}")
|
|
|
+ return strings.Join(s, "")
|
|
|
+}
|
|
|
+func valueToGoStringNetworkdb(v interface{}, typ string) string {
|
|
|
+ rv := reflect.ValueOf(v)
|
|
|
+ if rv.IsNil() {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ pv := reflect.Indirect(rv).Interface()
|
|
|
+ return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv)
|
|
|
+}
|
|
|
+func extensionToGoStringNetworkdb(e map[int32]github_com_gogo_protobuf_proto.Extension) string {
|
|
|
+ if e == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := "map[int32]proto.Extension{"
|
|
|
+ keys := make([]int, 0, len(e))
|
|
|
+ for k := range e {
|
|
|
+ keys = append(keys, int(k))
|
|
|
+ }
|
|
|
+ sort.Ints(keys)
|
|
|
+ ss := []string{}
|
|
|
+ for _, k := range keys {
|
|
|
+ ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString())
|
|
|
+ }
|
|
|
+ s += strings.Join(ss, ",") + "}"
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (m *GossipMessage) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *GossipMessage) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ data[i] = 0x8
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.Type))
|
|
|
+ }
|
|
|
+ if len(m.Data) > 0 {
|
|
|
+ data[i] = 0x12
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.Data)))
|
|
|
+ i += copy(data[i:], m.Data)
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEvent) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEvent) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ data[i] = 0x8
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.Type))
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ data[i] = 0x10
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if len(m.NodeName) > 0 {
|
|
|
+ data[i] = 0x1a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NodeName)))
|
|
|
+ i += copy(data[i:], m.NodeName)
|
|
|
+ }
|
|
|
+ if len(m.NetworkID) > 0 {
|
|
|
+ data[i] = 0x22
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NetworkID)))
|
|
|
+ i += copy(data[i:], m.NetworkID)
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEntry) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEntry) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if len(m.NetworkID) > 0 {
|
|
|
+ data[i] = 0xa
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NetworkID)))
|
|
|
+ i += copy(data[i:], m.NetworkID)
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ data[i] = 0x10
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if len(m.NodeName) > 0 {
|
|
|
+ data[i] = 0x1a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NodeName)))
|
|
|
+ i += copy(data[i:], m.NodeName)
|
|
|
+ }
|
|
|
+ if m.Leaving {
|
|
|
+ data[i] = 0x20
|
|
|
+ i++
|
|
|
+ if m.Leaving {
|
|
|
+ data[i] = 1
|
|
|
+ } else {
|
|
|
+ data[i] = 0
|
|
|
+ }
|
|
|
+ i++
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkPushPull) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkPushPull) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.LTime != 0 {
|
|
|
+ data[i] = 0x8
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if len(m.Networks) > 0 {
|
|
|
+ for _, msg := range m.Networks {
|
|
|
+ data[i] = 0x12
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(msg.Size()))
|
|
|
+ n, err := msg.MarshalTo(data[i:])
|
|
|
+ if err != nil {
|
|
|
+ return 0, err
|
|
|
+ }
|
|
|
+ i += n
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *TableEvent) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *TableEvent) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ data[i] = 0x8
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.Type))
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ data[i] = 0x10
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if len(m.NodeName) > 0 {
|
|
|
+ data[i] = 0x1a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NodeName)))
|
|
|
+ i += copy(data[i:], m.NodeName)
|
|
|
+ }
|
|
|
+ if len(m.NetworkID) > 0 {
|
|
|
+ data[i] = 0x22
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NetworkID)))
|
|
|
+ i += copy(data[i:], m.NetworkID)
|
|
|
+ }
|
|
|
+ if len(m.TableName) > 0 {
|
|
|
+ data[i] = 0x2a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.TableName)))
|
|
|
+ i += copy(data[i:], m.TableName)
|
|
|
+ }
|
|
|
+ if len(m.Key) > 0 {
|
|
|
+ data[i] = 0x32
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.Key)))
|
|
|
+ i += copy(data[i:], m.Key)
|
|
|
+ }
|
|
|
+ if len(m.Value) > 0 {
|
|
|
+ data[i] = 0x3a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.Value)))
|
|
|
+ i += copy(data[i:], m.Value)
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *BulkSyncMessage) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *BulkSyncMessage) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.LTime != 0 {
|
|
|
+ data[i] = 0x8
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if m.Unsolicited {
|
|
|
+ data[i] = 0x10
|
|
|
+ i++
|
|
|
+ if m.Unsolicited {
|
|
|
+ data[i] = 1
|
|
|
+ } else {
|
|
|
+ data[i] = 0
|
|
|
+ }
|
|
|
+ i++
|
|
|
+ }
|
|
|
+ if len(m.NodeName) > 0 {
|
|
|
+ data[i] = 0x1a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.NodeName)))
|
|
|
+ i += copy(data[i:], m.NodeName)
|
|
|
+ }
|
|
|
+ if len(m.Networks) > 0 {
|
|
|
+ for _, s := range m.Networks {
|
|
|
+ data[i] = 0x22
|
|
|
+ i++
|
|
|
+ l = len(s)
|
|
|
+ for l >= 1<<7 {
|
|
|
+ data[i] = uint8(uint64(l)&0x7f | 0x80)
|
|
|
+ l >>= 7
|
|
|
+ i++
|
|
|
+ }
|
|
|
+ data[i] = uint8(l)
|
|
|
+ i++
|
|
|
+ i += copy(data[i:], s)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if len(m.Payload) > 0 {
|
|
|
+ data[i] = 0x2a
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.Payload)))
|
|
|
+ i += copy(data[i:], m.Payload)
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if len(m.Messages) > 0 {
|
|
|
+ for _, msg := range m.Messages {
|
|
|
+ data[i] = 0xa
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(msg.Size()))
|
|
|
+ n, err := msg.MarshalTo(data[i:])
|
|
|
+ if err != nil {
|
|
|
+ return 0, err
|
|
|
+ }
|
|
|
+ i += n
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage_SimpleMessage) Marshal() (data []byte, err error) {
|
|
|
+ size := m.Size()
|
|
|
+ data = make([]byte, size)
|
|
|
+ n, err := m.MarshalTo(data)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return data[:n], nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage_SimpleMessage) MarshalTo(data []byte) (int, error) {
|
|
|
+ var i int
|
|
|
+ _ = i
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if len(m.Payload) > 0 {
|
|
|
+ data[i] = 0xa
|
|
|
+ i++
|
|
|
+ i = encodeVarintNetworkdb(data, i, uint64(len(m.Payload)))
|
|
|
+ i += copy(data[i:], m.Payload)
|
|
|
+ }
|
|
|
+ return i, nil
|
|
|
+}
|
|
|
+
|
|
|
+func encodeFixed64Networkdb(data []byte, offset int, v uint64) int {
|
|
|
+ data[offset] = uint8(v)
|
|
|
+ data[offset+1] = uint8(v >> 8)
|
|
|
+ data[offset+2] = uint8(v >> 16)
|
|
|
+ data[offset+3] = uint8(v >> 24)
|
|
|
+ data[offset+4] = uint8(v >> 32)
|
|
|
+ data[offset+5] = uint8(v >> 40)
|
|
|
+ data[offset+6] = uint8(v >> 48)
|
|
|
+ data[offset+7] = uint8(v >> 56)
|
|
|
+ return offset + 8
|
|
|
+}
|
|
|
+func encodeFixed32Networkdb(data []byte, offset int, v uint32) int {
|
|
|
+ data[offset] = uint8(v)
|
|
|
+ data[offset+1] = uint8(v >> 8)
|
|
|
+ data[offset+2] = uint8(v >> 16)
|
|
|
+ data[offset+3] = uint8(v >> 24)
|
|
|
+ return offset + 4
|
|
|
+}
|
|
|
+func encodeVarintNetworkdb(data []byte, offset int, v uint64) int {
|
|
|
+ for v >= 1<<7 {
|
|
|
+ data[offset] = uint8(v&0x7f | 0x80)
|
|
|
+ v >>= 7
|
|
|
+ offset++
|
|
|
+ }
|
|
|
+ data[offset] = uint8(v)
|
|
|
+ return offset + 1
|
|
|
+}
|
|
|
+func (m *GossipMessage) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.Type))
|
|
|
+ }
|
|
|
+ l = len(m.Data)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEvent) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.Type))
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.LTime))
|
|
|
+ }
|
|
|
+ l = len(m.NodeName)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ l = len(m.NetworkID)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkEntry) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ l = len(m.NetworkID)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.LTime))
|
|
|
+ }
|
|
|
+ l = len(m.NodeName)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ if m.Leaving {
|
|
|
+ n += 2
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *NetworkPushPull) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.LTime != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if len(m.Networks) > 0 {
|
|
|
+ for _, e := range m.Networks {
|
|
|
+ l = e.Size()
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *TableEvent) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.Type != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.Type))
|
|
|
+ }
|
|
|
+ if m.LTime != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.LTime))
|
|
|
+ }
|
|
|
+ l = len(m.NodeName)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ l = len(m.NetworkID)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ l = len(m.TableName)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ l = len(m.Key)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ l = len(m.Value)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *BulkSyncMessage) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if m.LTime != 0 {
|
|
|
+ n += 1 + sovNetworkdb(uint64(m.LTime))
|
|
|
+ }
|
|
|
+ if m.Unsolicited {
|
|
|
+ n += 2
|
|
|
+ }
|
|
|
+ l = len(m.NodeName)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ if len(m.Networks) > 0 {
|
|
|
+ for _, s := range m.Networks {
|
|
|
+ l = len(s)
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ l = len(m.Payload)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ if len(m.Messages) > 0 {
|
|
|
+ for _, e := range m.Messages {
|
|
|
+ l = e.Size()
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func (m *CompoundMessage_SimpleMessage) Size() (n int) {
|
|
|
+ var l int
|
|
|
+ _ = l
|
|
|
+ l = len(m.Payload)
|
|
|
+ if l > 0 {
|
|
|
+ n += 1 + l + sovNetworkdb(uint64(l))
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+
|
|
|
+func sovNetworkdb(x uint64) (n int) {
|
|
|
+ for {
|
|
|
+ n++
|
|
|
+ x >>= 7
|
|
|
+ if x == 0 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return n
|
|
|
+}
|
|
|
+func sozNetworkdb(x uint64) (n int) {
|
|
|
+ return sovNetworkdb(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
|
|
+}
|
|
|
+func (this *GossipMessage) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&GossipMessage{`,
|
|
|
+ `Type:` + fmt.Sprintf("%v", this.Type) + `,`,
|
|
|
+ `Data:` + fmt.Sprintf("%v", this.Data) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *NetworkEvent) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&NetworkEvent{`,
|
|
|
+ `Type:` + fmt.Sprintf("%v", this.Type) + `,`,
|
|
|
+ `LTime:` + fmt.Sprintf("%v", this.LTime) + `,`,
|
|
|
+ `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
|
|
|
+ `NetworkID:` + fmt.Sprintf("%v", this.NetworkID) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *NetworkEntry) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&NetworkEntry{`,
|
|
|
+ `NetworkID:` + fmt.Sprintf("%v", this.NetworkID) + `,`,
|
|
|
+ `LTime:` + fmt.Sprintf("%v", this.LTime) + `,`,
|
|
|
+ `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
|
|
|
+ `Leaving:` + fmt.Sprintf("%v", this.Leaving) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *NetworkPushPull) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&NetworkPushPull{`,
|
|
|
+ `LTime:` + fmt.Sprintf("%v", this.LTime) + `,`,
|
|
|
+ `Networks:` + strings.Replace(fmt.Sprintf("%v", this.Networks), "NetworkEntry", "NetworkEntry", 1) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *TableEvent) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&TableEvent{`,
|
|
|
+ `Type:` + fmt.Sprintf("%v", this.Type) + `,`,
|
|
|
+ `LTime:` + fmt.Sprintf("%v", this.LTime) + `,`,
|
|
|
+ `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
|
|
|
+ `NetworkID:` + fmt.Sprintf("%v", this.NetworkID) + `,`,
|
|
|
+ `TableName:` + fmt.Sprintf("%v", this.TableName) + `,`,
|
|
|
+ `Key:` + fmt.Sprintf("%v", this.Key) + `,`,
|
|
|
+ `Value:` + fmt.Sprintf("%v", this.Value) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *BulkSyncMessage) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&BulkSyncMessage{`,
|
|
|
+ `LTime:` + fmt.Sprintf("%v", this.LTime) + `,`,
|
|
|
+ `Unsolicited:` + fmt.Sprintf("%v", this.Unsolicited) + `,`,
|
|
|
+ `NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
|
|
|
+ `Networks:` + fmt.Sprintf("%v", this.Networks) + `,`,
|
|
|
+ `Payload:` + fmt.Sprintf("%v", this.Payload) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *CompoundMessage) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&CompoundMessage{`,
|
|
|
+ `Messages:` + strings.Replace(fmt.Sprintf("%v", this.Messages), "CompoundMessage_SimpleMessage", "CompoundMessage_SimpleMessage", 1) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func (this *CompoundMessage_SimpleMessage) String() string {
|
|
|
+ if this == nil {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ s := strings.Join([]string{`&CompoundMessage_SimpleMessage{`,
|
|
|
+ `Payload:` + fmt.Sprintf("%v", this.Payload) + `,`,
|
|
|
+ `}`,
|
|
|
+ }, "")
|
|
|
+ return s
|
|
|
+}
|
|
|
+func valueToStringNetworkdb(v interface{}) string {
|
|
|
+ rv := reflect.ValueOf(v)
|
|
|
+ if rv.IsNil() {
|
|
|
+ return "nil"
|
|
|
+ }
|
|
|
+ pv := reflect.Indirect(rv).Interface()
|
|
|
+ return fmt.Sprintf("*%v", pv)
|
|
|
+}
|
|
|
+func (m *GossipMessage) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: GossipMessage: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: GossipMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
|
|
|
+ }
|
|
|
+ m.Type = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.Type |= (MessageType(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
|
|
|
+ }
|
|
|
+ var byteLen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ byteLen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if byteLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + byteLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Data = append(m.Data[:0], data[iNdEx:postIndex]...)
|
|
|
+ if m.Data == nil {
|
|
|
+ m.Data = []byte{}
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *NetworkEvent) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: NetworkEvent: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: NetworkEvent: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
|
|
|
+ }
|
|
|
+ m.Type = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.Type |= (NetworkEvent_Type(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field LTime", wireType)
|
|
|
+ }
|
|
|
+ m.LTime = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.LTime |= (github_com_hashicorp_serf_serf.LamportTime(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 3:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NodeName = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 4:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NetworkID", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NetworkID = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *NetworkEntry) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: NetworkEntry: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: NetworkEntry: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NetworkID", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NetworkID = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 2:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field LTime", wireType)
|
|
|
+ }
|
|
|
+ m.LTime = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.LTime |= (github_com_hashicorp_serf_serf.LamportTime(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 3:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NodeName = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 4:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Leaving", wireType)
|
|
|
+ }
|
|
|
+ var v int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ v |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ m.Leaving = bool(v != 0)
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *NetworkPushPull) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: NetworkPushPull: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: NetworkPushPull: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field LTime", wireType)
|
|
|
+ }
|
|
|
+ m.LTime = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.LTime |= (github_com_hashicorp_serf_serf.LamportTime(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Networks", wireType)
|
|
|
+ }
|
|
|
+ var msglen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ msglen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if msglen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + msglen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Networks = append(m.Networks, &NetworkEntry{})
|
|
|
+ if err := m.Networks[len(m.Networks)-1].Unmarshal(data[iNdEx:postIndex]); err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *TableEvent) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: TableEvent: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: TableEvent: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
|
|
|
+ }
|
|
|
+ m.Type = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.Type |= (TableEvent_Type(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field LTime", wireType)
|
|
|
+ }
|
|
|
+ m.LTime = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.LTime |= (github_com_hashicorp_serf_serf.LamportTime(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 3:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NodeName = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 4:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NetworkID", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NetworkID = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 5:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field TableName", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.TableName = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 6:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Key = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 7:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType)
|
|
|
+ }
|
|
|
+ var byteLen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ byteLen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if byteLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + byteLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Value = append(m.Value[:0], data[iNdEx:postIndex]...)
|
|
|
+ if m.Value == nil {
|
|
|
+ m.Value = []byte{}
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *BulkSyncMessage) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: BulkSyncMessage: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: BulkSyncMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field LTime", wireType)
|
|
|
+ }
|
|
|
+ m.LTime = 0
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ m.LTime |= (github_com_hashicorp_serf_serf.LamportTime(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ case 2:
|
|
|
+ if wireType != 0 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Unsolicited", wireType)
|
|
|
+ }
|
|
|
+ var v int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ v |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ m.Unsolicited = bool(v != 0)
|
|
|
+ case 3:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NodeName", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.NodeName = string(data[iNdEx:postIndex])
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 4:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Networks", wireType)
|
|
|
+ }
|
|
|
+ var stringLen uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ stringLen |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ intStringLen := int(stringLen)
|
|
|
+ if intStringLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + intStringLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Networks = append(m.Networks, string(data[iNdEx:postIndex]))
|
|
|
+ iNdEx = postIndex
|
|
|
+ case 5:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Payload", wireType)
|
|
|
+ }
|
|
|
+ var byteLen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ byteLen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if byteLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + byteLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Payload = append(m.Payload[:0], data[iNdEx:postIndex]...)
|
|
|
+ if m.Payload == nil {
|
|
|
+ m.Payload = []byte{}
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *CompoundMessage) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: CompoundMessage: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: CompoundMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Messages", wireType)
|
|
|
+ }
|
|
|
+ var msglen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ msglen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if msglen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + msglen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Messages = append(m.Messages, &CompoundMessage_SimpleMessage{})
|
|
|
+ if err := m.Messages[len(m.Messages)-1].Unmarshal(data[iNdEx:postIndex]); err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *CompoundMessage_SimpleMessage) Unmarshal(data []byte) error {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ preIndex := iNdEx
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fieldNum := int32(wire >> 3)
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ if wireType == 4 {
|
|
|
+ return fmt.Errorf("proto: SimpleMessage: wiretype end group for non-group")
|
|
|
+ }
|
|
|
+ if fieldNum <= 0 {
|
|
|
+ return fmt.Errorf("proto: SimpleMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
+ }
|
|
|
+ switch fieldNum {
|
|
|
+ case 1:
|
|
|
+ if wireType != 2 {
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Payload", wireType)
|
|
|
+ }
|
|
|
+ var byteLen int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ byteLen |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if byteLen < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ postIndex := iNdEx + byteLen
|
|
|
+ if postIndex > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ m.Payload = append(m.Payload[:0], data[iNdEx:postIndex]...)
|
|
|
+ if m.Payload == nil {
|
|
|
+ m.Payload = []byte{}
|
|
|
+ }
|
|
|
+ iNdEx = postIndex
|
|
|
+ default:
|
|
|
+ iNdEx = preIndex
|
|
|
+ skippy, err := skipNetworkdb(data[iNdEx:])
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ if skippy < 0 {
|
|
|
+ return ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ if (iNdEx + skippy) > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx += skippy
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if iNdEx > l {
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func skipNetworkdb(data []byte) (n int, err error) {
|
|
|
+ l := len(data)
|
|
|
+ iNdEx := 0
|
|
|
+ for iNdEx < l {
|
|
|
+ var wire uint64
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return 0, ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
+ switch wireType {
|
|
|
+ case 0:
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return 0, ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ iNdEx++
|
|
|
+ if data[iNdEx-1] < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return iNdEx, nil
|
|
|
+ case 1:
|
|
|
+ iNdEx += 8
|
|
|
+ return iNdEx, nil
|
|
|
+ case 2:
|
|
|
+ var length int
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return 0, ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ length |= (int(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ iNdEx += length
|
|
|
+ if length < 0 {
|
|
|
+ return 0, ErrInvalidLengthNetworkdb
|
|
|
+ }
|
|
|
+ return iNdEx, nil
|
|
|
+ case 3:
|
|
|
+ for {
|
|
|
+ var innerWire uint64
|
|
|
+ var start int = iNdEx
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
+ if shift >= 64 {
|
|
|
+ return 0, ErrIntOverflowNetworkdb
|
|
|
+ }
|
|
|
+ if iNdEx >= l {
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
+ }
|
|
|
+ b := data[iNdEx]
|
|
|
+ iNdEx++
|
|
|
+ innerWire |= (uint64(b) & 0x7F) << shift
|
|
|
+ if b < 0x80 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ innerWireType := int(innerWire & 0x7)
|
|
|
+ if innerWireType == 4 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+ next, err := skipNetworkdb(data[start:])
|
|
|
+ if err != nil {
|
|
|
+ return 0, err
|
|
|
+ }
|
|
|
+ iNdEx = start + next
|
|
|
+ }
|
|
|
+ return iNdEx, nil
|
|
|
+ case 4:
|
|
|
+ return iNdEx, nil
|
|
|
+ case 5:
|
|
|
+ iNdEx += 4
|
|
|
+ return iNdEx, nil
|
|
|
+ default:
|
|
|
+ return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ panic("unreachable")
|
|
|
+}
|
|
|
+
|
|
|
+var (
|
|
|
+ ErrInvalidLengthNetworkdb = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
|
+ ErrIntOverflowNetworkdb = fmt.Errorf("proto: integer overflow")
|
|
|
+)
|
|
|
+
|
|
|
+var fileDescriptorNetworkdb = []byte{
|
|
|
+ // 812 bytes of a gzipped FileDescriptorProto
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x95, 0x4d, 0x6f, 0xe2, 0x46,
|
|
|
+ 0x18, 0xc7, 0x31, 0x18, 0x02, 0x0f, 0xd0, 0x20, 0x27, 0x4d, 0x5c, 0xa7, 0x25, 0x91, 0x9b, 0x46,
|
|
|
+ 0x14, 0x55, 0x4e, 0x95, 0x7c, 0x02, 0x5e, 0xac, 0x96, 0xc4, 0x31, 0xc8, 0x40, 0xaa, 0x9e, 0x90,
|
|
|
+ 0xc1, 0x53, 0xb0, 0x62, 0x6c, 0x0b, 0x9b, 0x54, 0xdc, 0xaa, 0x9e, 0xa2, 0xde, 0x7a, 0xad, 0xd4,
|
|
|
+ 0x53, 0x7b, 0xee, 0x07, 0xe8, 0xa1, 0xe7, 0xa8, 0xa7, 0xf6, 0xb6, 0xda, 0x43, 0xb4, 0xc9, 0x27,
|
|
|
+ 0xd8, 0x8f, 0xb0, 0xe3, 0xc1, 0x86, 0x81, 0x44, 0xb9, 0xec, 0x6a, 0xb5, 0x07, 0xc3, 0xbc, 0xfc,
|
|
|
+ 0xe6, 0xd1, 0xff, 0x79, 0xe6, 0x3f, 0x33, 0xb0, 0x69, 0x23, 0xff, 0x47, 0x67, 0x72, 0x65, 0xf4,
|
|
|
+ 0x25, 0x77, 0xe2, 0xf8, 0x0e, 0x97, 0x59, 0x0c, 0x08, 0xdb, 0x43, 0x67, 0xe8, 0x90, 0xd1, 0xe3,
|
|
|
+ 0xa0, 0x35, 0x07, 0xc4, 0x26, 0xe4, 0xbf, 0x71, 0x3c, 0xcf, 0x74, 0x2f, 0x90, 0xe7, 0xe9, 0x43,
|
|
|
+ 0xc4, 0x95, 0x81, 0xf5, 0x67, 0x2e, 0xe2, 0x99, 0x03, 0xa6, 0xf4, 0xd1, 0xc9, 0x8e, 0xb4, 0x8c,
|
|
|
+ 0x18, 0x12, 0x1d, 0x3c, 0xab, 0x11, 0x86, 0xe3, 0x80, 0x35, 0x74, 0x5f, 0xe7, 0xe3, 0x98, 0xcd,
|
|
|
+ 0x69, 0xa4, 0x2d, 0xde, 0xc7, 0x21, 0xa7, 0xce, 0xd7, 0xc8, 0xd7, 0xc8, 0xf6, 0xb9, 0xaf, 0x57,
|
|
|
+ 0x02, 0x7e, 0x4a, 0x05, 0xa4, 0x31, 0x89, 0x0a, 0xdb, 0x80, 0x94, 0xd5, 0xf3, 0xcd, 0x31, 0x22,
|
|
|
+ 0x81, 0xd9, 0xea, 0xc9, 0xed, 0xdd, 0x7e, 0xec, 0xe5, 0xdd, 0x7e, 0x79, 0x68, 0xfa, 0xa3, 0x69,
|
|
|
+ 0x5f, 0x1a, 0x38, 0xe3, 0xe3, 0x91, 0xee, 0x8d, 0xcc, 0x81, 0x33, 0x71, 0x8f, 0x3d, 0x34, 0xf9,
|
|
|
+ 0x81, 0xfc, 0x48, 0x8a, 0x3e, 0x76, 0x9d, 0x89, 0xdf, 0xc1, 0x2b, 0xb5, 0xa4, 0x15, 0xfc, 0x71,
|
|
|
+ 0x7b, 0x90, 0xb1, 0x1d, 0x03, 0xf5, 0x6c, 0x1d, 0x47, 0x4b, 0xe0, 0x68, 0x19, 0x2d, 0x1d, 0x0c,
|
|
|
+ 0xa8, 0xb8, 0xcf, 0x7d, 0x05, 0x10, 0x8a, 0xe9, 0x99, 0x06, 0xcf, 0x06, 0xb3, 0xd5, 0xfc, 0xc3,
|
|
|
+ 0xdd, 0x7e, 0x26, 0x14, 0xd6, 0xa8, 0x6b, 0x51, 0xfd, 0x1a, 0x86, 0x78, 0xc3, 0x00, 0x1b, 0x88,
|
|
|
+ 0xe4, 0x4a, 0xb0, 0xd1, 0x50, 0x2f, 0x2b, 0x4a, 0xa3, 0x5e, 0x88, 0x09, 0x7b, 0xbf, 0xfc, 0x7e,
|
|
|
+ 0xb0, 0x4b, 0x27, 0x12, 0x20, 0x0d, 0xfb, 0x5a, 0xb7, 0x4c, 0x83, 0x13, 0x81, 0x3d, 0x6b, 0x36,
|
|
|
+ 0xd4, 0x02, 0x23, 0xf0, 0x18, 0xdb, 0x5e, 0xc7, 0xce, 0x1c, 0xd3, 0xe6, 0x0e, 0x21, 0xa9, 0xc8,
|
|
|
+ 0x95, 0x4b, 0xb9, 0x10, 0x17, 0x3e, 0xc1, 0xd0, 0xc7, 0xeb, 0x90, 0x82, 0xf4, 0x6b, 0x24, 0xe4,
|
|
|
+ 0x6e, 0xfe, 0x28, 0xc6, 0xfe, 0xfe, 0xb3, 0x48, 0x14, 0x88, 0xff, 0x30, 0xcb, 0x1a, 0xdb, 0xfe,
|
|
|
+ 0x64, 0xb6, 0x96, 0x09, 0xf3, 0x7c, 0x26, 0xef, 0xad, 0xbe, 0x3c, 0x6c, 0x58, 0x58, 0xbd, 0x69,
|
|
|
+ 0x0f, 0x49, 0x71, 0xd3, 0x5a, 0xd4, 0x15, 0x7f, 0x65, 0x60, 0x33, 0x94, 0xd6, 0x9a, 0x7a, 0xa3,
|
|
|
+ 0xd6, 0xd4, 0xb2, 0x28, 0x55, 0xcc, 0xdb, 0xaa, 0x3a, 0x85, 0x74, 0x98, 0xad, 0x87, 0x53, 0x4c,
|
|
|
+ 0x94, 0xb2, 0x27, 0xbb, 0x4f, 0xd8, 0x2e, 0xa8, 0x9c, 0xb6, 0x00, 0xc5, 0x7f, 0x13, 0x00, 0x1d,
|
|
|
+ 0xbd, 0x6f, 0xa1, 0xb9, 0x6d, 0xa5, 0x15, 0xdb, 0x0a, 0xd4, 0xfa, 0x25, 0xf4, 0xc1, 0x9b, 0x96,
|
|
|
+ 0xfb, 0x0c, 0xc0, 0x0f, 0xe4, 0xce, 0x63, 0x25, 0x49, 0xac, 0x0c, 0x19, 0x21, 0xc1, 0x0a, 0x90,
|
|
|
+ 0xb8, 0x42, 0x33, 0x3e, 0x45, 0xc6, 0x83, 0x26, 0xb7, 0x0d, 0x49, 0xec, 0xdd, 0x29, 0xe2, 0x37,
|
|
|
+ 0xc8, 0x99, 0x9e, 0x77, 0xc4, 0xbf, 0x22, 0xef, 0x1f, 0xd1, 0xde, 0x27, 0x7e, 0x5d, 0x56, 0x83,
|
|
|
+ 0x76, 0xfe, 0x21, 0xa4, 0x6a, 0x9a, 0x5c, 0xe9, 0xc8, 0x91, 0xf7, 0x57, 0xb1, 0xda, 0x04, 0xe9,
|
|
|
+ 0x3e, 0x0a, 0xa8, 0x6e, 0xab, 0x1e, 0x50, 0xf1, 0xa7, 0xa8, 0xae, 0x6b, 0x84, 0x54, 0x5d, 0x56,
|
|
|
+ 0x64, 0x4c, 0x25, 0x9e, 0xa2, 0xea, 0xc8, 0x42, 0xfe, 0xfa, 0x09, 0xf9, 0x1f, 0x1b, 0xac, 0x3a,
|
|
|
+ 0xb5, 0xae, 0xda, 0x33, 0x7b, 0x10, 0xdd, 0x6c, 0xef, 0xd0, 0x60, 0x07, 0x90, 0x9d, 0xda, 0x9e,
|
|
|
+ 0x63, 0x99, 0x03, 0xd3, 0x47, 0x06, 0xd9, 0xf1, 0xb4, 0x46, 0x0f, 0x3d, 0xbf, 0x87, 0x02, 0xe5,
|
|
|
+ 0x4f, 0x16, 0xfb, 0x33, 0xb3, 0xb4, 0x61, 0x70, 0x68, 0x5c, 0x7d, 0x66, 0x39, 0xba, 0x41, 0xb6,
|
|
|
+ 0x2b, 0xa7, 0x45, 0x5d, 0xf1, 0x67, 0x9c, 0x53, 0xcd, 0xc1, 0x5a, 0xa6, 0xb6, 0x11, 0xe5, 0x54,
|
|
|
+ 0x87, 0xf4, 0x78, 0xde, 0xf4, 0x70, 0x56, 0x81, 0xd3, 0x4b, 0x94, 0x53, 0xd7, 0x68, 0xa9, 0x6d,
|
|
|
+ 0x8e, 0x5d, 0x0b, 0x85, 0x3d, 0x6d, 0xb1, 0x52, 0xf8, 0x12, 0xf2, 0x2b, 0x53, 0x81, 0x88, 0x56,
|
|
|
+ 0x28, 0x82, 0x59, 0x11, 0x51, 0xfe, 0x2d, 0x0e, 0x59, 0xea, 0x21, 0xe0, 0x3e, 0xa7, 0x0d, 0xb1,
|
|
|
+ 0x83, 0x77, 0x87, 0xa3, 0x66, 0x23, 0x37, 0x48, 0x90, 0x57, 0xe5, 0xce, 0x77, 0x4d, 0xed, 0xbc,
|
|
|
+ 0x27, 0x5f, 0xca, 0x6a, 0x07, 0x9b, 0x82, 0xdc, 0x9b, 0x14, 0xba, 0xf2, 0x64, 0x94, 0x21, 0xdb,
|
|
|
+ 0xa9, 0x54, 0x15, 0x39, 0xa4, 0xc3, 0x9b, 0x91, 0xa2, 0xa9, 0x73, 0x7a, 0x04, 0x99, 0x56, 0xb7,
|
|
|
+ 0xfd, 0x6d, 0xaf, 0xd5, 0x55, 0x14, 0x6c, 0x90, 0x5d, 0x4c, 0x6e, 0x51, 0xe4, 0xe2, 0x7a, 0xc1,
|
|
|
+ 0x5c, 0xb5, 0xab, 0x9c, 0xf7, 0xda, 0xdf, 0xab, 0xb5, 0x02, 0xfb, 0x88, 0x8b, 0xcc, 0xc2, 0x7d,
|
|
|
+ 0x01, 0xe9, 0x5a, 0xf3, 0xa2, 0xd5, 0xec, 0xaa, 0xf5, 0x42, 0xf2, 0x11, 0x16, 0x55, 0x54, 0xd8,
|
|
|
+ 0x0a, 0xed, 0x46, 0x17, 0xa3, 0xca, 0xbf, 0xb8, 0x2f, 0xc6, 0x5e, 0xdf, 0x17, 0x99, 0x9f, 0x1e,
|
|
|
+ 0x8a, 0xcc, 0x2d, 0xfe, 0xfe, 0xc3, 0xdf, 0x2b, 0xfc, 0xf5, 0x53, 0xe4, 0xb5, 0x3d, 0x7d, 0x13,
|
|
|
+ 0x00, 0x00, 0xff, 0xff, 0x7d, 0x9c, 0x5f, 0x56, 0xa1, 0x07, 0x00, 0x00,
|
|
|
+}
|