2015-01-14 01:31:27 +02:00
|
|
|
package registry
|
|
|
|
|
|
|
|
type Registry interface {
|
2015-05-25 23:14:28 +02:00
|
|
|
Register(*Service) error
|
|
|
|
Deregister(*Service) error
|
|
|
|
GetService(string) (*Service, error)
|
|
|
|
ListServices() ([]*Service, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Service struct {
|
|
|
|
Name string
|
2015-05-26 23:39:48 +02:00
|
|
|
Metadata map[string]string
|
2015-05-25 23:14:28 +02:00
|
|
|
Nodes []*Node
|
|
|
|
}
|
|
|
|
|
|
|
|
type Node struct {
|
|
|
|
Id string
|
|
|
|
Address string
|
|
|
|
Port int
|
2015-05-26 23:39:48 +02:00
|
|
|
Metadata map[string]string
|
2015-01-14 01:31:27 +02:00
|
|
|
}
|
|
|
|
|
2015-05-16 01:34:02 +02:00
|
|
|
type options struct{}
|
|
|
|
|
2015-05-23 21:04:16 +02:00
|
|
|
type Option func(*options)
|
2015-05-16 01:34:02 +02:00
|
|
|
|
2015-01-14 01:31:27 +02:00
|
|
|
var (
|
2015-05-23 21:04:16 +02:00
|
|
|
DefaultRegistry = newConsulRegistry([]string{})
|
2015-01-14 01:31:27 +02:00
|
|
|
)
|
|
|
|
|
2015-05-23 21:04:16 +02:00
|
|
|
func NewRegistry(addrs []string, opt ...Option) Registry {
|
|
|
|
return newConsulRegistry(addrs, opt...)
|
|
|
|
}
|
|
|
|
|
2015-05-25 23:14:28 +02:00
|
|
|
func Register(s *Service) error {
|
2015-01-14 01:31:27 +02:00
|
|
|
return DefaultRegistry.Register(s)
|
|
|
|
}
|
|
|
|
|
2015-05-25 23:14:28 +02:00
|
|
|
func Deregister(s *Service) error {
|
2015-01-14 01:31:27 +02:00
|
|
|
return DefaultRegistry.Deregister(s)
|
|
|
|
}
|
|
|
|
|
2015-05-25 23:14:28 +02:00
|
|
|
func GetService(name string) (*Service, error) {
|
2015-01-14 01:31:27 +02:00
|
|
|
return DefaultRegistry.GetService(name)
|
|
|
|
}
|
2015-04-03 00:52:49 +02:00
|
|
|
|
2015-05-25 23:14:28 +02:00
|
|
|
func ListServices() ([]*Service, error) {
|
2015-04-03 00:52:49 +02:00
|
|
|
return DefaultRegistry.ListServices()
|
|
|
|
}
|