1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 06:34:45 +01:00
liquid/parser/scanner.go
2017-07-10 11:49:14 -04:00

54 lines
1.3 KiB
Go

package parser
import (
"regexp"
"strings"
)
var tokenMatcher = regexp.MustCompile(`{{\s*(.+?)\s*}}|{%\s*(\w+)(?:\s+((?:[^%]|%[^}])+?))?\s*%}`)
// Scan breaks a string into a sequence of Tokens.
func Scan(data string, pathname string, firstLine int) []Token {
// TODO error on unterminated {{ and {%
// TODO probably an error when a tag contains a {{ or {%, at least outside of a string
var (
p, pe = 0, len(data)
si = SourceLoc{pathname, firstLine}
out = make([]Token, 0)
)
for _, m := range tokenMatcher.FindAllStringSubmatchIndex(data, -1) {
ts, te := m[0], m[1]
if p < ts {
out = append(out, Token{Type: TextTokenType, SourceLoc: si, Source: data[p:ts]})
si.LineNo += strings.Count(data[p:ts], "\n")
}
source := data[ts:te]
switch data[ts+1] {
case '{':
out = append(out, Token{
Type: ObjTokenType,
SourceLoc: si,
Source: source,
Args: data[m[2]:m[3]],
})
case '%':
c := Token{
Type: TagTokenType,
SourceLoc: si,
Source: source,
Name: data[m[4]:m[5]],
}
if m[6] > 0 {
c.Args = data[m[6]:m[7]]
}
out = append(out, c)
}
si.LineNo += strings.Count(source, "\n")
p = te
}
if p < pe {
out = append(out, Token{Type: TextTokenType, SourceLoc: si, Source: data[p:]})
}
return out
}