1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package main
- import (
- "fmt"
- "net"
- "os"
- "path/filepath"
- "syscall"
- "github.com/Sirupsen/logrus"
- "github.com/docker/docker/libcontainerd"
- "github.com/docker/docker/pkg/system"
- )
- var defaultDaemonConfigFile = ""
- // currentUserIsOwner checks whether the current user is the owner of the given
- // file.
- func currentUserIsOwner(f string) bool {
- return false
- }
- // setDefaultUmask doesn't do anything on windows
- func setDefaultUmask() error {
- return nil
- }
- func getDaemonConfDir(root string) string {
- return filepath.Join(root, `\config`)
- }
- // preNotifySystem sends a message to the host when the API is active, but before the daemon is
- func preNotifySystem() {
- // start the service now to prevent timeouts waiting for daemon to start
- // but still (eventually) complete all requests that are sent after this
- if service != nil {
- err := service.started()
- if err != nil {
- logrus.Fatal(err)
- }
- }
- }
- // notifySystem sends a message to the host when the server is ready to be used
- func notifySystem() {
- }
- // notifyShutdown is called after the daemon shuts down but before the process exits.
- func notifyShutdown(err error) {
- if service != nil {
- if err != nil {
- logrus.Fatal(err)
- }
- service.stopped(err)
- }
- }
- // setupConfigReloadTrap configures a Win32 event to reload the configuration.
- func (cli *DaemonCli) setupConfigReloadTrap() {
- go func() {
- sa := syscall.SecurityAttributes{
- Length: 0,
- }
- ev := "Global\\docker-daemon-config-" + fmt.Sprint(os.Getpid())
- if h, _ := system.CreateEvent(&sa, false, false, ev); h != 0 {
- logrus.Debugf("Config reload - waiting signal at %s", ev)
- for {
- syscall.WaitForSingleObject(h, syscall.INFINITE)
- cli.reloadConfig()
- }
- }
- }()
- }
- func (cli *DaemonCli) getPlatformRemoteOptions() []libcontainerd.RemoteOption {
- return nil
- }
- // getLibcontainerdRoot gets the root directory for libcontainerd to store its
- // state. The Windows libcontainerd implementation does not need to write a spec
- // or state to disk, so this is a no-op.
- func (cli *DaemonCli) getLibcontainerdRoot() string {
- return ""
- }
- // getSwarmRunRoot gets the root directory for swarm to store runtime state
- // For example, the control socket
- func (cli *DaemonCli) getSwarmRunRoot() string {
- return ""
- }
- func allocateDaemonPort(addr string) error {
- return nil
- }
- func wrapListeners(proto string, ls []net.Listener) []net.Listener {
- return ls
- }
|