1
1
mirror of https://github.com/walles/moar.git synced 2024-09-19 07:58:00 +03:00
moar/m/ansiTokenizer.go

164 lines
3.2 KiB
Go
Raw Normal View History

package m
import (
2019-06-16 21:57:03 +03:00
"log"
"regexp"
"strings"
"github.com/gdamore/tcell"
)
2019-06-17 22:39:57 +03:00
const _TabSize = 4
2019-06-16 21:57:03 +03:00
// Token is a rune with a style to be written to a cell on screen
type Token struct {
Rune rune
Style tcell.Style
}
// TokensFromString turns a string into a series of tokens
2019-06-16 21:57:03 +03:00
func TokensFromString(logger *log.Logger, s string) []Token {
var tokens []Token
styleBrokenUtf8 := tcell.StyleDefault.Background(7).Foreground(1)
2019-06-16 21:57:03 +03:00
for _, styledString := range _StyledStringsFromString(logger, s) {
for _, char := range styledString.String {
switch char {
case '\x09': // TAB
2019-06-17 22:39:57 +03:00
for {
tokens = append(tokens, Token{
Rune: ' ',
Style: styledString.Style,
})
if (len(tokens))%_TabSize == 0 {
// We arrived at the next tab stop
break
}
}
case '<27>': // Go's broken-UTF8 marker
tokens = append(tokens, Token{
Rune: '?',
Style: styleBrokenUtf8,
})
default:
2019-06-17 22:39:57 +03:00
tokens = append(tokens, Token{
Rune: char,
Style: styledString.Style,
})
}
}
}
return tokens
}
type _StyledString struct {
String string
Style tcell.Style
}
2019-06-16 21:57:03 +03:00
func _StyledStringsFromString(logger *log.Logger, s string) []_StyledString {
// This function was inspired by the
// https://golang.org/pkg/regexp/#Regexp.Split source code
pattern := regexp.MustCompile("\x1b\\[([0-9;]*m)")
matches := pattern.FindAllStringIndex(s, -1)
styledStrings := make([]_StyledString, 0, len(matches)+1)
style := tcell.StyleDefault
beg := 0
end := 0
for _, match := range matches {
end = match[0]
2019-06-16 10:23:25 +03:00
if end > beg {
// Otherwise the string is empty, no point for us in that
styledStrings = append(styledStrings, _StyledString{
String: s[beg:end],
Style: style,
})
}
matchedPart := s[match[0]:match[1]]
2019-06-16 21:57:03 +03:00
style = _UpdateStyle(logger, style, matchedPart)
beg = match[1]
}
if end != len(s) {
styledStrings = append(styledStrings, _StyledString{
String: s[beg:],
Style: style,
})
}
return styledStrings
}
// _UpdateStyle parses a string of the form "ESC[33m" into changes to style
2019-06-16 21:57:03 +03:00
func _UpdateStyle(logger *log.Logger, style tcell.Style, escapeSequence string) tcell.Style {
for _, number := range strings.Split(escapeSequence[2:len(escapeSequence)-1], ";") {
switch number {
case "", "0", "00":
style = tcell.StyleDefault
2019-06-16 21:57:03 +03:00
2019-06-16 21:58:19 +03:00
case "1":
style = style.Bold(true)
2019-06-16 22:39:27 +03:00
case "7":
style = style.Reverse(true)
case "27":
style = style.Reverse(false)
2019-06-16 21:57:03 +03:00
// Foreground colors
case "30":
style = style.Foreground(0)
case "31":
style = style.Foreground(1)
case "32":
style = style.Foreground(2)
case "33":
style = style.Foreground(3)
case "34":
style = style.Foreground(4)
case "35":
style = style.Foreground(5)
case "36":
style = style.Foreground(6)
case "37":
style = style.Foreground(7)
2019-06-16 21:57:03 +03:00
// Background colors
case "40":
style = style.Background(0)
2019-06-16 21:57:03 +03:00
case "41":
style = style.Background(1)
2019-06-16 21:57:03 +03:00
case "42":
style = style.Background(2)
2019-06-16 21:57:03 +03:00
case "43":
style = style.Background(3)
2019-06-16 21:57:03 +03:00
case "44":
style = style.Background(4)
2019-06-16 21:57:03 +03:00
case "45":
style = style.Background(5)
2019-06-16 21:57:03 +03:00
case "46":
style = style.Background(6)
2019-06-16 21:57:03 +03:00
case "47":
style = style.Background(7)
2019-06-16 21:57:03 +03:00
default:
logger.Printf("Unrecognized ANSI SGI code <%s>", number)
}
}
return style
}