-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.go
212 lines (186 loc) · 4.49 KB
/
template.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
209
210
211
212
package compiler
import (
"io"
"strconv"
"strings"
)
type Template struct {
Filename string
Root nodeBase
}
type templateWriter struct {
w io.Writer
num *int
pos *Position
sm *SourceMap
indent int
inStatic bool
inErrHandler bool
isUnescaped bool
}
func (t *Template) Generate(w io.Writer) error {
tw := newTemplateWriter(w, nil)
err := t.Root.Source(tw)
return err
}
func (t *Template) Compose(w io.Writer) (*SourceMap, error) {
tw := newTemplateWriter(w, &SourceMap{
SourceLinesToTarget: make(map[int]map[int]Position),
TargetLinesToSource: make(map[int]map[int]Position),
})
err := t.Root.Source(tw)
return tw.sm, err
}
func newTemplateWriter(w io.Writer, sm *SourceMap) *templateWriter {
num := 0
tw := &templateWriter{
w: w,
num: &num,
pos: &Position{
Line: 1,
Col: 1,
},
sm: sm,
}
return tw
}
// Add adds a token and its range to the source map.
//
// When the source map is nil, this is a no-op.
func (tw *templateWriter) Add(t token, r Range) {
if tw.sm == nil {
return
}
tw.sm.Add(t, r)
}
func (tw *templateWriter) Indent(indents uint) *templateWriter {
itw := *tw
itw.indent += int(indents)
return &itw
}
func (tw *templateWriter) GetVarName() string {
*tw.num++
return "__var" + strconv.Itoa(*tw.num)
}
func (tw *templateWriter) ResetVarName() {
*tw.num = 0
}
// WriteVar writes a variable declaration to the template.
//
// (e.g. "var __var1 string")
func (tw *templateWriter) WriteVar(s string) (r Range, err error) {
if tw.inStatic {
if _, err = tw.closeStringLiteral(); err != nil {
return
}
}
return tw.WriteIndent(`var ` + s + " string\n")
}
// Write writes a string to the template.
//
// (e.g. ... whatever you give it ...)
func (tw *templateWriter) Write(s string) (r Range, err error) {
if tw.inStatic {
if _, err = tw.closeStringLiteral(); err != nil {
return
}
}
return tw.write(s)
}
// WriteIndent writes a string to the template with the current indent.
// Close any open string literal before writing.
//
// (e.g. \t\t\t ... whatever you give it ...)
func (tw *templateWriter) WriteIndent(s string) (r Range, err error) {
if tw.inStatic {
if _, err = tw.closeStringLiteral(); err != nil {
return
}
}
if _, err = tw.write(strings.Repeat("\t", tw.indent)); err != nil {
return
}
return tw.write(s)
}
// WriteStringLiteral writes a string literal to the template.
// Continue writing to the string literal if one is already open.
//
// (e.g. " ... whatever you give it ... ")
func (tw *templateWriter) WriteStringLiteral(s string) (r Range, err error) {
if !tw.inStatic {
if _, err = tw.write(strings.Repeat("\t", tw.indent)); err != nil {
return
}
if _, err = tw.write(`if _, __err = __buf.WriteString("`); err != nil {
return
}
tw.inStatic = true
tw.inErrHandler = true
}
return tw.write(s)
}
// WriteStringIndent writes a string literal to the template with the current indent.
// Close any open string literal before writing.
//
// (e.g., if, __err := __buf.WriteString( ... whatever you give it ... ); __err != nil { return })
func (tw *templateWriter) WriteStringIndent(s string) (r Range, err error) {
if tw.inStatic {
if _, err = tw.closeStringLiteral(); err != nil {
return
}
}
if _, err = tw.write(strings.Repeat("\t", tw.indent)); err != nil {
return
}
if _, err = tw.write(`if _, __err = __buf.WriteString(`); err != nil {
return
}
if r, err = tw.write(s); err != nil {
return
}
if _, err = tw.write("); __err != nil { return }\n"); err != nil {
return
}
return
}
func (tw *templateWriter) WriteErrorHandler() (Range, error) {
if tw.inStatic {
return tw.closeStringLiteral()
}
return tw.write(tw.addErrHandler())
}
func (tw *templateWriter) Close() (r Range, err error) {
if tw.inStatic {
return tw.closeStringLiteral()
}
return
}
func (tw *templateWriter) write(s string) (r Range, err error) {
r.From = *tw.pos
nl := strings.Count(s, "\n")
tw.pos.Line += nl
if nl > 0 {
tw.pos.Col = len(s) - strings.LastIndex(s, "\n")
} else {
tw.pos.Col += len(s)
}
_, err = io.WriteString(tw.w, s)
r.To = *tw.pos
return
}
func (tw *templateWriter) closeStringLiteral() (Range, error) {
var nl = "\n"
if tw.inErrHandler {
nl = ""
}
s := `")` + nl + tw.addErrHandler()
tw.inStatic = false
return tw.write(s)
}
func (tw *templateWriter) addErrHandler() string {
if tw.inErrHandler {
tw.inErrHandler = false
return "; __err != nil { return }\n"
}
return strings.Repeat("\t", tw.indent) + "if __err != nil { return }\n"
}