2016-12-14 17:41:48 +02:00
|
|
|
// Package registry is an interface for service discovery
|
2015-01-14 01:31:27 +02:00
|
|
|
package registry
|
|
|
|
|
2016-02-25 14:42:31 +02:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// The registry provides an interface for service discovery
|
|
|
|
// and an abstraction over varying implementations
|
|
|
|
// {consul, etcd, zookeeper, ...}
|
2015-01-14 01:31:27 +02:00
|
|
|
type Registry interface {
|
2016-01-27 01:32:27 +02:00
|
|
|
Register(*Service, ...RegisterOption) error
|
2015-05-25 23:14:28 +02:00
|
|
|
Deregister(*Service) error
|
2015-11-08 03:48:48 +02:00
|
|
|
GetService(string) ([]*Service, error)
|
2015-05-25 23:14:28 +02:00
|
|
|
ListServices() ([]*Service, error)
|
2018-02-19 19:12:37 +02:00
|
|
|
Watch(...WatchOption) (Watcher, error)
|
2015-12-19 23:56:14 +02:00
|
|
|
String() string
|
2017-09-28 12:16:56 +02:00
|
|
|
Options() Options
|
2015-06-01 19:55:27 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 20:28:08 +02:00
|
|
|
type Option func(*Options)
|
2015-05-16 01:34:02 +02:00
|
|
|
|
2016-01-27 01:32:27 +02:00
|
|
|
type RegisterOption func(*RegisterOptions)
|
|
|
|
|
2018-02-19 19:12:37 +02:00
|
|
|
type WatchOption func(*WatchOptions)
|
|
|
|
|
2015-01-14 01:31:27 +02:00
|
|
|
var (
|
2016-03-16 00:20:21 +02:00
|
|
|
DefaultRegistry = newConsulRegistry()
|
2016-02-25 14:42:31 +02:00
|
|
|
|
|
|
|
ErrNotFound = errors.New("not found")
|
2015-01-14 01:31:27 +02:00
|
|
|
)
|
|
|
|
|
2016-03-16 00:20:21 +02:00
|
|
|
func NewRegistry(opts ...Option) Registry {
|
|
|
|
return newConsulRegistry(opts...)
|
2015-05-23 21:04:16 +02:00
|
|
|
}
|
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// Register a service node. Additionally supply options such as TTL.
|
2016-01-27 01:32:27 +02:00
|
|
|
func Register(s *Service, opts ...RegisterOption) error {
|
|
|
|
return DefaultRegistry.Register(s, opts...)
|
2015-01-14 01:31:27 +02:00
|
|
|
}
|
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// Deregister a service node
|
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)
|
|
|
|
}
|
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// Retrieve a service. A slice is returned since we separate Name/Version.
|
2015-11-08 03:48:48 +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
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// List the services. Only returns service names
|
2015-05-25 23:14:28 +02:00
|
|
|
func ListServices() ([]*Service, error) {
|
2015-04-03 00:52:49 +02:00
|
|
|
return DefaultRegistry.ListServices()
|
|
|
|
}
|
2015-12-05 03:12:29 +02:00
|
|
|
|
2016-01-30 23:13:34 +02:00
|
|
|
// Watch returns a watcher which allows you to track updates to the registry.
|
2018-02-19 19:12:37 +02:00
|
|
|
func Watch(opts ...WatchOption) (Watcher, error) {
|
|
|
|
return DefaultRegistry.Watch(opts...)
|
2015-12-05 03:12:29 +02:00
|
|
|
}
|
2015-12-19 23:56:14 +02:00
|
|
|
|
|
|
|
func String() string {
|
|
|
|
return DefaultRegistry.String()
|
|
|
|
}
|