-
Notifications
You must be signed in to change notification settings - Fork 106
/
node.go
695 lines (593 loc) · 15.8 KB
/
node.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
// Copyright 2016 José Santos <henrique_1609@me.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jet
import (
"bytes"
"fmt"
)
var textFormat = "%s" //Changed to "%q" in tests for better error messages.
type Node interface {
Type() NodeType
String() string
Position() Pos
line() int
error(error)
errorf(string, ...interface{})
}
type Expression interface {
Node
}
// Pos represents a byte position in the original input text from which
// this template was parsed.
type Pos int
func (p Pos) Position() Pos {
return p
}
// NodeType identifies the type of a parse tree node.
type NodeType int
type NodeBase struct {
TemplatePath string
Line int
NodeType
Pos
}
func (node *NodeBase) line() int {
return node.Line
}
func (node *NodeBase) error(err error) {
node.errorf("%s", err)
}
func (node *NodeBase) errorf(format string, v ...interface{}) {
panic(fmt.Errorf("Jet Runtime Error (%q:%d): %s", node.TemplatePath, node.Line, fmt.Sprintf(format, v...)))
}
// Type returns itself and provides an easy default implementation
// for embedding in a Node. Embedded in all non-trivial Nodes.
func (t NodeType) Type() NodeType {
return t
}
const (
NodeText NodeType = iota //Plain text.
NodeAction //A non-control action such as a field evaluation.
NodeChain //A sequence of field accesses.
NodeCommand //An element of a pipeline.
NodeField //A field or method name.
NodeIdentifier //An identifier; always a function name.
NodeList //A list of Nodes.
NodePipe //A pipeline of commands.
NodeSet
//NodeWith //A with action.
NodeInclude
NodeBlock
nodeEnd //An end action. Not added to tree.
NodeYield
nodeContent
NodeIf //An if action.
nodeElse //An else action. Not added to tree.
NodeRange //A range action.
NodeTry
nodeCatch
NodeReturn
beginExpressions
NodeString //A string constant.
NodeNil //An untyped nil constant.
NodeNumber //A numerical constant.
NodeBool //A boolean constant.
NodeAdditiveExpr
NodeMultiplicativeExpr
NodeComparativeExpr
NodeNumericComparativeExpr
NodeLogicalExpr
NodeCallExpr
NodeNotExpr
NodeTernaryExpr
NodeIndexExpr
NodeSliceExpr
endExpressions
)
// Nodes.
// ListNode holds a sequence of nodes.
type ListNode struct {
NodeBase
Nodes []Node //The element nodes in lexical order.
}
func (l *ListNode) append(n Node) {
l.Nodes = append(l.Nodes, n)
}
func (l *ListNode) String() string {
b := new(bytes.Buffer)
for _, n := range l.Nodes {
fmt.Fprint(b, n)
}
return b.String()
}
// TextNode holds plain text.
type TextNode struct {
NodeBase
Text []byte
}
func (t *TextNode) String() string {
return fmt.Sprintf(textFormat, t.Text)
}
// PipeNode holds a pipeline with optional declaration
type PipeNode struct {
NodeBase //The line number in the input. Deprecated: Kept for compatibility.
Cmds []*CommandNode //The commands in lexical order.
}
func (p *PipeNode) append(command *CommandNode) {
p.Cmds = append(p.Cmds, command)
}
func (p *PipeNode) String() string {
s := ""
for i, c := range p.Cmds {
if i > 0 {
s += " | "
}
s += c.String()
}
return s
}
// ActionNode holds an action (something bounded by delimiters).
// Control actions have their own nodes; ActionNode represents simple
// ones such as field evaluations and parenthesized pipelines.
type ActionNode struct {
NodeBase
Set *SetNode
Pipe *PipeNode
}
func (a *ActionNode) String() string {
if a.Set != nil {
if a.Pipe == nil {
return fmt.Sprintf("{{%s}}", a.Set)
}
return fmt.Sprintf("{{%s;%s}}", a.Set, a.Pipe)
}
return fmt.Sprintf("{{%s}}", a.Pipe)
}
// CommandNode holds a command (a pipeline inside an evaluating action).
type CommandNode struct {
NodeBase
CallExprNode
}
func (c *CommandNode) append(arg Node) {
c.Args = append(c.Args, arg)
}
func (c *CommandNode) String() string {
if c.Args == nil {
return c.BaseExpr.String()
}
arguments := ""
for i, expr := range c.Args {
if i > 0 {
arguments += ", "
}
arguments += expr.String()
}
return fmt.Sprintf("%s(%s)", c.BaseExpr, arguments)
}
// IdentifierNode holds an identifier.
type IdentifierNode struct {
NodeBase
Ident string //The identifier's name.
}
func (i *IdentifierNode) String() string {
return i.Ident
}
// NilNode holds the special identifier 'nil' representing an untyped nil constant.
type NilNode struct {
NodeBase
}
func (n *NilNode) String() string {
return "nil"
}
// FieldNode holds a field (identifier starting with '.').
// The names may be chained ('.x.y').
// The period is dropped from each ident.
type FieldNode struct {
NodeBase
Ident []string //The identifiers in lexical order.
}
func (f *FieldNode) String() string {
s := ""
for _, id := range f.Ident {
s += "." + id
}
return s
}
// ChainNode holds a term followed by a chain of field accesses (identifier starting with '.').
// The names may be chained ('.x.y').
// The periods are dropped from each ident.
type ChainNode struct {
NodeBase
Node Node
Field []string //The identifiers in lexical order.
}
// Add adds the named field (which should start with a period) to the end of the chain.
func (c *ChainNode) Add(field string) {
if len(field) == 0 || field[0] != '.' {
panic("no dot in field")
}
field = field[1:] //Remove leading dot.
if field == "" {
panic("empty field")
}
c.Field = append(c.Field, field)
}
func (c *ChainNode) String() string {
s := c.Node.String()
if _, ok := c.Node.(*PipeNode); ok {
s = "(" + s + ")"
}
for _, field := range c.Field {
s += "." + field
}
return s
}
// BoolNode holds a boolean constant.
type BoolNode struct {
NodeBase
True bool //The value of the boolean constant.
}
func (b *BoolNode) String() string {
if b.True {
return "true"
}
return "false"
}
// NumberNode holds a number: signed or unsigned integer, float, or complex.
// The value is parsed and stored under all the types that can represent the value.
// This simulates in a small amount of code the behavior of Go's ideal constants.
type NumberNode struct {
NodeBase
IsInt bool //Number has an integral value.
IsUint bool //Number has an unsigned integral value.
IsFloat bool //Number has a floating-point value.
IsComplex bool //Number is complex.
Int64 int64 //The signed integer value.
Uint64 uint64 //The unsigned integer value.
Float64 float64 //The floating-point value.
Complex128 complex128 //The complex value.
Text string //The original textual representation from the input.
}
// simplifyComplex pulls out any other types that are represented by the complex number.
// These all require that the imaginary part be zero.
func (n *NumberNode) simplifyComplex() {
n.IsFloat = imag(n.Complex128) == 0
if n.IsFloat {
n.Float64 = real(n.Complex128)
n.IsInt = float64(int64(n.Float64)) == n.Float64
if n.IsInt {
n.Int64 = int64(n.Float64)
}
n.IsUint = float64(uint64(n.Float64)) == n.Float64
if n.IsUint {
n.Uint64 = uint64(n.Float64)
}
}
}
func (n *NumberNode) String() string {
return n.Text
}
// StringNode holds a string constant. The value has been "unquoted".
type StringNode struct {
NodeBase
Quoted string //The original text of the string, with quotes.
Text string //The string, after quote processing.
}
func (s *StringNode) String() string {
return s.Quoted
}
// endNode represents an {{end}} action.
// It does not appear in the final parse tree.
type endNode struct {
NodeBase
}
func (e *endNode) String() string {
return "{{end}}"
}
// endNode represents an {{end}} action.
// It does not appear in the final parse tree.
type contentNode struct {
NodeBase
}
func (e *contentNode) String() string {
return "{{content}}"
}
// elseNode represents an {{else}} action. Does not appear in the final tree.
type elseNode struct {
NodeBase //The line number in the input. Deprecated: Kept for compatibility.
}
func (e *elseNode) String() string {
return "{{else}}"
}
// SetNode represents a set action, ident( ',' ident)* '=' expression ( ',' expression )*
type SetNode struct {
NodeBase
Let bool
IndexExprGetLookup bool
Left []Expression
Right []Expression
}
func (set *SetNode) String() string {
var s = ""
for i, v := range set.Left {
if i > 0 {
s += ", "
}
s += v.String()
}
if set.Let {
s += ":="
} else {
s += "="
}
for i, v := range set.Right {
if i > 0 {
s += ", "
}
s += v.String()
}
return s
}
// BranchNode is the common representation of if, range, and with.
type BranchNode struct {
NodeBase
Set *SetNode
Expression Expression
List *ListNode
ElseList *ListNode
}
func (b *BranchNode) String() string {
if b.NodeType == NodeRange {
s := ""
if b.Set != nil {
s = b.Set.String()
} else {
s = b.Expression.String()
}
if b.ElseList != nil {
return fmt.Sprintf("{{range %s}}%s{{else}}%s{{end}}", s, b.List, b.ElseList)
}
return fmt.Sprintf("{{range %s}}%s{{end}}", s, b.List)
} else {
s := ""
if b.Set != nil {
s = b.Set.String() + ";"
}
if b.ElseList != nil {
return fmt.Sprintf("{{if %s%s}}%s{{else}}%s{{end}}", s, b.Expression, b.List, b.ElseList)
}
return fmt.Sprintf("{{if %s%s}}%s{{end}}", s, b.Expression, b.List)
}
}
// IfNode represents an {{if}} action and its commands.
type IfNode struct {
BranchNode
}
// RangeNode represents a {{range}} action and its commands.
type RangeNode struct {
BranchNode
}
type BlockParameter struct {
Identifier string
Expression Expression
}
type BlockParameterList struct {
NodeBase
List []BlockParameter
}
func (bplist *BlockParameterList) Param(name string) (Expression, int) {
for i := 0; i < len(bplist.List); i++ {
param := &bplist.List[i]
if param.Identifier == name {
return param.Expression, i
}
}
return nil, -1
}
func (bplist *BlockParameterList) String() (str string) {
buff := bytes.NewBuffer(nil)
for _, bp := range bplist.List {
if bp.Identifier == "" {
fmt.Fprintf(buff, "%s,", bp.Expression)
} else {
if bp.Expression == nil {
fmt.Fprintf(buff, "%s,", bp.Identifier)
} else {
fmt.Fprintf(buff, "%s=%s,", bp.Identifier, bp.Expression)
}
}
}
if buff.Len() > 0 {
str = buff.String()[0 : buff.Len()-1]
}
return
}
// BlockNode represents a {{block }} action.
type BlockNode struct {
NodeBase //The line number in the input. Deprecated: Kept for compatibility.
Name string //The name of the template (unquoted).
Parameters *BlockParameterList
Expression Expression //The command to evaluate as dot for the template.
List *ListNode
Content *ListNode
}
func (t *BlockNode) String() string {
if t.Content != nil {
if t.Expression == nil {
return fmt.Sprintf("{{block %s(%s)}}%s{{content}}%s{{end}}", t.Name, t.Parameters, t.List, t.Content)
}
return fmt.Sprintf("{{block %s(%s) %s}}%s{{content}}%s{{end}}", t.Name, t.Parameters, t.Expression, t.List, t.Content)
}
if t.Expression == nil {
return fmt.Sprintf("{{block %s(%s)}}%s{{end}}", t.Name, t.Parameters, t.List)
}
return fmt.Sprintf("{{block %s(%s) %s}}%s{{end}}", t.Name, t.Parameters, t.Expression, t.List)
}
// YieldNode represents a {{yield}} action
type YieldNode struct {
NodeBase //The line number in the input. Deprecated: Kept for compatibility.
Name string //The name of the template (unquoted).
Parameters *BlockParameterList
Expression Expression //The command to evaluate as dot for the template.
Content *ListNode
IsContent bool
}
func (t *YieldNode) String() string {
if t.IsContent {
if t.Expression == nil {
return "{{yield content}}"
}
return fmt.Sprintf("{{yield content %s}}", t.Expression)
}
if t.Content != nil {
if t.Expression == nil {
return fmt.Sprintf("{{yield %s(%s) content}}%s{{end}}", t.Name, t.Parameters, t.Content)
}
return fmt.Sprintf("{{yield %s(%s) %s content}}%s{{end}}", t.Name, t.Parameters, t.Expression, t.Content)
}
if t.Expression == nil {
return fmt.Sprintf("{{yield %s(%s)}}", t.Name, t.Parameters)
}
return fmt.Sprintf("{{yield %s(%s) %s}}", t.Name, t.Parameters, t.Expression)
}
// IncludeNode represents a {{include }} action.
type IncludeNode struct {
NodeBase
Name Expression
Context Expression
}
func (t *IncludeNode) String() string {
if t.Context == nil {
return fmt.Sprintf("{{include %s}}", t.Name)
}
return fmt.Sprintf("{{include %s %s}}", t.Name, t.Context)
}
type binaryExprNode struct {
NodeBase
Operator item
Left, Right Expression
}
func (node *binaryExprNode) String() string {
return fmt.Sprintf("%s %s %s", node.Left, node.Operator.val, node.Right)
}
// AdditiveExprNode represents an add or subtract expression
// ex: expression ( '+' | '-' ) expression
type AdditiveExprNode struct {
binaryExprNode
}
// MultiplicativeExprNode represents a multiplication, division, or module expression
// ex: expression ( '*' | '/' | '%' ) expression
type MultiplicativeExprNode struct {
binaryExprNode
}
// LogicalExprNode represents a boolean expression, 'and' or 'or'
// ex: expression ( '&&' | '||' ) expression
type LogicalExprNode struct {
binaryExprNode
}
// ComparativeExprNode represents a comparative expression
// ex: expression ( '==' | '!=' ) expression
type ComparativeExprNode struct {
binaryExprNode
}
// NumericComparativeExprNode represents a numeric comparative expression
// ex: expression ( '<' | '>' | '<=' | '>=' ) expression
type NumericComparativeExprNode struct {
binaryExprNode
}
// NotExprNode represents a negate expression
// ex: '!' expression
type NotExprNode struct {
NodeBase
Expr Expression
}
func (s *NotExprNode) String() string {
return fmt.Sprintf("!%s", s.Expr)
}
// CallExprNode represents a call expression
// ex: expression '(' (expression (',' expression)* )? ')'
type CallExprNode struct {
NodeBase
BaseExpr Expression
Args []Expression
}
func (s *CallExprNode) String() string {
arguments := ""
for i, expr := range s.Args {
if i > 0 {
arguments += ", "
}
arguments += expr.String()
}
return fmt.Sprintf("%s(%s)", s.BaseExpr, arguments)
}
// TernaryExprNod represents a ternary expression,
// ex: expression '?' expression ':' expression
type TernaryExprNode struct {
NodeBase
Boolean, Left, Right Expression
}
func (s *TernaryExprNode) String() string {
return fmt.Sprintf("%s?%s:%s", s.Boolean, s.Left, s.Right)
}
type IndexExprNode struct {
NodeBase
Base Expression
Index Expression
}
func (s *IndexExprNode) String() string {
return fmt.Sprintf("%s[%s]", s.Base, s.Index)
}
type SliceExprNode struct {
NodeBase
Base Expression
Index Expression
EndIndex Expression
}
func (s *SliceExprNode) String() string {
var index_string, len_string string
if s.Index != nil {
index_string = s.Index.String()
}
if s.EndIndex != nil {
len_string = s.EndIndex.String()
}
return fmt.Sprintf("%s[%s:%s]", s.Base, index_string, len_string)
}
type ReturnNode struct {
NodeBase
Value Expression
}
func (n *ReturnNode) String() string {
return fmt.Sprintf("return %v", n.Value)
}
type TryNode struct {
NodeBase
List *ListNode
Catch *catchNode
}
func (n *TryNode) String() string {
if n.Catch != nil {
return fmt.Sprintf("{{try}}%s%s", n.List, n.Catch)
}
return fmt.Sprintf("{{try}}%s{{end}}", n.List)
}
type catchNode struct {
NodeBase
Err *IdentifierNode
List *ListNode
}
func (n *catchNode) String() string {
return fmt.Sprintf("{{catch %s}}%s{{end}}", n.Err, n.List)
}