mirror of
https://github.com/abiosoft/colima.git
synced 2026-06-16 12:14:32 +00:00
110 lines
2.8 KiB
Go
110 lines
2.8 KiB
Go
package daemon
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/abiosoft/colima/cmd/root"
|
|
"github.com/abiosoft/colima/config"
|
|
"github.com/abiosoft/colima/daemon/process"
|
|
"github.com/abiosoft/colima/daemon/process/inotify"
|
|
"github.com/abiosoft/colima/daemon/process/vmnet"
|
|
"github.com/abiosoft/colima/environment/host"
|
|
"github.com/abiosoft/colima/environment/vm/lima"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var daemonCmd = &cobra.Command{
|
|
Use: "daemon",
|
|
Short: "daemon",
|
|
Long: `runner for background daemons.`,
|
|
Hidden: true,
|
|
}
|
|
|
|
var startCmd = &cobra.Command{
|
|
Use: "start [profile]",
|
|
Short: "start daemon",
|
|
Long: `start the daemon`,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
config.SetProfile(args[0])
|
|
ctx := cmd.Context()
|
|
|
|
var processes []process.Process
|
|
if daemonArgs.vmnet.enabled {
|
|
processes = append(processes, vmnet.New(daemonArgs.vmnet.mode, daemonArgs.vmnet.netInterface))
|
|
}
|
|
if daemonArgs.inotify.enabled {
|
|
processes = append(processes, inotify.New())
|
|
guest := lima.New(host.New())
|
|
args := inotify.Args{
|
|
GuestActions: guest,
|
|
Runtime: daemonArgs.inotify.runtime,
|
|
Dirs: daemonArgs.inotify.dirs,
|
|
}
|
|
ctx = context.WithValue(ctx, inotify.CtxKeyArgs(), args)
|
|
}
|
|
|
|
return start(ctx, processes)
|
|
},
|
|
}
|
|
|
|
var stopCmd = &cobra.Command{
|
|
Use: "stop [profile]",
|
|
Short: "stop daemon",
|
|
Long: `stop the daemon`,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
config.SetProfile(args[0])
|
|
|
|
// wait for 60 seconds
|
|
timeout := time.Second * 60
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
defer cancel()
|
|
|
|
return stop(ctx)
|
|
},
|
|
}
|
|
|
|
var statusCmd = &cobra.Command{
|
|
Use: "status",
|
|
Short: "status of the daemon",
|
|
Long: `status of the daemon`,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
config.SetProfile(args[0])
|
|
|
|
return status()
|
|
},
|
|
}
|
|
|
|
var daemonArgs struct {
|
|
vmnet struct {
|
|
enabled bool
|
|
mode string
|
|
netInterface string
|
|
}
|
|
inotify struct {
|
|
enabled bool
|
|
dirs []string
|
|
runtime string
|
|
}
|
|
|
|
verbose bool
|
|
}
|
|
|
|
func init() {
|
|
root.Cmd().AddCommand(daemonCmd)
|
|
|
|
daemonCmd.AddCommand(startCmd)
|
|
daemonCmd.AddCommand(stopCmd)
|
|
daemonCmd.AddCommand(statusCmd)
|
|
|
|
startCmd.Flags().BoolVar(&daemonArgs.vmnet.enabled, "vmnet", false, "start vmnet")
|
|
startCmd.Flags().StringVar(&daemonArgs.vmnet.mode, "vmnet-mode", "shared", "vmnet mode (shared, bridged)")
|
|
startCmd.Flags().StringVar(&daemonArgs.vmnet.netInterface, "vmnet-interface", "en0", "vmnet interface for bridged mode")
|
|
startCmd.Flags().BoolVar(&daemonArgs.inotify.enabled, "inotify", false, "start inotify")
|
|
startCmd.Flags().StringSliceVar(&daemonArgs.inotify.dirs, "inotify-dir", nil, "set inotify directories")
|
|
startCmd.Flags().StringVar(&daemonArgs.inotify.runtime, "inotify-runtime", "docker", "set runtime")
|
|
}
|