fe94237448
* Add address to router query options. Drop Query interface for QueryOptions * Cleanup isMatch function * Update network proto
823 lines
27 KiB
Go
823 lines
27 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: github.com/micro/go-micro/network/proto/network.proto
|
|
|
|
package go_micro_network
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
proto1 "github.com/micro/go-micro/router/proto"
|
|
grpc "google.golang.org/grpc"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// Query is passed in a LookupRequest
|
|
type Query struct {
|
|
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
|
|
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
|
Gateway string `protobuf:"bytes,3,opt,name=gateway,proto3" json:"gateway,omitempty"`
|
|
Router string `protobuf:"bytes,4,opt,name=router,proto3" json:"router,omitempty"`
|
|
Network string `protobuf:"bytes,5,opt,name=network,proto3" json:"network,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Query) Reset() { *m = Query{} }
|
|
func (m *Query) String() string { return proto.CompactTextString(m) }
|
|
func (*Query) ProtoMessage() {}
|
|
func (*Query) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{0}
|
|
}
|
|
|
|
func (m *Query) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Query.Unmarshal(m, b)
|
|
}
|
|
func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Query.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Query) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Query.Merge(m, src)
|
|
}
|
|
func (m *Query) XXX_Size() int {
|
|
return xxx_messageInfo_Query.Size(m)
|
|
}
|
|
func (m *Query) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Query.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Query proto.InternalMessageInfo
|
|
|
|
func (m *Query) GetService() string {
|
|
if m != nil {
|
|
return m.Service
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Query) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Query) GetGateway() string {
|
|
if m != nil {
|
|
return m.Gateway
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Query) GetRouter() string {
|
|
if m != nil {
|
|
return m.Router
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Query) GetNetwork() string {
|
|
if m != nil {
|
|
return m.Network
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// PeerRequest requests list of peers
|
|
type NodesRequest struct {
|
|
// node topology depth
|
|
Depth uint32 `protobuf:"varint,1,opt,name=depth,proto3" json:"depth,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NodesRequest) Reset() { *m = NodesRequest{} }
|
|
func (m *NodesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*NodesRequest) ProtoMessage() {}
|
|
func (*NodesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{1}
|
|
}
|
|
|
|
func (m *NodesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NodesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *NodesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NodesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NodesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NodesRequest.Merge(m, src)
|
|
}
|
|
func (m *NodesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_NodesRequest.Size(m)
|
|
}
|
|
func (m *NodesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NodesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NodesRequest proto.InternalMessageInfo
|
|
|
|
func (m *NodesRequest) GetDepth() uint32 {
|
|
if m != nil {
|
|
return m.Depth
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// PeerResponse is returned by ListPeers
|
|
type NodesResponse struct {
|
|
// return peer topology
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NodesResponse) Reset() { *m = NodesResponse{} }
|
|
func (m *NodesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*NodesResponse) ProtoMessage() {}
|
|
func (*NodesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{2}
|
|
}
|
|
|
|
func (m *NodesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NodesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *NodesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NodesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NodesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NodesResponse.Merge(m, src)
|
|
}
|
|
func (m *NodesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_NodesResponse.Size(m)
|
|
}
|
|
func (m *NodesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NodesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NodesResponse proto.InternalMessageInfo
|
|
|
|
func (m *NodesResponse) GetNodes() []*Node {
|
|
if m != nil {
|
|
return m.Nodes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GraphRequest struct {
|
|
// node topology depth
|
|
Depth uint32 `protobuf:"varint,1,opt,name=depth,proto3" json:"depth,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GraphRequest) Reset() { *m = GraphRequest{} }
|
|
func (m *GraphRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GraphRequest) ProtoMessage() {}
|
|
func (*GraphRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{3}
|
|
}
|
|
|
|
func (m *GraphRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GraphRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GraphRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GraphRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GraphRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GraphRequest.Merge(m, src)
|
|
}
|
|
func (m *GraphRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GraphRequest.Size(m)
|
|
}
|
|
func (m *GraphRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GraphRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GraphRequest proto.InternalMessageInfo
|
|
|
|
func (m *GraphRequest) GetDepth() uint32 {
|
|
if m != nil {
|
|
return m.Depth
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GraphResponse struct {
|
|
Root *Peer `protobuf:"bytes,1,opt,name=root,proto3" json:"root,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GraphResponse) Reset() { *m = GraphResponse{} }
|
|
func (m *GraphResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GraphResponse) ProtoMessage() {}
|
|
func (*GraphResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{4}
|
|
}
|
|
|
|
func (m *GraphResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GraphResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GraphResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GraphResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GraphResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GraphResponse.Merge(m, src)
|
|
}
|
|
func (m *GraphResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GraphResponse.Size(m)
|
|
}
|
|
func (m *GraphResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GraphResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GraphResponse proto.InternalMessageInfo
|
|
|
|
func (m *GraphResponse) GetRoot() *Peer {
|
|
if m != nil {
|
|
return m.Root
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RoutesRequest struct {
|
|
// filter based on
|
|
Query *Query `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RoutesRequest) Reset() { *m = RoutesRequest{} }
|
|
func (m *RoutesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*RoutesRequest) ProtoMessage() {}
|
|
func (*RoutesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{5}
|
|
}
|
|
|
|
func (m *RoutesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RoutesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *RoutesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RoutesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RoutesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RoutesRequest.Merge(m, src)
|
|
}
|
|
func (m *RoutesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_RoutesRequest.Size(m)
|
|
}
|
|
func (m *RoutesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RoutesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RoutesRequest proto.InternalMessageInfo
|
|
|
|
func (m *RoutesRequest) GetQuery() *Query {
|
|
if m != nil {
|
|
return m.Query
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RoutesResponse struct {
|
|
Routes []*proto1.Route `protobuf:"bytes,1,rep,name=routes,proto3" json:"routes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RoutesResponse) Reset() { *m = RoutesResponse{} }
|
|
func (m *RoutesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*RoutesResponse) ProtoMessage() {}
|
|
func (*RoutesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{6}
|
|
}
|
|
|
|
func (m *RoutesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RoutesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *RoutesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RoutesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RoutesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RoutesResponse.Merge(m, src)
|
|
}
|
|
func (m *RoutesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_RoutesResponse.Size(m)
|
|
}
|
|
func (m *RoutesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RoutesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RoutesResponse proto.InternalMessageInfo
|
|
|
|
func (m *RoutesResponse) GetRoutes() []*proto1.Route {
|
|
if m != nil {
|
|
return m.Routes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ServicesRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ServicesRequest) Reset() { *m = ServicesRequest{} }
|
|
func (m *ServicesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ServicesRequest) ProtoMessage() {}
|
|
func (*ServicesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{7}
|
|
}
|
|
|
|
func (m *ServicesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ServicesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ServicesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ServicesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ServicesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ServicesRequest.Merge(m, src)
|
|
}
|
|
func (m *ServicesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ServicesRequest.Size(m)
|
|
}
|
|
func (m *ServicesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ServicesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ServicesRequest proto.InternalMessageInfo
|
|
|
|
type ServicesResponse struct {
|
|
Services []string `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ServicesResponse) Reset() { *m = ServicesResponse{} }
|
|
func (m *ServicesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ServicesResponse) ProtoMessage() {}
|
|
func (*ServicesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{8}
|
|
}
|
|
|
|
func (m *ServicesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ServicesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ServicesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ServicesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ServicesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ServicesResponse.Merge(m, src)
|
|
}
|
|
func (m *ServicesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ServicesResponse.Size(m)
|
|
}
|
|
func (m *ServicesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ServicesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ServicesResponse proto.InternalMessageInfo
|
|
|
|
func (m *ServicesResponse) GetServices() []string {
|
|
if m != nil {
|
|
return m.Services
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Node is network node
|
|
type Node struct {
|
|
// node id
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
// node address
|
|
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Node) Reset() { *m = Node{} }
|
|
func (m *Node) String() string { return proto.CompactTextString(m) }
|
|
func (*Node) ProtoMessage() {}
|
|
func (*Node) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{9}
|
|
}
|
|
|
|
func (m *Node) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Node.Unmarshal(m, b)
|
|
}
|
|
func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Node.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Node) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Node.Merge(m, src)
|
|
}
|
|
func (m *Node) XXX_Size() int {
|
|
return xxx_messageInfo_Node.Size(m)
|
|
}
|
|
func (m *Node) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Node.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Node proto.InternalMessageInfo
|
|
|
|
func (m *Node) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Node) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Connect is sent when the node connects to the network
|
|
type Connect struct {
|
|
// network mode
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Connect) Reset() { *m = Connect{} }
|
|
func (m *Connect) String() string { return proto.CompactTextString(m) }
|
|
func (*Connect) ProtoMessage() {}
|
|
func (*Connect) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{10}
|
|
}
|
|
|
|
func (m *Connect) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Connect.Unmarshal(m, b)
|
|
}
|
|
func (m *Connect) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Connect.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Connect) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Connect.Merge(m, src)
|
|
}
|
|
func (m *Connect) XXX_Size() int {
|
|
return xxx_messageInfo_Connect.Size(m)
|
|
}
|
|
func (m *Connect) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Connect.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Connect proto.InternalMessageInfo
|
|
|
|
func (m *Connect) GetNode() *Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Close is sent when the node disconnects from the network
|
|
type Close struct {
|
|
// network node
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Close) Reset() { *m = Close{} }
|
|
func (m *Close) String() string { return proto.CompactTextString(m) }
|
|
func (*Close) ProtoMessage() {}
|
|
func (*Close) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{11}
|
|
}
|
|
|
|
func (m *Close) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Close.Unmarshal(m, b)
|
|
}
|
|
func (m *Close) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Close.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Close) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Close.Merge(m, src)
|
|
}
|
|
func (m *Close) XXX_Size() int {
|
|
return xxx_messageInfo_Close.Size(m)
|
|
}
|
|
func (m *Close) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Close.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Close proto.InternalMessageInfo
|
|
|
|
func (m *Close) GetNode() *Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Peer is used to advertise node peers
|
|
type Peer struct {
|
|
// network node
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
// node peers
|
|
Peers []*Peer `protobuf:"bytes,2,rep,name=peers,proto3" json:"peers,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Peer) Reset() { *m = Peer{} }
|
|
func (m *Peer) String() string { return proto.CompactTextString(m) }
|
|
func (*Peer) ProtoMessage() {}
|
|
func (*Peer) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_0b7953b26a7c4730, []int{12}
|
|
}
|
|
|
|
func (m *Peer) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Peer.Unmarshal(m, b)
|
|
}
|
|
func (m *Peer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Peer.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Peer) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Peer.Merge(m, src)
|
|
}
|
|
func (m *Peer) XXX_Size() int {
|
|
return xxx_messageInfo_Peer.Size(m)
|
|
}
|
|
func (m *Peer) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Peer.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Peer proto.InternalMessageInfo
|
|
|
|
func (m *Peer) GetNode() *Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Peer) GetPeers() []*Peer {
|
|
if m != nil {
|
|
return m.Peers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Query)(nil), "go.micro.network.Query")
|
|
proto.RegisterType((*NodesRequest)(nil), "go.micro.network.NodesRequest")
|
|
proto.RegisterType((*NodesResponse)(nil), "go.micro.network.NodesResponse")
|
|
proto.RegisterType((*GraphRequest)(nil), "go.micro.network.GraphRequest")
|
|
proto.RegisterType((*GraphResponse)(nil), "go.micro.network.GraphResponse")
|
|
proto.RegisterType((*RoutesRequest)(nil), "go.micro.network.RoutesRequest")
|
|
proto.RegisterType((*RoutesResponse)(nil), "go.micro.network.RoutesResponse")
|
|
proto.RegisterType((*ServicesRequest)(nil), "go.micro.network.ServicesRequest")
|
|
proto.RegisterType((*ServicesResponse)(nil), "go.micro.network.ServicesResponse")
|
|
proto.RegisterType((*Node)(nil), "go.micro.network.Node")
|
|
proto.RegisterType((*Connect)(nil), "go.micro.network.Connect")
|
|
proto.RegisterType((*Close)(nil), "go.micro.network.Close")
|
|
proto.RegisterType((*Peer)(nil), "go.micro.network.Peer")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("github.com/micro/go-micro/network/proto/network.proto", fileDescriptor_0b7953b26a7c4730)
|
|
}
|
|
|
|
var fileDescriptor_0b7953b26a7c4730 = []byte{
|
|
// 482 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x4d, 0x6f, 0xd3, 0x40,
|
|
0x10, 0x6d, 0x3e, 0x9c, 0xb4, 0x03, 0x29, 0x65, 0x85, 0x8a, 0xe5, 0x03, 0x84, 0x15, 0x87, 0x0a,
|
|
0x51, 0x07, 0x35, 0xea, 0x09, 0x81, 0x90, 0x7a, 0x40, 0x42, 0xa2, 0x82, 0xed, 0x1f, 0x20, 0x8d,
|
|
0x47, 0x89, 0x05, 0xf5, 0xba, 0xbb, 0x1b, 0xaa, 0xfe, 0x02, 0x7e, 0x19, 0xff, 0x0b, 0xed, 0xce,
|
|
0xd8, 0xb4, 0x89, 0x1d, 0xc1, 0xcd, 0x6f, 0xe7, 0xcd, 0x9b, 0xdd, 0x37, 0x4f, 0x86, 0xd3, 0x45,
|
|
0xee, 0x96, 0xab, 0xcb, 0x74, 0xae, 0xaf, 0x26, 0x57, 0xf9, 0xdc, 0xe8, 0xc9, 0x42, 0x1f, 0xd3,
|
|
0x47, 0x81, 0xee, 0x46, 0x9b, 0xef, 0x93, 0xd2, 0x68, 0x57, 0xa3, 0x34, 0x20, 0x71, 0xb0, 0xd0,
|
|
0x69, 0x60, 0xa5, 0x7c, 0x9e, 0x4c, 0xdb, 0x85, 0x8c, 0x5e, 0x39, 0x34, 0xac, 0x43, 0x80, 0x64,
|
|
0xe4, 0xaf, 0x0e, 0x44, 0x5f, 0x57, 0x68, 0x6e, 0x45, 0x0c, 0x43, 0x8b, 0xe6, 0x67, 0x3e, 0xc7,
|
|
0xb8, 0x33, 0xee, 0x1c, 0xed, 0xa9, 0x0a, 0xfa, 0xca, 0x2c, 0xcb, 0x0c, 0x5a, 0x1b, 0x77, 0xa9,
|
|
0xc2, 0xd0, 0x57, 0x16, 0x33, 0x87, 0x37, 0xb3, 0xdb, 0xb8, 0x47, 0x15, 0x86, 0xe2, 0x10, 0x06,
|
|
0x34, 0x27, 0xee, 0x87, 0x02, 0x23, 0xdf, 0xc1, 0xf7, 0x8d, 0x23, 0xea, 0x60, 0x28, 0x5f, 0xc2,
|
|
0xc3, 0x73, 0x9d, 0xa1, 0x55, 0x78, 0xbd, 0x42, 0xeb, 0xc4, 0x13, 0x88, 0x32, 0x2c, 0xdd, 0x32,
|
|
0xdc, 0x66, 0xa4, 0x08, 0xc8, 0x77, 0x30, 0x62, 0x96, 0x2d, 0x75, 0x61, 0x51, 0xbc, 0x86, 0xa8,
|
|
0xf0, 0x07, 0x71, 0x67, 0xdc, 0x3b, 0x7a, 0x70, 0x72, 0x98, 0xae, 0xfb, 0x92, 0x7a, 0xbe, 0x22,
|
|
0x92, 0x1f, 0xf2, 0xd1, 0xcc, 0xca, 0xe5, 0xf6, 0x21, 0x6f, 0x61, 0xc4, 0x2c, 0x1e, 0xf2, 0x0a,
|
|
0xfa, 0x46, 0x6b, 0x17, 0x58, 0x8d, 0x33, 0xbe, 0x20, 0x1a, 0x15, 0x38, 0xf2, 0x3d, 0x8c, 0x94,
|
|
0x7f, 0x6b, 0xfd, 0x90, 0x63, 0x88, 0xae, 0xbd, 0xc3, 0xdc, 0xfd, 0x74, 0xb3, 0x3b, 0x2c, 0x40,
|
|
0x11, 0x4b, 0x7e, 0x80, 0xfd, 0xaa, 0x9f, 0xa7, 0xa7, 0xec, 0x65, 0xc3, 0x1b, 0x79, 0x97, 0xa1,
|
|
0x81, 0x3d, 0xb6, 0xf2, 0x31, 0x3c, 0xba, 0xa0, 0xd5, 0x55, 0x77, 0x90, 0x29, 0x1c, 0xfc, 0x3d,
|
|
0x62, 0xd9, 0x04, 0x76, 0x79, 0xc3, 0x24, 0xbc, 0xa7, 0x6a, 0x2c, 0xdf, 0x40, 0xdf, 0xdb, 0x26,
|
|
0xf6, 0xa1, 0x9b, 0x67, 0x9c, 0x87, 0x6e, 0x9e, 0xb5, 0x47, 0x41, 0x9e, 0xc2, 0xf0, 0x4c, 0x17,
|
|
0x05, 0xce, 0x9d, 0x77, 0xcb, 0xbb, 0xdd, 0xee, 0x56, 0xd8, 0x48, 0xe0, 0xc8, 0x29, 0x44, 0x67,
|
|
0x3f, 0x34, 0x59, 0xfc, 0xcf, 0x4d, 0xdf, 0xa0, 0xef, 0x0d, 0xff, 0x9f, 0x1e, 0x9f, 0x93, 0x12,
|
|
0xd1, 0xf8, 0x7b, 0xf7, 0xb6, 0xec, 0x90, 0x48, 0x27, 0xbf, 0xbb, 0x30, 0x3c, 0xa7, 0x73, 0xf1,
|
|
0x09, 0xa2, 0x90, 0x06, 0xf1, 0x6c, 0xb3, 0xe7, 0x6e, 0x98, 0x92, 0xe7, 0xad, 0x75, 0x72, 0x5c,
|
|
0xee, 0x78, 0xad, 0x10, 0xdf, 0x26, 0xad, 0xbb, 0xe9, 0x6f, 0xd2, 0xba, 0x97, 0x7b, 0xb9, 0x23,
|
|
0x3e, 0xc3, 0x80, 0x82, 0x22, 0x1a, 0xc8, 0xf7, 0x22, 0x98, 0x8c, 0xdb, 0x09, 0xb5, 0xdc, 0x05,
|
|
0xec, 0x56, 0x11, 0x11, 0x2f, 0x36, 0xf9, 0x6b, 0x89, 0x4a, 0xe4, 0x36, 0x4a, 0x25, 0x7a, 0x39,
|
|
0x08, 0x7f, 0x99, 0xe9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0x84, 0x80, 0x26, 0xe5, 0x04,
|
|
0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// NetworkClient is the client API for Network service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type NetworkClient interface {
|
|
// Returns the entire network graph
|
|
Graph(ctx context.Context, in *GraphRequest, opts ...grpc.CallOption) (*GraphResponse, error)
|
|
// Returns a list of known nodes in the network
|
|
Nodes(ctx context.Context, in *NodesRequest, opts ...grpc.CallOption) (*NodesResponse, error)
|
|
// Returns a list of known routes in the network
|
|
Routes(ctx context.Context, in *RoutesRequest, opts ...grpc.CallOption) (*RoutesResponse, error)
|
|
// Returns a list of known services based on routes
|
|
Services(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*ServicesResponse, error)
|
|
}
|
|
|
|
type networkClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewNetworkClient(cc *grpc.ClientConn) NetworkClient {
|
|
return &networkClient{cc}
|
|
}
|
|
|
|
func (c *networkClient) Graph(ctx context.Context, in *GraphRequest, opts ...grpc.CallOption) (*GraphResponse, error) {
|
|
out := new(GraphResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.network.Network/Graph", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *networkClient) Nodes(ctx context.Context, in *NodesRequest, opts ...grpc.CallOption) (*NodesResponse, error) {
|
|
out := new(NodesResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.network.Network/Nodes", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *networkClient) Routes(ctx context.Context, in *RoutesRequest, opts ...grpc.CallOption) (*RoutesResponse, error) {
|
|
out := new(RoutesResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.network.Network/Routes", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *networkClient) Services(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*ServicesResponse, error) {
|
|
out := new(ServicesResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.network.Network/Services", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// NetworkServer is the server API for Network service.
|
|
type NetworkServer interface {
|
|
// Returns the entire network graph
|
|
Graph(context.Context, *GraphRequest) (*GraphResponse, error)
|
|
// Returns a list of known nodes in the network
|
|
Nodes(context.Context, *NodesRequest) (*NodesResponse, error)
|
|
// Returns a list of known routes in the network
|
|
Routes(context.Context, *RoutesRequest) (*RoutesResponse, error)
|
|
// Returns a list of known services based on routes
|
|
Services(context.Context, *ServicesRequest) (*ServicesResponse, error)
|
|
}
|
|
|
|
func RegisterNetworkServer(s *grpc.Server, srv NetworkServer) {
|
|
s.RegisterService(&_Network_serviceDesc, srv)
|
|
}
|
|
|
|
func _Network_Graph_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GraphRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NetworkServer).Graph(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.network.Network/Graph",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NetworkServer).Graph(ctx, req.(*GraphRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Network_Nodes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(NodesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NetworkServer).Nodes(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.network.Network/Nodes",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NetworkServer).Nodes(ctx, req.(*NodesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Network_Routes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RoutesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NetworkServer).Routes(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.network.Network/Routes",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NetworkServer).Routes(ctx, req.(*RoutesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Network_Services_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ServicesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NetworkServer).Services(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.network.Network/Services",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NetworkServer).Services(ctx, req.(*ServicesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _Network_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "go.micro.network.Network",
|
|
HandlerType: (*NetworkServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Graph",
|
|
Handler: _Network_Graph_Handler,
|
|
},
|
|
{
|
|
MethodName: "Nodes",
|
|
Handler: _Network_Nodes_Handler,
|
|
},
|
|
{
|
|
MethodName: "Routes",
|
|
Handler: _Network_Routes_Handler,
|
|
},
|
|
{
|
|
MethodName: "Services",
|
|
Handler: _Network_Services_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "github.com/micro/go-micro/network/proto/network.proto",
|
|
}
|