-
Notifications
You must be signed in to change notification settings - Fork 1
/
task.go
122 lines (111 loc) · 2.45 KB
/
task.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
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
package config
import (
"errors"
"strings"
"github.com/zakuro9715/z/yaml"
)
type Hooks struct {
Pre string `yaml:"pre"`
Post string `yaml:"post"`
}
type ArgsConfig struct {
Required bool `yaml:"required"`
Default string `yaml:"default"`
}
func (v ArgsConfig) ProcessArgs(args []string) ([]string, error) {
if len(args) == 0 {
if len(v.Default) > 0 {
return strings.Split(v.Default, " "), nil
} else if v.Required {
return nil, errors.New("args is required")
}
}
return args, nil
}
type task struct {
dummy bool
IsDefault bool
Name string
FullName string
Shell string `yaml:"shell"`
Cmds yaml.StringList `yaml:"run"`
Envs Envs `yaml:"env"`
AliasTo string `yaml:"z"`
Config *Config
Parent *Task
Description string `yaml:"desc"`
Hooks Hooks `yaml:"hooks"`
Tasks Tasks `yaml:"tasks"`
ArgsConfig ArgsConfig `yaml:"args"`
}
type Task struct {
task
}
type Tasks map[string]*Task
func (task *Task) UnmarshalYAML(data []byte) error {
var str string
if err := yaml.Unmarshal(data, &str); err == nil {
task.Cmds = []string{str}
task.Description = str
return nil
}
var strs []string
if err := yaml.Unmarshal(data, &strs); err == nil {
task.Cmds = strs
task.Description = strings.Join(strs, "\n")
return nil
}
if err := yaml.Unmarshal(data, &task.task); err != nil {
return err
}
if len(task.Description) == 0 {
task.Description = strings.Join(task.Cmds, "\n")
}
return nil
}
func (t *Task) setup(c *Config, parent *Task, name string) {
names := strings.SplitN(name, ".", 2)
if len(names) > 1 {
sub := *t // copy
*t = Task{
task{
dummy: true,
Tasks: map[string]*Task{names[1]: &sub},
},
}
}
t.Name = names[0]
t.Config = c
t.Parent = parent
if parent != nil {
t.FullName = parent.FullName + "." + t.Name
} else {
t.FullName = t.Name
}
if t.FullName == c.Default {
t.IsDefault = true
}
for name, sub := range t.Tasks {
sub.setup(c, t, name)
}
}
func (t *Task) Verify() error {
if len(t.Cmds) == 0 && len(t.AliasTo) == 0 {
return errors.New("Nothing to run")
} else if len(t.Cmds) > 0 && len(t.AliasTo) > 0 {
return errors.New("Cannot use both of `z` and `run`")
}
return nil
}
func (t *Task) GetShell() string {
if len(t.Shell) > 0 {
return t.Shell
}
if t.Parent == nil {
if len(t.Config.Shell) == 0 {
return "sh"
}
return t.Config.Shell
}
return t.Parent.GetShell()
}