2019-10-27 17:04:31 +01:00
|
|
|
package chroma
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2022-07-05 03:51:57 +02:00
|
|
|
"path/filepath"
|
2019-10-27 17:04:31 +01:00
|
|
|
"regexp"
|
2022-07-05 03:51:57 +02:00
|
|
|
"sort"
|
2019-10-27 17:04:31 +01:00
|
|
|
"strings"
|
|
|
|
"sync"
|
2020-08-08 16:29:29 +02:00
|
|
|
"time"
|
2019-10-27 17:04:31 +01:00
|
|
|
"unicode/utf8"
|
|
|
|
|
|
|
|
"github.com/dlclark/regexp2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// A Rule is the fundamental matching unit of the Regex lexer state machine.
|
|
|
|
type Rule struct {
|
|
|
|
Pattern string
|
|
|
|
Type Emitter
|
|
|
|
Mutator Mutator
|
|
|
|
}
|
|
|
|
|
|
|
|
// Words creates a regex that matches any of the given literal words.
|
|
|
|
func Words(prefix, suffix string, words ...string) string {
|
2022-07-05 03:51:57 +02:00
|
|
|
sort.Slice(words, func(i, j int) bool {
|
|
|
|
return len(words[j]) < len(words[i])
|
|
|
|
})
|
2019-10-27 17:04:31 +01:00
|
|
|
for i, word := range words {
|
|
|
|
words[i] = regexp.QuoteMeta(word)
|
|
|
|
}
|
|
|
|
return prefix + `(` + strings.Join(words, `|`) + `)` + suffix
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tokenise text using lexer, returning tokens as a slice.
|
|
|
|
func Tokenise(lexer Lexer, options *TokeniseOptions, text string) ([]Token, error) {
|
|
|
|
var out []Token
|
|
|
|
it, err := lexer.Tokenise(options, text)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for t := it(); t != EOF; t = it() {
|
|
|
|
out = append(out, t)
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rules maps from state to a sequence of Rules.
|
|
|
|
type Rules map[string][]Rule
|
|
|
|
|
2020-08-08 16:29:29 +02:00
|
|
|
// Rename clones rules then a rule.
|
2022-07-05 03:51:57 +02:00
|
|
|
func (r Rules) Rename(oldRule, newRule string) Rules {
|
2020-08-08 16:29:29 +02:00
|
|
|
r = r.Clone()
|
2022-07-05 03:51:57 +02:00
|
|
|
r[newRule] = r[oldRule]
|
|
|
|
delete(r, oldRule)
|
2020-08-08 16:29:29 +02:00
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2019-10-27 17:04:31 +01:00
|
|
|
// Clone returns a clone of the Rules.
|
|
|
|
func (r Rules) Clone() Rules {
|
|
|
|
out := map[string][]Rule{}
|
|
|
|
for key, rules := range r {
|
|
|
|
out[key] = make([]Rule, len(rules))
|
|
|
|
copy(out[key], rules)
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-08-08 16:29:29 +02:00
|
|
|
// Merge creates a clone of "r" then merges "rules" into the clone.
|
|
|
|
func (r Rules) Merge(rules Rules) Rules {
|
|
|
|
out := r.Clone()
|
|
|
|
for k, v := range rules.Clone() {
|
|
|
|
out[k] = v
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
// MustNewLexer creates a new Lexer with deferred rules generation or panics.
|
|
|
|
func MustNewLexer(config *Config, rules func() Rules) *RegexLexer {
|
|
|
|
lexer, err := NewLexer(config, rules)
|
2021-04-28 18:35:32 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return lexer
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
// NewLexer creates a new regex-based Lexer.
|
|
|
|
//
|
|
|
|
// "rules" is a state machine transition map. Each key is a state. Values are sets of rules
|
|
|
|
// that match input, optionally modify lexer state, and output tokens.
|
|
|
|
func NewLexer(config *Config, rulesFunc func() Rules) (*RegexLexer, error) {
|
2021-04-28 18:35:32 +02:00
|
|
|
if config == nil {
|
|
|
|
config = &Config{}
|
|
|
|
}
|
2022-07-05 03:51:57 +02:00
|
|
|
for _, glob := range append(config.Filenames, config.AliasFilenames...) {
|
|
|
|
_, err := filepath.Match(glob, "")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s: %q is not a valid glob: %w", config.Name, glob, err)
|
|
|
|
}
|
|
|
|
}
|
2023-12-13 18:54:32 +01:00
|
|
|
r := &RegexLexer{
|
|
|
|
config: config,
|
|
|
|
fetchRulesFunc: func() (Rules, error) { return rulesFunc(), nil },
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
2023-12-13 18:54:32 +01:00
|
|
|
// One-off code to generate XML lexers in the Chroma source tree.
|
|
|
|
// var nameCleanRe = regexp.MustCompile(`[^-+A-Za-z0-9_]`)
|
|
|
|
// name := strings.ToLower(nameCleanRe.ReplaceAllString(config.Name, "_"))
|
|
|
|
// data, err := Marshal(r)
|
|
|
|
// if err != nil {
|
|
|
|
// if errors.Is(err, ErrNotSerialisable) {
|
|
|
|
// fmt.Fprintf(os.Stderr, "warning: %q: %s\n", name, err)
|
|
|
|
// return r, nil
|
|
|
|
// }
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// _, file, _, ok := runtime.Caller(2)
|
|
|
|
// if !ok {
|
|
|
|
// panic("??")
|
|
|
|
// }
|
|
|
|
// fmt.Println(file)
|
|
|
|
// if strings.Contains(file, "/lexers/") {
|
|
|
|
// dir := filepath.Join(filepath.Dir(file), "embedded")
|
|
|
|
// err = os.MkdirAll(dir, 0700)
|
|
|
|
// if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// filename := filepath.Join(dir, name) + ".xml"
|
|
|
|
// fmt.Println(filename)
|
|
|
|
// err = ioutil.WriteFile(filename, data, 0600)
|
|
|
|
// if err != nil {
|
|
|
|
// return nil, err
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
return r, nil
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Trace enables debug tracing.
|
|
|
|
func (r *RegexLexer) Trace(trace bool) *RegexLexer {
|
|
|
|
r.trace = trace
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// A CompiledRule is a Rule with a pre-compiled regex.
|
|
|
|
//
|
|
|
|
// Note that regular expressions are lazily compiled on first use of the lexer.
|
|
|
|
type CompiledRule struct {
|
|
|
|
Rule
|
|
|
|
Regexp *regexp2.Regexp
|
|
|
|
flags string
|
|
|
|
}
|
|
|
|
|
|
|
|
// CompiledRules is a map of rule name to sequence of compiled rules in that rule.
|
|
|
|
type CompiledRules map[string][]*CompiledRule
|
|
|
|
|
|
|
|
// LexerState contains the state for a single lex.
|
|
|
|
type LexerState struct {
|
2023-12-13 18:54:32 +01:00
|
|
|
Lexer *RegexLexer
|
|
|
|
Registry *LexerRegistry
|
|
|
|
Text []rune
|
|
|
|
Pos int
|
|
|
|
Rules CompiledRules
|
|
|
|
Stack []string
|
|
|
|
State string
|
|
|
|
Rule int
|
2019-10-27 17:04:31 +01:00
|
|
|
// Group matches.
|
|
|
|
Groups []string
|
2022-07-05 03:51:57 +02:00
|
|
|
// Named Group matches.
|
|
|
|
NamedGroups map[string]string
|
2019-10-27 17:04:31 +01:00
|
|
|
// Custum context for mutators.
|
|
|
|
MutatorContext map[interface{}]interface{}
|
|
|
|
iteratorStack []Iterator
|
|
|
|
options *TokeniseOptions
|
2021-04-28 18:35:32 +02:00
|
|
|
newlineAdded bool
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set mutator context.
|
|
|
|
func (l *LexerState) Set(key interface{}, value interface{}) {
|
|
|
|
l.MutatorContext[key] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get mutator context.
|
|
|
|
func (l *LexerState) Get(key interface{}) interface{} {
|
|
|
|
return l.MutatorContext[key]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterator returns the next Token from the lexer.
|
2019-11-08 02:24:08 +01:00
|
|
|
func (l *LexerState) Iterator() Token { // nolint: gocognit
|
2021-04-28 18:35:32 +02:00
|
|
|
end := len(l.Text)
|
|
|
|
if l.newlineAdded {
|
|
|
|
end--
|
|
|
|
}
|
|
|
|
for l.Pos < end && len(l.Stack) > 0 {
|
2019-10-27 17:04:31 +01:00
|
|
|
// Exhaust the iterator stack, if any.
|
|
|
|
for len(l.iteratorStack) > 0 {
|
|
|
|
n := len(l.iteratorStack) - 1
|
|
|
|
t := l.iteratorStack[n]()
|
|
|
|
if t == EOF {
|
|
|
|
l.iteratorStack = l.iteratorStack[:n]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
l.State = l.Stack[len(l.Stack)-1]
|
|
|
|
if l.Lexer.trace {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s: pos=%d, text=%q\n", l.State, l.Pos, string(l.Text[l.Pos:]))
|
|
|
|
}
|
|
|
|
selectedRule, ok := l.Rules[l.State]
|
|
|
|
if !ok {
|
|
|
|
panic("unknown state " + l.State)
|
|
|
|
}
|
2022-07-05 03:51:57 +02:00
|
|
|
ruleIndex, rule, groups, namedGroups := matchRules(l.Text, l.Pos, selectedRule)
|
2019-10-27 17:04:31 +01:00
|
|
|
// No match.
|
|
|
|
if groups == nil {
|
|
|
|
// From Pygments :\
|
|
|
|
//
|
|
|
|
// If the RegexLexer encounters a newline that is flagged as an error token, the stack is
|
|
|
|
// emptied and the lexer continues scanning in the 'root' state. This can help producing
|
|
|
|
// error-tolerant highlighting for erroneous input, e.g. when a single-line string is not
|
|
|
|
// closed.
|
|
|
|
if l.Text[l.Pos] == '\n' && l.State != l.options.State {
|
|
|
|
l.Stack = []string{l.options.State}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
l.Pos++
|
|
|
|
return Token{Error, string(l.Text[l.Pos-1 : l.Pos])}
|
|
|
|
}
|
|
|
|
l.Rule = ruleIndex
|
|
|
|
l.Groups = groups
|
2022-07-05 03:51:57 +02:00
|
|
|
l.NamedGroups = namedGroups
|
2019-10-27 17:04:31 +01:00
|
|
|
l.Pos += utf8.RuneCountInString(groups[0])
|
|
|
|
if rule.Mutator != nil {
|
|
|
|
if err := rule.Mutator.Mutate(l); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if rule.Type != nil {
|
2022-07-05 03:51:57 +02:00
|
|
|
l.iteratorStack = append(l.iteratorStack, rule.Type.Emit(l.Groups, l))
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Exhaust the IteratorStack, if any.
|
|
|
|
// Duplicate code, but eh.
|
|
|
|
for len(l.iteratorStack) > 0 {
|
|
|
|
n := len(l.iteratorStack) - 1
|
|
|
|
t := l.iteratorStack[n]()
|
|
|
|
if t == EOF {
|
|
|
|
l.iteratorStack = l.iteratorStack[:n]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we get to here and we still have text, return it as an error.
|
|
|
|
if l.Pos != len(l.Text) && len(l.Stack) == 0 {
|
|
|
|
value := string(l.Text[l.Pos:])
|
|
|
|
l.Pos = len(l.Text)
|
|
|
|
return Token{Type: Error, Value: value}
|
|
|
|
}
|
|
|
|
return EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegexLexer is the default lexer implementation used in Chroma.
|
|
|
|
type RegexLexer struct {
|
2023-12-13 18:54:32 +01:00
|
|
|
registry *LexerRegistry // The LexerRegistry this Lexer is associated with, if any.
|
2019-10-27 17:04:31 +01:00
|
|
|
config *Config
|
|
|
|
analyser func(text string) float32
|
|
|
|
trace bool
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
mu sync.Mutex
|
|
|
|
compiled bool
|
|
|
|
rawRules Rules
|
|
|
|
rules map[string][]*CompiledRule
|
|
|
|
fetchRulesFunc func() (Rules, error)
|
|
|
|
compileOnce sync.Once
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *RegexLexer) String() string {
|
|
|
|
return r.config.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rules in the Lexer.
|
|
|
|
func (r *RegexLexer) Rules() (Rules, error) {
|
|
|
|
if err := r.needRules(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return r.rawRules, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetRegistry the lexer will use to lookup other lexers if necessary.
|
|
|
|
func (r *RegexLexer) SetRegistry(registry *LexerRegistry) Lexer {
|
|
|
|
r.registry = registry
|
|
|
|
return r
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetAnalyser sets the analyser function used to perform content inspection.
|
2023-12-13 18:54:32 +01:00
|
|
|
func (r *RegexLexer) SetAnalyser(analyser func(text string) float32) Lexer {
|
2019-10-27 17:04:31 +01:00
|
|
|
r.analyser = analyser
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
// AnalyseText scores how likely a fragment of text is to match this lexer, between 0.0 and 1.0.
|
|
|
|
func (r *RegexLexer) AnalyseText(text string) float32 {
|
2019-10-27 17:04:31 +01:00
|
|
|
if r.analyser != nil {
|
|
|
|
return r.analyser(text)
|
|
|
|
}
|
2023-12-13 18:54:32 +01:00
|
|
|
return 0
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
// SetConfig replaces the Config for this Lexer.
|
|
|
|
func (r *RegexLexer) SetConfig(config *Config) *RegexLexer {
|
|
|
|
r.config = config
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config returns the Config for this Lexer.
|
|
|
|
func (r *RegexLexer) Config() *Config {
|
2019-10-27 17:04:31 +01:00
|
|
|
return r.config
|
|
|
|
}
|
|
|
|
|
|
|
|
// Regex compilation is deferred until the lexer is used. This is to avoid significant init() time costs.
|
|
|
|
func (r *RegexLexer) maybeCompile() (err error) {
|
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
if r.compiled {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for state, rules := range r.rules {
|
|
|
|
for i, rule := range rules {
|
|
|
|
if rule.Regexp == nil {
|
|
|
|
pattern := "(?:" + rule.Pattern + ")"
|
|
|
|
if rule.flags != "" {
|
|
|
|
pattern = "(?" + rule.flags + ")" + pattern
|
|
|
|
}
|
|
|
|
pattern = `\G` + pattern
|
2023-12-13 18:54:32 +01:00
|
|
|
rule.Regexp, err = regexp2.Compile(pattern, 0)
|
2019-10-27 17:04:31 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to compile rule %s.%d: %s", state, i, err)
|
|
|
|
}
|
2020-08-08 16:29:29 +02:00
|
|
|
rule.Regexp.MatchTimeout = time.Millisecond * 250
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
restart:
|
|
|
|
seen := map[LexerMutator]bool{}
|
|
|
|
for state := range r.rules {
|
|
|
|
for i := 0; i < len(r.rules[state]); i++ {
|
|
|
|
rule := r.rules[state][i]
|
|
|
|
if compile, ok := rule.Mutator.(LexerMutator); ok {
|
|
|
|
if seen[compile] {
|
|
|
|
return fmt.Errorf("saw mutator %T twice; this should not happen", compile)
|
|
|
|
}
|
|
|
|
seen[compile] = true
|
|
|
|
if err := compile.MutateLexer(r.rules, state, i); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Process the rules again in case the mutator added/removed rules.
|
|
|
|
//
|
|
|
|
// This sounds bad, but shouldn't be significant in practice.
|
|
|
|
goto restart
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r.compiled = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
func (r *RegexLexer) fetchRules() error {
|
|
|
|
rules, err := r.fetchRulesFunc()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("%s: failed to compile rules: %w", r.config.Name, err)
|
|
|
|
}
|
2021-04-28 18:35:32 +02:00
|
|
|
if _, ok := rules["root"]; !ok {
|
|
|
|
return fmt.Errorf("no \"root\" state")
|
|
|
|
}
|
|
|
|
compiledRules := map[string][]*CompiledRule{}
|
|
|
|
for state, rules := range rules {
|
|
|
|
compiledRules[state] = nil
|
|
|
|
for _, rule := range rules {
|
|
|
|
flags := ""
|
|
|
|
if !r.config.NotMultiline {
|
|
|
|
flags += "m"
|
|
|
|
}
|
|
|
|
if r.config.CaseInsensitive {
|
|
|
|
flags += "i"
|
|
|
|
}
|
|
|
|
if r.config.DotAll {
|
|
|
|
flags += "s"
|
|
|
|
}
|
|
|
|
compiledRules[state] = append(compiledRules[state], &CompiledRule{Rule: rule, flags: flags})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
r.rawRules = rules
|
2021-04-28 18:35:32 +02:00
|
|
|
r.rules = compiledRules
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
func (r *RegexLexer) needRules() error {
|
2021-04-28 18:35:32 +02:00
|
|
|
var err error
|
2023-12-13 18:54:32 +01:00
|
|
|
if r.fetchRulesFunc != nil {
|
2021-04-28 18:35:32 +02:00
|
|
|
r.compileOnce.Do(func() {
|
2023-12-13 18:54:32 +01:00
|
|
|
err = r.fetchRules()
|
2021-04-28 18:35:32 +02:00
|
|
|
})
|
|
|
|
}
|
2019-10-27 17:04:31 +01:00
|
|
|
if err := r.maybeCompile(); err != nil {
|
2023-12-13 18:54:32 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tokenise text using lexer, returning an iterator.
|
|
|
|
func (r *RegexLexer) Tokenise(options *TokeniseOptions, text string) (Iterator, error) {
|
|
|
|
err := r.needRules()
|
|
|
|
if err != nil {
|
2019-10-27 17:04:31 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if options == nil {
|
|
|
|
options = defaultOptions
|
|
|
|
}
|
2020-05-12 02:12:28 +02:00
|
|
|
if options.EnsureLF {
|
|
|
|
text = ensureLF(text)
|
|
|
|
}
|
2021-04-28 18:35:32 +02:00
|
|
|
newlineAdded := false
|
2019-10-27 17:04:31 +01:00
|
|
|
if !options.Nested && r.config.EnsureNL && !strings.HasSuffix(text, "\n") {
|
|
|
|
text += "\n"
|
2021-04-28 18:35:32 +02:00
|
|
|
newlineAdded = true
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
state := &LexerState{
|
2023-12-13 18:54:32 +01:00
|
|
|
Registry: r.registry,
|
2021-04-28 18:35:32 +02:00
|
|
|
newlineAdded: newlineAdded,
|
2019-10-27 17:04:31 +01:00
|
|
|
options: options,
|
|
|
|
Lexer: r,
|
|
|
|
Text: []rune(text),
|
|
|
|
Stack: []string{options.State},
|
|
|
|
Rules: r.rules,
|
|
|
|
MutatorContext: map[interface{}]interface{}{},
|
|
|
|
}
|
|
|
|
return state.Iterator, nil
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:54:32 +01:00
|
|
|
// MustRules is like Rules() but will panic on error.
|
|
|
|
func (r *RegexLexer) MustRules() Rules {
|
|
|
|
rules, err := r.Rules()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return rules
|
|
|
|
}
|
|
|
|
|
2022-07-05 03:51:57 +02:00
|
|
|
func matchRules(text []rune, pos int, rules []*CompiledRule) (int, *CompiledRule, []string, map[string]string) {
|
2019-10-27 17:04:31 +01:00
|
|
|
for i, rule := range rules {
|
|
|
|
match, err := rule.Regexp.FindRunesMatchStartingAt(text, pos)
|
|
|
|
if match != nil && err == nil && match.Index == pos {
|
|
|
|
groups := []string{}
|
2022-07-05 03:51:57 +02:00
|
|
|
namedGroups := make(map[string]string)
|
2019-10-27 17:04:31 +01:00
|
|
|
for _, g := range match.Groups() {
|
2022-07-05 03:51:57 +02:00
|
|
|
namedGroups[g.Name] = g.String()
|
2019-10-27 17:04:31 +01:00
|
|
|
groups = append(groups, g.String())
|
|
|
|
}
|
2022-07-05 03:51:57 +02:00
|
|
|
return i, rule, groups, namedGroups
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
2022-07-05 03:51:57 +02:00
|
|
|
return 0, &CompiledRule{}, nil, nil
|
2019-10-27 17:04:31 +01:00
|
|
|
}
|
2020-05-12 02:12:28 +02:00
|
|
|
|
|
|
|
// replace \r and \r\n with \n
|
|
|
|
// same as strings.ReplaceAll but more efficient
|
|
|
|
func ensureLF(text string) string {
|
|
|
|
buf := make([]byte, len(text))
|
|
|
|
var j int
|
|
|
|
for i := 0; i < len(text); i++ {
|
|
|
|
c := text[i]
|
|
|
|
if c == '\r' {
|
|
|
|
if i < len(text)-1 && text[i+1] == '\n' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
c = '\n'
|
|
|
|
}
|
|
|
|
buf[j] = c
|
|
|
|
j++
|
|
|
|
}
|
|
|
|
return string(buf[:j])
|
|
|
|
}
|