-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.go
293 lines (227 loc) · 5.81 KB
/
terminal.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
package bento
import (
"fmt"
"io"
)
type PositionedCell struct {
Cell
Position Position
}
var _ io.Reader = (*Terminal)(nil)
type Terminal struct {
backend TerminalBackend
viewport Viewport
viewportArea Rect
buffers [2]Buffer
current int
lastKnownArea Rect
lastKnownCursorPos Position
hiddenCursor bool
frameCount int
}
func NewTerminal(backend TerminalBackend, viewport Viewport) (*Terminal, error) {
var area Rect
switch v := viewport.(type) {
case ViewportFullscreen, ViewportInline:
size, _, err := backend.GetSize()
if err != nil {
return nil, fmt.Errorf("get size: %w", err)
}
area = NewRect(size.Width, size.Height)
case ViewportFixed:
area = Rect(v)
}
var (
viewportArea Rect
cursorPos Position
)
switch v := viewport.(type) {
case ViewportFullscreen:
viewportArea = area
cursorPos = Position{}
case ViewportInline:
panic("unimplemented")
case ViewportFixed:
viewportArea = Rect(v)
cursorPos = viewportArea.Position
}
return &Terminal{
backend: backend,
viewport: viewport,
viewportArea: viewportArea,
buffers: [2]Buffer{
NewBufferEmpty(viewportArea),
NewBufferEmpty(viewportArea),
},
current: 0,
lastKnownArea: area,
lastKnownCursorPos: cursorPos,
hiddenCursor: false,
frameCount: 0,
}, nil
}
func (t *Terminal) Viewport() Viewport {
return t.viewport
}
func (t *Terminal) Input() io.Reader {
return t.backend.Input()
}
func (t *Terminal) Output() io.Writer {
return t.backend.Output()
}
// Read implements io.Reader.
func (t *Terminal) Read(p []byte) (n int, err error) {
return t.backend.Read(p)
}
func (t *Terminal) DisableBracketedPaste() error {
return t.backend.DisableBracketedPaste()
}
func (t *Terminal) EnableBracketedPaste() error {
return t.backend.EnableBracketedPaste()
}
func (t *Terminal) EnableAlternateScreen() error {
return t.backend.EnableAlternateScreen()
}
func (t *Terminal) LeaveAlternateScreen() error {
return t.backend.LeaveAlternateScreen()
}
func (t *Terminal) EnableRawMode() error {
return t.backend.EnableRawMode()
}
func (t *Terminal) DisableRawMode() error {
return t.backend.DisableRawMode()
}
func (t *Terminal) Draw(widget Widget) (CompletedFrame, error) {
frame := t.GetFrame()
frame.RenderWidget(widget, frame.Area())
if err := t.Flush(); err != nil {
return CompletedFrame{}, fmt.Errorf("flush: %w", err)
}
if frame.cursorPosition == nil {
if err := t.HideCursor(); err != nil {
return CompletedFrame{}, fmt.Errorf("hide cursor: %w", err)
}
} else {
if err := t.ShowCursor(); err != nil {
return CompletedFrame{}, fmt.Errorf("show cursor: %w", err)
}
if err := t.SetCursorPosition(*frame.cursorPosition); err != nil {
return CompletedFrame{}, fmt.Errorf("set cursor position: %w", err)
}
}
t.SwapBuffers()
if err := t.backend.Flush(); err != nil {
return CompletedFrame{}, fmt.Errorf("backend flush: %w", err)
}
completedFrame := CompletedFrame{
buffer: t.PreviousBuffer(),
area: t.lastKnownArea,
count: t.frameCount,
}
t.frameCount++
return completedFrame, nil
}
func (t *Terminal) SetCursorPosition(position Position) error {
if err := t.backend.SetCursorPosition(position); err != nil {
return err
}
t.lastKnownCursorPos = position
return nil
}
func (t *Terminal) HideCursor() error {
if err := t.backend.HideCursor(); err != nil {
return err
}
t.hiddenCursor = true
return nil
}
func (t *Terminal) ShowCursor() error {
if err := t.backend.ShowCursor(); err != nil {
return err
}
t.hiddenCursor = false
return nil
}
// Flush obtains a difference between the previous and the current buffer and passes it to the
// current backend for drawing.
func (t *Terminal) Flush() error {
previous := t.PreviousBuffer()
current := t.CurrentBuffer()
updates := previous.Diff(current)
if len(updates) > 0 {
last := updates[len(updates)-1]
t.lastKnownCursorPos = last.Position
}
if err := t.backend.Draw(updates); err != nil {
return fmt.Errorf("draw: %w", err)
}
return nil
}
func (t *Terminal) GetFrame() Frame {
return Frame{
cursorPosition: nil,
viewportArea: t.viewportArea,
buffer: t.CurrentBuffer(),
count: t.frameCount,
}
}
func (t *Terminal) CurrentBuffer() *Buffer {
return &t.buffers[t.current]
}
func (t *Terminal) PreviousBuffer() *Buffer {
return &t.buffers[1-t.current]
}
func (t *Terminal) Resize(area Rect) error {
var nextArea Rect
switch t.viewport.(type) {
case ViewportInline:
panic("unimplemented")
case ViewportFullscreen, ViewportFixed:
nextArea = area
}
t.setViewportArea(nextArea)
if err := t.Clear(); err != nil {
return fmt.Errorf("clear: %w", err)
}
t.lastKnownArea = area
return nil
}
func (t *Terminal) Clear() error {
switch t.viewport.(type) {
case ViewportFullscreen:
if err := t.backend.ClearAll(); err != nil {
return fmt.Errorf("clear all: %w", err)
}
case ViewportInline:
if err := t.backend.SetCursorPosition(t.viewportArea.Position); err != nil {
return fmt.Errorf("set cursor position: %w", err)
}
if err := t.backend.ClearAfterCursor(); err != nil {
return fmt.Errorf("clear after cursor: %w", err)
}
case ViewportFixed:
area := t.viewportArea
for y := area.Top(); y < area.Bottom(); y++ {
if err := t.backend.SetCursorPosition(Position{X: 0, Y: y}); err != nil {
return fmt.Errorf("set cursor position: %w", err)
}
if err := t.backend.ClearAfterCursor(); err != nil {
return fmt.Errorf("clear after cursor: %w", err)
}
}
}
t.PreviousBuffer().Reset()
return nil
}
func (t *Terminal) SwapBuffers() {
t.PreviousBuffer().Reset()
t.current = 1 - t.current
}
func (t *Terminal) Size() (Size, bool, error) {
return t.backend.GetSize()
}
func (t *Terminal) setViewportArea(area Rect) {
t.CurrentBuffer().Resize(area)
t.PreviousBuffer().Resize(area)
t.viewportArea = area
}