-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathResultIterators.cs
More file actions
400 lines (337 loc) · 18.7 KB
/
ResultIterators.cs
File metadata and controls
400 lines (337 loc) · 18.7 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
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
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
namespace UnityEditor.Search
{
delegate void OnArgument(SearchExpressionContext c, SearchExpression e);
delegate SearchItem OnArgumentResult(SearchExpressionContext c, SearchItem i);
delegate void OnAggregateStart<in TAggregator>(SearchExpressionContext c, TAggregator aggregator);
delegate void OnAggregateResult<in TAggregator>(SearchExpressionContext c, SearchItem i, TAggregator aggregator);
delegate TAggregator OnAggregatePrimitiveStart<TAggregator>(SearchExpressionContext c, TAggregator aggregator);
delegate TAggregator OnAggregatePrimitiveResult<TAggregator>(SearchExpressionContext c, SearchItem i, TAggregator aggregator);
delegate IEnumerable<SearchItem> OnAggregateToSearchItems<in TAggregator>(SearchExpressionContext c, TAggregator aggregator);
delegate SearchItem OnAggregateToSearchItem<in TAggregator>(SearchExpressionContext c, TAggregator aggregator);
class ArgumentEnumerable : IEnumerable<SearchExpression>
{
int m_ArgumentSkipCount = 0;
OnArgument m_OnArgument;
public SearchExpressionContext context;
ArgumentEnumerable(SearchExpressionContext c)
{
context = c;
}
public static ArgumentEnumerable ForEachArgument(SearchExpressionContext c, OnArgument onArgumentCallback, int argumentSkipCount = 0)
{
return new ArgumentEnumerable(c) { m_OnArgument = onArgumentCallback, m_ArgumentSkipCount = argumentSkipCount };
}
public static ArgumentEnumerable ForEachArgument(SearchExpressionContext c, int argumentSkipCount = 0)
{
return new ArgumentEnumerable(c) { m_OnArgument = DefaultArgumentIteration, m_ArgumentSkipCount = argumentSkipCount };
}
static void DefaultArgumentIteration(SearchExpressionContext c, SearchExpression e)
{
}
public ResultEnumeration ForEachResult(OnArgumentResult onArgumentResult, bool skipNull = true)
{
return new ResultEnumeration(this, onArgumentResult, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateResult<TAggregator> onAggregateResult, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateResult, aggregator, onAggregateToSearchItems, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateResult<TAggregator> onAggregateResult, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateResult<TAggregator> onAggregateResult, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateResult, aggregator, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateStart, onAggregateResult, aggregator, onAggregateToSearchItems, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateStart, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull);
}
public ResultAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, bool skipNull = true)
where TAggregator : class
{
return new ResultAggregation<TAggregator>(this, onAggregateStart, onAggregateResult, aggregator, skipNull);
}
public ResultPrimitiveAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
where TAggregator : struct
{
return new ResultPrimitiveAggregation<TAggregator>(this, onAggregateResult, aggregator, onAggregateToSearchItems, skipNull);
}
public ResultPrimitiveAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
where TAggregator : struct
{
return new ResultPrimitiveAggregation<TAggregator>(this, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull);
}
public ResultPrimitiveAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregatePrimitiveStart<TAggregator> onAggregateStart, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
where TAggregator : struct
{
return new ResultPrimitiveAggregation<TAggregator>(this, onAggregateStart, onAggregateResult, aggregator, onAggregateToSearchItems, skipNull);
}
public ResultPrimitiveAggregation<TAggregator> AggregateResults<TAggregator>(TAggregator aggregator, OnAggregatePrimitiveStart<TAggregator> onAggregateStart, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
where TAggregator : struct
{
return new ResultPrimitiveAggregation<TAggregator>(this, onAggregateStart, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull);
}
public IEnumerator<SearchExpression> GetEnumerator()
{
foreach (var argument in context.args.Skip(m_ArgumentSkipCount))
{
m_OnArgument(context.runtime.current, argument);
if (context.IsBreaking())
{
context.ResetIterationControl();
yield break;
}
if (context.IsContinuing())
{
context.ResetIterationControl();
continue;
}
yield return argument;
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
class BaseResultEnumerable : IEnumerable<SearchItem>
{
protected ArgumentEnumerable m_ArgumentEnumerable;
protected bool m_SkipNullResult;
protected SearchExpressionContext context => m_ArgumentEnumerable.context;
public BaseResultEnumerable(ArgumentEnumerable argumentEnumerable, bool skipNull = true)
{
m_ArgumentEnumerable = argumentEnumerable;
m_SkipNullResult = skipNull;
}
public virtual IEnumerator<SearchItem> GetEnumerator()
{
throw new NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
class ResultEnumeration : BaseResultEnumerable
{
OnArgumentResult m_OnArgumentResult;
public ResultEnumeration(ArgumentEnumerable argumentEnumerable, OnArgumentResult onArgumentResult, bool skipNull = true)
: base(argumentEnumerable, skipNull)
{
m_OnArgumentResult = onArgumentResult;
}
public override IEnumerator<SearchItem> GetEnumerator()
{
foreach (var argument in m_ArgumentEnumerable)
{
var results = argument.Execute(context);
if (results == null)
yield break;
foreach (var searchItem in results)
{
if (m_SkipNullResult && searchItem == null)
{
yield return null;
continue;
}
var resultingItem = m_OnArgumentResult(context.runtime.current, searchItem);
if (context.IsBreaking())
{
context.ResetIterationControl();
yield return null;
break;
}
if (context.IsContinuing())
{
context.ResetIterationControl();
yield return null;
continue;
}
yield return resultingItem;
}
}
}
}
abstract class BaseResultAggregation<TAggregator> : BaseResultEnumerable
{
OnAggregateToSearchItems<TAggregator> m_OnAggregateToSearchItems;
OnAggregateToSearchItem<TAggregator> m_OnAggregateToSearchItem;
protected TAggregator m_Aggregator;
protected BaseResultAggregation(ArgumentEnumerable argumentEnumerable, TAggregator aggregator, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
: base(argumentEnumerable, skipNull)
{
m_Aggregator = aggregator;
m_OnAggregateToSearchItems = onAggregateToSearchItems;
m_OnAggregateToSearchItem = null;
}
protected BaseResultAggregation(ArgumentEnumerable argumentEnumerable, TAggregator aggregator, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
: base(argumentEnumerable, skipNull)
{
m_Aggregator = aggregator;
m_OnAggregateToSearchItems = null;
m_OnAggregateToSearchItem = onAggregateToSearchItem;
}
protected BaseResultAggregation(ArgumentEnumerable argumentEnumerable, TAggregator aggregator, bool skipNull = true)
: base(argumentEnumerable, skipNull)
{
m_Aggregator = aggregator;
m_OnAggregateToSearchItems = null;
m_OnAggregateToSearchItem = null;
}
protected abstract void OnAggregateStart(SearchExpressionContext currentContext);
protected abstract void OnAggregateResult(SearchExpressionContext currentContext, SearchItem currentItem);
public override IEnumerator<SearchItem> GetEnumerator()
{
foreach (var argument in m_ArgumentEnumerable)
{
var results = argument.Execute(context);
if (results == null)
yield break;
bool started = false;
SearchExpressionContext argContext = default;
foreach (var searchItem in results)
{
if (m_SkipNullResult && searchItem == null)
{
yield return null;
continue;
}
if (!started)
{
// We need to start yielding result in order for the evaluation context to be valid.
if (!context.valid)
context.ThrowError("Invalid argument context");
argContext = context.runtime.current;
OnAggregateStart(argContext);
started = true;
}
OnAggregateResult(argContext, searchItem);
yield return null;
}
if (m_OnAggregateToSearchItem != null)
{
yield return m_OnAggregateToSearchItem(argContext, m_Aggregator);
continue;
}
if (m_OnAggregateToSearchItems != null)
{
foreach (var searchItem in m_OnAggregateToSearchItems(argContext, m_Aggregator))
{
yield return searchItem;
}
continue;
}
if (m_Aggregator is IEnumerable<SearchItem> searchItemAggregator)
{
foreach (var searchItem in searchItemAggregator)
{
yield return searchItem;
}
}
}
}
}
class ResultAggregation<TAggregator> : BaseResultAggregation<TAggregator>
where TAggregator : class
{
OnAggregateResult<TAggregator> m_OnAggregateResult;
OnAggregateStart<TAggregator> m_OnAggregateStart;
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
: base(argumentEnumerable, aggregator, onAggregateToSearchItems, skipNull)
{
m_OnAggregateResult = onAggregateResult;
}
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
: base(argumentEnumerable, aggregator, onAggregateToSearchItem, skipNull)
{
m_OnAggregateResult = onAggregateResult;
}
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, bool skipNull = true)
: base(argumentEnumerable, aggregator, skipNull)
{
m_OnAggregateResult = onAggregateResult;
}
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
: this(argumentEnumerable, onAggregateResult, aggregator, onAggregateToSearchItems)
{
m_OnAggregateStart = onAggregateStart;
}
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
: this(argumentEnumerable, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull)
{
m_OnAggregateStart = onAggregateStart;
}
public ResultAggregation(ArgumentEnumerable argumentEnumerable, OnAggregateStart<TAggregator> onAggregateStart, OnAggregateResult<TAggregator> onAggregateResult, TAggregator aggregator, bool skipNull = true)
: this(argumentEnumerable, onAggregateResult, aggregator, skipNull)
{
m_OnAggregateStart = onAggregateStart;
}
protected override void OnAggregateStart(SearchExpressionContext currentContext)
{
m_OnAggregateStart?.Invoke(currentContext, m_Aggregator);
}
protected override void OnAggregateResult(SearchExpressionContext currentContext, SearchItem currentItem)
{
m_OnAggregateResult(currentContext, currentItem, m_Aggregator);
}
}
class ResultPrimitiveAggregation<TAggregator> : BaseResultAggregation<TAggregator>
where TAggregator : struct
{
OnAggregatePrimitiveResult<TAggregator> m_OnAggregateResult;
OnAggregatePrimitiveStart<TAggregator> m_OnAggregateStart;
TAggregator m_StartValue;
public ResultPrimitiveAggregation(ArgumentEnumerable argumentEnumerable, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
: base(argumentEnumerable, aggregator, onAggregateToSearchItems, skipNull)
{
m_OnAggregateResult = onAggregateResult;
m_StartValue = aggregator;
}
public ResultPrimitiveAggregation(ArgumentEnumerable argumentEnumerable, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
: base(argumentEnumerable, aggregator, onAggregateToSearchItem, skipNull)
{
m_OnAggregateResult = onAggregateResult;
m_StartValue = aggregator;
}
public ResultPrimitiveAggregation(ArgumentEnumerable argumentEnumerable, OnAggregatePrimitiveStart<TAggregator> onAggregateStart, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItems<TAggregator> onAggregateToSearchItems, bool skipNull = true)
: this(argumentEnumerable, onAggregateResult, aggregator, onAggregateToSearchItems)
{
m_OnAggregateStart = onAggregateStart;
}
public ResultPrimitiveAggregation(ArgumentEnumerable argumentEnumerable, OnAggregatePrimitiveStart<TAggregator> onAggregateStart, OnAggregatePrimitiveResult<TAggregator> onAggregateResult, TAggregator aggregator, OnAggregateToSearchItem<TAggregator> onAggregateToSearchItem, bool skipNull = true)
: this(argumentEnumerable, onAggregateResult, aggregator, onAggregateToSearchItem, skipNull)
{
m_OnAggregateStart = onAggregateStart;
}
protected override void OnAggregateStart(SearchExpressionContext currentContext)
{
if (m_OnAggregateStart != null)
m_Aggregator = m_OnAggregateStart(currentContext, m_Aggregator);
else
m_Aggregator = m_StartValue;
}
protected override void OnAggregateResult(SearchExpressionContext currentContext, SearchItem currentItem)
{
m_Aggregator = m_OnAggregateResult(currentContext, currentItem, m_Aggregator);
}
}
}