commands: Make more commands non-global
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 9 Apr 2018 16:38:21 +0000 (18:38 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 07:48:56 +0000 (09:48 +0200)
See #4598

commands/benchmark.go
commands/check.go
commands/hugo.go
commands/limit_darwin.go

index a31f679e9f12b2a7f1dccff6958db124404ca6ad..ae5d436e8d1d87d0d992115047a06f6f3ecefda9 100644 (file)
@@ -25,10 +25,6 @@ import (
 
 var _ cmder = (*benchmarkCmd)(nil)
 
-type cmder interface {
-       getCommand() *cobra.Command
-}
-
 type benchmarkCmd struct {
        benchmarkTimes int
        cpuProfileFile string
@@ -37,6 +33,10 @@ type benchmarkCmd struct {
        cmd *cobra.Command
 }
 
+type cmder interface {
+       getCommand() *cobra.Command
+}
+
 func (c *benchmarkCmd) getCommand() *cobra.Command {
        return c.cmd
 }
index e5dbc1ffad6cc99bd7a08033b94de589465e410f..5812bb6aa91f6de75903693945632ffed5bef421 100644 (file)
@@ -17,7 +17,20 @@ import (
        "github.com/spf13/cobra"
 )
 
-var checkCmd = &cobra.Command{
-       Use:   "check",
-       Short: "Contains some verification checks",
+var _ cmder = (*checkCmd)(nil)
+
+type checkCmd struct {
+       cmd *cobra.Command
+}
+
+func newCheckCmd() *checkCmd {
+       return &checkCmd{cmd: &cobra.Command{
+               Use:   "check",
+               Short: "Contains some verification checks",
+       },
+       }
+}
+
+func (c *checkCmd) getCommand() *cobra.Command {
+       return c.cmd
 }
index e6c2771fab71bab384bf4228b78f01c2483ce53c..5db5239ea8b6c716956c8149aac14322c4b23ec7 100644 (file)
@@ -197,7 +197,7 @@ func AddCommands() {
        HugoCmd.AddCommand(versionCmd)
        HugoCmd.AddCommand(envCmd)
        HugoCmd.AddCommand(configCmd)
-       HugoCmd.AddCommand(checkCmd)
+       HugoCmd.AddCommand(newCheckCmd().getCommand())
        HugoCmd.AddCommand(newBenchmarkCmd().getCommand())
        HugoCmd.AddCommand(convertCmd)
        HugoCmd.AddCommand(newCmd)
index 9246f4497aad7de78b300ad4787ca0e8a72c3850..e35c24de4a6f3bd7b251f98cdef61cdfdbd2f59e 100644 (file)
@@ -33,39 +33,54 @@ import (
        jww "github.com/spf13/jwalterweatherman"
 )
 
-func init() {
-       checkCmd.AddCommand(limit)
+var _ cmder = (*limitCmd)(nil)
+
+type limitCmd struct {
+       cmd *cobra.Command
 }
 
-var limit = &cobra.Command{
-       Use:   "ulimit",
-       Short: "Check system ulimit settings",
-       Long: `Hugo will inspect the current ulimit settings on the system.
+func newLimitCmd() *limitCmd {
+       ccmd := &cobra.Command{
+               Use:   "ulimit",
+               Short: "Check system ulimit settings",
+               Long: `Hugo will inspect the current ulimit settings on the system.
 This is primarily to ensure that Hugo can watch enough files on some OSs`,
-       RunE: func(cmd *cobra.Command, args []string) error {
-               var rLimit syscall.Rlimit
-               err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
-               if err != nil {
-                       return newSystemError("Error Getting Rlimit ", err)
-               }
+               RunE: func(cmd *cobra.Command, args []string) error {
+                       var rLimit syscall.Rlimit
+                       err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
+                       if err != nil {
+                               return newSystemError("Error Getting Rlimit ", err)
+                       }
 
-               jww.FEEDBACK.Println("Current rLimit:", rLimit)
+                       jww.FEEDBACK.Println("Current rLimit:", rLimit)
 
-               jww.FEEDBACK.Println("Attempting to increase limit")
-               rLimit.Max = 999999
-               rLimit.Cur = 999999
-               err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
-               if err != nil {
-                       return newSystemError("Error Setting rLimit ", err)
-               }
-               err = syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
-               if err != nil {
-                       return newSystemError("Error Getting rLimit ", err)
-               }
-               jww.FEEDBACK.Println("rLimit after change:", rLimit)
+                       jww.FEEDBACK.Println("Attempting to increase limit")
+                       rLimit.Max = 999999
+                       rLimit.Cur = 999999
+                       err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
+                       if err != nil {
+                               return newSystemError("Error Setting rLimit ", err)
+                       }
+                       err = syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
+                       if err != nil {
+                               return newSystemError("Error Getting rLimit ", err)
+                       }
+                       jww.FEEDBACK.Println("rLimit after change:", rLimit)
+
+                       return nil
+               },
+       }
+
+       return &limitCmd{cmd: ccmd}
+}
+
+func (c *limitCmd) getCommand() *cobra.Command {
+       return c.cmd
+}
 
-               return nil
-       },
+func init() {
+       // TODO(bep) cli refactor
+       //checkCmdOld.AddCommand(limit)
 }
 
 func tweakLimit() {