micro/router/router.go

145 lines
3.4 KiB
Go
Raw Normal View History

2019-06-21 18:17:12 +03:00
// Package router provides a network routing control plane
package router
import (
"time"
)
var (
// DefaultAddress is default router address
DefaultAddress = ":9093"
// DefaultName is default router service name
DefaultName = "go.micro.router"
// DefaultNetwork is default micro network
DefaultNetwork = "go.micro"
// DefaultRouter is default network router
DefaultRouter = NewRouter()
)
2019-06-21 18:17:12 +03:00
// Router is an interface for a routing control plane
type Router interface {
// Init initializes the router with options
Init(...Option) error
// Options returns the router options
Options() Options
// The routing table
Table() Table
2019-12-17 11:28:45 +03:00
// Advertise advertises routes
2019-07-04 04:06:59 +03:00
Advertise() (<-chan *Advert, error)
2019-07-10 09:45:27 +03:00
// Process processes incoming adverts
Process(*Advert) error
2019-07-26 01:52:54 +03:00
// Lookup queries routes in the routing table
Lookup(...QueryOption) ([]Route, error)
2019-07-26 01:52:54 +03:00
// Watch returns a watcher which tracks updates to the routing table
Watch(opts ...WatchOption) (Watcher, error)
// Start starts the router
Start() error
// Stop stops the router
Stop() error
2019-07-10 09:56:52 +03:00
// Returns the router implementation
String() string
}
2019-08-20 23:11:27 +03:00
// Table is an interface for routing table
type Table interface {
// Create new route in the routing table
Create(Route) error
2019-08-20 23:11:27 +03:00
// Delete existing route from the routing table
Delete(Route) error
2019-08-20 23:11:27 +03:00
// Update route in the routing table
Update(Route) error
2019-08-20 23:11:27 +03:00
// List all routes in the table
List() ([]Route, error)
2019-08-20 23:11:27 +03:00
// Query routes in the routing table
Query(...QueryOption) ([]Route, error)
}
// Option used by the router
type Option func(*Options)
// StatusCode defines router status
type StatusCode int
const (
// Running means the router is up and running
Running StatusCode = iota
// Advertising means the router is advertising
Advertising
// Stopped means the router has been stopped
Stopped
// Error means the router has encountered error
Error
)
// AdvertType is route advertisement type
type AdvertType int
const (
// Announce is advertised when the router announces itself
Announce AdvertType = iota
// RouteUpdate advertises route updates
RouteUpdate
)
// String returns human readable advertisement type
func (t AdvertType) String() string {
switch t {
case Announce:
return "announce"
case RouteUpdate:
return "update"
default:
return "unknown"
}
}
// Advert contains a list of events advertised by the router to the network
2019-07-04 04:06:59 +03:00
type Advert struct {
2019-07-10 09:45:27 +03:00
// Id is the router Id
Id string
// Type is type of advert
Type AdvertType
// Timestamp marks the time when the update is sent
Timestamp time.Time
// TTL is Advert TTL
2019-07-11 14:36:39 +03:00
TTL time.Duration
// Events is a list of routing table events to advertise
Events []*Event
}
// Strategy is route advertisement strategy
type Strategy int
// TODO: remove the "Advertise" prefix from these
const (
2019-10-09 21:08:24 +03:00
// AdvertiseAll advertises all routes to the network
AdvertiseAll Strategy = iota
// AdvertiseBest advertises optimal routes to the network
AdvertiseBest
// AdvertiseLocal will only advertise the local routes
AdvertiseLocal
// AdvertiseNone will not advertise any routes
AdvertiseNone
)
// String returns human readable Strategy
func (s Strategy) String() string {
switch s {
2019-10-09 21:08:24 +03:00
case AdvertiseAll:
return "all"
2019-10-09 21:08:24 +03:00
case AdvertiseBest:
return "best"
case AdvertiseLocal:
return "local"
case AdvertiseNone:
return "none"
default:
return "unknown"
}
}
// NewRouter creates new Router and returns it
func NewRouter(opts ...Option) Router {
return newRouter(opts...)
}