2014-03-22 00:30:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-03-22 02:23:13 +00:00
|
|
|
"io"
|
2014-03-22 00:30:15 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2014-03-22 01:18:42 +00:00
|
|
|
"github.com/dotcloud/docker/pkg/dockerscript"
|
2014-03-22 02:23:13 +00:00
|
|
|
"github.com/dotcloud/docker/pkg/beam"
|
2014-03-24 03:46:31 +00:00
|
|
|
"github.com/dotcloud/docker/pkg/term"
|
2014-03-22 02:23:13 +00:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"net"
|
|
|
|
"bytes"
|
|
|
|
"path"
|
2014-03-22 03:54:05 +00:00
|
|
|
"bufio"
|
|
|
|
"strconv"
|
2014-03-22 00:30:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("Initializing engine\n")
|
2014-03-22 02:23:13 +00:00
|
|
|
client, engine, err := beam.USocketPair()
|
|
|
|
if err != nil {
|
|
|
|
Fatal(err)
|
|
|
|
}
|
2014-03-24 03:46:31 +00:00
|
|
|
defer client.Close()
|
2014-03-22 02:23:13 +00:00
|
|
|
go func() {
|
2014-03-24 03:46:31 +00:00
|
|
|
Serve(engine, builtinsHandler)
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("Shutting down engine\n")
|
2014-03-22 02:23:13 +00:00
|
|
|
engine.Close()
|
|
|
|
}()
|
2014-03-24 03:46:31 +00:00
|
|
|
if term.IsTerminal(0) {
|
|
|
|
input := bufio.NewScanner(os.Stdin)
|
|
|
|
for {
|
|
|
|
os.Stdout.Write([]byte("beamsh> "))
|
|
|
|
if !input.Scan() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
line := input.Text()
|
|
|
|
if len(line) != 0 {
|
|
|
|
cmd, err := dockerscript.Parse(strings.NewReader(line))
|
|
|
|
if err != nil {
|
2014-03-24 23:21:55 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "error: %v\n", err)
|
2014-03-24 03:46:31 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
executeScript(client, cmd)
|
|
|
|
}
|
|
|
|
if err := input.Err(); err == io.EOF {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
script, err := dockerscript.Parse(os.Stdin)
|
|
|
|
if err != nil {
|
|
|
|
Fatal("parse error: %v\n", err)
|
|
|
|
}
|
|
|
|
executeScript(client, script)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func executeScript(client *net.UnixConn, script []*dockerscript.Command) {
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("%d commands:\n", len(script))
|
2014-03-22 02:23:13 +00:00
|
|
|
for _, cmd := range script {
|
|
|
|
job, err := beam.SendPipe(client, []byte(strings.Join(cmd.Args, " ")))
|
|
|
|
if err != nil {
|
|
|
|
Fatal(err)
|
|
|
|
}
|
2014-03-24 03:46:31 +00:00
|
|
|
// TODO: pass a default handler to deal with 'status'
|
|
|
|
// --> use beam chaining?
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("Listening for reply messages\n")
|
2014-03-24 03:46:31 +00:00
|
|
|
Serve(job, builtinsHandler)
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("[%s] done\n", strings.Join(cmd.Args, " "))
|
2014-03-22 02:23:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 03:54:05 +00:00
|
|
|
func parseMsgPayload(payload []byte) ([]string, error) {
|
|
|
|
// FIXME: send structured message instead of a text script
|
|
|
|
cmds, err := dockerscript.Parse(bytes.NewReader(payload))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(cmds) == 0 {
|
|
|
|
return nil, fmt.Errorf("empty command")
|
|
|
|
}
|
|
|
|
// We don't care about multiple commands or children
|
|
|
|
return cmds[0].Args, nil
|
|
|
|
}
|
|
|
|
|
2014-03-22 02:23:13 +00:00
|
|
|
func CmdCat(args []string, f *os.File) {
|
|
|
|
for _, name := range args[1:] {
|
|
|
|
f, err := os.Open(name)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
io.Copy(os.Stdout, f)
|
|
|
|
f.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func CmdEcho(args []string, f *os.File) {
|
2014-03-22 03:54:05 +00:00
|
|
|
resp, err := beam.FdConn(int(f.Fd()))
|
|
|
|
if err != nil {
|
2014-03-24 03:45:44 +00:00
|
|
|
Fatal(err)
|
2014-03-22 03:54:05 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-24 03:45:44 +00:00
|
|
|
defer resp.Close()
|
2014-03-22 03:54:05 +00:00
|
|
|
r, w, err := os.Pipe()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("[CmdEcho] stdout pipe() r=%d w=%d\n", r.Fd(), w.Fd())
|
2014-03-22 03:54:05 +00:00
|
|
|
if err := beam.Send(resp, []byte("log stdout"), r); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w, strings.Join(args[1:], " "))
|
|
|
|
w.Close()
|
2014-03-22 02:23:13 +00:00
|
|
|
}
|
|
|
|
|
2014-03-22 03:54:05 +00:00
|
|
|
func CmdExit(args []string, f *os.File) {
|
|
|
|
var status int
|
|
|
|
if len(args) > 1 {
|
|
|
|
val, err := strconv.ParseInt(args[1], 10, 32)
|
|
|
|
if err == nil {
|
|
|
|
status = int(val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
os.Exit(status)
|
|
|
|
}
|
|
|
|
|
2014-03-24 03:46:31 +00:00
|
|
|
// 'status' is a notification of a job's status.
|
|
|
|
//
|
|
|
|
func parseEnv(args []string) ([]string, map[string]string) {
|
|
|
|
var argsOut []string
|
|
|
|
env := make(map[string]string)
|
|
|
|
for _, word := range args[1:] {
|
|
|
|
if strings.Contains(word, "=") {
|
|
|
|
kv := strings.SplitN(word, "=", 2)
|
|
|
|
key := kv[0]
|
|
|
|
var val string
|
|
|
|
if len(kv) == 2 {
|
|
|
|
val = kv[1]
|
|
|
|
}
|
|
|
|
env[key] = val
|
|
|
|
} else {
|
|
|
|
argsOut = append(argsOut, word)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return argsOut, env
|
|
|
|
}
|
|
|
|
|
2014-03-22 03:54:05 +00:00
|
|
|
func CmdLog(args []string, f *os.File) {
|
2014-03-24 23:21:55 +00:00
|
|
|
defer Debugf("CmdLog done\n")
|
2014-03-22 03:54:05 +00:00
|
|
|
name := args[1]
|
|
|
|
input := bufio.NewScanner(f)
|
|
|
|
for input.Scan() {
|
|
|
|
line := input.Text()
|
|
|
|
if len(line) > 0 {
|
|
|
|
fmt.Printf("[%s] %s\n", name, line)
|
|
|
|
}
|
|
|
|
if err := input.Err(); err != nil {
|
|
|
|
fmt.Printf("[%s:%s]\n", name, err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 02:23:13 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 03:46:31 +00:00
|
|
|
func Serve(endpoint *net.UnixConn, handler func([]string, *os.File)) error {
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("[Serve %#v]\n", handler)
|
|
|
|
defer Debugf("[Serve %#v] done\n", handler)
|
2014-03-22 02:23:13 +00:00
|
|
|
var tasks sync.WaitGroup
|
|
|
|
defer tasks.Wait()
|
|
|
|
for {
|
|
|
|
payload, attachment, err := beam.Receive(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tasks.Add(1)
|
2014-03-24 03:46:31 +00:00
|
|
|
// Handle new message
|
2014-03-22 02:23:13 +00:00
|
|
|
go func(payload []byte, attachment *os.File) {
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("---> Handling '%s' [fd=%d]\n", payload, attachment.Fd())
|
2014-03-22 02:23:13 +00:00
|
|
|
defer tasks.Done()
|
2014-03-22 03:54:05 +00:00
|
|
|
if attachment != nil {
|
2014-03-24 03:46:31 +00:00
|
|
|
defer func() {
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("---> Closing attachment [fd=%d] for msg '%s'\n", attachment.Fd(), payload)
|
2014-03-24 03:46:31 +00:00
|
|
|
attachment.Close()
|
|
|
|
}()
|
|
|
|
} else {
|
2014-03-24 23:21:55 +00:00
|
|
|
defer Debugf("---> No attachment to close for msg '%s'\n", payload)
|
2014-03-22 03:54:05 +00:00
|
|
|
}
|
|
|
|
args, err := parseMsgPayload(payload)
|
2014-03-22 02:23:13 +00:00
|
|
|
if err != nil {
|
|
|
|
Logf("error parsing beam message: %s\n", err)
|
|
|
|
if attachment != nil {
|
|
|
|
attachment.Close()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("---> calling handler for '%s'\n", args[0])
|
2014-03-24 03:46:31 +00:00
|
|
|
handler(args, attachment)
|
2014-03-24 23:21:55 +00:00
|
|
|
Debugf("---> handler returned for '%s'\n", args[0])
|
2014-03-22 02:23:13 +00:00
|
|
|
}(payload, attachment)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-24 03:46:31 +00:00
|
|
|
func builtinsHandler(args []string, attachment *os.File) {
|
|
|
|
if args[0] == "exit" {
|
|
|
|
CmdExit(args, attachment)
|
|
|
|
} else if args[0] == "cat" {
|
|
|
|
CmdCat(args, attachment)
|
|
|
|
} else if args[0] == "echo" {
|
|
|
|
CmdEcho(args, attachment)
|
|
|
|
} else if args[0] == "log" {
|
|
|
|
CmdLog(args, attachment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 02:23:13 +00:00
|
|
|
|
|
|
|
func Logf(msg string, args ...interface{}) (int, error) {
|
|
|
|
if len(msg) == 0 || msg[len(msg) - 1] != '\n' {
|
|
|
|
msg = msg + "\n"
|
2014-03-22 00:30:15 +00:00
|
|
|
}
|
2014-03-22 02:23:13 +00:00
|
|
|
msg = fmt.Sprintf("[%v] [%v] %s", os.Getpid(), path.Base(os.Args[0]), msg)
|
|
|
|
return fmt.Printf(msg, args...)
|
|
|
|
}
|
|
|
|
|
2014-03-24 23:21:55 +00:00
|
|
|
func Debugf(msg string, args ...interface{}) {
|
|
|
|
if os.Getenv("DEBUG") != "" {
|
|
|
|
Logf(msg, args...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 02:23:13 +00:00
|
|
|
func Fatalf(msg string, args ...interface{}) {
|
|
|
|
Logf(msg, args)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Fatal(args ...interface{}) {
|
|
|
|
Fatalf("%v", args[0])
|
2014-03-22 00:30:15 +00:00
|
|
|
}
|