-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
414 lines (324 loc) · 7.14 KB
/
cmd.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
package cmder
import (
"bytes"
"context"
"fmt"
"io"
"os"
"os/exec"
"strings"
"time"
"github.com/scottames/cmder/pkg/log"
)
var dryRun bool
// DryRun will ensure that the commands executed will log, but not be executed
// in the scope of the package
func DryRun() {
dryRun = true
}
// New returns a new os/exec builder command implemented using the Cmder interface
func New(command ...string) Cmder {
c := &cmd{strings: command}
c.ctx = context.Background()
c.env = os.Environ()
c.stdin = os.Stdin
c.stdout = os.Stdout
c.stderr = os.Stderr
return c
}
// cmd implements the Cmder interface
type cmd struct {
cmd *exec.Cmd
complete bool
ctx context.Context
dryRun bool
dryRunKey string
dir string
end time.Time
env []string
exitCode int
failed bool
logger log.Logger
process *os.Process
silent bool
start time.Time
stderr io.Writer
stdin io.Reader
stdout io.Writer
strings []string
}
func (c *cmd) Args(args ...string) Cmder {
if len(args) > 0 {
c.strings = append(c.strings, args...)
}
return c
}
func (c *cmd) Clone() Cmder {
clone := *c
return &clone
}
func (c *cmd) CombinedOutput() ([]byte, error) {
var b bytes.Buffer
c.stdout = &b
c.stderr = &b
err := c.Run()
return b.Bytes(), err
}
func (c *cmd) Complete() bool {
return c.complete
}
func (c *cmd) Ctx(ctx context.Context) Cmder {
c.ctx = ctx
return c
}
func (c *cmd) Dir(dir string) Cmder {
c.dir = dir
return c
}
func (c *cmd) DryRun(keys ...string) Cmder {
c.dryRunKey = strings.Join(keys, " ")
c.dryRun = true
return c
}
func (c *cmd) Duration() time.Duration {
return c.end.Sub(c.start)
}
func (c *cmd) Env(env ...string) Cmder {
c.env = append(c.env, env...)
return c
}
func (c *cmd) ExitCode() int {
return c.exitCode
}
func (c *cmd) In(input ...byte) Cmder {
if input != nil {
c.stdin = bytes.NewReader(input)
} else {
c.stdin = os.Stdin
}
return c
}
func (c *cmd) Kill() error {
if c.isDryRun() {
c.logCmdDryRun(log.LoggerKillKey)
return nil
}
c.failed = true
c.exitCode = -1
log.LoggerKey = log.LoggerKillKey
c.LogCmd()
return c.cmd.Process.Kill()
}
func (c *cmd) LogCmd() {
if c.silent {
return
}
if c.logger == nil {
c.logger = getLogger()
}
msg := fmt.Sprintf("%v", c.strings)
if c.dir != "" {
msg += fmt.Sprintf(string(log.LoggerColor)+" in"+string(log.LoggerClear)+" %s", c.dir)
}
c.logger.Log(msg)
}
func (c *cmd) Logger(l log.Logger) Cmder {
c.logger = l
return c
}
func (c *cmd) Out(stdout io.Writer, stderr ...io.Writer) Cmder {
if len(stderr) > 0 {
c.stderr = stderr[0]
}
c.stdout = stdout
return c
}
func (c *cmd) Output() ([]byte, error) {
c.Silent()
if !c.initAndContinue(log.LoggerOutputKey) {
return nil, nil
}
c.clearStdOutStdErr()
output, err := c.cmd.Output()
return output, c.endState(err)
}
func (c *cmd) Process() *os.Process {
return c.process
}
func (c *cmd) Pid() *int {
if c.process == nil {
return nil
}
return &c.process.Pid
}
func (c *cmd) Run(w ...io.Writer) error {
if !c.initAndContinue(log.LoggerRunKey, w...) {
return nil
}
err := c.cmd.Run()
return c.endState(err)
}
func (c *cmd) RunFn(w ...io.Writer) func(args ...string) error {
return func(args ...string) error {
return c.Clone().Args(args...).Run(w...)
}
}
func (c *cmd) RunFnCmd(w ...io.Writer) func(args ...string) (Cmder, error) {
return func(args ...string) (Cmder, error) {
clone := c.Clone().Args(args...)
err := clone.Run(w...)
return clone, err
}
}
func (c *cmd) Silent() Cmder {
c.silent = true
return c
}
func (c *cmd) Start(w ...io.Writer) error {
log.LoggerKey = log.LoggerStartKey
if !c.initAndContinue(log.LoggerStartKey, w...) {
return nil
}
err := c.cmd.Start()
if err != nil {
return err
}
c.process = c.cmd.Process
return nil
}
func (c *cmd) StartFn(w ...io.Writer) func(args ...string) error {
return func(args ...string) error {
return c.Clone().Args(args...).Start(w...)
}
}
func (c *cmd) StartFnCmd(w ...io.Writer) func(args ...string) (Cmder, error) {
return func(args ...string) (Cmder, error) {
clone := c.Clone().Args(args...)
err := clone.Start(w...)
return clone, err
}
}
func (c *cmd) String() string {
return c.buildExec().String()
}
func (c *cmd) Wait() error {
log.LoggerKey = log.LoggerWaitKey
if c.isDryRun() {
c.logCmdDryRun(log.LoggerKey)
return nil
}
c.LogCmd()
if c.process == nil {
return fmt.Errorf("process expected to be started. found nil process for Wait")
}
err := c.cmd.Wait()
if err != nil {
c.failed = true
return err
}
c.end = time.Now()
c.complete = true
return nil
}
// buildExec builds the exec.Cmd for the given cmd
func (c *cmd) buildExec(w ...io.Writer) *exec.Cmd {
command := exec.CommandContext(c.ctx, c.strings[0], c.strings[1:]...) //nolint:gosec // written as intended
c.cmd = command
switch lw := len(w); {
case lw == 1:
c.cmd.Stdout = w[0]
c.cmd.Stderr = w[0]
case lw > 1:
c.cmd.Stdout = w[0]
c.cmd.Stderr = w[1]
default:
c.cmd.Stdout = c.stdout
c.cmd.Stderr = c.stderr
}
c.cmd.Dir = c.dir
c.cmd.Env = c.env
c.cmd.Stdin = c.stdin
return c.cmd
}
// clearStdOutStdErr will set the cmd stdout and stderr to nil
func (c *cmd) clearStdOutStdErr() {
c.stdout = nil
c.stderr = nil
if c.cmd != nil {
c.cmd.Stdout = nil
c.cmd.Stderr = nil
}
}
// endState sets the end state of the command after it's completion
func (c *cmd) endState(err error) error {
c.end = time.Now()
c.exitStatus(err)
c.complete = true
return err
}
// initAndContinue initializes the cmd and returns a bool value whether it should continue
// or return based on the dryrun value
func (c *cmd) initAndContinue(command string, w ...io.Writer) bool {
c.buildExec(w...)
if c.isDryRun() {
c.logCmdDryRun(command)
return false
}
if !c.silent {
c.LogCmd()
}
c.start = time.Now()
return true
}
// isDryRun returns whether dryRun is set in the scope of the current cmd or globally
func (c *cmd) isDryRun() bool {
return dryRun || c.dryRun
}
// exitStatus returns the exit status for the given cmd's error
// if nil found, exit code will always be 0
func (c *cmd) exitStatus(err error) {
if err == nil {
c.exitCode = 0
return
}
if e, ok := err.(exitStatus); ok {
c.exitCode = e.ExitStatus()
}
if e, ok := err.(*exec.ExitError); ok {
if ex, ok := e.Sys().(exitStatus); ok {
c.exitCode = ex.ExitStatus()
}
}
c.exitCode = 1
}
// exitStatus an interface implementing the ExitStatus method
type exitStatus interface {
ExitStatus() int
}
// logCmdDryRun logs the given cmd in the context of DryRun
func (c *cmd) logCmdDryRun(s string) {
// save defaults
defKey := log.LoggerKey
defColor := log.LoggerColor
// override defaults
log.LoggerColor = log.LoggerDryRunColor
origSilent := c.unsetSilent()
if c.dryRunKey != "" {
log.LoggerKey = c.dryRunKey
} else {
log.LoggerKey = log.LoggerDryRunKey + " " + s
log.LoggerCols = log.LoggerDryRunCols
}
// log dry
c.LogCmd()
// reset defaults
log.LoggerKey = defKey
log.LoggerColor = defColor
c.silent = origSilent
}
// unsetSilent sets silent to false and returns the original value of c.silent
func (c *cmd) unsetSilent() bool {
orig := c.silent
c.silent = false
return orig
}