-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathansitags.go
More file actions
511 lines (400 loc) · 9.71 KB
/
Copy pathansitags.go
File metadata and controls
511 lines (400 loc) · 9.71 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package ansitags
import (
"bufio"
"bytes"
"fmt"
"io"
"os"
"strconv"
"strings"
"gopkg.in/yaml.v3"
)
type parseMode uint8
type ParseBehavior uint8
const (
parseModeNone parseMode = 0
parseModeMatching parseMode = 1
StripTags ParseBehavior = iota // remove all valid ansitags
Monochrome // ignore any color changing properties
HTML // produce HTML instead of ansi tags
// maxTagSize is the maximum byte length of a tag we will accumulate.
// Tags longer than this cannot be valid, so we flush and reset.
maxTagSize = 256
)
var (
tagStart byte = '<'
tagEnd byte = '>'
tagOpen string = "ansi" // will be wrapped in tagStart and tagEnd
tagClose string = "/ansi" // will be wrapped in tagStart and tagEnd
)
func Parse(str string, behaviors ...ParseBehavior) string {
var outputBuffer bytes.Buffer
outputBuffer.Grow(len(str))
parseString(str, &outputBuffer, behaviors...)
return outputBuffer.String()
}
// parseString is the core implementation for string input, avoiding bufio overhead.
func parseString(str string, out *bytes.Buffer, behaviors ...ParseBehavior) {
rwLock.RLock()
defer rwLock.RUnlock()
var stripAllTags bool
var stripAllColor bool
var writeHTML bool
for _, b := range behaviors {
switch b {
case StripTags:
stripAllTags = true
case Monochrome:
stripAllColor = true
case HTML:
writeHTML = true
}
}
var tagStack []*ansiProperties = make([]*ansiProperties, 0, 5)
// Fixed-size tag accumulation buffer — avoids heap allocation for the common case.
var tagBuf [maxTagSize]byte
var tagLen int
openMatcher := NewTagMatcher(tagStart, []byte(tagOpen), tagEnd, true)
closeMatcher := NewTagMatcher(tagStart, []byte(tagClose), tagEnd, false)
var mode parseMode = parseModeNone
for i := 0; i < len(str); i++ {
input := str[i]
if mode == parseModeNone {
if input != tagStart {
out.WriteByte(input)
continue
}
mode = parseModeMatching
}
if mode == parseModeMatching {
openMatch, openMatchDone := openMatcher.MatchNext(input)
closeMatch, closeMatchDone := closeMatcher.MatchNext(input)
if openMatch {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
if !openMatchDone {
continue
}
newTag := extractProperties(string(tagBuf[:tagLen]))
if stripAllColor {
newTag.fg = defaultFg256
newTag.bg = defaultBg256
}
if writeHTML {
newTag.htmlOnly = true
}
tagLen = 0
if !stripAllTags {
stackLen := len(tagStack)
if stackLen > 0 {
out.WriteString(newTag.PropagateAnsiCode(tagStack[stackLen-1]))
} else {
out.WriteString(newTag.PropagateAnsiCode(nil))
}
tagStack = append(tagStack, newTag)
} else {
releaseProperties(newTag)
}
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
openMatcher.Reset()
if closeMatch {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
if !closeMatchDone {
continue
}
tagLen = 0
if !stripAllTags {
stackLen := len(tagStack)
if stackLen > 2 {
out.WriteString(tagStack[stackLen-2].PropagateAnsiCode(tagStack[stackLen-3]))
} else if stackLen > 1 {
out.WriteString(tagStack[stackLen-2].PropagateAnsiCode(nil))
} else {
if writeHTML {
out.WriteString(htmlResetAll)
} else {
out.WriteString(ansiResetAll)
}
}
if stackLen > 0 {
releaseProperties(tagStack[stackLen-1])
tagStack[stackLen-1] = nil
tagStack = tagStack[:stackLen-1]
}
}
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
closeMatcher.Reset()
if closeMatchDone && openMatchDone {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
}
mode = parseModeNone
if !stripAllTags {
out.Write(tagBuf[:tagLen])
}
tagLen = 0
continue
}
}
if !stripAllTags {
if tagLen > 0 {
out.Write(tagBuf[:tagLen])
tagLen = 0
}
if len(tagStack) > 0 {
if writeHTML {
out.WriteString(htmlResetAll)
} else {
out.WriteString(ansiResetAll)
}
}
}
// Release any remaining pooled properties
for _, p := range tagStack {
if p != nil {
releaseProperties(p)
}
}
}
func ParseStreaming(inbound *bufio.Reader, outbound *bufio.Writer, behaviors ...ParseBehavior) {
rwLock.RLock()
defer rwLock.RUnlock()
var stripAllTags bool
var stripAllColor bool
var writeHTML bool
for _, b := range behaviors {
switch b {
case StripTags:
stripAllTags = true
case Monochrome:
stripAllColor = true
case HTML:
writeHTML = true
}
}
var tagStack []*ansiProperties = make([]*ansiProperties, 0, 5)
var tagBuf [maxTagSize]byte
var tagLen int
openMatcher := NewTagMatcher(tagStart, []byte(tagOpen), tagEnd, true)
closeMatcher := NewTagMatcher(tagStart, []byte(tagClose), tagEnd, false)
var mode parseMode = parseModeNone
for {
input, err := inbound.ReadByte()
if err != nil && err == io.EOF {
break
}
if mode == parseModeNone {
if input != tagStart {
outbound.WriteByte(input)
continue
}
mode = parseModeMatching
}
if mode == parseModeMatching {
openMatch, openMatchDone := openMatcher.MatchNext(input)
closeMatch, closeMatchDone := closeMatcher.MatchNext(input)
if openMatch {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
if !openMatchDone {
continue
}
newTag := extractProperties(string(tagBuf[:tagLen]))
if stripAllColor {
newTag.fg = defaultFg256
newTag.bg = defaultBg256
}
if writeHTML {
newTag.htmlOnly = true
}
tagLen = 0
if !stripAllTags {
stackLen := len(tagStack)
if stackLen > 0 {
outbound.WriteString(newTag.PropagateAnsiCode(tagStack[stackLen-1]))
} else {
outbound.WriteString(newTag.PropagateAnsiCode(nil))
}
tagStack = append(tagStack, newTag)
} else {
releaseProperties(newTag)
}
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
openMatcher.Reset()
if closeMatch {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
if !closeMatchDone {
continue
}
tagLen = 0
if !stripAllTags {
stackLen := len(tagStack)
if stackLen > 2 {
outbound.WriteString(tagStack[stackLen-2].PropagateAnsiCode(tagStack[stackLen-3]))
} else if stackLen > 1 {
outbound.WriteString(tagStack[stackLen-2].PropagateAnsiCode(nil))
} else {
if writeHTML {
outbound.WriteString(htmlResetAll)
} else {
outbound.WriteString(ansiResetAll)
}
}
if stackLen > 0 {
releaseProperties(tagStack[stackLen-1])
tagStack[stackLen-1] = nil
tagStack = tagStack[:stackLen-1]
}
}
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
closeMatcher.Reset()
if closeMatchDone && openMatchDone {
if tagLen < maxTagSize {
tagBuf[tagLen] = input
tagLen++
}
}
mode = parseModeNone
if !stripAllTags {
outbound.Write(tagBuf[:tagLen])
}
tagLen = 0
continue
}
}
if !stripAllTags {
if tagLen > 0 {
outbound.Write(tagBuf[:tagLen])
tagLen = 0
}
if len(tagStack) > 0 {
if writeHTML {
outbound.WriteString(htmlResetAll)
} else {
outbound.WriteString(ansiResetAll)
}
}
}
for _, p := range tagStack {
if p != nil {
releaseProperties(p)
}
}
outbound.Flush()
}
func GetAliases() map[string]any {
aliases := loadAliasSnapshot()
result := make(map[string]any, len(aliases))
for k, v := range aliases {
result[k] = v
}
return result
}
func SetAlias(alias string, value int) error {
rwLock.Lock()
defer rwLock.Unlock()
if value < 0 || value > 255 {
return fmt.Errorf(`value "%d" out of allowable range for alias "%s"`, value, alias)
}
newMap := make(map[string]int, len(colorAliases)+1)
for k, v := range colorAliases {
newMap[k] = v
}
newMap[alias] = value
colorAliases = newMap
storeAliasSnapshot(colorAliases)
return nil
}
func SetAliases(aliases map[string]int) error {
rwLock.Lock()
defer rwLock.Unlock()
for alias, value := range aliases {
if value < 0 || value > 255 {
return fmt.Errorf(`value "%d" out of allowable range for alias "%s"`, value, alias)
}
}
newMap := make(map[string]int, len(colorAliases)+len(aliases))
for k, v := range colorAliases {
newMap[k] = v
}
for alias, value := range aliases {
newMap[alias] = value
}
colorAliases = newMap
storeAliasSnapshot(colorAliases)
return nil
}
func LoadAliases(yamlFilePaths ...string) error {
rwLock.Lock()
defer rwLock.Unlock()
data := make(map[string]map[string]string, 100)
newMap := make(map[string]int, len(colorAliases))
for k, v := range colorAliases {
newMap[k] = v
}
for _, yamlFilePath := range yamlFilePaths {
if yfile, err := os.ReadFile(yamlFilePath); err != nil {
return err
} else {
if err := yaml.Unmarshal(yfile, &data); err != nil {
return err
}
}
for aliasGroup, aliases := range data {
if aliasGroup == "colors" || aliasGroup == "color256" {
aliasToAlias := map[string]string{}
for alias, real := range aliases {
if numVal, err := strconv.Atoi(real); err == nil {
newMap[alias] = numVal
} else {
aliasToAlias[alias] = real
}
}
for alias, otherAlias := range aliasToAlias {
if val, ok := newMap[otherAlias]; ok {
newMap[alias] = val
}
}
}
if aliasGroup == "position" {
for alias, real := range aliases {
posArr := strings.Split(real, ",")
if len(posArr) == 2 {
positionMap[alias] = posArr
}
}
}
}
}
colorAliases = newMap
storeAliasSnapshot(colorAliases)
return nil
}