-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapplication.go
255 lines (228 loc) · 5.21 KB
/
application.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
// mauview - A Go TUI library based on tcell.
// Copyright © 2022 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package mauview
import (
"errors"
"fmt"
"os"
"strings"
"sync"
"time"
"github.com/gdamore/tcell/v2"
)
type Component interface {
Draw(screen Screen)
OnKeyEvent(event KeyEvent) bool
OnPasteEvent(event PasteEvent) bool
OnMouseEvent(event MouseEvent) bool
}
type Focusable interface {
Focus()
Blur()
}
type FocusableComponent interface {
Component
Focusable
}
type Application struct {
screenLock sync.RWMutex
screen tcell.Screen
prevMouseEvt *tcell.EventMouse
root Component
updates chan interface{}
redrawTicker *time.Ticker
stop chan struct{}
waitForStop chan struct{}
alwaysClear bool
}
const queueSize = 255
func NewApplication() *Application {
return &Application{
prevMouseEvt: &tcell.EventMouse{},
updates: make(chan interface{}, queueSize),
redrawTicker: time.NewTicker(1 * time.Minute),
stop: make(chan struct{}, 1),
alwaysClear: true,
}
}
func newScreen(events chan tcell.Event) (tcell.Screen, error) {
if screen, err := tcell.NewScreen(); err != nil {
return nil, fmt.Errorf("failed to create screen: %w", err)
} else if err = screen.Init(); err != nil {
return nil, fmt.Errorf("failed to initialize screen: %w", err)
} else {
screen.EnableMouse()
screen.EnablePaste()
go screen.ChannelEvents(events, nil)
return screen, nil
}
}
func (app *Application) SetRedrawTicker(tick time.Duration) {
app.redrawTicker.Stop()
app.redrawTicker = time.NewTicker(tick)
}
func (app *Application) Start() error {
if app.root == nil {
return errors.New("root component not set")
}
events := make(chan tcell.Event, queueSize)
screen, err := newScreen(events)
if err != nil {
return err
}
app.screenLock.Lock()
app.screen = screen
app.screenLock.Unlock()
app.waitForStop = make(chan struct{})
defer func() {
app.screenLock.Lock()
app.screen = nil
app.screenLock.Unlock()
if screen != nil {
screen.Fini()
}
close(app.waitForStop)
}()
var pasteBuffer strings.Builder
var isPasting bool
for {
var redraw bool
var clear bool
select {
case eventInterface := <-events:
switch event := eventInterface.(type) {
case *tcell.EventKey:
if isPasting {
switch event.Key() {
case tcell.KeyRune:
pasteBuffer.WriteRune(event.Rune())
case tcell.KeyEnter:
pasteBuffer.WriteByte('\n')
}
} else {
redraw = app.root.OnKeyEvent(event)
}
case *tcell.EventPaste:
if event.Start() {
isPasting = true
pasteBuffer.Reset()
} else {
customEvt := customPasteEvent{event, pasteBuffer.String()}
isPasting = false
pasteBuffer.Reset()
redraw = app.root.OnPasteEvent(customEvt)
}
case *tcell.EventMouse:
onlyButtons := event.Buttons() < tcell.WheelUp
hasMotion := onlyButtons && app.prevMouseEvt.Buttons() == event.Buttons()
customEvt := customMouseEvent{event, hasMotion}
app.prevMouseEvt = event
redraw = app.root.OnMouseEvent(customEvt)
case *tcell.EventResize:
clear = true
redraw = true
}
case <-app.redrawTicker.C:
redraw = true
case updaterInterface := <-app.updates:
switch updater := updaterInterface.(type) {
case redrawUpdate:
redraw = true
case setRootUpdate:
app.root = updater.newRoot
focusable, ok := app.root.(Focusable)
if ok {
focusable.Focus()
}
redraw = true
clear = true
case suspendUpdate:
err = screen.Suspend()
if err != nil {
// This shouldn't fail
panic(err)
}
updater.wait()
err = screen.Resume()
if err != nil {
screen.Fini()
fmt.Println("Failed to resume screen:", err)
os.Exit(40)
}
redraw = true
clear = true
}
case <-app.stop:
return nil
}
select {
case <-app.stop:
return nil
default:
}
if redraw {
if clear || app.alwaysClear {
screen.Clear()
}
screen.HideCursor()
app.root.Draw(screen)
screen.Show()
}
}
}
func (app *Application) Stop() {
select {
case app.stop <- struct{}{}:
default:
}
<-app.waitForStop
}
func (app *Application) ForceStop() {
if screen := app.screen; screen != nil {
screen.Fini()
}
select {
case app.stop <- struct{}{}:
default:
}
}
type suspendUpdate struct {
wait func()
}
type redrawUpdate struct{}
type setRootUpdate struct {
newRoot Component
}
func (app *Application) Suspend(wait func()) {
app.updates <- suspendUpdate{wait}
}
func (app *Application) Redraw() {
app.updates <- redrawUpdate{}
}
func (app *Application) SetRoot(view Component) {
app.screenLock.RLock()
defer app.screenLock.RUnlock()
if app.screen != nil {
app.updates <- setRootUpdate{view}
} else {
app.root = view
focusable, ok := app.root.(Focusable)
if ok {
focusable.Focus()
}
}
}
// Screen returns the main tcell screen currently used in the app.
func (app *Application) Screen() tcell.Screen {
app.screenLock.RLock()
screen := app.screen
app.screenLock.RUnlock()
return screen
}
func (app *Application) SetAlwaysClear(always bool) {
app.alwaysClear = always
}