123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package client
- import (
- "crypto/tls"
- "encoding/json"
- "errors"
- "fmt"
- "io"
- "net"
- "net/http"
- "os"
- "reflect"
- "strings"
- "text/template"
- "time"
- flag "github.com/docker/docker/pkg/mflag"
- "github.com/docker/docker/pkg/term"
- "github.com/docker/docker/registry"
- "github.com/docker/libtrust"
- )
- type DockerCli struct {
- proto string
- addr string
- configFile *registry.ConfigFile
- in io.ReadCloser
- out io.Writer
- err io.Writer
- key libtrust.PrivateKey
- tlsConfig *tls.Config
- scheme string
- // inFd holds file descriptor of the client's STDIN, if it's a valid file
- inFd uintptr
- // outFd holds file descriptor of the client's STDOUT, if it's a valid file
- outFd uintptr
- // isTerminalIn describes if client's STDIN is a TTY
- isTerminalIn bool
- // isTerminalOut describes if client's STDOUT is a TTY
- isTerminalOut bool
- transport *http.Transport
- }
- var funcMap = template.FuncMap{
- "json": func(v interface{}) string {
- a, _ := json.Marshal(v)
- return string(a)
- },
- }
- func (cli *DockerCli) getMethod(args ...string) (func(...string) error, bool) {
- camelArgs := make([]string, len(args))
- for i, s := range args {
- if len(s) == 0 {
- return nil, false
- }
- camelArgs[i] = strings.ToUpper(s[:1]) + strings.ToLower(s[1:])
- }
- methodName := "Cmd" + strings.Join(camelArgs, "")
- method := reflect.ValueOf(cli).MethodByName(methodName)
- if !method.IsValid() {
- return nil, false
- }
- return method.Interface().(func(...string) error), true
- }
- // Cmd executes the specified command
- func (cli *DockerCli) Cmd(args ...string) error {
- if len(args) > 1 {
- method, exists := cli.getMethod(args[:2]...)
- if exists {
- return method(args[2:]...)
- }
- }
- if len(args) > 0 {
- method, exists := cli.getMethod(args[0])
- if !exists {
- fmt.Fprintf(cli.err, "docker: '%s' is not a docker command. See 'docker --help'.\n", args[0])
- os.Exit(1)
- }
- return method(args[1:]...)
- }
- return cli.CmdHelp()
- }
- func (cli *DockerCli) Subcmd(name, signature, description string, exitOnError bool) *flag.FlagSet {
- var errorHandling flag.ErrorHandling
- if exitOnError {
- errorHandling = flag.ExitOnError
- } else {
- errorHandling = flag.ContinueOnError
- }
- flags := flag.NewFlagSet(name, errorHandling)
- flags.Usage = func() {
- options := ""
- if flags.FlagCountUndeprecated() > 0 {
- options = "[OPTIONS] "
- }
- fmt.Fprintf(cli.out, "\nUsage: docker %s %s%s\n\n%s\n\n", name, options, signature, description)
- flags.SetOutput(cli.out)
- flags.PrintDefaults()
- os.Exit(0)
- }
- return flags
- }
- func (cli *DockerCli) LoadConfigFile() (err error) {
- cli.configFile, err = registry.LoadConfig(os.Getenv("HOME"))
- if err != nil {
- fmt.Fprintf(cli.err, "WARNING: %s\n", err)
- }
- return err
- }
- func (cli *DockerCli) CheckTtyInput(attachStdin, ttyMode bool) error {
- // In order to attach to a container tty, input stream for the client must
- // be a tty itself: redirecting or piping the client standard input is
- // incompatible with `docker run -t`, `docker exec -t` or `docker attach`.
- if ttyMode && attachStdin && !cli.isTerminalIn {
- return errors.New("cannot enable tty mode on non tty input")
- }
- return nil
- }
- func NewDockerCli(in io.ReadCloser, out, err io.Writer, key libtrust.PrivateKey, proto, addr string, tlsConfig *tls.Config) *DockerCli {
- var (
- inFd uintptr
- outFd uintptr
- isTerminalIn = false
- isTerminalOut = false
- scheme = "http"
- )
- if tlsConfig != nil {
- scheme = "https"
- }
- if in != nil {
- if file, ok := in.(*os.File); ok {
- inFd = file.Fd()
- isTerminalIn = term.IsTerminal(inFd)
- }
- }
- if out != nil {
- if file, ok := out.(*os.File); ok {
- outFd = file.Fd()
- isTerminalOut = term.IsTerminal(outFd)
- }
- }
- if err == nil {
- err = out
- }
- // The transport is created here for reuse during the client session
- tr := &http.Transport{
- Proxy: http.ProxyFromEnvironment,
- TLSClientConfig: tlsConfig,
- }
- // Why 32? See issue 8035
- timeout := 32 * time.Second
- if proto == "unix" {
- // no need in compressing for local communications
- tr.DisableCompression = true
- tr.Dial = func(_, _ string) (net.Conn, error) {
- return net.DialTimeout(proto, addr, timeout)
- }
- } else {
- tr.Dial = (&net.Dialer{Timeout: timeout}).Dial
- }
- return &DockerCli{
- proto: proto,
- addr: addr,
- in: in,
- out: out,
- err: err,
- key: key,
- inFd: inFd,
- outFd: outFd,
- isTerminalIn: isTerminalIn,
- isTerminalOut: isTerminalOut,
- tlsConfig: tlsConfig,
- scheme: scheme,
- transport: tr,
- }
- }
|