-
Notifications
You must be signed in to change notification settings - Fork 7
/
general_parser.go
208 lines (175 loc) · 4.15 KB
/
general_parser.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package parser
import (
"encoding/json"
"errors"
"fmt"
"github.com/robertkrimen/otto"
"regexp"
"strings"
)
type GeneralParser struct {
tagPattern string
tagRegexp *regexp.Regexp
mathPattern string
mathRegexp *regexp.Regexp
template string
indexes [][]int
matches [][]string
placeholders []string
variables []Variable
vm *otto.Otto
}
const VariableNameResult = "result"
const ValueNameNA = "N/A"
func (p *GeneralParser) Parse(template string) (err error) {
p.template = template
p.indexes = p.tagRegexp.FindAllStringIndex(template, -1)
p.matches = p.tagRegexp.FindAllStringSubmatch(template, -1)
for _, arr := range p.matches {
p.placeholders = append(p.placeholders, arr[1])
}
return nil
}
func (p *GeneralParser) Render(args ...interface{}) (content string, err error) {
// render tag content
content, err = p.renderTagContent(args...)
if err != nil {
return content, err
}
// render math content
content, err = p.renderMathContent(content)
if err != nil {
return content, err
}
return content, nil
}
func (p *GeneralParser) renderTagContent(args ...interface{}) (content string, err error) {
// validate
if len(args) == 0 {
return "", errors.New("no arguments")
}
// first argument
arg := args[0]
// content
content = p.template
// old strings
var oldStrList []string
for _, index := range p.indexes {
// old string
oldStr := content[index[0]:index[1]]
oldStrList = append(oldStrList, oldStr)
}
// iterate placeholders
for i, placeholder := range p.placeholders {
// variable
v, err := NewVariable(arg, placeholder)
if err != nil {
return "", err
}
// value
value, err := v.GetValue()
if err != nil || value == nil {
value = ValueNameNA
}
// old string
oldStr := oldStrList[i]
// new string
var newStr string
switch value.(type) {
case string:
newStr = value.(string)
default:
newStrBytes, err := json.Marshal(value)
if err != nil {
return "", err
}
newStr = string(newStrBytes)
}
// replace old string with new string
content = strings.Replace(content, oldStr, newStr, 1)
}
return content, nil
}
func (p *GeneralParser) renderMathContent(inputContent string) (content string, err error) {
content = inputContent
indexes := p.mathRegexp.FindAllStringIndex(inputContent, -1)
matches := p.mathRegexp.FindAllStringSubmatch(inputContent, -1)
// old strings
var oldStrList []string
for _, index := range indexes {
// old string
oldStr := content[index[0]:index[1]]
oldStrList = append(oldStrList, oldStr)
}
// iterate matches
for i, m := range matches {
// js script to run to get evaluate result
script := fmt.Sprintf("%s = %s; %s", VariableNameResult, m[1], VariableNameResult)
// replace NA
script = strings.ReplaceAll(script, ValueNameNA, "NaN")
// value
value, err := p.vm.Run(script)
if err != nil {
return "", err
}
// old string
oldStr := oldStrList[i]
// new string
newStr := value.String()
// replace old string with new string
content = strings.Replace(content, oldStr, newStr, 1)
}
return content, nil
}
func (p *GeneralParser) GetPlaceholders() (placeholders []string) {
return p.placeholders
}
func NewGeneralParser() (p Parser, err error) {
// tag regexp
tagPrefix := "\\{\\{"
tagSuffix := "\\}\\}"
tagBasicChars := "\\$\\.\\w_"
tagAssociateChars := "\\[\\]:"
tagPattern := fmt.Sprintf(
"%s *([%s%s]+) *%s",
tagPrefix,
tagBasicChars,
tagAssociateChars,
tagSuffix,
)
tagRegexp, err := regexp.Compile(tagPattern)
if err != nil {
return nil, err
}
// math regexp
mathPrefix := "\\{#"
mathSuffix := "#\\}"
mathBasicChars := " \\(\\)"
mathOpChars := "\\+\\-\\*/%"
mathNumChars := "\\d\\."
mathSpecialChars := "(?:NaN|null)"
mathPattern := fmt.Sprintf(
"%s *([%s%s%s%s]+) *%s",
mathPrefix,
mathBasicChars,
mathOpChars,
mathNumChars,
mathSpecialChars,
mathSuffix,
)
mathRegexp, err := regexp.Compile(mathPattern)
if err != nil {
return nil, err
}
// math vm
vm := otto.New()
// parser
p = &GeneralParser{
tagPattern: tagPattern,
tagRegexp: tagRegexp,
mathPattern: mathPattern,
mathRegexp: mathRegexp,
vm: vm,
}
return p, nil
}