-
Notifications
You must be signed in to change notification settings - Fork 137
/
check_conditions.go
199 lines (157 loc) Β· 5.5 KB
/
check_conditions.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
/*
* Cadence - The resource-oriented smart contract programming language
*
* Copyright Flow Foundation
*
* 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 sema
import (
"github.com/onflow/cadence/ast"
"github.com/onflow/cadence/errors"
)
func (checker *Checker) visitConditions(conditions []ast.Condition) {
// all condition blocks are `view`
checker.InNewPurityScope(true, func() {
// flag the checker to be inside a condition.
// this flag is used to detect illegal expressions,
// see e.g. VisitFunctionExpression
wasInCondition := checker.inCondition
checker.inCondition = true
defer func() {
checker.inCondition = wasInCondition
}()
// check all conditions: check the expression
// and ensure the result is boolean
for _, condition := range conditions {
checker.checkCondition(condition)
}
})
}
func (checker *Checker) checkCondition(condition ast.Condition) {
switch condition := condition.(type) {
case *ast.TestCondition:
// check test expression is boolean
checker.VisitExpression(condition.Test, condition, BoolType)
// check message expression results in a string
if condition.Message != nil {
checker.VisitExpression(condition.Message, condition, StringType)
}
case *ast.EmitCondition:
checker.VisitEmitStatement((*ast.EmitStatement)(condition))
default:
panic(errors.NewUnreachableError())
}
}
func (checker *Checker) rewritePostConditions(postConditions []ast.Condition) PostConditionsRewrite {
var beforeStatements []ast.Statement
var rewrittenPostConditions []ast.Condition
var allExtractedExpressions []ast.ExtractedExpression
count := len(postConditions)
if count > 0 {
rewrittenPostConditions = make([]ast.Condition, count)
for i, postCondition := range postConditions {
newPostCondition, extractedExpressions := checker.rewritePostCondition(postCondition)
rewrittenPostConditions[i] = newPostCondition
allExtractedExpressions = append(
allExtractedExpressions,
extractedExpressions...,
)
}
}
for _, extractedExpression := range allExtractedExpressions {
expression := extractedExpression.Expression
startPos := expression.StartPosition()
// NOTE: no need to check the before statements or update elaboration here:
// The before statements are visited/checked later
variableDeclaration := ast.NewEmptyVariableDeclaration(checker.memoryGauge)
variableDeclaration.StartPos = startPos
variableDeclaration.Identifier = extractedExpression.Identifier
variableDeclaration.Transfer = ast.NewTransfer(
checker.memoryGauge,
ast.TransferOperationCopy,
startPos,
)
variableDeclaration.Value = expression
beforeStatements = append(
beforeStatements,
variableDeclaration,
)
}
return PostConditionsRewrite{
BeforeStatements: beforeStatements,
RewrittenPostConditions: rewrittenPostConditions,
}
}
func (checker *Checker) rewritePostCondition(
postCondition ast.Condition,
) (
newPostCondition ast.Condition,
extractedExpressions []ast.ExtractedExpression,
) {
switch postCondition := postCondition.(type) {
case *ast.TestCondition:
return checker.rewriteTestPostCondition(postCondition)
case *ast.EmitCondition:
return checker.rewriteEmitPostCondition(postCondition)
default:
panic(errors.NewUnreachableError())
}
}
func (checker *Checker) rewriteTestPostCondition(
postTestCondition *ast.TestCondition,
) (
newPostCondition ast.Condition,
extractedExpressions []ast.ExtractedExpression,
) {
// copy condition and set expression to rewritten one
newPostTestCondition := *postTestCondition
beforeExtractor := checker.beforeExtractor()
testExtraction := beforeExtractor.ExtractBefore(postTestCondition.Test)
extractedExpressions = testExtraction.ExtractedExpressions
newPostTestCondition.Test = testExtraction.RewrittenExpression
if postTestCondition.Message != nil {
messageExtraction := beforeExtractor.ExtractBefore(postTestCondition.Message)
newPostTestCondition.Message = messageExtraction.RewrittenExpression
extractedExpressions = append(
extractedExpressions,
messageExtraction.ExtractedExpressions...,
)
}
newPostCondition = &newPostTestCondition
return
}
func (checker *Checker) rewriteEmitPostCondition(
postEmitCondition *ast.EmitCondition,
) (
newPostCondition ast.Condition,
extractedExpressions []ast.ExtractedExpression,
) {
// copy condition and set argument expressions to rewritten ones
newPostEmitCondition := *postEmitCondition
beforeExtractor := checker.beforeExtractor()
invocationExtraction := beforeExtractor.ExtractBefore(postEmitCondition.InvocationExpression)
extractedExpressions = invocationExtraction.ExtractedExpressions
if rewrittenInvocationExpression, ok := invocationExtraction.RewrittenExpression.(*ast.InvocationExpression); ok {
newPostEmitCondition.InvocationExpression = rewrittenInvocationExpression
} else {
checker.report(&InvalidEmitConditionError{
Range: ast.NewRangeFromPositioned(
checker.memoryGauge,
postEmitCondition.InvocationExpression,
),
})
}
newPostCondition = &newPostEmitCondition
return
}