forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.go
125 lines (108 loc) · 2.31 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
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
package main
import (
"fmt"
"strings"
"time"
)
type actionSimple func(env Env, args []string) error
func (fn actionSimple) Call(env Env, args []string, config *Config) error {
return fn(env, args)
}
type actionWithConfig func(env Env, args []string, config *Config) error
func (fn actionWithConfig) Call(env Env, args []string, config *Config) error {
var err error
if config == nil {
config, err = LoadConfig(env)
if err != nil {
return err
}
}
return fn(env, args, config)
}
type action interface {
Call(env Env, args []string, config *Config) error
}
// Cmd represents a direnv sub-command
type Cmd struct {
Name string
Desc string
Args []string
Aliases []string
Private bool
Action action
}
// CmdList contains the list of all direnv sub-commands
var CmdList []*Cmd
func init() {
CmdList = []*Cmd{
CmdAllow,
CmdApplyDump,
CmdShowDump,
CmdDeny,
CmdDotEnv,
CmdDump,
CmdEdit,
CmdExec,
CmdExpandPath,
CmdExport,
CmdHelp,
CmdHook,
CmdPrune,
CmdReload,
CmdStatus,
CmdStdlib,
CmdVersion,
CmdWatch,
CmdWatchList,
CmdCurrent,
}
}
func cmdWithWarnTimeout(fn action) action {
return actionWithConfig(func(env Env, args []string, config *Config) (err error) {
done := make(chan bool, 1)
go func() {
select {
case <-done:
return
case <-time.After(config.WarnTimeout):
logError("(%v) is taking a while to execute. Use CTRL-C to give up.", args)
}
}()
err = fn.Call(env, args, config)
done <- true
return err
})
}
// CommandsDispatch is called by the main() function to dispatch to a sub-command
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)
}
return command.Action.Call(env, commandArgs, nil)
}