forked from zdebeer99/goexpression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsebranches.go
128 lines (121 loc) · 2.62 KB
/
parsebranches.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
package goexpression
func (this *parser) pumpExpression() {
this.state = branchExpressionValuePart
for this.state != nil {
if this.err != nil {
break
}
this.state = this.state(this)
}
endo := this.commit()
if len(endo) > 0 || !this.scan.IsEOF() {
this.error("Unexpected end of expression. '" + endo + "' not parsed. ")
}
}
/*
parse expressions
[value part][operator part] repeat
*/
//
func branchExpressionValuePart(this *parser) stateFn {
scan := this.scan
scan.SkipSpaces()
if scan.IsEOF() {
return nil
}
if scan.ScanNumber() {
this.add(NewNumberToken(scan.Commit()))
return branchExpressionOperatorPart
}
if scan.ScanWord() {
return branchExpressionAfterWord
}
switch scan.Next() {
case '"', '\'':
scan.Backup()
txt := this.ParseText()
this.add(NewTextToken(txt))
return branchExpressionOperatorPart
case '(':
this.parseOpenBracket()
return branchExpressionValuePart
}
this.error("Unexpected token. ")
return nil
}
func branchExpressionAfterWord(this *parser) stateFn {
scan := this.scan
switch scan.Peek() {
case '(':
this.curr = this.add(NewFuncToken(scan.Commit()))
return branchFunctionArguments
}
this.add(NewIdentityToken(scan.Commit()))
return branchExpressionOperatorPart
}
func branchFunctionArguments(this *parser) stateFn {
scan := this.scan
r := scan.Next()
if r != '(' {
this.error("Expecting '(' before arguments.")
}
ftoken, ok := this.curr.Value.(*FuncToken)
if !ok {
this.error("Expecting function token to add arguments to.")
return nil
}
state := branchExpressionValuePart
currnode := this.curr
for {
this.curr = NewTreeNode(NewGroupToken(""))
for state != nil {
state = state(this)
}
r = scan.Next()
switch r {
case ' ':
scan.Ignore()
continue
case ',':
ftoken.AddArgument(this.curr.Root())
state = branchExpressionValuePart
scan.Ignore()
continue
case ')':
ftoken.AddArgument(this.curr.Root())
this.curr = currnode.parent
scan.Ignore()
return branchExpressionOperatorPart
}
this.curr = currnode
if scan.IsEOF() {
this.error("Arguments missing end bracket. End of file reached.")
return nil
}
this.error("Invalid char in Arguments. %c", r)
return nil
}
}
//
func branchExpressionOperatorPart(this *parser) stateFn {
scan := this.scan
scan.SkipSpaces()
if scan.IsEOF() {
return nil
}
if this.AcceptOperator() {
this.parseOperator()
return branchExpressionValuePart
}
if scan.Accept("=") {
this.parseLRFunc()
this.curr = this.add(NewGroupToken(""))
return branchExpressionValuePart
}
switch scan.Next() {
case ')':
return this.parseCloseBracket()
}
scan.Rollback()
return nil
}