-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathansitags.go
313 lines (242 loc) · 6.41 KB
/
ansitags.go
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
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
)
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 {
input := bufio.NewReader(strings.NewReader(str))
var outputBuffer bytes.Buffer
output := bufio.NewWriter(&outputBuffer)
ParseStreaming(input, output, behaviors...)
return outputBuffer.String()
}
func ParseStreaming(inbound *bufio.Reader, outbound *bufio.Writer, behaviors ...ParseBehavior) {
rwLock.RLock()
defer rwLock.RUnlock()
var stripAllTags bool = false
var stripAllColor bool = false
for _, b := range behaviors {
if b == StripTags {
stripAllTags = true
} else if b == Monochrome {
stripAllColor = true
}
}
var tagStack []*ansiProperties = make([]*ansiProperties, 0, 5)
var currentTagBuilder strings.Builder
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 not currently in any modes, look for any tags
if mode == parseModeNone {
if input != tagStart {
// If it's not an opening tag and we're looking for it (zero position)
// Write it to the output string and go to next
outbound.WriteByte(input)
continue
}
// Since the input is a starting tag, switch to a matching mode
mode = parseModeMatching
}
// if attempting to match a tag
if mode == parseModeMatching {
openMatch, openMatchDone := openMatcher.MatchNext(input)
closeMatch, closeMatchDone := closeMatcher.MatchNext(input)
if openMatch {
currentTagBuilder.WriteByte(input)
if !openMatchDone {
continue
}
// If this is the final closing string of the open tag
newTag := extractProperties(currentTagBuilder.String())
if stripAllColor {
newTag.fg = 0
newTag.bg = 0
}
currentTagBuilder.Reset()
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)
}
// reset matchers
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
// No open match was found. Reset the matcher
openMatcher.Reset()
if closeMatch {
currentTagBuilder.WriteByte(input)
if !closeMatchDone {
continue
}
currentTagBuilder.Reset()
if !stripAllTags {
// we're already at the end, we can parse it.
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 {
outbound.WriteString(AnsiResetAll())
}
if stackLen > 0 {
tagStack[len(tagStack)-1] = nil
tagStack = tagStack[0 : len(tagStack)-1]
}
}
// reset matchers
mode = parseModeNone
openMatcher.Reset()
closeMatcher.Reset()
continue
}
// No close match was found. Reset the matcher
closeMatcher.Reset()
if closeMatchDone && openMatchDone {
currentTagBuilder.WriteByte(input)
}
// open and close both failed to match. Reset everything
mode = parseModeNone
if !stripAllTags {
outbound.WriteString(currentTagBuilder.String())
}
currentTagBuilder.Reset()
continue
}
}
if !stripAllTags {
if currentTagBuilder.Len() > 0 {
outbound.WriteString(currentTagBuilder.String())
currentTagBuilder.Reset()
}
// if there were any unclosed tags in the stream
if len(tagStack) > 0 {
outbound.WriteString(AnsiResetAll())
}
}
outbound.Flush()
}
func SetAlias(alias string, value int, aliasGroup ...string) 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)
}
g := `color256`
if len(aliasGroup) > 0 {
if aliasGroup[0] == `color8` {
g = `color8`
}
}
if g == "color8" {
colorMap8[alias] = value
} else {
colorMap256[alias] = value
}
return nil
}
func SetAliases(aliases map[string]int, aliasGroup ...string) error {
rwLock.Lock()
defer rwLock.Unlock()
g := `color256`
if len(aliasGroup) > 0 {
if aliasGroup[0] == `color8` {
g = `color8`
}
}
for alias, value := range aliases {
if value < 0 || value > 255 {
return fmt.Errorf(`value "%d" out of allowable range for alias "%s"`, value, alias)
}
if g == "color8" {
colorMap8[alias] = value
} else {
colorMap256[alias] = value
}
}
return nil
}
func LoadAliases(yamlFilePaths ...string) error {
rwLock.Lock()
defer rwLock.Unlock()
data := make(map[string]map[string]string, 100)
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 == "color8" {
for alias, real := range aliases {
// try mapping to an existing color alias
if val, ok := colorMap8[real]; ok {
colorMap8[alias] = val
} else {
// allow a numeric mapping
if numVal, err := strconv.Atoi(real); err == nil {
colorMap8[alias] = numVal
}
}
}
}
if aliasGroup == "color256" {
for alias, real := range aliases {
// try mapping to an existing color alias
if val, ok := colorMap256[real]; ok {
colorMap256[alias] = val
} else {
// allow a numeric mapping
if numVal, err := strconv.Atoi(real); err == nil {
colorMap256[alias] = numVal
}
}
}
}
if aliasGroup == "position" {
for alias, real := range aliases {
posArr := strings.Split(real, ",")
if len(posArr) == 2 {
positionMap[alias] = posArr
}
}
}
}
}
return nil
}