package commands import ( "fmt" "log" "os" "runtime" "runtime/pprof" "github.com/golangci/golangci-lint/pkg/printers" "github.com/sirupsen/logrus" "github.com/spf13/cobra" "github.com/spf13/pflag" ) func (e *Executor) persistentPostRun(cmd *cobra.Command, args []string) { if e.cfg.Run.PrintVersion { fmt.Fprintf(printers.StdOut, "golangci-lint has version %s built from %s on %s\n", e.version, e.commit, e.date) os.Exit(0) } runtime.GOMAXPROCS(e.cfg.Run.Concurrency) log.SetFlags(0) // don't print time if e.cfg.Run.IsVerbose { logrus.SetLevel(logrus.InfoLevel) } else { logrus.SetLevel(logrus.WarnLevel) } if e.cfg.Run.CPUProfilePath != "" { f, err := os.Create(e.cfg.Run.CPUProfilePath) if err != nil { logrus.Fatal(err) } if err := pprof.StartCPUProfile(f); err != nil { logrus.Fatal(err) } } } func (e *Executor) persistentPreRun(cmd *cobra.Command, args []string) { if e.cfg.Run.CPUProfilePath != "" { pprof.StopCPUProfile() } if e.cfg.Run.MemProfilePath != "" { f, err := os.Create(e.cfg.Run.MemProfilePath) if err != nil { logrus.Fatal(err) } runtime.GC() // get up-to-date statistics if err := pprof.WriteHeapProfile(f); err != nil { logrus.Fatal("could not write memory profile: ", err) } } os.Exit(e.exitCode) } func getDefaultConcurrency() int { if os.Getenv("HELP_RUN") == "1" { return 8 // to make stable concurrency for README help generating builds } return runtime.NumCPU() } func (e *Executor) initRoot() { rootCmd := &cobra.Command{ Use: "golangci-lint", Short: "golangci-lint is a smart linters runner.", Long: `Smart, fast linters runner. Run it in cloud for every GitHub pull request on https://golangci.com`, Run: func(cmd *cobra.Command, args []string) { if err := cmd.Help(); err != nil { logrus.Fatal(err) } }, PersistentPreRun: e.persistentPostRun, PersistentPostRun: e.persistentPreRun, } e.initRootFlagSet(rootCmd.PersistentFlags()) e.rootCmd = rootCmd } func (e *Executor) initRootFlagSet(fs *pflag.FlagSet) { fs.BoolVarP(&e.cfg.Run.IsVerbose, "verbose", "v", false, wh("verbose output")) fs.StringVar(&e.cfg.Run.CPUProfilePath, "cpu-profile-path", "", wh("Path to CPU profile output file")) fs.StringVar(&e.cfg.Run.MemProfilePath, "mem-profile-path", "", wh("Path to memory profile output file")) fs.IntVarP(&e.cfg.Run.Concurrency, "concurrency", "j", getDefaultConcurrency(), wh("Concurrency (default NumCPU)")) if e.commit != "" { fs.BoolVar(&e.cfg.Run.PrintVersion, "version", false, wh("Print version")) } }