gopp/main.go

91 lines
1.5 KiB
Go
Raw Normal View History

package tpp
2024-02-26 00:22:09 +03:00
import (
"bytes"
"context"
2024-02-26 00:22:09 +03:00
)
2024-02-26 00:22:09 +03:00
type Preprocessor struct {
tengo *Tengo
tags [2][]byte
preTag byte
2024-02-26 00:22:09 +03:00
}
// Get the new preprocessor with default options.
func New(tengo *Tengo ) *Preprocessor {
pp := &Preprocessor{}
pp.tengo = tengo
pp.tags = [2][]byte{
[]byte("{{"),
[]byte("}}"),
2024-02-26 00:22:09 +03:00
}
pp.preTag = '#'
2024-02-26 00:22:09 +03:00
return pp
}
func (pp *Preprocessor) Process(
ctx context.Context,
recompile bool,
filePath string,
data []byte,
) ([]byte, error) {
2024-06-09 14:51:03 +03:00
//var b bytes.Buffer
2024-05-22 13:16:07 +03:00
preCode := []byte(nil)
texts := [][]byte{}
codes := [][]byte{}
2024-05-22 13:16:07 +03:00
pref := append(pp.tags[0], pp.preTag)
if bytes.HasPrefix(data, pref) {
idxEnd := bytes.Index(data, pp.tags[1])
if idxEnd < 0 {
return nil, UnexpectedError{
What: "pre-code start tag",
}
}
preCode = data[len(pref):idxEnd]
texts = append(texts, []byte{})
data = data[idxEnd+len(pp.tags[1]):]
}
2024-02-26 00:22:09 +03:00
for {
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 {
return nil, UnexpectedError{
2024-02-26 00:22:09 +03:00
What: "end tag",
}
}
texts = append(texts, data)
2024-02-26 00:22:09 +03:00
break
} else if idxEnd < 0 {
return nil, UnexpectedError{
2024-02-26 00:22:09 +03:00
What: "start tag",
}
}
text := data[:idxStart]
texts = append(texts, text)
2024-02-26 00:22:09 +03:00
code := data[idxStart+len(pp.tags[0]):idxEnd]
2024-05-22 13:16:07 +03:00
codes = append(codes, code)
data = data[idxEnd + len(pp.tags[1]):]
}
2024-05-22 13:16:07 +03:00
2024-06-09 14:51:03 +03:00
ret, err := pp.tengo.Eval(
ctx,
recompile,
filePath,
2024-06-09 14:51:03 +03:00
texts,
2024-05-22 13:16:07 +03:00
preCode,
codes,
)
if err != nil {
return nil, err
}
2024-06-09 14:51:03 +03:00
return ret, nil
2024-02-26 00:22:09 +03:00
}