File: utils.go

package info (click to toggle)
golang-github-ergochat-readline 0.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: makefile: 17
file content (101 lines) | stat: -rw-r--r-- 1,781 bytes parent folder | download | duplicates (3)
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
package readline

import (
	"container/list"
	"fmt"
	"io"
	"os"
	"sync"
	"syscall"

	"github.com/ergochat/readline/internal/term"
)

const (
	CharLineStart = 1
	CharBackward  = 2
	CharInterrupt = 3
	CharEOT       = 4
	CharLineEnd   = 5
	CharForward   = 6
	CharBell      = 7
	CharCtrlH     = 8
	CharTab       = 9
	CharCtrlJ     = 10
	CharKill      = 11
	CharCtrlL     = 12
	CharEnter     = 13
	CharNext      = 14
	CharPrev      = 16
	CharBckSearch = 18
	CharFwdSearch = 19
	CharTranspose = 20
	CharCtrlU     = 21
	CharCtrlW     = 23
	CharCtrlY     = 25
	CharCtrlZ     = 26
	CharEsc       = 27
	CharCtrl_     = 31
	CharO         = 79
	CharEscapeEx  = 91
	CharBackspace = 127
)

const (
	MetaBackward rune = -iota - 1
	MetaForward
	MetaDelete
	MetaBackspace
	MetaTranspose
	MetaShiftTab
	MetaDeleteKey
)

type rawModeHandler struct {
	sync.Mutex
	state *term.State
}

func (r *rawModeHandler) Enter() (err error) {
	r.Lock()
	defer r.Unlock()
	r.state, err = term.MakeRaw(int(syscall.Stdin))
	return err
}

func (r *rawModeHandler) Exit() error {
	r.Lock()
	defer r.Unlock()
	if r.state == nil {
		return nil
	}
	err := term.Restore(int(syscall.Stdin), r.state)
	if err == nil {
		r.state = nil
	}
	return err
}

func clearScreen(w io.Writer) error {
	_, err := w.Write([]byte("\x1b[H\x1b[J"))
	return err
}

// -----------------------------------------------------------------------------

// print a linked list to Debug()
func debugList(l *list.List) {
	idx := 0
	for e := l.Front(); e != nil; e = e.Next() {
		debugPrint("%d %+v", idx, e.Value)
		idx++
	}
}

// append log info to another file
func debugPrint(fmtStr string, o ...interface{}) {
	f, _ := os.OpenFile("debug.tmp", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
	fmt.Fprintf(f, fmtStr, o...)
	fmt.Fprintln(f)
	f.Close()
}