mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
174 lines
4.3 KiB
Go
174 lines
4.3 KiB
Go
// See cmd package.
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/spf13/cobra"
|
|
"github.com/zrepl/zrepl/client"
|
|
"github.com/zrepl/zrepl/config"
|
|
"github.com/zrepl/zrepl/daemon"
|
|
"log"
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "zrepl",
|
|
Short: "One-stop ZFS replication solution",
|
|
}
|
|
|
|
var daemonCmd = &cobra.Command{
|
|
Use: "daemon",
|
|
Short: "run the zrepl daemon",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return daemon.Run(conf)
|
|
},
|
|
}
|
|
|
|
var signalCmd = &cobra.Command{
|
|
Use: "signal [wakeup|reset] JOB",
|
|
Short: "wake up a job from wait state or abort its current invocation",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunSignal(conf, args)
|
|
},
|
|
}
|
|
|
|
var statusCmdFlags client.StatusFlags
|
|
|
|
var statusCmd = &cobra.Command{
|
|
Use: "status",
|
|
Short: "show job activity or dump as JSON for monitoring",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunStatus(statusCmdFlags, conf, args)
|
|
},
|
|
}
|
|
|
|
var stdinserverCmd = &cobra.Command{
|
|
Use: "stdinserver CLIENT_IDENTITY",
|
|
Short: "stdinserver transport mode (started from authorized_keys file as forced command)",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunStdinserver(conf, args)
|
|
},
|
|
}
|
|
|
|
|
|
var bashcompCmd = &cobra.Command{
|
|
Use: "bashcomp path/to/out/file",
|
|
Short: "generate bash completions",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(args) != 1 {
|
|
fmt.Fprintf(os.Stderr, "specify exactly one positional agument\n")
|
|
cmd.Usage()
|
|
os.Exit(1)
|
|
}
|
|
if err := rootCmd.GenBashCompletionFile(args[0]); err != nil {
|
|
fmt.Fprintf(os.Stderr, "error generating bash completion: %s", err)
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
Hidden: true,
|
|
}
|
|
|
|
var configcheckCmd = &cobra.Command{
|
|
Use: "configcheck",
|
|
Short: "check if config can be parsed without errors",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunConfigcheck(conf, args)
|
|
},
|
|
}
|
|
|
|
var versionCmdArgs client.VersionArgs
|
|
var versionCmd = &cobra.Command{
|
|
Use: "version",
|
|
Short: "print version of zrepl binary and running daemon",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err == nil {
|
|
versionCmdArgs.Config = conf
|
|
}
|
|
client.RunVersion(versionCmdArgs)
|
|
},
|
|
}
|
|
|
|
var pprofCmd = &cobra.Command{
|
|
Use: "pprof off | [on TCP_LISTEN_ADDRESS]",
|
|
Short: "start a http server exposing go-tool-compatible profiling endpoints at TCP_LISTEN_ADDRESS",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var pprofCmdArgs client.PProfArgs
|
|
if cmd.Flags().NArg() < 1 {
|
|
goto enargs
|
|
}
|
|
switch cmd.Flags().Arg(0) {
|
|
case "on":
|
|
pprofCmdArgs.Run = true
|
|
if cmd.Flags().NArg() != 2 {
|
|
return errors.New("must specify TCP_LISTEN_ADDRESS as second positional argument")
|
|
}
|
|
pprofCmdArgs.HttpListenAddress = cmd.Flags().Arg(1)
|
|
case "off":
|
|
if cmd.Flags().NArg() != 1 {
|
|
goto enargs
|
|
}
|
|
pprofCmdArgs.Run = false
|
|
}
|
|
|
|
client.RunPProf(conf, pprofCmdArgs)
|
|
return nil
|
|
enargs:
|
|
return errors.New("invalid number of positional arguments")
|
|
|
|
},
|
|
}
|
|
|
|
var rootArgs struct {
|
|
configFile string
|
|
}
|
|
|
|
func init() {
|
|
//cobra.OnInitialize(initConfig)
|
|
rootCmd.PersistentFlags().StringVar(&rootArgs.configFile, "config", "", "config file path")
|
|
rootCmd.AddCommand(daemonCmd)
|
|
rootCmd.AddCommand(signalCmd)
|
|
statusCmd.Flags().BoolVar(&statusCmdFlags.Raw, "raw", false, "dump raw status description from zrepl daemon")
|
|
rootCmd.AddCommand(statusCmd)
|
|
rootCmd.AddCommand(stdinserverCmd)
|
|
rootCmd.AddCommand(bashcompCmd)
|
|
rootCmd.AddCommand(configcheckCmd)
|
|
versionCmd.Flags().StringVar(&versionCmdArgs.Show, "show", "", "version info to show (client|daemon)")
|
|
rootCmd.AddCommand(versionCmd)
|
|
rootCmd.AddCommand(pprofCmd)
|
|
}
|
|
|
|
func main() {
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Printf("error executing root command: %s", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|