-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.go
249 lines (222 loc) · 5.04 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
package main
import (
"bytes"
"fmt"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
"github.com/gobuffalo/packr"
)
// Revision contains the current revision (git commit hash) of this program.
//
// It is set during the build process using -ldflags.
var Revision string
// Release contains the current release (git tag pointing to Revision) of this program.
//
// It is set during the build process using -ldflags.
var Release string
// Shell defines the common functions that need to be supported by a
// shell in order for leader to support it.
type Shell interface {
Commandline() (string, int)
Init() string
EvalNext(command string, path []rune) string
}
func main() {
allSignals := make(chan os.Signal, 1)
signal.Notify(allSignals)
errorHandler := NewErrorLogger(os.Stderr)
defer func() {
v := recover()
if err, ok := v.(error); ok {
errorHandler.Print(err)
}
}()
tty, err := NewTTY()
if err != nil {
errorHandler.Fatal(err)
}
exitFn := func(exitCode int) {
tty.Restore()
os.Exit(exitCode)
}
signalHandler := SignalHandler(exitFn)
shell := NewShellFromEnv(os.Getenv)
line, cursor := shell.Commandline()
shellParser := NewShellParser()
if shellParser.InQuotedString(line, cursor) {
os.Exit(3)
}
executor := NewShellExecutor("bash", "-c").Attach(tty.File())
rootKeyMap := NewKeyMap("root")
context := &Context{
Files: NewOnDiskFileSystem(),
ErrorLogger: errorHandler,
CurrentKeyMap: rootKeyMap,
Executor: executor,
Terminal: tty,
Shell: shell,
}
go func() {
signal := <-allSignals
signalHandler(signal)
}()
loadConfig := NewLoadConfig(context, os.Getenv("PWD"), os.Getenv("HOME"))
errorHandler.Must(loadConfig.Execute)
parseArgs(context, os.Args)
errorHandler.Must(tty.MakeRaw)
selectMenuEntry := NewSelectMenuEntry(context)
errorHandler.Print(selectMenuEntry.Execute())
}
// SignalHandler returns a function for handling signals. All signals
// received by the application are passed to this
// function.
//
// exitFn is the function that should be invoked when the signal
// handler has determined that the signal cannot be handled by the
// application. It is expected that exitFn calls os.Exit at some
// point. The argument passed to exitFn is the exit code that should
// be used when calling os.Exit.
func SignalHandler(exitFn func(int)) func(os.Signal) {
return func(signal os.Signal) {
switch signal {
case syscall.SIGWINCH:
return
default:
exitFn(0)
}
}
}
func parseArgs(context *Context, args []string) {
if len(args) == 1 {
return
}
if args[1] == "init" {
initShell(context)
os.Exit(0)
}
if args[1] == "list-keys" {
context.ErrorLogger.Print(NewListKeys(context).Execute())
os.Exit(0)
}
if args[1] == "bind" {
bind(context, args[2:])
os.Exit(0)
}
if args[1] == "version" {
showVersion()
os.Exit(0)
}
if args[1] == "help" {
showHelp(context)
os.Exit(0)
}
for i := 1; i < len(args); i++ {
if args[i] == "print" {
context.Executor = NewPrintingExecutor(context, os.Stdout)
continue
}
if args[i][0] == '@' {
navigateTo(context, []rune(args[i][1:]))
continue
}
fmt.Fprintf(
context.Terminal,
"unknown argument: %s\n\nRun\n\n %s help\n\nfor more information\n",
args[i],
os.Args[0],
)
os.Exit(1)
}
}
func navigateTo(context *Context, path []rune) {
for _, keyRune := range path {
context.KeyPath = append(context.KeyPath, keyRune)
binding := context.CurrentKeyMap.LookupKey(keyRune)
if binding == UnboundKey {
os.Exit(1)
}
if !binding.HasChildren() {
if binding.IsBoundToCommand() {
context.ErrorLogger.Print(binding.Execute())
os.Exit(0)
}
os.Exit(2)
}
context.Navigate(binding.Children())
}
}
func showVersion() {
if Release != "" {
fmt.Printf("%s\n", Release)
} else if Revision != "" {
fmt.Printf("%s\n", Revision)
}
}
func showHelp(context *Context) {
assets := packr.NewBox("./assets")
man := exec.Command("man", "-l", "-")
man.Stdout = os.Stdout
man.Stdin = bytes.NewBufferString(assets.String("leader.1"))
man.Run()
}
func initShell(context *Context) {
fmt.Printf("%s\n", context.Shell.Init())
}
func bind(context *Context, args []string) {
isGlobal := false
isUnbind := false
skip := 0
for _, arg := range args {
if len(arg) < 1 || arg[0] != '-' {
break
}
if arg == "-g" || arg == "--global" {
isGlobal = true
skip++
continue
}
if arg == "-u" || arg == "--unbind" {
isUnbind = true
skip++
continue
}
}
if len(args) > skip {
args = args[skip:]
} else {
args = []string{}
}
usage := func() {
fmt.Fprintf(
context.Terminal,
"Usage: %s bind [-g|--global] KEYS COMMAND\n",
os.Args[0],
)
os.Exit(1)
}
if len(args) < 2 && !isUnbind {
usage()
}
keyPath := strings.TrimSpace(args[0])
command := ""
if keyPath == "" {
usage()
}
if !isUnbind {
command = strings.TrimSpace(args[1])
if command == "" {
usage()
}
}
cmd := NewBind(context, keyPath, command)
if isGlobal {
cmd.SetGlobal(os.ExpandEnv("${HOME}/.leaderrc"))
}
if isUnbind {
cmd.Unbind()
}
context.ErrorLogger.Print(cmd.Execute())
}