Skip to content

Instantly share code, notes, and snippets.

@weaming
Created February 3, 2021 10:12
Show Gist options
  • Save weaming/d9d3955df66df2444d6f1a7d87e1c6de to your computer and use it in GitHub Desktop.
Save weaming/d9d3955df66df2444d6f1a7d87e1c6de to your computer and use it in GitHub Desktop.
package main
import (
"flag"
"fmt"
"os"
"strings"
)
type Cli struct {
cmds map[string]*flag.FlagSet
cb *func()
}
func NewCli(callback *func()) *Cli {
return &Cli{map[string]*flag.FlagSet{}, callback}
}
func (r *Cli) AddSub(name string) *flag.FlagSet {
name = strings.TrimSpace(name)
cmd := flag.NewFlagSet(name, flag.ExitOnError)
r.cmds[name] = cmd
return cmd
}
func (r *Cli) Parse() (string, *flag.FlagSet) {
names := []string{}
for name, _ := range r.cmds {
names = append(names, name)
}
if len(os.Args) < 2 {
fmt.Printf("expected subcommands: %s\n", strings.Join(names, ", "))
if r.cb != nil {
(*r.cb)()
}
os.Exit(1)
}
if cmd, ok := r.cmds[os.Args[1]]; ok {
cmd.Parse(os.Args[2:])
return os.Args[1], cmd
} else {
fmt.Printf("expected subcommands: %s\n", strings.Join(names, ", "))
if r.cb != nil {
(*r.cb)()
}
os.Exit(1)
}
return "", nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment