2024-04-25 22:38:04 +03:00
|
|
|
package tpp
|
2024-02-26 00:22:09 +03:00
|
|
|
|
|
|
|
import (
|
2024-04-25 22:38:04 +03:00
|
|
|
//"fmt"
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2024-02-26 00:22:09 +03:00
|
|
|
)
|
|
|
|
|
2024-04-25 22:38:04 +03:00
|
|
|
|
2024-02-26 00:22:09 +03:00
|
|
|
type Preprocessor struct {
|
2024-04-25 22:38:04 +03:00
|
|
|
tengo *Tengo
|
|
|
|
tags [2][]byte
|
2024-05-17 23:55:02 +03:00
|
|
|
preTag byte
|
2024-02-26 00:22:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the new preprocessor with default options.
|
2024-04-25 22:38:04 +03:00
|
|
|
func New(tengo *Tengo ) *Preprocessor {
|
|
|
|
pp := &Preprocessor{}
|
|
|
|
pp.tengo = tengo
|
|
|
|
pp.tags = [2][]byte{
|
|
|
|
[]byte("{{"),
|
|
|
|
[]byte("}}"),
|
2024-02-26 00:22:09 +03:00
|
|
|
}
|
2024-05-17 23:55:02 +03:00
|
|
|
pp.preTag = '#'
|
2024-02-26 00:22:09 +03:00
|
|
|
return pp
|
|
|
|
}
|
|
|
|
|
2024-04-25 22:38:04 +03:00
|
|
|
func (pp *Preprocessor) Process(
|
|
|
|
ctx context.Context,
|
|
|
|
recompile bool,
|
|
|
|
filePath string,
|
|
|
|
data []byte,
|
|
|
|
) ([]byte, error) {
|
|
|
|
var b bytes.Buffer
|
2024-05-17 23:55:02 +03:00
|
|
|
preCodes := [][]byte{}
|
2024-04-25 22:38:04 +03:00
|
|
|
texts := [][]byte{}
|
|
|
|
codes := [][]byte{}
|
2024-02-26 00:22:09 +03:00
|
|
|
for {
|
2024-05-17 23:55:02 +03:00
|
|
|
idxStart := bytes.Index(data, pp.tags[0])
|
|
|
|
idxEnd := bytes.Index(data, pp.tags[1])
|
2024-02-26 00:22:09 +03:00
|
|
|
//fmt.Printf("cock %d %d %d\n", last, idxStart, idxEnd)
|
|
|
|
if idxStart < 0 {
|
|
|
|
if idxEnd >= 0 {
|
2024-04-25 22:38:04 +03:00
|
|
|
return nil, UnexpectedError{
|
2024-02-26 00:22:09 +03:00
|
|
|
What: "end tag",
|
|
|
|
}
|
|
|
|
}
|
2024-05-17 23:55:02 +03:00
|
|
|
texts = append(texts, data)
|
2024-02-26 00:22:09 +03:00
|
|
|
break
|
|
|
|
} else if idxEnd < 0 {
|
2024-04-25 22:38:04 +03:00
|
|
|
return nil, UnexpectedError{
|
2024-02-26 00:22:09 +03:00
|
|
|
What: "start tag",
|
|
|
|
}
|
|
|
|
}
|
2024-05-17 23:55:02 +03:00
|
|
|
|
|
|
|
text := data[:idxStart]
|
2024-02-26 20:16:12 +03:00
|
|
|
texts = append(texts, text)
|
|
|
|
|
2024-02-26 00:22:09 +03:00
|
|
|
code := data[idxStart+len(pp.tags[0]):idxEnd]
|
2024-05-17 23:55:02 +03:00
|
|
|
if len(code) > 0 && code[0] == pp.preTag {
|
|
|
|
code = code[1:]
|
|
|
|
preCodes = append(preCodes, code)
|
|
|
|
} else {
|
|
|
|
codes = append(codes, code)
|
|
|
|
}
|
2024-02-26 20:16:12 +03:00
|
|
|
|
|
|
|
data = data[idxEnd + len(pp.tags[1]):]
|
|
|
|
/*if len(data) > 0 && data[0] == '\n' {
|
|
|
|
data = data[1:]
|
|
|
|
}*/
|
|
|
|
}
|
2024-04-25 22:38:04 +03:00
|
|
|
codeRets, err := pp.tengo.Eval(
|
|
|
|
ctx,
|
|
|
|
recompile,
|
|
|
|
filePath,
|
2024-05-17 23:55:02 +03:00
|
|
|
preCodes,
|
2024-04-25 22:38:04 +03:00
|
|
|
codes,
|
|
|
|
)
|
2024-02-26 20:16:12 +03:00
|
|
|
if err != nil {
|
2024-04-25 22:38:04 +03:00
|
|
|
return nil, err
|
2024-02-26 20:16:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, codeRet := range codeRets {
|
2024-04-25 22:38:04 +03:00
|
|
|
b.Write(texts[i])
|
|
|
|
b.Write(codeRet)
|
2024-02-26 00:22:09 +03:00
|
|
|
}
|
2024-04-25 22:38:04 +03:00
|
|
|
|
|
|
|
b.Write(texts[len(codeRets)])
|
2024-02-26 00:22:09 +03:00
|
|
|
|
2024-04-25 22:38:04 +03:00
|
|
|
return b.Bytes(), nil
|
2024-02-26 00:22:09 +03:00
|
|
|
}
|
|
|
|
|