forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
90 lines (80 loc) · 1.43 KB
/
commands.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
package main
import (
"fmt"
"strings"
"time"
)
type Cmd struct {
Name string
Desc string
Args []string
Aliases []string
NoWait bool
Private bool
Fn func(env Env, args []string) error
}
var CmdList []*Cmd
func init() {
CmdList = []*Cmd{
CmdAllow,
CmdApplyDump,
CmdDeny,
CmdDotEnv,
CmdDump,
CmdEdit,
CmdExec,
CmdExpandPath,
CmdExport,
CmdHelp,
CmdHook,
CmdReload,
CmdStatus,
CmdStdlib,
CmdVersion,
}
}
func CommandsDispatch(env Env, args []string) error {
var command *Cmd
var commandName string
var commandPrefix string
var commandArgs []string
if len(args) < 2 {
commandName = "help"
commandPrefix = args[0]
commandArgs = []string{}
} else {
commandName = args[1]
commandPrefix = strings.Join(args[0:2], " ")
commandArgs = append([]string{commandPrefix}, args[2:]...)
}
for _, cmd := range CmdList {
if cmd.Name == commandName {
command = cmd
break
}
if cmd.Aliases != nil {
for _, alias := range cmd.Aliases {
if alias == commandName {
command = cmd
}
}
}
}
if command == nil {
return fmt.Errorf("Command \"%s\" not found", commandPrefix)
}
done := make(chan bool, 1)
if !command.NoWait {
go func() {
select {
case <-done:
return
case <-time.After(5 * time.Second):
log_error("(%v) is taking a while to execute. Use CTRL-C to give up.", args)
}
}()
}
err := command.Fn(env, commandArgs)
done <- true
return err
}