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
|
package main
import (
"flag"
"fmt"
"os"
"github.com/n-peugnet/dna-backup/logger"
)
type command struct {
Flag *flag.FlagSet
Run func([]string) error
Usage string
Help string
}
const (
name = "dna-backup"
baseUsage = "<command> [<options>] [--] <args>"
)
var (
logLevel int
format string
)
var commit = command{flag.NewFlagSet("commit", flag.ExitOnError), commitMain,
"[<options>] [--] <source> <dest>",
"Create a new version of folder <source> into repo <dest>",
}
var restore = command{flag.NewFlagSet("restore", flag.ExitOnError), restoreMain,
"[<options>] [--] <source> <dest>",
"Restore the last version from repo <source> into folder <dest>",
}
var subcommands = map[string]command{
commit.Flag.Name(): commit,
restore.Flag.Name(): restore,
}
func init() {
// init default help message
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), "usage: %s %s\n\ncommands:\n", name, baseUsage)
for _, s := range subcommands {
fmt.Printf(" %s %s\n", s.Flag.Name(), s.Help)
}
os.Exit(1)
}
// setup subcommands
for _, s := range subcommands {
s.Flag.IntVar(&logLevel, "v", 3, "log verbosity level (0-4)")
}
}
func main() {
flag.Parse()
args := flag.Args()
if len(args) < 1 {
flag.Usage()
}
cmd, exists := subcommands[args[0]]
if !exists {
fmt.Fprintf(flag.CommandLine.Output(), "error: unknown command %s\n\n", args[0])
flag.Usage()
}
cmd.Flag.Usage = func() {
fmt.Fprintf(cmd.Flag.Output(), "usage: %s %s %s\n\noptions:\n", name, cmd.Flag.Name(), cmd.Usage)
cmd.Flag.PrintDefaults()
os.Exit(1)
}
cmd.Flag.Parse(args[1:])
logger.Init(logLevel)
if err := cmd.Run(cmd.Flag.Args()); err != nil {
fmt.Fprintf(cmd.Flag.Output(), "error: %s\n\n", err)
cmd.Flag.Usage()
}
}
func commitMain(args []string) error {
if len(args) != 2 {
return fmt.Errorf("wrong number of args")
}
source := args[0]
dest := args[1]
repo := NewRepo(dest)
repo.Commit(source)
return nil
}
func restoreMain(args []string) error {
if len(args) != 2 {
return fmt.Errorf("wrong number args")
}
source := args[0]
dest := args[1]
repo := NewRepo(source)
repo.Restore(dest)
return nil
}
|