mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bc503ca8ab
Signed-off-by: John Howard <jhoward@microsoft.com>
96 lines
2.3 KiB
Go
96 lines
2.3 KiB
Go
// +build windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/docker/autogen/dockerversion"
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/pkg/parsers"
|
|
)
|
|
|
|
// This is a daemon development variable only and should not be
|
|
// used for running production containers on Windows.
|
|
var dummyMode bool
|
|
|
|
// This allows the daemon to terminate containers rather than shutdown
|
|
// This allows the daemon to force kill (HCS terminate) rather than shutdown
|
|
var forceKill bool
|
|
|
|
// Define name and version for windows
|
|
var (
|
|
DriverName = "Windows 1854"
|
|
Version = dockerversion.VERSION + " " + dockerversion.GITCOMMIT
|
|
)
|
|
|
|
type activeContainer struct {
|
|
command *execdriver.Command
|
|
}
|
|
|
|
// Driver contains all information for windows driver,
|
|
// it implements execdriver.Driver
|
|
type Driver struct {
|
|
root string
|
|
initPath string
|
|
activeContainers map[string]*activeContainer
|
|
sync.Mutex
|
|
}
|
|
|
|
// Name implements the exec driver Driver interface.
|
|
func (d *Driver) Name() string {
|
|
return fmt.Sprintf("%s %s", DriverName, Version)
|
|
}
|
|
|
|
// NewDriver returns a new windows driver, called from NewDriver of execdriver.
|
|
func NewDriver(root, initPath string, options []string) (*Driver, error) {
|
|
|
|
for _, option := range options {
|
|
key, val, err := parsers.ParseKeyValueOpt(option)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
key = strings.ToLower(key)
|
|
switch key {
|
|
|
|
case "dummy":
|
|
switch val {
|
|
case "1":
|
|
dummyMode = true
|
|
logrus.Warn("Using dummy mode in Windows exec driver. This is for development use only!")
|
|
}
|
|
|
|
case "forcekill":
|
|
switch val {
|
|
case "1":
|
|
forceKill = true
|
|
logrus.Warn("Using force kill mode in Windows exec driver. This is for testing purposes only.")
|
|
}
|
|
|
|
default:
|
|
return nil, fmt.Errorf("Unrecognised exec driver option %s\n", key)
|
|
}
|
|
}
|
|
|
|
return &Driver{
|
|
root: root,
|
|
initPath: initPath,
|
|
activeContainers: make(map[string]*activeContainer),
|
|
}, nil
|
|
}
|
|
|
|
// setupEnvironmentVariables convert a string array of environment variables
|
|
// into a map as required by the HCS. Source array is in format [v1=k1] [v2=k2] etc.
|
|
func setupEnvironmentVariables(a []string) map[string]string {
|
|
r := make(map[string]string)
|
|
for _, s := range a {
|
|
arr := strings.Split(s, "=")
|
|
if len(arr) == 2 {
|
|
r[arr[0]] = arr[1]
|
|
}
|
|
}
|
|
return r
|
|
}
|