forked from charmbracelet/bubbletea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtty.go
More file actions
286 lines (257 loc) Β· 6.77 KB
/
tty.go
File metadata and controls
286 lines (257 loc) Β· 6.77 KB
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
package tea
import (
"context"
"errors"
"fmt"
"io"
"strings"
"time"
"github.com/charmbracelet/x/ansi"
"github.com/charmbracelet/x/term"
"github.com/muesli/cancelreader"
)
func (p *Program) suspend() {
if err := p.ReleaseTerminal(); err != nil {
// If we can't release input, abort.
return
}
suspendProcess()
_ = p.RestoreTerminal()
go p.Send(ResumeMsg{})
}
func (p *Program) initTerminal() error {
return p.initInput()
}
// restoreTerminalState restores the terminal to the state prior to running the
// Bubble Tea program.
func (p *Program) restoreTerminalState() error {
if p.bpActive {
p.execute(ansi.DisableBracketedPaste)
}
if p.renderer != nil {
if p.renderer.Mode(hideCursor) {
p.renderer.SetMode(hideCursor, false)
}
}
if p.mouseEnabled {
p.disableMouse()
}
if p.modifyOtherKeys != 0 {
p.execute(ansi.DisableModifyOtherKeys)
}
if p.kittyFlags != 0 {
p.execute(ansi.DisableKittyKeyboard)
}
if p.reportFocus {
p.execute(ansi.DisableReportFocus)
}
if p.graphemeClustering {
p.execute(ansi.DisableGraphemeClustering)
}
if p.renderer != nil {
if p.renderer.Mode(altScreenMode) {
p.renderer.SetMode(altScreenMode, false)
// give the terminal a moment to catch up
time.Sleep(time.Millisecond * 10) //nolint:gomnd
}
}
return p.restoreInput()
}
// restoreInput restores the tty input to its original state.
func (p *Program) restoreInput() error {
if p.ttyInput != nil && p.previousTtyInputState != nil {
if err := term.Restore(p.ttyInput.Fd(), p.previousTtyInputState); err != nil {
return fmt.Errorf("error restoring console: %w", err)
}
}
if p.ttyOutput != nil && p.previousOutputState != nil {
if err := term.Restore(p.ttyOutput.Fd(), p.previousOutputState); err != nil {
return fmt.Errorf("error restoring console: %w", err)
}
}
return nil
}
// initInputReader (re)commences reading inputs.
func (p *Program) initInputReader() error {
var term string
for i := len(p.environ) - 1; i >= 0; i-- {
// We iterate backwards to find the last TERM variable set in the
// environment. This is because the last one is the one that will be
// used by the terminal.
parts := strings.SplitN(p.environ[i], "=", 2)
if len(parts) == 2 && parts[0] == "TERM" {
term = parts[1]
break
}
}
// Initialize the input reader.
// This need to be done after the terminal has been initialized and set to
// raw mode.
// On Windows, this will change the console mode to enable mouse and window
// events.
var flags int // TODO: make configurable through environment variables?
drv, err := newDriver(p.input, term, flags)
if err != nil {
return err
}
p.inputReader = drv
p.readLoopDone = make(chan struct{})
go p.readLoop()
return nil
}
func readInputs(ctx context.Context, msgs chan<- Msg, reader *driver) error {
for {
events, err := reader.ReadEvents()
if err != nil {
return err
}
for _, msg := range events {
incomingMsgs := []Msg{msg}
// We need to translate new e types to deprecated ones to keep
// compatibility.
switch e := msg.(type) {
case PasteMsg:
var k KeyMsg
k.Paste = true
k.Runes = []rune(e)
incomingMsgs = append(incomingMsgs, k)
case KeyPressMsg:
k := KeyMsg{
Alt: e.Mod.Contains(ModAlt),
Runes: e.Runes,
Type: e.Type,
}
// Backwards compatibility for ctrl- and shift- keys
switch {
case e.Mod.Contains(ModCtrl | ModShift):
switch e.Type {
case KeyUp, KeyDown, KeyRight, KeyLeft:
k.Runes = nil
k.Type = KeyCtrlShiftUp - e.Type + KeyUp
case KeyHome, KeyEnd:
k.Runes = nil
k.Type = KeyCtrlShiftHome - e.Type + KeyHome
}
case e.Mod.Contains(ModCtrl):
switch e.Type {
case KeyRunes: // KeyRunes
switch r := e.Rune(); r {
case ' ':
k.Runes = nil
k.Type = KeyCtrlAt
case '[', '\\', ']', '^', '_':
k.Runes = nil
k.Type = KeyCtrlOpenBracket - KeyType(r) + '['
case 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z':
k.Runes = nil
k.Type = KeyCtrlA - KeyType(r) + 'a'
case '?':
k.Runes = nil
k.Type = KeyCtrlQuestionMark
}
case KeyPgUp, KeyPgDown, KeyHome, KeyEnd:
k.Runes = nil
k.Type = KeyCtrlPgUp - e.Type + KeyPgUp
case KeyUp, KeyDown, KeyRight, KeyLeft:
k.Runes = nil
k.Type = KeyCtrlUp - e.Type + KeyUp
}
case e.Mod.Contains(ModShift):
switch e.Type {
case KeyTab:
k.Runes = nil
k.Type = KeyShiftTab
case KeyUp, KeyDown, KeyRight, KeyLeft:
k.Runes = nil
k.Type = KeyShiftUp - e.Type + KeyUp
k.Runes = nil
case KeyHome, KeyEnd:
k.Runes = nil
k.Type = KeyShiftHome - e.Type + KeyHome
}
}
switch k.Type {
case KeyRunes: // KeyRunes
if len(k.Runes) > 0 {
incomingMsgs = append(incomingMsgs, k)
}
default:
incomingMsgs = append(incomingMsgs, k)
}
case MouseClickMsg:
m := toMouseMsg(Mouse(e))
m.Action = MouseActionPress
m.Type = e.Button
incomingMsgs = append(incomingMsgs, m)
case MouseReleaseMsg:
m := toMouseMsg(Mouse(e))
m.Action = MouseActionRelease
m.Type = MouseRelease
incomingMsgs = append(incomingMsgs, m)
case MouseWheelMsg:
m := toMouseMsg(Mouse(e))
m.Action = MouseActionPress
m.Type = e.Button
incomingMsgs = append(incomingMsgs, m)
case MouseMotionMsg:
m := toMouseMsg(Mouse(e))
m.Action = MouseActionMotion
m.Type = MouseMotion
incomingMsgs = append(incomingMsgs, m)
}
for _, m := range incomingMsgs {
select {
case msgs <- m:
case <-ctx.Done():
err := ctx.Err()
if err != nil {
err = fmt.Errorf("found context error while reading input: %w", err)
}
return err
}
}
}
}
}
func (p *Program) readLoop() {
defer close(p.readLoopDone)
err := readInputs(p.ctx, p.msgs, p.inputReader)
if !errors.Is(err, io.EOF) && !errors.Is(err, cancelreader.ErrCanceled) {
select {
case <-p.ctx.Done():
case p.errs <- err:
}
}
}
// waitForReadLoop waits for the cancelReader to finish its read loop.
func (p *Program) waitForReadLoop() {
select {
case <-p.readLoopDone:
case <-time.After(500 * time.Millisecond): //nolint:gomnd
// The read loop hangs, which means the input
// cancelReader's cancel function has returned true even
// though it was not able to cancel the read.
}
}
// checkResize detects the current size of the output and informs the program
// via a WindowSizeMsg.
func (p *Program) checkResize() {
if p.ttyOutput == nil {
// can't query window size
return
}
w, h, err := term.GetSize(p.ttyOutput.Fd())
if err != nil {
select {
case <-p.ctx.Done():
case p.errs <- err:
}
return
}
p.Send(WindowSizeMsg{
Width: w,
Height: h,
})
}