165 lines
3.7 KiB
Go
165 lines
3.7 KiB
Go
package network
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/micro/go-micro/config/options"
|
|
"github.com/micro/go-micro/network/proxy"
|
|
"github.com/micro/go-micro/network/proxy/mucp"
|
|
"github.com/micro/go-micro/network/resolver"
|
|
"github.com/micro/go-micro/network/router"
|
|
"github.com/micro/go-micro/registry"
|
|
|
|
pb "github.com/micro/go-micro/network/proto"
|
|
nreg "github.com/micro/go-micro/network/resolver/registry"
|
|
)
|
|
|
|
type network struct {
|
|
options.Options
|
|
|
|
// resolver use to connect to the network
|
|
resolver resolver.Resolver
|
|
|
|
// router used to find routes in the network
|
|
router router.Router
|
|
|
|
// proxy used to route through the network
|
|
proxy proxy.Proxy
|
|
|
|
// id of this network
|
|
id string
|
|
|
|
// links maintained for this network
|
|
// based on peers not nodes. maybe maintain
|
|
// node separately or note that links have nodes
|
|
mtx sync.RWMutex
|
|
links []Link
|
|
}
|
|
|
|
// network methods
|
|
|
|
// lease generates a new lease with a node id/address
|
|
// TODO: use a consensus mechanism, pool or some deterministic
|
|
// unique prefixing method.
|
|
func (n *network) lease() *pb.Lease {
|
|
// create the id
|
|
id := uuid.New().String()
|
|
// create a timestamp
|
|
now := time.Now().UnixNano()
|
|
// create the address
|
|
h := sha256.New()
|
|
h.Write([]byte(fmt.Sprintf("%s-%d\n", id, now)))
|
|
address := fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
// return the node
|
|
return &pb.Lease{
|
|
Id: id,
|
|
Timestamp: now,
|
|
Node: &pb.Node{
|
|
Id: id,
|
|
Address: address,
|
|
},
|
|
}
|
|
}
|
|
|
|
// lookup returns a list of network records in priority order of local
|
|
func (n *network) lookup(r registry.Registry) []*resolver.Record {
|
|
// create a registry resolver to find local nodes
|
|
rr := nreg.Resolver{Registry: r}
|
|
|
|
// get all the nodes for the network that are local
|
|
localRecords, err := rr.Resolve("network:" + n.Id())
|
|
if err != nil {
|
|
// we're not in a good place here
|
|
}
|
|
|
|
// if its a local network we never try lookup anything else
|
|
if n.Id() == "local" {
|
|
return localRecords
|
|
}
|
|
|
|
// now resolve incrementally based on resolvers specified
|
|
networkRecords, err := n.resolver.Resolve(n.Id())
|
|
if err != nil {
|
|
// still not in a good place
|
|
}
|
|
|
|
// return aggregate records
|
|
return append(localRecords, networkRecords...)
|
|
}
|
|
|
|
func (n *network) Id() string {
|
|
return n.id
|
|
}
|
|
|
|
// Connect connects to the network and returns a new node.
|
|
// The node is the callers connection to the network. They
|
|
// should advertise this address to people. Anyone else
|
|
// on the network should be able to route to it.
|
|
func (n *network) Connect() (Node, error) {
|
|
return newNode(n)
|
|
}
|
|
|
|
// TODO: establish links for peering networks
|
|
func (n *network) Peer(Network) (Link, error) {
|
|
// New network was created using NewNetwork after receiving routes from a different node
|
|
|
|
// Connect to the new network and be assigned a node
|
|
|
|
// Transfer data between the networks
|
|
|
|
// take other resolver
|
|
// order: registry (local), ...resolver
|
|
// resolve the network
|
|
|
|
// periodically connect to nodes resolved in the network
|
|
// and add to the network links
|
|
return nil, nil
|
|
}
|
|
|
|
// newNetwork returns a new network interface
|
|
func newNetwork(opts ...options.Option) *network {
|
|
options := options.NewOptions(opts...)
|
|
|
|
// new network instance
|
|
net := &network{
|
|
id: DefaultId,
|
|
}
|
|
|
|
// get network id
|
|
id, ok := options.Values().Get("network.id")
|
|
if ok {
|
|
net.id = id.(string)
|
|
}
|
|
|
|
// get router
|
|
r, ok := options.Values().Get("network.router")
|
|
if ok {
|
|
net.router = r.(router.Router)
|
|
} else {
|
|
net.router = router.DefaultRouter
|
|
}
|
|
|
|
// get proxy
|
|
p, ok := options.Values().Get("network.proxy")
|
|
if ok {
|
|
net.proxy = p.(proxy.Proxy)
|
|
} else {
|
|
net.proxy = new(mucp.Proxy)
|
|
}
|
|
|
|
// get resolver
|
|
res, ok := options.Values().Get("network.resolver")
|
|
if ok {
|
|
net.resolver = res.(resolver.Resolver)
|
|
} else {
|
|
net.resolver = new(nreg.Resolver)
|
|
}
|
|
|
|
return net
|
|
}
|