2019-06-06 17:37:40 +02:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2019-06-12 23:30:42 +02:00
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/micro/go-micro/registry"
|
2019-06-06 17:37:40 +02:00
|
|
|
)
|
|
|
|
|
2019-06-12 23:30:42 +02:00
|
|
|
var (
|
2019-06-19 22:22:14 +02:00
|
|
|
// DefaultAddress is default router address
|
|
|
|
DefaultAddress = ":9093"
|
2019-06-27 23:52:51 +02:00
|
|
|
// DefaultNetwork is default micro network
|
2019-07-08 17:16:50 +02:00
|
|
|
DefaultNetwork = "micro.mu"
|
2019-06-12 23:30:42 +02:00
|
|
|
)
|
|
|
|
|
2019-06-13 13:09:49 +02:00
|
|
|
// Options are router options
|
2019-06-06 17:37:40 +02:00
|
|
|
type Options struct {
|
2019-06-13 16:12:07 +02:00
|
|
|
// ID is router id
|
2019-06-10 20:50:54 +02:00
|
|
|
ID string
|
2019-06-19 22:22:14 +02:00
|
|
|
// Address is router address
|
2019-06-07 14:29:09 +02:00
|
|
|
Address string
|
2019-06-26 17:03:19 +02:00
|
|
|
// Network is micro network
|
|
|
|
Network string
|
2019-06-27 23:52:51 +02:00
|
|
|
// Gateway is micro network gateway
|
|
|
|
Gateway string
|
2019-06-19 22:22:14 +02:00
|
|
|
// Registry is the local registry
|
|
|
|
Registry registry.Registry
|
2019-06-07 14:29:09 +02:00
|
|
|
// Table is routing table
|
|
|
|
Table Table
|
2019-06-06 17:37:40 +02:00
|
|
|
}
|
|
|
|
|
2019-06-10 20:50:54 +02:00
|
|
|
// ID sets Router ID
|
|
|
|
func ID(id string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.ID = id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 16:12:07 +02:00
|
|
|
// Address sets router service address
|
2019-06-07 18:20:22 +02:00
|
|
|
func Address(a string) Option {
|
2019-06-07 14:29:09 +02:00
|
|
|
return func(o *Options) {
|
2019-06-07 18:20:22 +02:00
|
|
|
o.Address = a
|
2019-06-07 14:29:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:03:19 +02:00
|
|
|
// Network sets router network
|
|
|
|
func Network(n string) Option {
|
2019-06-10 20:50:54 +02:00
|
|
|
return func(o *Options) {
|
2019-06-26 17:03:19 +02:00
|
|
|
o.Network = n
|
2019-06-10 20:50:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-27 23:52:51 +02:00
|
|
|
// Gateway sets network gateway
|
|
|
|
func Gateway(g string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Gateway = g
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:22:14 +02:00
|
|
|
// RoutingTable sets the routing table
|
2019-06-12 23:30:42 +02:00
|
|
|
func RoutingTable(t Table) Option {
|
2019-06-07 18:20:22 +02:00
|
|
|
return func(o *Options) {
|
2019-06-12 23:30:42 +02:00
|
|
|
o.Table = t
|
2019-06-07 14:29:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:22:14 +02:00
|
|
|
// Registry sets the local registry
|
|
|
|
func Registry(r registry.Registry) Option {
|
2019-06-12 23:30:42 +02:00
|
|
|
return func(o *Options) {
|
2019-06-19 22:22:14 +02:00
|
|
|
o.Registry = r
|
2019-06-12 23:30:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultOptions returns router default options
|
|
|
|
func DefaultOptions() Options {
|
|
|
|
return Options{
|
2019-06-26 17:03:19 +02:00
|
|
|
ID: uuid.New().String(),
|
|
|
|
Address: DefaultAddress,
|
2019-06-27 23:52:51 +02:00
|
|
|
Network: DefaultNetwork,
|
2019-06-26 17:03:19 +02:00
|
|
|
Registry: registry.DefaultRegistry,
|
|
|
|
Table: NewTable(),
|
2019-06-07 00:29:24 +02:00
|
|
|
}
|
|
|
|
}
|