2019-07-02 10:45:00 +03:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
2019-07-02 22:54:21 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-07-03 21:51:40 +03:00
|
|
|
"io"
|
2019-07-02 22:54:21 +03:00
|
|
|
"net"
|
2019-07-02 10:45:00 +03:00
|
|
|
"runtime/debug"
|
2019-07-03 21:26:24 +03:00
|
|
|
"sort"
|
2019-07-02 22:54:21 +03:00
|
|
|
"strconv"
|
2019-07-02 10:45:00 +03:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/micro/go-micro/registry"
|
|
|
|
"github.com/micro/go-micro/transport"
|
2019-07-02 22:54:21 +03:00
|
|
|
"github.com/micro/go-micro/util/addr"
|
2019-07-02 10:45:00 +03:00
|
|
|
"github.com/micro/go-micro/util/log"
|
|
|
|
|
|
|
|
pb "github.com/micro/go-micro/network/proto"
|
|
|
|
)
|
|
|
|
|
|
|
|
type node struct {
|
|
|
|
*network
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// closed channel to close our connection to the network
|
2019-07-02 10:45:00 +03:00
|
|
|
closed chan bool
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
sync.RWMutex
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// the nodes unique micro assigned mac address
|
|
|
|
muid string
|
|
|
|
|
|
|
|
// the node id registered in registry
|
2019-07-02 10:45:00 +03:00
|
|
|
id string
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// address of this node registered in registry
|
2019-07-02 10:45:00 +03:00
|
|
|
address string
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// our network lease with our network id/address
|
|
|
|
lease *pb.Lease
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// the node registry
|
|
|
|
registry registry.Registry
|
|
|
|
|
|
|
|
// the base level transport
|
|
|
|
transport transport.Transport
|
|
|
|
|
|
|
|
// the listener
|
|
|
|
listener transport.Listener
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// connected records
|
|
|
|
// record.Address:true
|
|
|
|
connected map[string]bool
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// leases for connections to us
|
2019-07-03 21:26:24 +03:00
|
|
|
// link remote node:link
|
|
|
|
links map[string][]*link
|
2019-07-02 22:54:21 +03:00
|
|
|
|
|
|
|
// messages received over links
|
|
|
|
recv chan *Message
|
|
|
|
// messages received over links
|
|
|
|
send chan *Message
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// network methods
|
|
|
|
|
|
|
|
func newNode(n *network) (*node, error) {
|
|
|
|
// create a new node
|
2019-07-02 22:54:21 +03:00
|
|
|
node := &node{
|
2019-07-03 21:26:24 +03:00
|
|
|
// this nodes unique micro assigned mac address
|
|
|
|
muid: fmt.Sprintf("%s-%s", n.id, uuid.New().String()),
|
|
|
|
// map of connected records
|
|
|
|
connected: make(map[string]bool),
|
2019-07-02 22:54:21 +03:00
|
|
|
// the links
|
2019-07-03 21:26:24 +03:00
|
|
|
links: make(map[string][]*link),
|
2019-07-02 22:54:21 +03:00
|
|
|
// closed channel
|
|
|
|
closed: make(chan bool),
|
|
|
|
// set the nodes network
|
|
|
|
network: n,
|
|
|
|
// set the default transport
|
|
|
|
transport: transport.DefaultTransport,
|
|
|
|
// set the default registry
|
|
|
|
registry: registry.DefaultRegistry,
|
|
|
|
// receive channel for accepted connections
|
|
|
|
recv: make(chan *Message, 128),
|
|
|
|
// send channel for accepted connections
|
|
|
|
send: make(chan *Message, 128),
|
|
|
|
}
|
2019-07-02 10:45:00 +03:00
|
|
|
|
|
|
|
// get the transport we're going to use for our tunnels
|
2019-07-02 22:54:21 +03:00
|
|
|
// TODO: set to quic or tunnel or something else
|
2019-07-02 10:45:00 +03:00
|
|
|
t, ok := n.Options.Values().Get("network.transport")
|
|
|
|
if ok {
|
|
|
|
node.transport = t.(transport.Transport)
|
2019-07-02 22:54:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// register the node with the registry for the network
|
|
|
|
// TODO: use a registrar or something else for local things
|
|
|
|
r, ok := n.Options.Values().Get("network.registry")
|
|
|
|
if ok {
|
|
|
|
node.registry = r.(registry.Registry)
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// we listen on a random address, this is not advertised
|
|
|
|
// TODO: use util/addr to get something anyone in the same private network can talk to
|
|
|
|
l, err := node.transport.Listen(":0")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// set the listener
|
|
|
|
node.listener = l
|
|
|
|
|
|
|
|
node.address = l.Addr()
|
|
|
|
|
|
|
|
// TODO: start the router and broadcast advertisements
|
|
|
|
// receive updates and push them to the network in accept(l) below
|
|
|
|
// chan, err := n.router.Advertise()
|
|
|
|
// u <- chan
|
|
|
|
// socket.send("route", u)
|
|
|
|
// u := socket.recv() => r.router.Update(u)
|
|
|
|
|
|
|
|
// process any incoming messages on the listener
|
|
|
|
// this is our inbound network connection
|
2019-07-02 22:54:21 +03:00
|
|
|
go node.accept(l)
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// process any messages being sent by node.Send
|
|
|
|
// forwards to every link we have
|
|
|
|
go node.process()
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
var port int
|
|
|
|
// TODO: this should be an overlay address
|
|
|
|
// ideally received via some dhcp style broadcast
|
|
|
|
host, pp, err := net.SplitHostPort(l.Addr())
|
|
|
|
if err == nil {
|
|
|
|
pt, _ := strconv.Atoi(pp)
|
|
|
|
port = pt
|
|
|
|
}
|
|
|
|
|
|
|
|
// some horrible things are happening
|
|
|
|
if host == "::" {
|
|
|
|
host = ""
|
|
|
|
}
|
|
|
|
// set the address
|
|
|
|
addr, _ := addr.Extract(host)
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// used to register in registry for network resolution
|
|
|
|
// separate to our lease on the network itself
|
|
|
|
node.id = uuid.New().String()
|
2019-07-02 22:54:21 +03:00
|
|
|
node.address = fmt.Sprintf("%s:%d", addr, port)
|
|
|
|
|
|
|
|
// register self with the registry using network: prefix
|
2019-07-02 10:45:00 +03:00
|
|
|
// this is a local registry of nodes separate to the resolver
|
|
|
|
// maybe consolidate registry/resolver
|
2019-07-02 22:54:21 +03:00
|
|
|
// TODO: find a way to do this via gossip or something like
|
|
|
|
// a registrar or tld or whatever
|
2019-07-02 10:45:00 +03:00
|
|
|
if err := node.registry.Register(®istry.Service{
|
|
|
|
// register with the network id
|
|
|
|
Name: "network:" + n.Id(),
|
|
|
|
Nodes: []*registry.Node{
|
2019-07-02 22:54:21 +03:00
|
|
|
{Id: node.id, Address: addr, Port: port},
|
2019-07-02 10:45:00 +03:00
|
|
|
},
|
|
|
|
}); err != nil {
|
|
|
|
node.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a channel to get links
|
|
|
|
linkChan := make(chan *link, 1)
|
|
|
|
|
|
|
|
// we're going to wait for the first connection
|
|
|
|
go node.connect(linkChan)
|
|
|
|
|
|
|
|
// wait forever to connect
|
|
|
|
// TODO: do something with the links we receive
|
2019-07-02 22:54:21 +03:00
|
|
|
link := <-linkChan
|
|
|
|
|
|
|
|
// process this link
|
2019-07-03 21:26:24 +03:00
|
|
|
log.Debugf("connect managing link %s", link.id)
|
2019-07-02 22:54:21 +03:00
|
|
|
go node.manage(link)
|
|
|
|
|
|
|
|
go func() {
|
2019-07-03 21:26:24 +03:00
|
|
|
for {
|
|
|
|
// process any further new links
|
|
|
|
select {
|
|
|
|
case l := <-linkChan:
|
|
|
|
log.Debugf("Managing new link %s", l.id)
|
|
|
|
go node.manage(l)
|
|
|
|
case <-node.closed:
|
|
|
|
return
|
|
|
|
}
|
2019-07-02 22:54:21 +03:00
|
|
|
}
|
|
|
|
}()
|
2019-07-02 10:45:00 +03:00
|
|
|
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// node methods
|
|
|
|
|
|
|
|
// Accept processes the incoming messages on its listener.
|
|
|
|
// This listener was created with the first call to network.Connect.
|
|
|
|
// Any inbound new socket here is essentially something else attempting
|
|
|
|
// to connect to the network. So we turn it into a socket, then process it.
|
|
|
|
func (n *node) accept(l transport.Listener) error {
|
|
|
|
return l.Accept(func(sock transport.Socket) {
|
|
|
|
defer func() {
|
|
|
|
// close socket
|
|
|
|
sock.Close()
|
|
|
|
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
log.Log("panic recovered: ", r)
|
|
|
|
log.Log(string(debug.Stack()))
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// create a new link
|
2019-07-03 21:26:24 +03:00
|
|
|
link := newLink(n, sock, nil)
|
2019-07-02 22:54:21 +03:00
|
|
|
|
|
|
|
log.Debugf("Accepting connection from %s", link.socket.Remote())
|
|
|
|
|
|
|
|
// wait for the link to be connected
|
|
|
|
// the remote end will send "Connect"
|
|
|
|
// and we will return a "Lease"
|
|
|
|
if err := link.accept(); err != nil {
|
2019-07-03 21:26:24 +03:00
|
|
|
log.Debugf("Error accepting connection %v", err)
|
2019-07-02 22:54:21 +03:00
|
|
|
return
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
2019-07-02 22:54:21 +03:00
|
|
|
|
|
|
|
log.Debugf("Accepted link from %s", link.socket.Remote())
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// save with the muid as the key
|
2019-07-02 22:54:21 +03:00
|
|
|
// where we attempt to connect to nodes
|
|
|
|
// we do not connect to the same thing
|
2019-07-03 21:26:24 +03:00
|
|
|
|
|
|
|
// TODO: figure out why this is an issue
|
|
|
|
// When we receive a connection from ourself
|
|
|
|
// we can't maintain the two links separately
|
|
|
|
// so we don't save it. It's basically some
|
|
|
|
// weird loopback issue because its our own socket.
|
|
|
|
if n.muid != link.lease.Node.Muid {
|
|
|
|
n.Lock()
|
|
|
|
// get the links
|
|
|
|
|
|
|
|
links := n.links[link.lease.Node.Muid]
|
|
|
|
// append to the current links
|
|
|
|
links = append(links, link)
|
|
|
|
// save the links with muid as the key
|
|
|
|
n.links[link.lease.Node.Muid] = links
|
|
|
|
n.Unlock()
|
|
|
|
}
|
2019-07-02 22:54:21 +03:00
|
|
|
|
|
|
|
// manage the link for its lifetime
|
2019-07-03 21:26:24 +03:00
|
|
|
log.Debugf("managing the link now %s", link.id)
|
2019-07-02 22:54:21 +03:00
|
|
|
n.manage(link)
|
2019-07-02 10:45:00 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// processes the sends the messages from n.Send into the queue of
|
|
|
|
// each link. If multiple links exist for a muid it should only
|
|
|
|
// send on link to figure it out.
|
|
|
|
// If we connected to a record and that link goes down we should
|
|
|
|
// also remove it from the n.connected map.
|
2019-07-02 22:54:21 +03:00
|
|
|
func (n *node) process() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-n.closed:
|
|
|
|
return
|
|
|
|
// process outbound messages on the send queue
|
|
|
|
// these messages are received from n.Send
|
|
|
|
case m := <-n.send:
|
|
|
|
// queue the message on each link
|
|
|
|
// TODO: more than likely use proxy
|
|
|
|
n.RLock()
|
2019-07-03 21:26:24 +03:00
|
|
|
// range over all the links
|
|
|
|
for _, links := range n.links {
|
|
|
|
if len(links) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort the links by weight
|
|
|
|
sort.Slice(links, func(i, j int) bool {
|
|
|
|
return links[i].Weight() < links[j].Weight()
|
|
|
|
})
|
|
|
|
|
|
|
|
// queue the message
|
|
|
|
links[0].Send(m)
|
2019-07-02 22:54:21 +03:00
|
|
|
}
|
|
|
|
n.RUnlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// Manage manages the link for its lifetime. It should ideally throw
|
|
|
|
// away the link in the n.links map if there's any issues or total disconnection
|
|
|
|
// it should look at link.Status.
|
|
|
|
// If we connected to a record and that link goes down we should
|
|
|
|
// also remove it from the n.connected map.
|
2019-07-02 22:54:21 +03:00
|
|
|
func (n *node) manage(l *link) {
|
|
|
|
// now process inbound messages on the link
|
|
|
|
// assumption is this handles everything else
|
|
|
|
for {
|
2019-07-03 21:26:24 +03:00
|
|
|
// the send side uses a link queue but the receive side immediately sends it
|
|
|
|
// ideally we should probably have an internal queue on that side as well
|
|
|
|
// so we can judge link saturation both ways.
|
|
|
|
|
|
|
|
m, err := l.Accept()
|
2019-07-03 21:51:40 +03:00
|
|
|
if err == io.EOF {
|
|
|
|
return
|
|
|
|
}
|
2019-07-03 21:26:24 +03:00
|
|
|
if err != nil {
|
|
|
|
log.Debugf("Error accepting message on link %s: %v", l.id, err)
|
2019-07-02 22:54:21 +03:00
|
|
|
// ???
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// if the node connection is closed bail out
|
2019-07-02 22:54:21 +03:00
|
|
|
select {
|
|
|
|
case <-n.closed:
|
|
|
|
return
|
2019-07-03 21:26:24 +03:00
|
|
|
// send to the network recv channel e.g node.Accept()
|
2019-07-02 22:54:21 +03:00
|
|
|
case n.recv <- m:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// connect attempts to periodically connect to new nodes in the network.
|
|
|
|
// It will only do this if it has less than 3 connections. this method
|
|
|
|
// is called by network.Connect and fired in a go routine after establishing
|
|
|
|
// the first connection and creating a node. The node attempts to maintain
|
|
|
|
// its connection to the network via multiple links.
|
|
|
|
func (n *node) connect(linkChan chan *link) {
|
|
|
|
// TODO: adjustable ticker
|
|
|
|
t := time.NewTicker(time.Second)
|
2019-07-02 22:54:21 +03:00
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
var lease *pb.Lease
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
2019-07-02 22:54:21 +03:00
|
|
|
// exit when told to do so
|
|
|
|
case <-n.closed:
|
|
|
|
return
|
2019-07-02 10:45:00 +03:00
|
|
|
// on every tick check the number of links and then attempt
|
|
|
|
// to connect to new nodes if we don't have sufficient links
|
|
|
|
case <-t.C:
|
2019-07-02 22:54:21 +03:00
|
|
|
n.RLock()
|
2019-07-02 10:45:00 +03:00
|
|
|
|
|
|
|
// only start processing if we have less than 3 links
|
2019-07-03 21:26:24 +03:00
|
|
|
conns := len(n.links)
|
|
|
|
if conns > 2 {
|
2019-07-02 22:54:21 +03:00
|
|
|
n.RUnlock()
|
2019-07-02 10:45:00 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// get a list of link addresses so we don't reconnect
|
|
|
|
// to the ones we're already connected to
|
2019-07-03 21:26:24 +03:00
|
|
|
connected := n.connected
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// unlock our read lock
|
|
|
|
n.RUnlock()
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// lookup records for our network
|
2019-07-02 10:45:00 +03:00
|
|
|
records := n.network.lookup(n.registry)
|
|
|
|
|
|
|
|
// for each record check we haven't already got a connection
|
|
|
|
// attempt to dial it, create a new socket and call
|
|
|
|
// connect with our existing network lease.
|
|
|
|
// if its the first call we don't actually have a lease
|
|
|
|
|
|
|
|
// TODO: determine how to prioritise local records
|
|
|
|
// while still connecting to the global network
|
|
|
|
for _, record := range records {
|
|
|
|
// skip existing connections
|
2019-07-03 21:26:24 +03:00
|
|
|
if connected[record.Address] {
|
|
|
|
log.Tracef("Skipping connection to %s", record.Address)
|
2019-07-02 10:45:00 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
// check how many connections we have
|
|
|
|
if conns > 2 {
|
|
|
|
log.Debugf("Made enough connections")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// attempt to connect and create a link
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
log.Debugf("Dialing connection to %s", record.Address)
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// connect to the node
|
2019-07-02 22:54:21 +03:00
|
|
|
sock, err := n.transport.Dial(record.Address)
|
2019-07-02 10:45:00 +03:00
|
|
|
if err != nil {
|
2019-07-02 22:54:21 +03:00
|
|
|
log.Debugf("Dialing connection error %v", err)
|
2019-07-02 10:45:00 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// create a new link with the lease and socket
|
2019-07-03 21:26:24 +03:00
|
|
|
link := newLink(n, sock, lease)
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
log.Debugf("Connecting link to %s", record.Address)
|
|
|
|
|
|
|
|
// connect the link:
|
|
|
|
// this broadcasts a "connect" request and gets back a "lease"
|
|
|
|
// this is the tunnel to the outside world and to the network
|
2019-07-02 10:45:00 +03:00
|
|
|
// then push updates and messages over this link
|
|
|
|
// first connect will not have a lease so we get one with node id/address
|
2019-07-02 22:54:21 +03:00
|
|
|
if err := link.connect(); err != nil {
|
|
|
|
// shit
|
2019-07-02 10:45:00 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
log.Debugf("Connected link to %s", record.Address)
|
2019-07-02 10:45:00 +03:00
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
n.Lock()
|
|
|
|
// set lease for next time we connect to anything else
|
|
|
|
// we want to use the same lease for that. in future
|
|
|
|
// we may have to expire the lease
|
|
|
|
lease = link.lease
|
2019-07-02 10:45:00 +03:00
|
|
|
// save the new link
|
2019-07-03 21:26:24 +03:00
|
|
|
// get existing links using the lease author
|
|
|
|
links := n.links[lease.Author]
|
|
|
|
// append to the links
|
|
|
|
links = append(links, link)
|
|
|
|
// save the links using the author
|
|
|
|
n.links[lease.Author] = links
|
|
|
|
n.Unlock()
|
|
|
|
|
|
|
|
// update number of connections
|
|
|
|
conns++
|
|
|
|
|
|
|
|
// save the connection
|
|
|
|
n.Lock()
|
|
|
|
n.connected[record.Address] = true
|
2019-07-02 22:54:21 +03:00
|
|
|
n.Unlock()
|
2019-07-02 10:45:00 +03:00
|
|
|
|
|
|
|
// drop this down the link channel to the network
|
|
|
|
// so it can manage the links
|
2019-07-03 21:26:24 +03:00
|
|
|
linkChan <- link
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *node) Address() string {
|
2019-07-03 21:26:24 +03:00
|
|
|
n.RLock()
|
|
|
|
defer n.RUnlock()
|
|
|
|
// we have no address yet
|
|
|
|
if n.lease == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
// return node address in the lease
|
|
|
|
return n.lease.Node.Address
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close shutdowns all the links and closes the listener
|
|
|
|
func (n *node) Close() error {
|
|
|
|
select {
|
|
|
|
case <-n.closed:
|
|
|
|
return nil
|
|
|
|
default:
|
2019-07-03 21:26:24 +03:00
|
|
|
// mark as closed, we're now useless and there's no coming back
|
2019-07-02 10:45:00 +03:00
|
|
|
close(n.closed)
|
2019-07-02 22:54:21 +03:00
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// shutdown all the links
|
2019-07-02 22:54:21 +03:00
|
|
|
n.Lock()
|
2019-07-03 21:26:24 +03:00
|
|
|
for muid, links := range n.links {
|
|
|
|
for _, link := range links {
|
|
|
|
link.Close()
|
|
|
|
}
|
|
|
|
delete(n.links, muid)
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
2019-07-03 21:26:24 +03:00
|
|
|
// reset connected
|
|
|
|
n.connected = nil
|
2019-07-02 22:54:21 +03:00
|
|
|
n.Unlock()
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
// deregister self
|
|
|
|
n.registry.Deregister(®istry.Service{
|
|
|
|
Name: "network:" + n.network.Id(),
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{Id: n.id, Address: n.address},
|
|
|
|
},
|
|
|
|
})
|
2019-07-02 22:54:21 +03:00
|
|
|
|
|
|
|
// shutdown the listener
|
2019-07-02 10:45:00 +03:00
|
|
|
return n.listener.Close()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// Accept receives the incoming messages from all links
|
2019-07-02 10:45:00 +03:00
|
|
|
func (n *node) Accept() (*Message, error) {
|
|
|
|
// process the inbound cruft
|
2019-07-02 22:54:21 +03:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case m, ok := <-n.recv:
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("connection closed")
|
|
|
|
}
|
|
|
|
// return the message
|
|
|
|
return m, nil
|
|
|
|
case <-n.closed:
|
|
|
|
return nil, errors.New("connection closed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// we never get here
|
2019-07-02 10:45:00 +03:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:26:24 +03:00
|
|
|
func (n *node) Id() string {
|
|
|
|
n.RLock()
|
|
|
|
defer n.RUnlock()
|
|
|
|
if n.lease == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return n.lease.Node.Id
|
|
|
|
}
|
|
|
|
|
2019-07-02 10:45:00 +03:00
|
|
|
func (n *node) Network() string {
|
|
|
|
return n.network.id
|
|
|
|
}
|
|
|
|
|
2019-07-02 22:54:21 +03:00
|
|
|
// Send propagates a message over all links. This should probably use its proxy.
|
2019-07-02 10:45:00 +03:00
|
|
|
func (n *node) Send(m *Message) error {
|
2019-07-02 22:54:21 +03:00
|
|
|
select {
|
|
|
|
case <-n.closed:
|
|
|
|
return errors.New("connection closed")
|
|
|
|
case n.send <- m:
|
|
|
|
// send the message
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|
2019-07-02 22:54:21 +03:00
|
|
|
return nil
|
2019-07-02 10:45:00 +03:00
|
|
|
}
|