summaryrefslogtreecommitdiff
path: root/cmd/planr/main.go
blob: 83a60bc45a9f5659d1c6f25055a939bb52fc8bb0 (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
package main

import (
	"fmt"
	"io"
	"log"
	"os"

	"golang.flu0r1ne.net/planr/cmd/planr/sub"
)

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, "  build                                                   ")
	fmt.Fprintln(w, "  evaluate                                                ")
}

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

func main() {

        log.SetFlags(log.Llongfile | log.Lmsgprefix)
        log.SetPrefix("planr: ")

	if len(os.Args) < 2 {
	  dieUsage()
	}

	subcommand := os.Args[1]
	subargs := os.Args[2:]

	switch subcommand {
	  case "version":
		fmt.Printf("%s\n", VERSION)
	  case "build":
		sub.Build(subargs)
	  case "evaluate","eval":
		sub.Evaluate(subargs)
	  case "help", "-h", "-help", "--help":
		printUsage(os.Stdout)
	  default:
		fmt.Fprintf(os.Stderr, "unrecognized command %s\n", subcommand)
		dieUsage()
	}

}