2015-09-20 18:14:29 +03:00
|
|
|
package readline
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
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
|
2015-11-20 12:09:55 +03:00
|
|
|
closed int32
|
2015-09-24 19:16:49 +03:00
|
|
|
stopChan chan struct{}
|
|
|
|
kickChan chan struct{}
|
|
|
|
wg sync.WaitGroup
|
2015-11-20 12:09:55 +03:00
|
|
|
isReading int32
|
2015-09-20 18:14:29 +03:00
|
|
|
}
|
|
|
|
|
2015-09-22 13:16:24 +03:00
|
|
|
func NewTerminal(cfg *Config) (*Terminal, error) {
|
2015-09-27 04:04:50 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2015-11-09 06:20:26 +03:00
|
|
|
func (t *Terminal) EnterRawMode() (err error) {
|
2016-03-13 13:32:48 +03:00
|
|
|
return t.cfg.FuncMakeRaw()
|
2015-11-09 06:20:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Terminal) ExitRawMode() (err error) {
|
2016-03-13 13:32:48 +03:00
|
|
|
return t.cfg.FuncExitRaw()
|
2015-11-09 06:20:26 +03:00
|
|
|
}
|
|
|
|
|
2015-09-20 18:14:29 +03:00
|
|
|
func (t *Terminal) Write(b []byte) (int, error) {
|
2015-09-27 04:04:50 +03:00
|
|
|
return t.cfg.Stdout.Write(b)
|
2015-09-20 18:14:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Terminal) Print(s string) {
|
2015-09-27 04:04:50 +03:00
|
|
|
fmt.Fprintf(t.cfg.Stdout, "%s", s)
|
2015-09-20 18:14:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Terminal) PrintRune(r rune) {
|
2015-09-27 04:04:50 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-02-17 09:08:55 +03:00
|
|
|
// return rune(0) if meet EOF
|
2015-09-20 18:14:29 +03:00
|
|
|
func (t *Terminal) ReadRune() rune {
|
2016-02-17 09:08:55 +03:00
|
|
|
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 {
|
2015-11-20 12:09:55 +03:00
|
|
|
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 {
|
2015-11-20 12:09:55 +03:00
|
|
|
atomic.StoreInt32(&t.isReading, 0)
|
2015-09-24 19:16:49 +03:00
|
|
|
select {
|
|
|
|
case <-t.kickChan:
|
2015-11-20 12:09:55 +03:00
|
|
|
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 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2015-09-21 16:14:05 +03:00
|
|
|
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
|
2015-09-21 16:14:05 +03:00
|
|
|
isEscapeEx = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
r = escapeKey(r)
|
|
|
|
} else if isEscapeEx {
|
|
|
|
isEscapeEx = false
|
2015-10-26 11:41:48 +03:00
|
|
|
r = escapeExKey(r, buf)
|
2015-09-20 18:14:29 +03:00
|
|
|
}
|
|
|
|
|
2015-09-24 19:49:55 +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
|
|
|
|
}
|
2015-09-21 16:14:05 +03:00
|
|
|
isEscape = true
|
2015-11-19 06:55:07 +03:00
|
|
|
case CharInterrupt, CharEnter, CharCtrlJ, CharDelete:
|
2015-09-24 19:49:55 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2016-02-17 09:08:55 +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 {
|
2015-11-20 12:09:55 +03:00
|
|
|
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()
|
2015-11-09 06:20:26 +03:00
|
|
|
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
|
|
|
|
}
|