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
204 lines (176 loc) Β· 4.69 KB
/
tty.go
File metadata and controls
204 lines (176 loc) Β· 4.69 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
package tea
import (
"errors"
"fmt"
"io"
"log"
"time"
"github.com/charmbracelet/x/ansi"
"github.com/charmbracelet/x/input"
"github.com/charmbracelet/x/term"
"github.com/muesli/cancelreader"
)
func (p *Program) suspend() {
if err := p.releaseTerminal(true); err != nil {
// If we can't release input, abort.
return
}
suspendProcess()
_ = p.RestoreTerminal()
go p.Send(ResumeMsg{})
}
func (p *Program) initTerminal() error {
if !hasView(p.initialModel) {
// No need to initialize the terminal if we're not rendering
return nil
}
return p.initInput()
}
// restoreTerminalState restores the terminal to the state prior to running the
// Bubble Tea program.
func (p *Program) restoreTerminalState() error {
// We don't need to reset [ansi.AltScreenSaveCursorMode] and
// [ansi.TextCursorEnableMode] because they are automatically reset when we
// close the renderer. See [screenRenderer.close] and
// [cellbuf.Screen.Close].
if p.modes.IsSet(ansi.BracketedPasteMode) {
p.execute(ansi.ResetBracketedPasteMode)
}
btnEvents := p.modes.IsSet(ansi.ButtonEventMouseMode)
allEvents := p.modes.IsSet(ansi.AnyEventMouseMode)
if btnEvents || allEvents {
if btnEvents {
p.execute(ansi.ResetButtonEventMouseMode)
}
if allEvents {
p.execute(ansi.ResetAnyEventMouseMode)
}
p.execute(ansi.ResetSgrExtMouseMode)
}
if p.activeEnhancements.modifyOtherKeys != 0 {
p.execute(ansi.ResetModifyOtherKeys)
}
if p.activeEnhancements.kittyFlags != 0 {
p.execute(ansi.DisableKittyKeyboard)
}
if p.modes.IsSet(ansi.FocusEventMode) {
p.execute(ansi.ResetFocusEventMode)
}
if p.modes.IsSet(ansi.GraphemeClusteringMode) {
p.execute(ansi.ResetGraphemeClusteringMode)
}
// 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("bubbletea: 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("bubbletea: error restoring console: %w", err)
}
}
return nil
}
// initInputReader (re)commences reading inputs.
func (p *Program) initInputReader(cancel bool) error {
if cancel && p.inputReader != nil {
p.inputReader.Cancel()
p.waitForReadLoop()
}
term := p.getenv("TERM")
// 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
if p.mouseMode {
flags |= input.FlagMouseMode
}
drv, err := input.NewReader(p.input, term, flags)
if err != nil {
return fmt.Errorf("bubbletea: error initializing input reader: %w", err)
}
if p.traceInput {
drv.SetLogger(log.Default())
}
p.inputReader = drv
p.readLoopDone = make(chan struct{})
go p.readLoop()
return nil
}
func (p *Program) readInputs() error {
for {
events, err := p.inputReader.ReadEvents()
if err != nil {
return fmt.Errorf("bubbletea: error reading input: %w", err)
}
for _, msg := range events {
if m := p.translateInputEvent(msg); m != nil {
select {
case p.msgs <- m:
case <-p.ctx.Done():
err := p.ctx.Err()
if err != nil {
err = fmt.Errorf("bubbletea: found context error while reading input: %w", err)
}
return err
}
}
}
}
}
func (p *Program) readLoop() {
defer close(p.readLoopDone)
err := p.readInputs()
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:mnd
// 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
}
var resizeMsg WindowSizeMsg
resizeMsg.Width = w
resizeMsg.Height = h
p.Send(resizeMsg)
}