-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcommandChain.go
171 lines (142 loc) · 3.85 KB
/
commandChain.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* ZEUS - An Electrifying Build System
* Copyright (c) 2017 Philipp Mieden <dreadl0ck [at] protonmail [dot] ch>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"errors"
"strings"
"sync"
"github.com/mgutz/ansi"
)
type status struct {
recursionMap map[string]int
numCommands int
currentCommand int
sync.RWMutex
}
func (s *status) reset() {
// reset counters
s.Lock()
s.numCommands = 0
s.currentCommand = 0
s.recursionMap = make(map[string]int, 0)
s.Unlock()
}
func (s *status) incrementRecursionCount(commandName string) error {
conf.Lock()
limit := conf.fields.RecursionDepth
conf.Unlock()
s.Lock()
defer s.Unlock()
if val, ok := s.recursionMap[commandName]; ok {
if val == limit {
return errors.New("recursion limit for command " + commandName + " reached.")
}
s.recursionMap[commandName]++
Log.Debug("incremented recursion count for command "+ansi.Red+commandName+cp.Reset+" to: ", s.recursionMap[commandName])
} else {
s.recursionMap[commandName] = 1
Log.Debug("adding " + ansi.Red + commandName + cp.Reset + " to recursionMap")
}
return nil
}
type commandChain []*command
// create a readable string from a commandChain
// example: clean -> build name=testBuild -> install
func (cmdChain commandChain) String() (out string) {
for i, cmd := range cmdChain {
out += cmd.name
// if not last elem
if !(i == len(cmdChain)-1) {
out += " -> "
}
}
return
}
// parse and execute a given commandChain string
func (cmdChain commandChain) exec(cmds []string) {
defer s.reset()
// set numCommands counter
for _, c := range cmdChain {
count, err := getTotalDependencyCount(c)
if err != nil {
Log.WithError(err).Error("failed to get dependency count")
return
}
s.Lock()
s.numCommands += count
s.Unlock()
}
// exec and pass args
for i, c := range cmdChain {
err := c.Run(strings.Fields(cmds[i])[1:], c.async)
if err != nil {
Log.WithError(err).Error("failed to execute " + c.name)
return
}
}
}
// check if its a valid command chain
// returns an initialized commandChain with all the commands
// and a boolean inidicating wheter its valid or not
func validCommandChain(commands []string, quiet bool) (commandChain, bool) {
var (
cmdChain commandChain
recursionMap = make(map[string]int, 0)
)
if len(commands) < 1 {
l.Println("invalid command chain: empty")
return nil, false
}
conf.Lock()
maxRecursion := conf.fields.RecursionDepth
conf.Unlock()
for index, entry := range commands {
fields := strings.Fields(entry)
if len(fields) > 0 {
// check if command exists
cmd, err := cmdMap.getCommand(fields[0])
if err != nil {
if !quiet {
l.Println(err)
}
return nil, false
}
// validate args
_, _, err = cmd.parseArguments(fields[1:])
if err != nil {
l.Println(err)
return nil, false
}
if val, ok := recursionMap[cmd.name]; ok {
if val == maxRecursion {
l.Println("recursion limit", maxRecursion, "reached for command:", cmd.name)
return nil, false
}
recursionMap[cmd.name]++
} else {
recursionMap[cmd.name] = 1
}
// add to commandChain
cmdChain = append(cmdChain, cmd)
} else {
l.Println("empty field at index:", index)
return nil, false
}
}
return cmdChain, true
}