micro/registry/registry.go

91 lines
2.6 KiB
Go
Raw Normal View History

2016-12-14 18:41:48 +03:00
// Package registry is an interface for service discovery
2015-01-14 02:31:27 +03:00
package registry
2016-02-25 15:42:31 +03:00
import (
"context"
2016-02-25 15:42:31 +03:00
"errors"
"github.com/unistack-org/micro/v3/metadata"
2016-02-25 15:42:31 +03:00
)
const (
// WildcardDomain indicates any domain
WildcardDomain = "*"
// DefaultDomain to use if none was provided in options
DefaultDomain = "micro"
)
var (
// DefaultRegistry is the global default registry
DefaultRegistry Registry = NewRegistry()
// ErrNotFound returned when GetService is called and no services found
ErrNotFound = errors.New("service not found")
// ErrWatcherStopped returned when when watcher is stopped
ErrWatcherStopped = errors.New("watcher stopped")
)
2016-01-31 00:13:34 +03:00
// The registry provides an interface for service discovery
// and an abstraction over varying implementations
// {consul, etcd, zookeeper, ...}
2015-01-14 02:31:27 +03:00
type Registry interface {
Init(...Option) error
Options() Options
Connect(context.Context) error
Disconnect(context.Context) error
Register(context.Context, *Service, ...RegisterOption) error
Deregister(context.Context, *Service, ...DeregisterOption) error
GetService(context.Context, string, ...GetOption) ([]*Service, error)
ListServices(context.Context, ...ListOption) ([]*Service, error)
Watch(context.Context, ...WatchOption) (Watcher, error)
2015-12-20 00:56:14 +03:00
String() string
}
// Service holds service registry info
2020-04-12 12:58:12 +03:00
type Service struct {
Name string `json:"name"`
Version string `json:"version"`
Metadata metadata.Metadata `json:"metadata"`
2020-04-12 12:58:12 +03:00
Endpoints []*Endpoint `json:"endpoints"`
Nodes []*Node `json:"nodes"`
}
// Node holds node registry info
2020-04-12 12:58:12 +03:00
type Node struct {
Id string `json:"id"`
Address string `json:"address"`
Metadata metadata.Metadata `json:"metadata"`
2020-04-12 12:58:12 +03:00
}
// Endpoint holds endpoint registry info
2020-04-12 12:58:12 +03:00
type Endpoint struct {
Name string `json:"name"`
Request *Value `json:"request"`
Response *Value `json:"response"`
Metadata metadata.Metadata `json:"metadata"`
2020-04-12 12:58:12 +03:00
}
// Valud holds additional kv stuff
2020-04-12 12:58:12 +03:00
type Value struct {
Name string `json:"name"`
Type string `json:"type"`
Values []*Value `json:"values"`
}
// Option func signature
2015-12-19 21:28:08 +03:00
type Option func(*Options)
// RegisterOption option is used to register service
2016-01-27 02:32:27 +03:00
type RegisterOption func(*RegisterOptions)
// WatchOption option is used to watch service changes
2018-02-19 20:12:37 +03:00
type WatchOption func(*WatchOptions)
// DeregisterOption option is used to deregister service
2020-04-14 14:32:59 +03:00
type DeregisterOption func(*DeregisterOptions)
// GetOption option is used to get service
2020-04-14 14:32:59 +03:00
type GetOption func(*GetOptions)
// ListOption option is used to list services
2020-04-14 14:32:59 +03:00
type ListOption func(*ListOptions)