// Copyright 2015 flannel authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package backend import ( "fmt" "strings" "sync" "golang.org/x/net/context" "github.com/flannel-io/flannel/subnet" ) var constructors = make(map[string]BackendCtor) type Manager interface { GetBackend(backendType string) (Backend, error) } type manager struct { ctx context.Context sm subnet.Manager extIface *ExternalInterface mux sync.Mutex active map[string]Backend wg sync.WaitGroup } func NewManager(ctx context.Context, sm subnet.Manager, extIface *ExternalInterface) Manager { return &manager{ ctx: ctx, sm: sm, extIface: extIface, active: make(map[string]Backend), } } func (bm *manager) GetBackend(backendType string) (Backend, error) { bm.mux.Lock() defer bm.mux.Unlock() betype := strings.ToLower(backendType) // see if one is already running if be, ok := bm.active[betype]; ok { return be, nil } // first request, need to create and run it befunc, ok := constructors[betype] if !ok { return nil, fmt.Errorf("unknown backend type: %v", betype) } be, err := befunc(bm.sm, bm.extIface) if err != nil { return nil, err } bm.active[betype] = be bm.wg.Add(1) go func() { <-bm.ctx.Done() // TODO(eyakubovich): this obviosly introduces a race. // GetBackend() could get called while we are here. // Currently though, all backends' Run exit only // on shutdown bm.mux.Lock() delete(bm.active, betype) bm.mux.Unlock() bm.wg.Done() }() return be, nil } func Register(name string, ctor BackendCtor) { constructors[name] = ctor }