2019-01-14 02:02:21 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-04-27 17:09:59 +02:00
|
|
|
"sync/atomic"
|
2019-01-14 02:02:21 +01:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
2019-01-14 02:02:21 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
frames = []string{
|
|
|
|
"[..] ",
|
|
|
|
" [..] ",
|
|
|
|
" [..] ",
|
|
|
|
" [..] ",
|
|
|
|
" [..]",
|
|
|
|
" [..] ",
|
|
|
|
" [..] ",
|
|
|
|
" [..] ",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
type Spinner struct {
|
2019-04-27 18:47:59 +02:00
|
|
|
ui.Invalidatable
|
2019-05-11 19:12:44 +02:00
|
|
|
frame int64 // access via atomic
|
|
|
|
stop chan struct{}
|
2019-01-14 02:02:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewSpinner() *Spinner {
|
|
|
|
spinner := Spinner{
|
2019-04-27 17:09:59 +02:00
|
|
|
stop: make(chan struct{}),
|
2019-01-14 02:02:21 +01:00
|
|
|
frame: -1,
|
|
|
|
}
|
|
|
|
return &spinner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spinner) Start() {
|
2019-03-15 02:37:00 +01:00
|
|
|
if s.IsRunning() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-27 17:09:59 +02:00
|
|
|
atomic.StoreInt64(&s.frame, 0)
|
|
|
|
|
2019-01-14 02:02:21 +01:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-s.stop:
|
2019-04-27 17:09:59 +02:00
|
|
|
atomic.StoreInt64(&s.frame, -1)
|
|
|
|
s.stop <- struct{}{}
|
2019-01-14 02:02:21 +01:00
|
|
|
return
|
|
|
|
case <-time.After(200 * time.Millisecond):
|
2019-04-27 17:09:59 +02:00
|
|
|
atomic.AddInt64(&s.frame, 1)
|
2019-01-14 02:02:21 +01:00
|
|
|
s.Invalidate()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spinner) Stop() {
|
2019-03-15 02:37:00 +01:00
|
|
|
if !s.IsRunning() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-27 17:09:59 +02:00
|
|
|
s.stop <- struct{}{}
|
|
|
|
<-s.stop
|
2019-01-14 02:02:21 +01:00
|
|
|
s.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spinner) IsRunning() bool {
|
2019-04-27 17:09:59 +02:00
|
|
|
return atomic.LoadInt64(&s.frame) != -1
|
2019-01-14 02:02:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spinner) Draw(ctx *ui.Context) {
|
2019-03-15 02:37:00 +01:00
|
|
|
if !s.IsRunning() {
|
2019-03-15 03:19:04 +01:00
|
|
|
s.Start()
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
|
2019-04-27 17:09:59 +02:00
|
|
|
cur := int(atomic.LoadInt64(&s.frame) % int64(len(frames)))
|
|
|
|
|
2019-01-14 02:02:21 +01:00
|
|
|
ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault)
|
|
|
|
col := ctx.Width()/2 - len(frames[0])/2 + 1
|
2019-04-27 17:09:59 +02:00
|
|
|
ctx.Printf(col, 0, tcell.StyleDefault, "%s", frames[cur])
|
2019-01-14 02:02:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Spinner) Invalidate() {
|
2019-04-27 18:47:59 +02:00
|
|
|
s.DoInvalidate(s)
|
2019-01-14 02:02:21 +01:00
|
|
|
}
|