| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package backend
- import (
- "context"
- "errors"
- "fmt"
- "github.com/sirupsen/logrus"
- "github.com/docker/api/compose"
- "github.com/docker/api/containers"
- "github.com/docker/api/context/cloud"
- )
- var (
- errNoType = errors.New("backend: no type")
- errNoName = errors.New("backend: no name")
- errTypeRegistered = errors.New("backend: already registered")
- )
- type initFunc func(context.Context) (Service, error)
- type getCloudServiceFunc func() (cloud.Service, error)
- type registeredBackend struct {
- name string
- backendType string
- init initFunc
- getCloudService getCloudServiceFunc
- }
- var backends = struct {
- r []*registeredBackend
- }{}
- // Service aggregates the service interfaces
- type Service interface {
- ContainerService() containers.Service
- ComposeService() compose.Service
- }
- // Register adds a typed backend to the registry
- func Register(name string, backendType string, init initFunc, getCoudService getCloudServiceFunc) {
- if name == "" {
- logrus.Fatal(errNoName)
- }
- if backendType == "" {
- logrus.Fatal(errNoType)
- }
- for _, b := range backends.r {
- if b.backendType == backendType {
- logrus.Fatal(errTypeRegistered)
- }
- }
- backends.r = append(backends.r, ®isteredBackend{
- name,
- backendType,
- init,
- getCoudService,
- })
- }
- // Get returns the backend registered for a particular type, it returns
- // an error if there is no registered backends for the given type.
- func Get(ctx context.Context, backendType string) (Service, error) {
- for _, b := range backends.r {
- if b.backendType == backendType {
- return b.init(ctx)
- }
- }
- return nil, fmt.Errorf("backend not found for context %q", backendType)
- }
- // GetCloudService returns the backend registered for a particular type, it returns
- // an error if there is no registered backends for the given type.
- func GetCloudService(ctx context.Context, backendType string) (cloud.Service, error) {
- for _, b := range backends.r {
- if b.backendType == backendType {
- return b.getCloudService()
- }
- }
- return nil, fmt.Errorf("backend not found for backend type %s", backendType)
- }
|