-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.go
251 lines (226 loc) · 6.06 KB
/
main.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package main
import (
"bufio"
"bytes"
"fmt"
"io"
"log"
"os"
"regexp"
"runtime"
"strconv"
"strings"
"time"
"github.com/alexflint/go-arg"
"github.com/brentp/gargs/process"
"github.com/fatih/color"
isatty "github.com/mattn/go-isatty"
"github.com/valyala/fasttemplate"
)
// Version is the current version
const Version = "0.3.9"
// ExitCode is the highest exit code seen in any command
var ExitCode = 0
// Params are the user-specified command-line arguments
type Params struct {
Procs int `arg:"-p,help:number of processes to use."`
Sep string `arg:"-s,help:regex to split line to fill multiple template place-holders."`
Nlines int `arg:"-n,help:lines to consume for each command. -s and -n are mutually exclusive."`
Retry int `arg:"-r,help:times to retry a command if it fails (default is 0)."`
Ordered bool `arg:"-o,help:keep output in order of input."`
Verbose bool `arg:"-v,help:print commands to stderr as they are executed."`
StopOnError bool `arg:"-e,--stop-on-error,help:stop all processes on any error."`
DryRun bool `arg:"-d,--dry-run,help:print (but do not run) the commands."`
Log string `arg:"-l,--log,help:file to log commands. Successful commands are prefixed with '#'."`
Command string `arg:"positional,required,help:command template to fill and execute."`
log *os.File `arg:"-"`
}
// Version string for go-args
func (p Params) Version() string {
return "gargs " + Version
}
// isStdin checks if we are getting data from stdin.
func isStdin() bool {
// http://stackoverflow.com/a/26567513
stat, err := os.Stdin.Stat()
if err != nil {
return false
}
return (stat.Mode() & os.ModeCharDevice) == 0
}
func main() {
args := Params{Procs: 1, Nlines: 1}
p := arg.MustParse(&args)
if args.Sep != "" && args.Nlines > 1 {
p.Fail("must specify either sep (-s) or n-lines (-n), not both")
}
// if neither is specified then we default to whitespace
if args.Nlines == 1 && args.Sep == "" {
args.Sep = "\\s+"
}
if !isStdin() {
fmt.Fprintln(os.Stderr, color.RedString("ERROR: expecting input on STDIN"))
os.Exit(255)
}
if args.Log != "" {
var err error
args.log, err = os.Create(args.Log)
check(err)
}
runtime.GOMAXPROCS(args.Procs)
run(args)
os.Exit(ExitCode)
}
func check(e error) {
if e != nil {
log.Fatal(e)
}
}
func handleCommand(args *Params, cmd string, ch chan string) {
if args.DryRun {
fmt.Fprintf(os.Stdout, "%s\n", cmd)
return
}
ch <- cmd
}
func fillTmplMap(toks []string, line string) map[string]interface{} {
m := make(map[string]interface{}, 5)
if toks != nil {
for i, t := range toks {
m[strconv.FormatInt(int64(i), 10)] = t
}
}
m["Line"] = line
return m
}
func getScanner() *bufio.Scanner {
scanner := bufio.NewScanner(os.Stdin)
scanner.Buffer(make([]byte, 0, 16384), 5e9)
return scanner
}
func genCommands(args *Params, tmpl *fasttemplate.Template) <-chan string {
ch := make(chan string)
var resep *regexp.Regexp
if args.Sep != "" {
resep = regexp.MustCompile(args.Sep)
}
scanner := getScanner()
go func() {
var lines []string
if resep == nil {
lines = make([]string, 0, args.Nlines)
}
var buf bytes.Buffer
for scanner.Scan() {
buf.Reset()
line := scanner.Text()
serr := scanner.Err()
if serr == nil || (serr == io.EOF && len(line) > 0) {
if resep != nil {
toks := resep.Split(line, -1)
targs := fillTmplMap(toks, line)
_, err := tmpl.Execute(&buf, targs)
check(err)
handleCommand(args, buf.String(), ch)
} else {
lines = append(lines, line)
}
} else {
if serr == io.EOF {
break
}
log.Fatal(serr)
}
if len(lines) >= args.Nlines {
targs := fillTmplMap(lines, strings.Join(lines, " "))
_, err := tmpl.Execute(&buf, targs)
check(err)
lines = lines[:0]
handleCommand(args, buf.String(), ch)
}
}
if len(lines) > 0 {
targs := fillTmplMap(lines, strings.Join(lines, " "))
_, err := tmpl.Execute(&buf, targs)
check(err)
handleCommand(args, buf.String(), ch)
}
close(ch)
}()
return ch
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
func init() {
color.NoColor = !isatty.IsTerminal(os.Stderr.Fd())
if s := os.Getenv("GARGS_PROCESS_BUFFER"); s != "" {
if bs, err := strconv.Atoi(s); err == nil {
process.BufferSize = bs
}
}
if s := os.Getenv("GARGS_WAIT_MULTIPLIER"); s != "" {
if bs, err := strconv.Atoi(s); err == nil && bs >= 1 {
process.WaitingMultiplier = bs
}
}
}
func run(args Params) {
tmpl := makeCommandTmpl(args.Command)
cmds := genCommands(&args, tmpl)
stdout := bufio.NewWriter(os.Stdout)
defer stdout.Flush()
cancel := make(chan bool)
defer close(cancel)
fails := 0
// flush stdout every 2 seconds.
last := time.Now().Add(2 * time.Second)
opts := process.Options{Retries: args.Retry, Ordered: args.Ordered}
for p := range process.Runner(cmds, cancel, &opts) {
if ex := p.ExitCode(); ex != 0 {
c := color.New(color.BgRed).Add(color.Bold)
fmt.Fprintf(os.Stderr, "%s\n", c.SprintFunc()(fmt.Sprintf("ERROR with command: %s", p)))
ExitCode = max(ExitCode, ex)
fails++
if args.StopOnError {
break
}
}
if args.Verbose {
fmt.Fprintf(os.Stderr, "%s\n", p)
}
// reader can be nil if we couldn't even start the bash process
if p.Reader != nil {
_, err := io.Copy(stdout, p)
check(err)
}
p.Cleanup()
if t := time.Now(); t.After(last) {
stdout.Flush()
last = t.Add(2 * time.Second)
}
if args.log != nil {
// if no error prefix the command with '#'
rtime := fmt.Sprintf(" #\t%.0fs\n", p.Duration.Seconds())
if p.ExitCode() == 0 {
args.log.WriteString("# " + strings.Replace(p.CmdStr, "\n", "\n# ", -1) + rtime)
} else {
args.log.WriteString(p.CmdStr + rtime)
}
stdout.Flush()
}
}
stdout.Flush()
if ExitCode == 0 && args.log != nil {
args.log.WriteString("# SUCCESS\n")
} else if args.log != nil {
fmt.Fprintf(args.log, "# FAILED %d commands\n", fails)
}
}
func makeCommandTmpl(cmd string) *fasttemplate.Template {
v := strings.Replace(cmd, "{}", "{Line}", -1)
return fasttemplate.New(v, "{", "}")
}