123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- package main
- import (
- "embed"
- "fmt"
- "io"
- "io/fs"
- "os"
- "strings"
- "sync"
- "text/template"
- "time"
- "unicode"
- "unicode/utf8"
- weed_server "github.com/seaweedfs/seaweedfs/weed/server"
- "github.com/seaweedfs/seaweedfs/weed/util"
- flag "github.com/seaweedfs/seaweedfs/weed/util/fla9"
- "github.com/getsentry/sentry-go"
- "github.com/seaweedfs/seaweedfs/weed/command"
- "github.com/seaweedfs/seaweedfs/weed/glog"
- )
- var IsDebug *bool
- var commands = command.Commands
- var exitStatus = 0
- var exitMu sync.Mutex
- func setExitStatus(n int) {
- exitMu.Lock()
- if exitStatus < n {
- exitStatus = n
- }
- exitMu.Unlock()
- }
- //go:embed static
- var static embed.FS
- func init() {
- weed_server.StaticFS, _ = fs.Sub(static, "static")
- flag.Var(&util.ConfigurationFileDirectory, "config_dir", "directory with toml configuration files")
- }
- func main() {
- glog.MaxSize = 1024 * 1024 * 10
- glog.MaxFileCount = 5
- flag.Usage = usage
- err := sentry.Init(sentry.ClientOptions{
- SampleRate: 0.1,
- EnableTracing: true,
- TracesSampleRate: 0.1,
- ProfilesSampleRate: 0.1,
- })
- if err != nil {
- fmt.Fprintf(os.Stderr, "sentry.Init: %v", err)
- }
- // Flush buffered events before the program terminates.
- // Set the timeout to the maximum duration the program can afford to wait.
- defer sentry.Flush(2 * time.Second)
- if command.AutocompleteMain(commands) {
- return
- }
- flag.Parse()
- args := flag.Args()
- if len(args) < 1 {
- usage()
- }
- if args[0] == "help" {
- help(args[1:])
- for _, cmd := range commands {
- if len(args) >= 2 && cmd.Name() == args[1] && cmd.Run != nil {
- fmt.Fprintf(os.Stderr, "Default Parameters:\n")
- cmd.Flag.PrintDefaults()
- }
- }
- return
- }
- for _, cmd := range commands {
- if cmd.Name() == args[0] && cmd.Run != nil {
- cmd.Flag.Usage = func() { cmd.Usage() }
- cmd.Flag.Parse(args[1:])
- args = cmd.Flag.Args()
- IsDebug = cmd.IsDebug
- if !cmd.Run(cmd, args) {
- fmt.Fprintf(os.Stderr, "\n")
- cmd.Flag.Usage()
- fmt.Fprintf(os.Stderr, "Default Parameters:\n")
- cmd.Flag.PrintDefaults()
- }
- exit()
- return
- }
- }
- fmt.Fprintf(os.Stderr, "weed: unknown subcommand %q\nRun 'weed help' for usage.\n", args[0])
- setExitStatus(2)
- exit()
- }
- var usageTemplate = `
- SeaweedFS: store billions of files and serve them fast!
- Usage:
- weed command [arguments]
- The commands are:
- {{range .}}{{if .Runnable}}
- {{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
- Use "weed help [command]" for more information about a command.
- `
- var helpTemplate = `{{if .Runnable}}Usage: weed {{.UsageLine}}
- {{end}}
- {{.Long}}
- `
- // tmpl executes the given template text on data, writing the result to w.
- func tmpl(w io.Writer, text string, data interface{}) {
- t := template.New("top")
- t.Funcs(template.FuncMap{"trim": strings.TrimSpace, "capitalize": capitalize})
- template.Must(t.Parse(text))
- if err := t.Execute(w, data); err != nil {
- panic(err)
- }
- }
- func capitalize(s string) string {
- if s == "" {
- return s
- }
- r, n := utf8.DecodeRuneInString(s)
- return string(unicode.ToTitle(r)) + s[n:]
- }
- func printUsage(w io.Writer) {
- tmpl(w, usageTemplate, commands)
- }
- func usage() {
- printUsage(os.Stderr)
- fmt.Fprintf(os.Stderr, "For Logging, use \"weed [logging_options] [command]\". The logging options are:\n")
- flag.PrintDefaults()
- os.Exit(2)
- }
- // help implements the 'help' command.
- func help(args []string) {
- if len(args) == 0 {
- printUsage(os.Stdout)
- // not exit 2: succeeded at 'weed help'.
- return
- }
- if len(args) != 1 {
- fmt.Fprintf(os.Stderr, "usage: weed help command\n\nToo many arguments given.\n")
- os.Exit(2) // failed at 'weed help'
- }
- arg := args[0]
- for _, cmd := range commands {
- if cmd.Name() == arg {
- tmpl(os.Stdout, helpTemplate, cmd)
- // not exit 2: succeeded at 'weed help cmd'.
- return
- }
- }
- fmt.Fprintf(os.Stderr, "Unknown help topic %#q. Run 'weed help'.\n", arg)
- os.Exit(2) // failed at 'weed help cmd'
- }
- var atexitFuncs []func()
- func atexit(f func()) {
- atexitFuncs = append(atexitFuncs, f)
- }
- func exit() {
- for _, f := range atexitFuncs {
- f()
- }
- os.Exit(exitStatus)
- }
- func debug(params ...interface{}) {
- glog.V(4).Infoln(params...)
- }
|