2019-06-21 18:17:12 +03:00
|
|
|
// Package router provides a network routing control plane
|
2021-10-02 19:55:07 +03:00
|
|
|
package router // import "go.unistack.org/micro/v3/router"
|
2019-06-06 18:37:40 +03:00
|
|
|
|
2019-07-08 18:51:55 +03:00
|
|
|
import (
|
2020-07-27 15:22:00 +03:00
|
|
|
"errors"
|
2019-07-08 18:51:55 +03:00
|
|
|
)
|
2019-06-28 13:53:55 +03:00
|
|
|
|
2019-08-20 14:48:51 +03:00
|
|
|
var (
|
2020-11-03 01:08:23 +03:00
|
|
|
// DefaultRouter is the global default router
|
2021-03-26 17:43:39 +03:00
|
|
|
DefaultRouter Router = NewRouter()
|
2019-08-20 14:48:51 +03:00
|
|
|
// DefaultNetwork is default micro network
|
2020-06-24 13:09:16 +03:00
|
|
|
DefaultNetwork = "micro"
|
2020-07-27 15:22:00 +03:00
|
|
|
// ErrRouteNotFound is returned when no route was found in the routing table
|
|
|
|
ErrRouteNotFound = errors.New("route not found")
|
|
|
|
// ErrDuplicateRoute is returned when the route already exists
|
|
|
|
ErrDuplicateRoute = errors.New("duplicate route")
|
2019-08-20 14:48:51 +03:00
|
|
|
)
|
|
|
|
|
2019-06-21 18:17:12 +03:00
|
|
|
// Router is an interface for a routing control plane
|
2019-06-06 18:37:40 +03:00
|
|
|
type Router interface {
|
2021-01-29 13:17:32 +03:00
|
|
|
Name() string
|
2019-06-13 00:30:42 +03:00
|
|
|
// Init initializes the router with options
|
2019-06-06 18:37:40 +03:00
|
|
|
Init(...Option) error
|
2019-06-13 00:30:42 +03:00
|
|
|
// Options returns the router options
|
2019-06-06 18:37:40 +03:00
|
|
|
Options() Options
|
2019-07-29 20:57:40 +03:00
|
|
|
// The routing table
|
|
|
|
Table() Table
|
2019-07-26 01:52:54 +03:00
|
|
|
// Lookup queries routes in the routing table
|
2019-10-09 19:13:52 +03:00
|
|
|
Lookup(...QueryOption) ([]Route, error)
|
2019-07-26 01:52:54 +03:00
|
|
|
// Watch returns a watcher which tracks updates to the routing table
|
2019-07-26 01:19:05 +03:00
|
|
|
Watch(opts ...WatchOption) (Watcher, error)
|
2020-06-24 13:09:16 +03:00
|
|
|
// Close the router
|
|
|
|
Close() error
|
2019-07-10 09:56:52 +03:00
|
|
|
// Returns the router implementation
|
2019-06-07 15:29:09 +03:00
|
|
|
String() string
|
|
|
|
}
|
|
|
|
|
2019-08-20 23:11:27 +03:00
|
|
|
// Table is an interface for routing table
|
2019-07-29 20:57:40 +03:00
|
|
|
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
|
2019-07-29 20:57:40 +03:00
|
|
|
Delete(Route) error
|
2019-08-20 23:11:27 +03:00
|
|
|
// Update route in the routing table
|
2019-07-29 20:57:40 +03:00
|
|
|
Update(Route) error
|
2019-08-20 23:11:27 +03:00
|
|
|
// List all routes in the table
|
2019-07-29 20:57:40 +03:00
|
|
|
List() ([]Route, error)
|
2019-08-20 23:11:27 +03:00
|
|
|
// Query routes in the routing table
|
2019-10-09 19:13:52 +03:00
|
|
|
Query(...QueryOption) ([]Route, error)
|
2019-07-29 20:57:40 +03:00
|
|
|
}
|
|
|
|
|
2019-07-03 21:50:07 +03:00
|
|
|
// Option used by the router
|
|
|
|
type Option func(*Options)
|
|
|
|
|
2019-07-24 19:16:52 +03:00
|
|
|
// StatusCode defines router status
|
|
|
|
type StatusCode int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Running means the router is up and running
|
|
|
|
Running StatusCode = iota
|
|
|
|
// Stopped means the router has been stopped
|
|
|
|
Stopped
|
|
|
|
// Error means the router has encountered error
|
|
|
|
Error
|
|
|
|
)
|