forked from johnkerl/miller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhile.go
More file actions
169 lines (153 loc) · 4.65 KB
/
Copy pathwhile.go
File metadata and controls
169 lines (153 loc) · 4.65 KB
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
// ================================================================
// This is for while/do-while loops
// ================================================================
package cst
import (
"fmt"
"github.com/johnkerl/miller/internal/pkg/dsl"
"github.com/johnkerl/miller/internal/pkg/lib"
"github.com/johnkerl/miller/internal/pkg/parsing/token"
"github.com/johnkerl/miller/internal/pkg/runtime"
)
// ================================================================
type WhileLoopNode struct {
conditionNode IEvaluable
conditionToken *token.Token
statementBlockNode *StatementBlockNode
}
func NewWhileLoopNode(
conditionNode IEvaluable,
conditionToken *token.Token,
statementBlockNode *StatementBlockNode,
) *WhileLoopNode {
return &WhileLoopNode{
conditionNode: conditionNode,
conditionToken: conditionToken,
statementBlockNode: statementBlockNode,
}
}
func (root *RootNode) BuildWhileLoopNode(astNode *dsl.ASTNode) (*WhileLoopNode, error) {
lib.InternalCodingErrorIf(astNode.Type != dsl.NodeTypeWhileLoop)
lib.InternalCodingErrorIf(len(astNode.Children) != 2)
conditionNode, err := root.BuildEvaluableNode(astNode.Children[0])
if err != nil {
return nil, err
}
conditionToken := astNode.Children[0].Token
statementBlockNode, err := root.BuildStatementBlockNode(astNode.Children[1])
if err != nil {
return nil, err
}
return NewWhileLoopNode(
conditionNode,
conditionToken,
statementBlockNode,
), nil
}
// ----------------------------------------------------------------
func (node *WhileLoopNode) Execute(state *runtime.State) (*BlockExitPayload, error) {
for {
condition := node.conditionNode.Evaluate(state)
boolValue, isBool := condition.GetBoolValue()
if !isBool {
return nil, fmt.Errorf(
"mlr: conditional expression did not evaluate to boolean%s.",
dsl.TokenToLocationInfo(node.conditionToken),
)
}
if boolValue != true {
break
}
blockExitPayload, err := node.statementBlockNode.Execute(state)
if err != nil {
return nil, err
}
if blockExitPayload != nil {
if blockExitPayload.blockExitStatus == BLOCK_EXIT_BREAK {
break
}
// If continue, keep going -- this means the body was exited
// early but we keep going at this level
if blockExitPayload.blockExitStatus == BLOCK_EXIT_RETURN_VOID {
return blockExitPayload, nil
}
if blockExitPayload.blockExitStatus == BLOCK_EXIT_RETURN_VALUE {
return blockExitPayload, nil
}
}
// TODO: handle return statements
// TODO: runtime errors for any other types
}
return nil, nil
}
// ================================================================
type DoWhileLoopNode struct {
statementBlockNode *StatementBlockNode
conditionNode IEvaluable
conditionToken *token.Token
}
func NewDoWhileLoopNode(
statementBlockNode *StatementBlockNode,
conditionNode IEvaluable,
conditionToken *token.Token,
) *DoWhileLoopNode {
return &DoWhileLoopNode{
statementBlockNode: statementBlockNode,
conditionNode: conditionNode,
conditionToken: conditionToken,
}
}
func (root *RootNode) BuildDoWhileLoopNode(astNode *dsl.ASTNode) (*DoWhileLoopNode, error) {
lib.InternalCodingErrorIf(astNode.Type != dsl.NodeTypeDoWhileLoop)
lib.InternalCodingErrorIf(len(astNode.Children) != 2)
statementBlockNode, err := root.BuildStatementBlockNode(astNode.Children[0])
if err != nil {
return nil, err
}
conditionNode, err := root.BuildEvaluableNode(astNode.Children[1])
if err != nil {
return nil, err
}
conditionToken := astNode.Children[1].Token
return NewDoWhileLoopNode(
statementBlockNode,
conditionNode,
conditionToken,
), nil
}
// ----------------------------------------------------------------
func (node *DoWhileLoopNode) Execute(state *runtime.State) (*BlockExitPayload, error) {
for {
blockExitPayload, err := node.statementBlockNode.Execute(state)
if err != nil {
return nil, err
}
if blockExitPayload != nil {
if blockExitPayload.blockExitStatus == BLOCK_EXIT_BREAK {
break
}
// If continue, keep going -- this means the body was exited
// early but we keep going at this level
if blockExitPayload.blockExitStatus == BLOCK_EXIT_RETURN_VOID {
return blockExitPayload, nil
}
if blockExitPayload.blockExitStatus == BLOCK_EXIT_RETURN_VALUE {
return blockExitPayload, nil
}
}
// TODO: handle return statements
// TODO: runtime errors for any other types
condition := node.conditionNode.Evaluate(state)
boolValue, isBool := condition.GetBoolValue()
if !isBool {
return nil, fmt.Errorf(
"mlr: conditional expression did not evaluate to boolean%s.",
dsl.TokenToLocationInfo(node.conditionToken),
)
}
if boolValue == false {
break
}
}
return nil, nil
}