92 lines
1.9 KiB
Go
92 lines
1.9 KiB
Go
//+build experiment
|
|
|
|
// ! EXPERIMENTAL
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"log"
|
|
"regexp"
|
|
"text/template/parse"
|
|
)
|
|
|
|
var tagFinder *regexp.Regexp
|
|
var limeFuncMap = map[string]interface{}{
|
|
"and": "&&",
|
|
"not": "!",
|
|
"or": "||",
|
|
"eq": true,
|
|
"ge": true,
|
|
"gt": true,
|
|
"le": true,
|
|
"lt": true,
|
|
"ne": true,
|
|
"add": true,
|
|
"subtract": true,
|
|
"multiply": true,
|
|
"divide": true,
|
|
}
|
|
|
|
func init() {
|
|
tagFinder = regexp.MustCompile(`(?s)\{\{(.*)\}\}`)
|
|
}
|
|
|
|
func mangoParse(tmpl string) error {
|
|
tree := parse.New(name, funcMap)
|
|
var treeSet = make(map[string]*parse.Tree)
|
|
tree, err = tree.Parse(content, "{{", "}}", treeSet, limeFuncMap)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
treeLength := len(tree.Root.Nodes)
|
|
log.Print("treeLength", treeLength)
|
|
return nil
|
|
}
|
|
|
|
func icecreamSoup(tmpl string) error {
|
|
if config.MinifyTemplates {
|
|
tmpl = minify(tmpl)
|
|
}
|
|
tagIndices := tagFinder.FindAllStringIndex(tmpl, -1)
|
|
if tagIndices != nil && len(tagIndices) > 0 {
|
|
|
|
if tagIndices[0][0] == 0 {
|
|
return errors.New("We don't support tags in the outermost layer yet")
|
|
}
|
|
for _, tagIndex := range tagIndices {
|
|
var nestingLayer = 0
|
|
for i := tagIndex[0]; i > 0; i-- {
|
|
switch tmpl[i] {
|
|
case '>':
|
|
i, closeTag, err := tasteTagToLeft(tmpl, i)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if closeTag {
|
|
nestingLayer++
|
|
}
|
|
case '<':
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func tasteTagToLeft(tmpl string, index int) (indexOut int, closeTag bool, err error) {
|
|
var foundLeftBrace = false
|
|
for ; index > 0; index-- {
|
|
// What if the / isn't adjacent to the < but has a space instead? Is that even valid?
|
|
if index >= 1 && tmpl[index] == '/' && tmpl[index-1] == '<' {
|
|
closeTag = true
|
|
break
|
|
} else if tmpl[index] == '<' {
|
|
foundLeftBrace = true
|
|
}
|
|
}
|
|
if !foundLeftBrace {
|
|
return errors.New("The left portion of the tag is missing")
|
|
}
|
|
return index, closeTag, nil
|
|
}
|