aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: 2a0cae47762f71c19a23459e5b96ac0fb571feff (plain)
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
package main

// This software is licensed for under the Free Software Foundations's GPL v2, as retrieved
// from https://opensource.org/licenses/gpl-2.0.php (2021).

import (
	"os"
	"io"
	"fmt"
	"golang.flu0r1ne.net/zsu/cmd"
)

const (
	VERSION = "0.0.1"
)

func printUsage(w io.Writer) {
	fmt.Fprintf (w, "usage: %s command args ...                   \n", os.Args[0])
	fmt.Fprintln(w, "  help                                                     ")
	fmt.Fprintln(w, "  version                                                  ")
	fmt.Fprintln(w, "  list [-paths|-p] <reference>                             ")
	fmt.Fprintln(w, "  diff <reference> <snap-ish>..<snap-ish>                 ")
	fmt.Fprintln(w, "  cat <reference> <snap-ish>                              ")
}

func dieUsage() {
	printUsage(os.Stderr)
	os.Exit(1)
}

func main() {

	if len(os.Args) < 2 {
	  dieUsage()
	}
  
	subcommand := os.Args[1]
	subargs := os.Args[2:]
  
	switch subcommand {
	  case "list":
		cmd.List(subargs)
	  case "version":
		fmt.Printf("%s\n", VERSION)
	  case "cat":
		cmd.Cat(subargs)
	  case "diff":
		cmd.Diff(subargs)
	  case "-h", "-help", "--help", "help":
		printUsage(os.Stdout)
	  default:
		fmt.Fprintf(os.Stderr, "unrecognized command %s\n", subcommand)
		dieUsage()
	}
  
}