-
Notifications
You must be signed in to change notification settings - Fork 0
/
program.go
75 lines (61 loc) · 1.88 KB
/
program.go
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
//spellchecker:words ggman
package ggman
//spellchecker:words github ggman constants goprogram exit meta
import (
"fmt"
"github.com/tkw1536/ggman/constants"
"github.com/tkw1536/ggman/env"
"github.com/tkw1536/goprogram/exit"
"github.com/tkw1536/goprogram/meta"
)
// info contains information about the ggman program
var info = meta.Info{
BuildVersion: constants.BuildVersion,
BuildTime: constants.BuildTime,
Executable: "ggman",
Description: fmt.Sprintf("ggman manages local git repositories\n\nggman version %s\nggman is licensed under the terms of the MIT License.\nuse 'ggman license' to view licensing information.", constants.BuildVersion),
}
// newEnvironment makes a new runtime for ggman
func newEnvironment(params env.Parameters, context Context) (env.Env, error) {
// create a new environment
e, err := env.NewEnv(context.Description.Requirements, params)
if err != nil {
return env.Env{}, err
}
// setup a filter for it!
f, err := env.NewFilter(context.Args.Flags, &e)
if err != nil {
return e, err
}
e.Filter = f
return e, nil
}
var errParseArgsNeedTwoAfterFor = exit.Error{
ExitCode: exit.ExitGeneralArguments,
Message: "unable to parse arguments: at least two arguments needed after `for' keyword",
}
// NewProgram returns a new ggman program
func NewProgram() (p Program) {
p.NewEnvironment = newEnvironment
p.Info = info
p.RegisterKeyword("help", func(args *Arguments, pos *[]string) error {
args.Command = ""
args.Universals.Help = true
return nil
})
p.RegisterKeyword("version", func(args *Arguments, pos *[]string) error {
args.Command = ""
args.Universals.Version = true
return nil
})
p.RegisterKeyword("for", func(args *Arguments, pos *[]string) error {
if len(*pos) < 2 {
return errParseArgsNeedTwoAfterFor
}
args.Flags.For = append(args.Flags.For, (*pos)[0])
args.Command = (*pos)[1]
*pos = (*pos)[2:]
return nil
})
return
}