commit6bf9fe89f6
Author: Satnam Singh <satnam@google.com> Date: Fri Sep 26 10:23:16 2014 -0700 Change error to warning during handling check. commitc580907183
Author: Satnam Singh <satnam@google.com> Date: Fri Sep 26 10:21:41 2014 -0700 Decapatalise fmt.Errorf error messages. commit3ecc5745d6
Author: Satnam Singh <satnam@google.com> Date: Fri Sep 26 10:19:15 2014 -0700 Fix misunderstanding about when CanHandle fails. commitadce0c5433
Author: Satnam Singh <satnam@google.com> Date: Fri Sep 26 10:13:32 2014 -0700 Change the interface of CanHandle to return error information.
78 lines
2.3 KiB
Go
78 lines
2.3 KiB
Go
// Copyright 2014 Google Inc. All Rights Reserved.
|
|
//
|
|
// 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 container
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/golang/glog"
|
|
)
|
|
|
|
type ContainerHandlerFactory interface {
|
|
// Create a new ContainerHandler using this factory. CanHandle() must have returned true.
|
|
NewContainerHandler(name string) (ContainerHandler, error)
|
|
|
|
// Returns whether this factory can handle the specified container.
|
|
CanHandle(name string) (bool, error)
|
|
|
|
// Name of the factory.
|
|
String() string
|
|
}
|
|
|
|
// TODO(vmarmol): Consider not making this global.
|
|
// Global list of factories.
|
|
var (
|
|
factories []ContainerHandlerFactory
|
|
factoriesLock sync.RWMutex
|
|
)
|
|
|
|
// Register a ContainerHandlerFactory. These should be registered from least general to most general
|
|
// as they will be asked in order whether they can handle a particular container.
|
|
func RegisterContainerHandlerFactory(factory ContainerHandlerFactory) {
|
|
factoriesLock.Lock()
|
|
defer factoriesLock.Unlock()
|
|
|
|
factories = append(factories, factory)
|
|
}
|
|
|
|
// Create a new ContainerHandler for the specified container.
|
|
func NewContainerHandler(name string) (ContainerHandler, error) {
|
|
factoriesLock.RLock()
|
|
defer factoriesLock.RUnlock()
|
|
|
|
// Create the ContainerHandler with the first factory that supports it.
|
|
for _, factory := range factories {
|
|
canHandle, err := factory.CanHandle(name)
|
|
if err != nil {
|
|
glog.V(1).Infof("Error trying to work out if we can hande %s: %v", name, err)
|
|
}
|
|
if canHandle {
|
|
glog.V(1).Infof("Using factory %q for container %q", factory.String(), name)
|
|
return factory.NewContainerHandler(name)
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("no known factory can handle creation of container")
|
|
}
|
|
|
|
// Clear the known factories.
|
|
func ClearContainerHandlerFactories() {
|
|
factoriesLock.Lock()
|
|
defer factoriesLock.Unlock()
|
|
|
|
factories = make([]ContainerHandlerFactory, 0, 4)
|
|
}
|