-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwrite.go
More file actions
268 lines (219 loc) · 6.14 KB
/
Copy pathwrite.go
File metadata and controls
268 lines (219 loc) · 6.14 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package readline
import (
"fmt"
"regexp"
"strings"
"github.com/mattn/go-runewidth"
)
func (rl *Instance) printf(format string, a ...any) {
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)
}
// rxAnsiEscape matches ANSI escape sequences that occupy zero visible
// columns on screen. Stripping these before measuring is required for
// any prompt or hint that uses richer output than plain SGR colors.
//
// Alternatives, in order:
//
// 1. OSC (Operating System Command): ESC ] ... (BEL | ESC \)
// Hyperlinks (OSC 8), window titles (OSC 0/1/2), CWD reporting
// (OSC 7), iTerm shell-integration marks (OSC 1337), notifications
// (OSC 9), etc. Both string terminators (0x07 BEL and ESC \) are
// accepted; the payload may not contain ESC or BEL.
//
// 2. CSI (Control Sequence Introducer): ESC [ params intermediates final
// Covers SGR (final byte 'm'), cursor moves, clears, scroll regions
// and friends. ECMA-48 conformant byte ranges: params 0x30-0x3F,
// intermediates 0x20-0x2F, final 0x40-0x7E.
//
// 3. Single-byte Fe escapes: ESC X where X is 0x40-0x5F
// Picks up DEC save/restore cursor (ESC 7 / ESC 8 are 0x37/0x38 so
// handled separately below), index (ESC D), next line (ESC E),
// reverse index (ESC M), single shifts, etc. Excludes the CSI ([)
// and OSC (]) introducers, which are consumed by the earlier
// alternatives via leftmost-first matching.
//
// 4. DEC private cursor save/restore: ESC 7, ESC 8
// Numeric finals fall outside the Fe range above.
var rxAnsiEscape = regexp.MustCompile(
`\x1b\][^\x07\x1b]*(?:\x07|\x1b\\)` +
`|\x1b\[[\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]` +
`|\x1b[\x40-\x5f]` +
`|\x1b[78]`,
)
// strLen returns the number of terminal cells a string would occupy on a
// monospace display, after stripping zero-width ANSI escape sequences.
func strLen(s string) int {
s = rxAnsiEscape.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
}
ttyphoon := isTtyphoon()
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)
}
}
if ttyphoon {
syntax = contentEditable(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)
}
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
}