readline/terminal.go

176 lines
3.0 KiB
Go
Raw Normal View History

2015-09-20 18:14:29 +03:00
package readline
import (
"bufio"
"fmt"
"strings"
2015-09-24 19:16:49 +03:00
"sync"
2015-09-20 18:14:29 +03:00
"sync/atomic"
)
type Terminal struct {
2015-09-24 19:16:49 +03:00
cfg *Config
outchan chan rune
closed int32
2015-09-24 19:16:49 +03:00
stopChan chan struct{}
kickChan chan struct{}
wg sync.WaitGroup
isReading int32
sleeping int32
2015-09-20 18:14:29 +03:00
}
2015-09-22 13:16:24 +03:00
func NewTerminal(cfg *Config) (*Terminal, error) {
if err := cfg.Init(); err != nil {
return nil, err
}
2015-09-20 18:14:29 +03:00
t := &Terminal{
2015-09-24 19:16:49 +03:00
cfg: cfg,
kickChan: make(chan struct{}, 1),
outchan: make(chan rune),
stopChan: make(chan struct{}, 1),
2015-09-20 18:14:29 +03:00
}
go t.ioloop()
return t, nil
}
// SleepToResume will sleep myself, and return only if I'm resumed.
func (t *Terminal) SleepToResume() {
if !atomic.CompareAndSwapInt32(&t.sleeping, 0, 1) {
return
}
defer atomic.StoreInt32(&t.sleeping, 0)
t.ExitRawMode()
ch := WaitForResume()
SuspendMe()
<-ch
t.EnterRawMode()
}
func (t *Terminal) EnterRawMode() (err error) {
2016-03-13 13:32:48 +03:00
return t.cfg.FuncMakeRaw()
}
func (t *Terminal) ExitRawMode() (err error) {
2016-03-13 13:32:48 +03:00
return t.cfg.FuncExitRaw()
}
2015-09-20 18:14:29 +03:00
func (t *Terminal) Write(b []byte) (int, error) {
return t.cfg.Stdout.Write(b)
2015-09-20 18:14:29 +03:00
}
func (t *Terminal) Print(s string) {
fmt.Fprintf(t.cfg.Stdout, "%s", s)
2015-09-20 18:14:29 +03:00
}
func (t *Terminal) PrintRune(r rune) {
fmt.Fprintf(t.cfg.Stdout, "%c", r)
2015-09-20 18:14:29 +03:00
}
2015-09-22 13:16:24 +03:00
func (t *Terminal) Readline() *Operation {
return NewOperation(t, t.cfg)
2015-09-20 18:14:29 +03:00
}
// return rune(0) if meet EOF
2015-09-20 18:14:29 +03:00
func (t *Terminal) ReadRune() rune {
ch, ok := <-t.outchan
if !ok {
return rune(0)
}
return ch
2015-09-20 18:14:29 +03:00
}
2015-09-24 19:16:49 +03:00
func (t *Terminal) IsReading() bool {
return atomic.LoadInt32(&t.isReading) == 1
2015-09-24 19:16:49 +03:00
}
func (t *Terminal) KickRead() {
select {
case t.kickChan <- struct{}{}:
default:
}
}
2015-09-20 18:14:29 +03:00
func (t *Terminal) ioloop() {
2015-09-24 19:16:49 +03:00
t.wg.Add(1)
defer t.wg.Done()
var (
isEscape bool
isEscapeEx bool
expectNextChar bool
)
2015-12-23 08:39:23 +03:00
buf := bufio.NewReader(t.cfg.Stdin)
2015-09-20 18:14:29 +03:00
for {
2015-09-24 19:16:49 +03:00
if !expectNextChar {
atomic.StoreInt32(&t.isReading, 0)
2015-09-24 19:16:49 +03:00
select {
case <-t.kickChan:
atomic.StoreInt32(&t.isReading, 1)
2015-09-24 19:16:49 +03:00
case <-t.stopChan:
return
}
}
expectNextChar = false
2015-09-20 18:14:29 +03:00
r, _, err := buf.ReadRune()
if err != nil {
if strings.Contains(err.Error(), "interrupted system call") {
expectNextChar = true
continue
}
2015-09-20 18:14:29 +03:00
break
}
if isEscape {
isEscape = false
2015-09-23 06:46:56 +03:00
if r == CharEscapeEx {
2015-09-24 19:16:49 +03:00
expectNextChar = true
isEscapeEx = true
continue
}
r = escapeKey(r, buf)
} else if isEscapeEx {
isEscapeEx = false
r = escapeExKey(r, buf)
2015-09-20 18:14:29 +03:00
}
expectNextChar = true
2015-09-20 18:14:29 +03:00
switch r {
2015-09-23 06:46:56 +03:00
case CharEsc:
2015-10-01 17:44:43 +03:00
if t.cfg.VimMode {
t.outchan <- r
break
}
isEscape = true
case CharInterrupt, CharEnter, CharCtrlJ, CharDelete:
expectNextChar = false
fallthrough
2015-09-20 18:14:29 +03:00
default:
2015-09-23 06:46:56 +03:00
t.outchan <- r
2015-09-20 18:14:29 +03:00
}
}
close(t.outchan)
2015-09-20 18:14:29 +03:00
}
2015-10-01 17:44:43 +03:00
func (t *Terminal) Bell() {
fmt.Fprintf(t, "%c", CharBell)
}
2015-09-20 18:14:29 +03:00
func (t *Terminal) Close() error {
if atomic.SwapInt32(&t.closed, 1) != 0 {
2015-09-20 18:14:29 +03:00
return nil
}
2015-09-24 19:16:49 +03:00
t.stopChan <- struct{}{}
t.wg.Wait()
return t.ExitRawMode()
2015-09-20 18:14:29 +03:00
}
2015-11-20 15:56:42 +03:00
func (t *Terminal) SetConfig(c *Config) error {
if err := c.Init(); err != nil {
return err
}
t.cfg = c
return nil
}