-
-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathIfStatement.cs
More file actions
174 lines (152 loc) · 6.37 KB
/
IfStatement.cs
File metadata and controls
174 lines (152 loc) · 6.37 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
170
171
172
173
174
using System.Text.Encodings.Web;
using Fluid.Values;
namespace Fluid.Ast
{
public sealed class IfStatement : TagStatement
{
public IfStatement(
Expression condition,
IReadOnlyList<Statement> statements,
ElseStatement elseStatement = null,
IReadOnlyList<ElseIfStatement> elseIfStatements = null
) : base(statements)
{
Condition = condition;
Else = elseStatement;
ElseIfs = elseIfStatements ?? [];
}
public Expression Condition { get; }
public ElseStatement Else { get; }
public IReadOnlyList<ElseIfStatement> ElseIfs { get; }
public override ValueTask<Completion> WriteToAsync(TextWriter writer, TextEncoder encoder, TemplateContext context)
{
var conditionTask = Condition.EvaluateAsync(context);
if (conditionTask.IsCompletedSuccessfully)
{
var result = conditionTask.Result.ToBooleanValue();
if (result)
{
for (var i = 0; i < Statements.Count; i++)
{
var statement = Statements[i];
var task = statement.WriteToAsync(writer, encoder, context);
if (!task.IsCompletedSuccessfully)
{
return Awaited(conditionTask, task, writer, encoder, context, i + 1);
}
var completion = task.Result;
if (completion != Completion.Normal)
{
// Stop processing the block statements
// We return the completion to flow it to the outer loop
return new ValueTask<Completion>(completion);
}
}
return new ValueTask<Completion>(Completion.Normal);
}
else
{
for (var i = 0; i < ElseIfs.Count; i++)
{
var elseIf = ElseIfs[i];
var elseIfConditionTask = elseIf.Condition.EvaluateAsync(context);
if (!elseIfConditionTask.IsCompletedSuccessfully)
{
return AwaitedElseBranch(elseIf, elseIfConditionTask, elseIfTask: null, writer, encoder, context, i + 1);
}
if (elseIfConditionTask.Result.ToBooleanValue())
{
var writeTask = elseIf.WriteToAsync(writer, encoder, context);
if (!writeTask.IsCompletedSuccessfully)
{
return AwaitedElseBranch(elseIf, elseIfConditionTask, writeTask, writer, encoder, context, i + 1);
}
return new ValueTask<Completion>(writeTask.Result);
}
}
if (Else != null)
{
return Else.WriteToAsync(writer, encoder, context);
}
}
return new ValueTask<Completion>(Completion.Normal);
}
else
{
return Awaited(
conditionTask,
incompleteStatementTask: new ValueTask<Completion>(Completion.Normal), // normal won't change processing
writer,
encoder,
context,
statementStartIndex: 0);
}
}
private async ValueTask<Completion> Awaited(
ValueTask<FluidValue> conditionTask,
ValueTask<Completion> incompleteStatementTask,
TextWriter writer,
TextEncoder encoder,
TemplateContext context,
int statementStartIndex)
{
var result = (await conditionTask).ToBooleanValue();
if (result)
{
var completion = await incompleteStatementTask;
if (completion != Completion.Normal)
{
// Stop processing the block statements
// We return the completion to flow it to the outer loop
return completion;
}
for (var i = statementStartIndex; i < Statements.Count; i++)
{
var statement = Statements[i];
completion = await statement.WriteToAsync(writer, encoder, context);
if (completion != Completion.Normal)
{
// Stop processing the block statements
// We return the completion to flow it to the outer loop
return completion;
}
}
return Completion.Normal;
}
else
{
await AwaitedElseBranch(null, new ValueTask<FluidValue>(BooleanValue.False), new ValueTask<Completion>(), writer, encoder, context, startIndex: 0);
}
return Completion.Normal;
}
private async ValueTask<Completion> AwaitedElseBranch(
ElseIfStatement elseIf,
ValueTask<FluidValue> conditionTask,
ValueTask<Completion>? elseIfTask,
TextWriter writer,
TextEncoder encoder,
TemplateContext context,
int startIndex)
{
var condition = (await conditionTask).ToBooleanValue();
if (condition)
{
return await (elseIfTask ?? elseIf.WriteToAsync(writer, encoder, context));
}
for (var i = startIndex; i < ElseIfs.Count; i++)
{
elseIf = ElseIfs[i];
if ((await elseIf.Condition.EvaluateAsync(context)).ToBooleanValue())
{
return await elseIf.WriteToAsync(writer, encoder, context);
}
}
if (Else != null)
{
return await Else.WriteToAsync(writer, encoder, context);
}
return Completion.Normal;
}
protected internal override Statement Accept(AstVisitor visitor) => visitor.VisitIfStatement(this);
}
}