2013-10-21 10:04:42 -06:00
|
|
|
package engine
|
|
|
|
|
|
|
|
import (
|
2014-02-15 15:05:28 -08:00
|
|
|
"bufio"
|
2013-10-21 10:04:42 -06:00
|
|
|
"fmt"
|
2013-12-05 16:22:49 -08:00
|
|
|
"io"
|
2013-11-07 12:19:24 -08:00
|
|
|
"os"
|
2014-02-15 15:06:21 -08:00
|
|
|
"sort"
|
2013-10-27 07:01:15 +00:00
|
|
|
"strings"
|
2014-05-09 18:09:59 +00:00
|
|
|
|
2014-07-24 22:19:50 +00:00
|
|
|
"github.com/docker/docker/utils"
|
2013-10-21 10:04:42 -06:00
|
|
|
)
|
|
|
|
|
2014-04-22 16:51:06 -07:00
|
|
|
// Installer is a standard interface for objects which can "install" themselves
|
|
|
|
// on an engine by registering handlers.
|
|
|
|
// This can be used as an entrypoint for external plugins etc.
|
|
|
|
type Installer interface {
|
|
|
|
Install(*Engine) error
|
|
|
|
}
|
|
|
|
|
2013-11-20 07:37:03 +00:00
|
|
|
type Handler func(*Job) Status
|
2013-10-21 10:04:42 -06:00
|
|
|
|
|
|
|
var globalHandlers map[string]Handler
|
|
|
|
|
2013-10-26 19:24:01 -07:00
|
|
|
func init() {
|
|
|
|
globalHandlers = make(map[string]Handler)
|
|
|
|
}
|
|
|
|
|
2013-10-21 10:04:42 -06:00
|
|
|
func Register(name string, handler Handler) error {
|
2013-10-27 06:54:51 +00:00
|
|
|
_, exists := globalHandlers[name]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("Can't overwrite global handler for command %s", name)
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
|
|
|
globalHandlers[name] = handler
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-24 12:26:56 -08:00
|
|
|
func unregister(name string) {
|
|
|
|
delete(globalHandlers, name)
|
|
|
|
}
|
|
|
|
|
2013-10-21 10:04:42 -06:00
|
|
|
// The Engine is the core of Docker.
|
|
|
|
// It acts as a store for *containers*, and allows manipulation of these
|
|
|
|
// containers by executing *jobs*.
|
|
|
|
type Engine struct {
|
2013-11-13 19:25:55 +00:00
|
|
|
handlers map[string]Handler
|
2014-04-24 00:36:21 -07:00
|
|
|
catchall Handler
|
2013-11-13 19:25:55 +00:00
|
|
|
hack Hack // data for temporary hackery (see hack.go)
|
|
|
|
id string
|
2013-12-05 16:22:49 -08:00
|
|
|
Stdout io.Writer
|
|
|
|
Stderr io.Writer
|
|
|
|
Stdin io.Reader
|
2014-02-15 14:11:15 -08:00
|
|
|
Logging bool
|
2013-10-27 07:01:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-27 06:54:51 +00:00
|
|
|
func (eng *Engine) Register(name string, handler Handler) error {
|
|
|
|
_, exists := eng.handlers[name]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("Can't overwrite handler for command %s", name)
|
|
|
|
}
|
|
|
|
eng.handlers[name] = handler
|
|
|
|
return nil
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
|
|
|
|
2014-04-24 00:36:21 -07:00
|
|
|
func (eng *Engine) RegisterCatchall(catchall Handler) {
|
|
|
|
eng.catchall = catchall
|
|
|
|
}
|
|
|
|
|
2014-03-14 16:53:43 -07:00
|
|
|
// New initializes a new engine.
|
2014-04-23 11:54:35 -07:00
|
|
|
func New() *Engine {
|
2013-10-21 10:04:42 -06:00
|
|
|
eng := &Engine{
|
2013-11-13 19:25:55 +00:00
|
|
|
handlers: make(map[string]Handler),
|
|
|
|
id: utils.RandomString(),
|
2013-12-05 16:22:49 -08:00
|
|
|
Stdout: os.Stdout,
|
|
|
|
Stderr: os.Stderr,
|
|
|
|
Stdin: os.Stdin,
|
2014-02-15 14:11:15 -08:00
|
|
|
Logging: true,
|
2013-10-27 06:54:51 +00:00
|
|
|
}
|
2014-02-15 15:06:21 -08:00
|
|
|
eng.Register("commands", func(job *Job) Status {
|
|
|
|
for _, name := range eng.commands() {
|
|
|
|
job.Printf("%s\n", name)
|
|
|
|
}
|
|
|
|
return StatusOK
|
|
|
|
})
|
2013-10-27 06:54:51 +00:00
|
|
|
// Copy existing global handlers
|
|
|
|
for k, v := range globalHandlers {
|
|
|
|
eng.handlers[k] = v
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
2014-04-23 11:54:35 -07:00
|
|
|
return eng
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
|
|
|
|
2013-10-27 07:01:15 +00:00
|
|
|
func (eng *Engine) String() string {
|
2014-03-14 16:53:43 -07:00
|
|
|
return fmt.Sprintf("%s", eng.id[:8])
|
2013-10-27 07:01:15 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 15:06:21 -08:00
|
|
|
// Commands returns a list of all currently registered commands,
|
|
|
|
// sorted alphabetically.
|
|
|
|
func (eng *Engine) commands() []string {
|
|
|
|
names := make([]string, 0, len(eng.handlers))
|
|
|
|
for name := range eng.handlers {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
sort.Strings(names)
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
2013-10-21 10:04:42 -06:00
|
|
|
// Job creates a new job which can later be executed.
|
|
|
|
// This function mimics `Command` from the standard os/exec package.
|
2013-10-26 17:49:16 -07:00
|
|
|
func (eng *Engine) Job(name string, args ...string) *Job {
|
2013-10-21 10:04:42 -06:00
|
|
|
job := &Job{
|
2013-11-13 19:25:55 +00:00
|
|
|
Eng: eng,
|
|
|
|
Name: name,
|
|
|
|
Args: args,
|
2013-11-20 07:37:03 +00:00
|
|
|
Stdin: NewInput(),
|
|
|
|
Stdout: NewOutput(),
|
|
|
|
Stderr: NewOutput(),
|
2013-12-08 06:06:05 +00:00
|
|
|
env: &Env{},
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
2014-02-15 14:11:15 -08:00
|
|
|
if eng.Logging {
|
|
|
|
job.Stderr.Add(utils.NopWriteCloser(eng.Stderr))
|
|
|
|
}
|
2014-05-01 16:10:20 -07:00
|
|
|
|
|
|
|
// Catchall is shadowed by specific Register.
|
|
|
|
if handler, exists := eng.handlers[name]; exists {
|
|
|
|
job.handler = handler
|
2014-05-01 18:39:46 -07:00
|
|
|
} else if eng.catchall != nil && name != "" {
|
|
|
|
// empty job names are illegal, catchall or not.
|
2014-04-24 00:36:21 -07:00
|
|
|
job.handler = eng.catchall
|
2013-10-26 17:49:16 -07:00
|
|
|
}
|
|
|
|
return job
|
2013-10-21 10:04:42 -06:00
|
|
|
}
|
|
|
|
|
2014-02-15 15:05:28 -08:00
|
|
|
// ParseJob creates a new job from a text description using a shell-like syntax.
|
|
|
|
//
|
|
|
|
// The following syntax is used to parse `input`:
|
|
|
|
//
|
|
|
|
// * Words are separated using standard whitespaces as separators.
|
|
|
|
// * Quotes and backslashes are not interpreted.
|
|
|
|
// * Words of the form 'KEY=[VALUE]' are added to the job environment.
|
|
|
|
// * All other words are added to the job arguments.
|
|
|
|
//
|
|
|
|
// For example:
|
|
|
|
//
|
|
|
|
// job, _ := eng.ParseJob("VERBOSE=1 echo hello TEST=true world")
|
|
|
|
//
|
|
|
|
// The resulting job will have:
|
|
|
|
// job.Args={"echo", "hello", "world"}
|
|
|
|
// job.Env={"VERBOSE":"1", "TEST":"true"}
|
|
|
|
//
|
|
|
|
func (eng *Engine) ParseJob(input string) (*Job, error) {
|
|
|
|
// FIXME: use a full-featured command parser
|
|
|
|
scanner := bufio.NewScanner(strings.NewReader(input))
|
|
|
|
scanner.Split(bufio.ScanWords)
|
|
|
|
var (
|
|
|
|
cmd []string
|
|
|
|
env Env
|
|
|
|
)
|
|
|
|
for scanner.Scan() {
|
|
|
|
word := scanner.Text()
|
|
|
|
kv := strings.SplitN(word, "=", 2)
|
|
|
|
if len(kv) == 2 {
|
|
|
|
env.Set(kv[0], kv[1])
|
|
|
|
} else {
|
|
|
|
cmd = append(cmd, word)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(cmd) == 0 {
|
|
|
|
return nil, fmt.Errorf("empty command: '%s'", input)
|
|
|
|
}
|
|
|
|
job := eng.Job(cmd[0], cmd[1:]...)
|
|
|
|
job.Env().Init(&env)
|
|
|
|
return job, nil
|
|
|
|
}
|
|
|
|
|
2013-10-27 07:01:15 +00:00
|
|
|
func (eng *Engine) Logf(format string, args ...interface{}) (n int, err error) {
|
2014-02-15 14:11:15 -08:00
|
|
|
if !eng.Logging {
|
|
|
|
return 0, nil
|
2014-01-22 13:35:35 -08:00
|
|
|
}
|
2014-02-15 14:11:15 -08:00
|
|
|
prefixedFormat := fmt.Sprintf("[%s] %s\n", eng, strings.TrimRight(format, "\n"))
|
|
|
|
return fmt.Fprintf(eng.Stderr, prefixedFormat, args...)
|
2013-10-27 07:01:15 +00:00
|
|
|
}
|