command.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package command
  2. import (
  3. "fmt"
  4. "os"
  5. "strings"
  6. flag "github.com/seaweedfs/seaweedfs/weed/util/fla9"
  7. )
  8. var Commands = []*Command{
  9. cmdAutocomplete,
  10. cmdUnautocomplete,
  11. cmdBackup,
  12. cmdBenchmark,
  13. cmdCompact,
  14. cmdDownload,
  15. cmdExport,
  16. cmdFiler,
  17. cmdFilerBackup,
  18. cmdFilerCat,
  19. cmdFilerCopy,
  20. cmdFilerMetaBackup,
  21. cmdFilerMetaTail,
  22. cmdFilerRemoteGateway,
  23. cmdFilerRemoteSynchronize,
  24. cmdFilerReplicate,
  25. cmdFilerSynchronize,
  26. cmdFix,
  27. cmdFuse,
  28. cmdIam,
  29. cmdMaster,
  30. cmdMasterFollower,
  31. cmdMount,
  32. cmdMqBroker,
  33. cmdS3,
  34. cmdScaffold,
  35. cmdServer,
  36. cmdShell,
  37. cmdUpdate,
  38. cmdUpload,
  39. cmdVersion,
  40. cmdVolume,
  41. cmdWebDav,
  42. }
  43. type Command struct {
  44. // Run runs the command.
  45. // The args are the arguments after the command name.
  46. Run func(cmd *Command, args []string) bool
  47. // UsageLine is the one-line usage message.
  48. // The first word in the line is taken to be the command name.
  49. UsageLine string
  50. // Short is the short description shown in the 'go help' output.
  51. Short string
  52. // Long is the long message shown in the 'go help <this-command>' output.
  53. Long string
  54. // Flag is a set of flags specific to this command.
  55. Flag flag.FlagSet
  56. IsDebug *bool
  57. }
  58. // Name returns the command's name: the first word in the usage line.
  59. func (c *Command) Name() string {
  60. name := c.UsageLine
  61. i := strings.Index(name, " ")
  62. if i >= 0 {
  63. name = name[:i]
  64. }
  65. return name
  66. }
  67. func (c *Command) Usage() {
  68. fmt.Fprintf(os.Stderr, "Example: weed %s\n", c.UsageLine)
  69. fmt.Fprintf(os.Stderr, "Default Usage:\n")
  70. c.Flag.PrintDefaults()
  71. fmt.Fprintf(os.Stderr, "Description:\n")
  72. fmt.Fprintf(os.Stderr, " %s\n", strings.TrimSpace(c.Long))
  73. os.Exit(2)
  74. }
  75. // Runnable reports whether the command can be run; otherwise
  76. // it is a documentation pseudo-command such as importpath.
  77. func (c *Command) Runnable() bool {
  78. return c.Run != nil
  79. }