1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
package main
import (
"flag"
"fmt"
"github.com/4ad/doozer"
"os"
"reflect"
"sort"
"strconv"
)
var (
uri = flag.String("a", "doozer:?ca=127.0.0.1:8046", "the address to bind to")
buri = flag.String("b", "", "the DzNS uri")
rrev = flag.Int64("r", -1, "request rev")
showHelp = flag.Bool("h", false, "show help")
showVersion = flag.Bool("v", false, "print version string")
)
type cmd struct {
f interface{}
a string // args
d string // short description
}
var (
selfName = os.Args[0]
cmds = map[string]cmd{}
cmdHelp = map[string]string{}
)
const (
usage1 = `
Each command takes zero or more options and zero or more arguments.
In addition, there are some global options that can be used with any command.
The exit status is 0 on success, 1 for a rev mismatch, and 2 otherwise.
Global Options:
`
usage2 = `Environment:
DOOZER_URI - The doozer cluster to bind to; overridden by -a.
DOOZER_BOOT_URI - The DzNS to lookup address in; overridden by -b.
Commands:
`
)
func usage() {
fmt.Fprintf(os.Stderr, "Use: %s [options] <command> [options] [args]\n", selfName)
fmt.Fprint(os.Stderr, usage1)
flag.PrintDefaults()
fmt.Fprintln(os.Stderr)
fmt.Fprint(os.Stderr, usage2)
var max int
var names []string
us := make(map[string]string)
for k := range cmds {
u := k + " " + cmds[k].a
if len(u) > max {
max = len(u)
}
names = append(names, k)
us[k] = u
}
sort.Strings(names)
for _, k := range names {
fmt.Fprintf(os.Stderr, " %-*s - %s\n", max, us[k], cmds[k].d)
}
}
func bail(e error) {
fmt.Fprintln(os.Stderr, "Error:", e)
if e == doozer.ErrOldRev {
os.Exit(1)
}
os.Exit(2)
}
func mustAtoi64(arg string) int64 {
n, err := strconv.ParseInt(arg, 10, 64)
if err != nil {
bail(err)
}
return n
}
func dial() *doozer.Conn {
c, err := doozer.DialUri(*uri, *buri)
if err != nil {
bail(err)
}
return c
}
func main() {
if e := os.Getenv("DOOZER_URI"); e != "" {
*uri = e
}
if e := os.Getenv("DOOZER_BOOT_URI"); e != "" {
*buri = e
}
flag.Usage = usage
flag.Parse()
if *showHelp {
usage()
return
}
if *showVersion {
fmt.Println("doozer", version)
return
}
if flag.NArg() < 1 {
fmt.Fprintf(os.Stderr, "%s: missing command\n", os.Args[0])
usage()
os.Exit(127)
}
cmd := flag.Arg(0)
c, ok := cmds[cmd]
if !ok {
fmt.Fprintln(os.Stderr, "Unknown command:", cmd)
usage()
os.Exit(127)
}
os.Args = flag.Args()
flag.Parse()
if *showHelp {
help(cmd)
return
}
args := flag.Args()
ft := reflect.TypeOf(c.f)
if len(args) != ft.NumIn() {
fmt.Fprintf(os.Stderr, "%s: wrong number of arguments\n", cmd)
help(cmd)
os.Exit(127)
}
vals := make([]reflect.Value, len(args))
for i, s := range args {
vals[i] = reflect.ValueOf(s)
}
fv := reflect.ValueOf(c.f)
fv.Call(vals)
}
|