forked from c-bata/go-prompt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
prompt.go
453 lines (397 loc) · 11.5 KB
/
prompt.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
package prompt
import (
"bytes"
"os"
"time"
"github.com/confluentinc/go-prompt/internal/debug"
"github.com/sourcegraph/go-lsp"
)
// Executor is called when user input something text.
type Executor func(string)
// ExitChecker is called after user input to check if prompt must stop and exit go-prompt Run loop.
// User input means: selecting/typing an entry, then, if said entry content matches the ExitChecker function criteria:
// - immediate exit (if breakline is false) without executor called
// - exit after typing <return> (meaning breakline is true), and the executor is called first, before exit.
// Exit means exit go-prompt (not the overall Go program)
type ExitChecker func(in string, breakline bool) bool
// Completer should return the suggest item from Document.
type Completer func(Document) []Suggest
// StatementTerminatorCb should return whether statement in buffer has been terminated
type StatementTerminatorCb func(lastKeyStroke Key, buffer *Buffer) bool
type IPrompt interface {
Run()
Input() string
ClearScreen()
SetConsoleParser(ConsoleParser)
Buffer() *Buffer
Renderer() *Render
History() *History
Lexer() *Lexer
CompletionManager() *CompletionManager
AddKeyBindings(...KeyBind)
AddASCIICodeBindings(...ASCIICodeBind)
SetKeyBindMode(KeyBindMode)
SetCompletionOnDown(bool)
SetExitChecker(ExitChecker)
SetStatementTerminatorCb(StatementTerminatorCb)
SetDiagnostics(diagnostics []lsp.Diagnostic)
}
// Prompt is core struct of go-prompt.
type Prompt struct {
in ConsoleParser
buf *Buffer
prevText string
lastKey Key
renderer *Render
executor Executor
history *History
diagnostics []lsp.Diagnostic
lexer *Lexer
completion *CompletionManager
keyBindings []KeyBind
ASCIICodeBindings []ASCIICodeBind
keyBindMode KeyBindMode
completionOnDown bool
exitChecker ExitChecker
statementTerminatorCb StatementTerminatorCb
skipTearDown bool
}
// Exec is the struct contains user input context.
type Exec struct {
input string
}
// Run starts prompt.
func (p *Prompt) Run() {
p.skipTearDown = false
defer debug.Teardown()
debug.Log("start prompt")
p.setUp()
defer p.tearDown()
if p.completion.showAtStart {
p.completion.Update(*p.buf.Document())
}
p.Render()
bufCh := make(chan []byte, 128)
stopReadBufCh := make(chan struct{})
go p.readBuffer(bufCh, stopReadBufCh)
exitCh := make(chan int)
winSizeCh := make(chan *WinSize)
stopHandleSignalCh := make(chan struct{})
go p.handleSignals(exitCh, winSizeCh, stopHandleSignalCh)
for {
select {
case b := <-bufCh:
if shouldExit, e := p.feed(b); shouldExit {
p.renderer.BreakLine(p.buf, p.lexer)
stopReadBufCh <- struct{}{}
stopHandleSignalCh <- struct{}{}
return
} else if e != nil {
// Stop goroutine to run readBuffer function
stopReadBufCh <- struct{}{}
stopHandleSignalCh <- struct{}{}
// Unset raw mode
// Reset to Blocking mode because returned EAGAIN when still set non-blocking mode.
debug.AssertNoError(p.in.TearDown())
p.executor(e.input)
p.completion.Update(*p.buf.Document())
p.Render()
if p.exitChecker != nil && p.exitChecker(e.input, true) {
p.skipTearDown = true
return
}
// Set raw mode
debug.AssertNoError(p.in.Setup())
go p.readBuffer(bufCh, stopReadBufCh)
go p.handleSignals(exitCh, winSizeCh, stopHandleSignalCh)
} else {
p.completion.Update(*p.buf.Document())
p.Render()
}
case w := <-winSizeCh:
p.renderer.UpdateWinSize(w)
p.Render()
case code := <-exitCh:
p.renderer.BreakLine(p.buf, p.lexer)
p.tearDown()
os.Exit(code)
default:
time.Sleep(10 * time.Millisecond)
}
}
}
// Input just returns user input text.
func (p *Prompt) Input() string {
defer debug.Teardown()
debug.Log("start prompt")
p.setUp()
defer p.tearDown()
if p.completion.showAtStart {
p.completion.Update(*p.buf.Document())
}
p.Render()
bufCh := make(chan []byte, 128)
stopReadBufCh := make(chan struct{})
go p.readBuffer(bufCh, stopReadBufCh)
completionCh := make(chan bool)
exitCh := make(chan int)
winSizeCh := make(chan *WinSize)
stopHandleSignalCh := make(chan struct{})
go p.handleSignals(exitCh, winSizeCh, stopHandleSignalCh)
for {
select {
case b := <-bufCh:
if shouldExit, e := p.feed(b); shouldExit {
p.renderer.BreakLine(p.buf, p.lexer)
stopReadBufCh <- struct{}{}
stopHandleSignalCh <- struct{}{}
return ""
} else if e != nil {
// Stop goroutine to run readBuffer function
stopReadBufCh <- struct{}{}
stopHandleSignalCh <- struct{}{}
return e.input
} else {
document := *p.buf.Document()
// we don't want to trigger completions again while navigating existing completions
if !p.completion.Completing() {
go func() {
p.completion.Update(document)
completionCh <- true
}()
}
p.Render()
}
case w := <-winSizeCh:
p.renderer.UpdateWinSize(w)
p.Render()
case code := <-exitCh:
p.renderer.BreakLine(p.buf, p.lexer)
p.tearDown()
os.Exit(code)
case <-completionCh:
p.Render()
}
}
}
// ClearScreen :: Clears the screen
func (p *Prompt) ClearScreen() {
p.renderer.ClearScreen()
}
func (p *Prompt) SetConsoleParser(parser ConsoleParser) {
p.in = parser
}
func (p *Prompt) Buffer() *Buffer {
return p.buf
}
func (p *Prompt) Renderer() *Render {
return p.renderer
}
func (p *Prompt) History() *History {
return p.history
}
func (p *Prompt) Lexer() *Lexer {
return p.lexer
}
func (p *Prompt) CompletionManager() *CompletionManager {
return p.completion
}
func (p *Prompt) AddKeyBindings(keyBindings ...KeyBind) {
p.keyBindings = append(p.keyBindings, keyBindings...)
}
func (p *Prompt) AddASCIICodeBindings(asciiCodeBindings ...ASCIICodeBind) {
p.ASCIICodeBindings = append(p.ASCIICodeBindings, asciiCodeBindings...)
}
func (p *Prompt) SetKeyBindMode(keyBindMode KeyBindMode) {
p.keyBindMode = keyBindMode
}
func (p *Prompt) SetCompletionOnDown(completionOnDown bool) {
p.completionOnDown = completionOnDown
}
func (p *Prompt) SetExitChecker(exitChecker ExitChecker) {
p.exitChecker = exitChecker
}
func (p *Prompt) SetStatementTerminatorCb(statementTerminatorCb StatementTerminatorCb) {
p.statementTerminatorCb = statementTerminatorCb
}
func (p *Prompt) SetDiagnostics(diagnostics []lsp.Diagnostic) {
p.diagnostics = diagnostics
p.prevText = p.buf.Text()
p.Render()
}
func (p *Prompt) ClearDiagnosticsOnTextChange() {
// If the user writes something, we clear diagnostics (highlights and error shown) because the ranges might be outdated
if p.buf.Text() != p.prevText {
p.diagnostics = nil
}
}
func (p *Prompt) Render() {
p.ClearDiagnosticsOnTextChange()
p.renderer.Render(p.buf, p.lastKey, p.completion, p.lexer, p.diagnostics)
}
func (p *Prompt) feed(b []byte) (shouldExit bool, exec *Exec) {
key := GetKey(b)
p.prevText = p.buf.Text()
// We store the last key stroke pressed to p.lastKey in the render to understand what was the last action taken.
// For example: if the last action was going to the next erase, we want to erase the statement
// that was in the buffer. If the last statement was sent, we want to just print a new empty buffer
// and not erase the last statement. This could also be used for other functionalities in the future.
p.lastKey = key
p.buf.lastKeyStroke = key
// completion
completing := p.completion.Completing()
p.handleCompletionKeyBinding(key, completing)
switch key {
case Enter, ControlJ, ControlM, AltEnter:
if p.statementTerminatorCb == nil || !p.statementTerminatorCb(p.buf.lastKeyStroke, p.buf) {
p.buf.NewLine(false)
} else {
p.renderer.BreakLine(p.buf, p.lexer)
exec = &Exec{input: p.buf.Text()}
p.buf = NewBuffer()
if exec.input != "" {
p.history.Add(exec.input)
}
}
case ControlC:
p.renderer.BreakLine(p.buf, p.lexer)
p.buf = NewBuffer()
p.history.Clear()
case Up, ControlP:
if !completing { // Don't use p.completion.Completing() because it takes double operation when switch to selected=-1.
if p.buf.HasPrevLine() {
// this is a multiline buffer
// move the cursor up by one line
p.buf.CursorUp(1)
} else if newBuf, changed := p.history.Older(p.buf); changed {
p.prevText = p.buf.Text()
p.buf = newBuf
}
return
}
case Down, ControlN:
if !completing { // Don't use p.completion.Completing() because it takes double operation when switch to selected=-1.
if p.buf.HasNextLine() {
p.buf.CursorDown(1)
} else if newBuf, changed := p.history.Newer(p.buf); changed {
p.prevText = p.buf.Text()
p.buf = newBuf
}
return
}
case ControlD:
if p.buf.Text() == "" {
shouldExit = true
return
}
case NotDefined:
if p.handleASCIICodeBinding(b) {
return
}
// After handling custom key bindings we need to sanitize the input of any
// special characters that mess with the rendering (e.g. the escape char)
cleanedInput := RemoveASCIISequences(b)
p.buf.InsertText(string(cleanedInput), false, true)
// By pressing anykey which isn't mapped we again show completions if they were hidden (by pressing escape)
p.renderer.hideCompletion = false
}
shouldExit = p.handleKeyBinding(key)
return
}
// Wheter or not we'll enter completions when the user presses down. We only navigate into completions if there's no new line below(multiline buffer) and history is not active
// (we're not browsing history with arros).
func (p *Prompt) completeOnDown() bool {
return p.completionOnDown && !p.history.HasNewer() && !p.buf.HasNextLine()
}
func (p *Prompt) handleCompletionKeyBinding(key Key, completing bool) {
switch key {
case Down:
if completing || p.completeOnDown() {
p.completion.Next()
}
case Tab, ControlI:
p.completion.Next()
case Up:
if completing {
p.completion.Previous()
}
case BackTab:
p.completion.Previous()
case Escape:
p.completion.Reset()
p.renderer.hideCompletion = true
default:
if s, ok := p.completion.GetSelectedSuggestion(); ok {
w := p.buf.Document().GetWordBeforeCursorUntilSeparator(p.completion.wordSeparator)
if w != "" {
p.buf.DeleteBeforeCursor(len([]rune(w)))
}
p.buf.InsertText(s.Text, false, true)
}
p.completion.Reset()
}
}
func (p *Prompt) handleKeyBinding(key Key) bool {
shouldExit := false
for i := range commonKeyBindings {
kb := commonKeyBindings[i]
if kb.Key == key {
kb.Fn(p.buf)
}
}
if p.keyBindMode == EmacsKeyBind {
for i := range emacsKeyBindings {
kb := emacsKeyBindings[i]
if kb.Key == key {
kb.Fn(p.buf)
}
}
}
// Custom key bindings
for i := range p.keyBindings {
kb := p.keyBindings[i]
if kb.Key == key {
kb.Fn(p.buf)
}
}
if p.exitChecker != nil && p.exitChecker(p.buf.Text(), false) {
shouldExit = true
}
return shouldExit
}
func (p *Prompt) handleASCIICodeBinding(b []byte) bool {
checked := false
for _, kb := range p.ASCIICodeBindings {
if bytes.Equal(kb.ASCIICode, b) {
kb.Fn(p.buf)
checked = true
}
}
return checked
}
func (p *Prompt) readBuffer(bufCh chan []byte, stopCh chan struct{}) {
debug.Log("start reading buffer")
for {
select {
case <-stopCh:
debug.Log("stop reading buffer")
return
default:
if b, err := p.in.Read(); err == nil && !(len(b) == 1 && b[0] == 0) {
bufCh <- b
}
}
time.Sleep(10 * time.Millisecond)
}
}
func (p *Prompt) setUp() {
debug.AssertNoError(p.in.Setup())
p.renderer.Setup()
p.renderer.UpdateWinSize(p.in.GetWinSize())
}
func (p *Prompt) tearDown() {
if !p.skipTearDown {
debug.AssertNoError(p.in.TearDown())
}
p.renderer.TearDown()
}