forked from charmbracelet/bubbletea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tty.go
228 lines (200 loc) Β· 5.57 KB
/
tty.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
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 {
if _, ok := p.renderer.(*nilRenderer); ok {
// No need to initialize the terminal if we're not rendering
return nil
}
return p.initInput()
}
// setAltScreenBuffer restores the terminal screen buffer state.
func (p *Program) setAltScreenBuffer(on bool) {
if on {
// Ensure that the terminal is cleared, even when it doesn't support
// alt screen (or alt screen support is disabled, like GNU screen by
// default).
//
// Note: we can't use r.clearScreen() here because the mutex is already
// locked.
p.execute(ansi.EraseEntireDisplay)
p.execute(ansi.MoveCursorOrigin)
}
// cmd.exe and other terminals keep separate cursor states for the AltScreen
// and the main buffer. We have to explicitly reset the cursor visibility
// whenever we exit AltScreen.
if !p.modes[ansi.CursorVisibilityMode] {
p.execute(ansi.HideCursor)
} else {
p.execute(ansi.ShowCursor)
}
}
// restoreTerminalState restores the terminal to the state prior to running the
// Bubble Tea program.
func (p *Program) restoreTerminalState() error {
if p.modes[ansi.BracketedPasteMode] {
p.execute(ansi.DisableBracketedPaste)
}
if !p.modes[ansi.CursorVisibilityMode] {
p.execute(ansi.ShowCursor)
}
if p.modes[ansi.MouseCellMotionMode] || p.modes[ansi.MouseAllMotionMode] {
p.execute(ansi.DisableMouseCellMotion)
p.execute(ansi.DisableMouseAllMotion)
p.execute(ansi.DisableMouseSgrExt)
}
if p.keyboard.modifyOtherKeys != 0 {
p.execute(ansi.DisableModifyOtherKeys)
}
if p.keyboard.kittyFlags != 0 {
p.execute(ansi.DisableKittyKeyboard)
}
if p.modes[ansi.ReportFocusMode] {
p.execute(ansi.DisableReportFocus)
}
if p.modes[ansi.GraphemeClusteringMode] {
p.execute(ansi.DisableGraphemeClustering)
}
if p.modes[ansi.AltScreenBufferMode] {
p.execute(ansi.DisableAltScreenBuffer)
// cmd.exe and other terminals keep separate cursor states for the AltScreen
// and the main buffer. We have to explicitly reset the cursor visibility
// whenever we exit AltScreen.
p.execute(ansi.ShowCursor)
// give the terminal a moment to catch up
time.Sleep(time.Millisecond * 10) //nolint:gomnd
}
// Restore terminal colors.
if p.setBg != nil {
p.execute(ansi.ResetBackgroundColor)
}
if p.setFg != nil {
p.execute(ansi.ResetForegroundColor)
}
if p.setCc != nil {
p.execute(ansi.ResetCursorColor)
}
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}
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,
})
}