-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwrite.go
More file actions
233 lines (184 loc) · 4.56 KB
/
write.go
File metadata and controls
233 lines (184 loc) · 4.56 KB
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
package readline
import (
"fmt"
"regexp"
"strings"
"github.com/mattn/go-runewidth"
)
func (rl *Instance) printf(format string, a ...interface{}) {
s := fmt.Sprintf(format, a...)
rl.print(s)
}
func (rl *Instance) print(s string) {
if rl.isNoTty {
return
}
_print(s)
}
func (rl *Instance) printErr(s string) {
if rl.isNoTty {
return
}
_printErr(s)
}
var rxAnsiSgr = regexp.MustCompile(`\x1b\[[:;0-9]+m`)
// Gets the number of runes in a string and
func strLen(s string) int {
s = rxAnsiSgr.ReplaceAllString(s, "")
return runewidth.StringWidth(s)
}
func (rl *Instance) echoStr() string {
if len(rl.multiSplit) == 0 {
rl.syntaxCompletion()
}
lineX, lineY := rl.lineWrapCellLen()
posX, posY := rl.lineWrapCellPos()
// reset cursor to start
line := "\r"
if posY > 0 {
line += fmt.Sprintf(cursorUpf, posY)
}
// clear the line
line += strings.Repeat("\x1b[2K\n", lineY+1) // clear line + move cursor down 1
line += fmt.Sprintf(cursorUpf, lineY+1)
//line += seqClearScreenBelow
promptLen := rl.promptLen
if promptLen < rl.termWidth() {
line += rl.prompt
} else {
promptLen = 0
}
switch {
case rl.PasswordMask != 0:
line += strings.Repeat(string(rl.PasswordMask), rl.line.CellLen())
case rl.line.CellLen()+promptLen > rl.termWidth():
fallthrough
case rl.SyntaxHighlighter == nil:
line += strings.Join(lineWrap(rl, rl.termWidth()), "\r\n")
default:
syntax := rl.cacheSyntax.Get(rl.line.Runes())
if len(syntax) == 0 {
syntax = rl.SyntaxHighlighter(rl.line.Runes())
if rl.DelayedSyntaxWorker == nil {
rl.cacheSyntax.Append(rl.line.Runes(), syntax)
}
}
line += syntax
}
y := lineY - posY
if y > 0 {
line += fmt.Sprintf(cursorUpf, y)
}
x := lineX - posX + 1
if x > 0 {
line += fmt.Sprintf(cursorBackf, x)
}
//print(line)
return line
}
func lineWrap(rl *Instance, termWidth int) []string {
var promptLen int
if rl.promptLen < termWidth {
promptLen = rl.promptLen
}
var (
wrap []string
wrapRunes [][]rune
bufCellLen int
length = termWidth - promptLen
line = rl.line.Runes() //append(rl.line.Runes(), []rune{' ', ' '}...) // double space to work around wide characters
lPos int
)
wrapRunes = append(wrapRunes, []rune{})
for r := range line {
w := runewidth.RuneWidth(line[r])
if bufCellLen+w > length {
wrapRunes = append(wrapRunes, []rune(strings.Repeat(" ", promptLen)))
lPos++
bufCellLen = 0
}
bufCellLen += w
wrapRunes[lPos] = append(wrapRunes[lPos], line[r])
}
wrap = make([]string, lPos+1)
for i := range wrap {
wrap[i] = string(wrapRunes[i])
}
return wrap
}
func (rl *Instance) lineWrapCellLen() (x, y int) {
return LineWrappedCellPos(rl.promptLen, rl.line.Runes(), rl.termWidth())
}
func (rl *Instance) lineWrapCellPos() (x, y int) {
return LineWrappedCellPos(rl.promptLen, rl.line.Runes()[:rl.line.RunePos()], rl.termWidth())
}
// LineWrappedCellPos is a unicode and wide character aware function for
// determining the x/y coordinates of a cell.
func LineWrappedCellPos(promptLen int, line []rune, termWidth int) (x, y int) {
if promptLen >= termWidth {
promptLen = 0
}
// avoid divide by zero error
if termWidth-promptLen == 0 {
return 0, 0
}
x = promptLen
for i := range line {
w := runewidth.RuneWidth(line[i])
if x+w > termWidth {
x = promptLen
y++
}
x += w
}
return
}
func (rl *Instance) clearPrompt() {
if rl.line.RuneLen() == 0 {
return
}
output := rl.moveCursorToStartStr()
if rl.termWidth() > rl.promptLen {
output += strings.Repeat(" ", rl.termWidth()-rl.promptLen)
}
output += seqClearScreenBelow
output += moveCursorBackwardsStr(rl.termWidth())
output += rl.prompt
rl.line.Set(rl, []rune{})
rl.line.SetRunePos(0)
rl.print(output)
}
func (rl *Instance) resetHelpers() {
rl.modeAutoFind = false
output := rl.clearPreviewStr()
output += rl.clearHelpersStr()
rl.resetHintText()
rl.resetTabCompletion()
rl.print(output)
}
func (rl *Instance) clearHelpersStr() string {
posX, posY := rl.lineWrapCellPos()
_, lineY := rl.lineWrapCellLen()
y := lineY - posY
output := moveCursorDownStr(y)
output += "\r\n" + seqClearScreenBelow
output += moveCursorUpStr(y + 1)
output += moveCursorForwardsStr(posX)
return output
}
func (rl *Instance) renderHelpersStr() string {
output := rl.writeHintTextStr()
output += rl.writeTabCompletionStr()
output += rl.writePreviewStr()
return output
}
func (rl *Instance) updateHelpersStr() string {
rl.tcOffset = 0
rl.getHintText()
if rl.modeTabCompletion.Load() {
rl.getTabCompletion()
}
output := rl.clearHelpersStr()
output += rl.renderHelpersStr()
return output
}