forked from JetBrains/kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mapping.kt
459 lines (409 loc) · 15.5 KB
/
Mapping.kt
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/*
* Copyright 2010-2017 JetBrains s.r.o.
*
* 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 templates
import templates.Family.*
import templates.SequenceClass.*
object Mapping : TemplateGroupBase() {
init {
val terminalOperationPattern = Regex("^\\w+To")
defaultBuilder {
if (sequenceClassification.isEmpty()) {
if (terminalOperationPattern in signature)
sequenceClassification(terminal)
else
sequenceClassification(intermediate, stateless)
}
}
}
val f_withIndex = fn("withIndex()") {
includeDefault()
include(CharSequences)
} builder {
doc {
"Returns a ${if (f == Sequences) f.mapResult else "lazy [Iterable]"} of [IndexedValue] for each ${f.element} of the original ${f.collection}."
}
returns("Iterable<IndexedValue<T>>")
body {
"""
return IndexingIterable { iterator() }
"""
}
specialFor(Sequences) { returns("Sequence<IndexedValue<T>>") }
body(Sequences) { """return IndexingSequence(this)""" }
}
val f_mapIndexed = fn("mapIndexed(transform: (index: Int, T) -> R)") {
includeDefault()
include(CharSequences)
} builder {
inline()
doc {
"""
Returns a ${f.mapResult} containing the results of applying the given [transform] function
to each ${f.element} and its index in the original ${f.collection}.
@param [transform] function that takes the index of ${f.element.prefixWithArticle()} and the ${f.element} itself
and returns the result of the transform applied to the ${f.element}.
"""
}
typeParam("R")
returns("List<R>")
body(Iterables) {
"return mapIndexedTo(ArrayList<R>(collectionSizeOrDefault(10)), transform)"
}
body(ArraysOfObjects, ArraysOfPrimitives) {
"return mapIndexedTo(ArrayList<R>(size), transform)"
}
body(CharSequences) {
"return mapIndexedTo(ArrayList<R>(length), transform)"
}
specialFor(Sequences) {
inline(Inline.No)
returns("Sequence<R>")
}
body(Sequences) {
"return TransformingIndexedSequence(this, transform)"
}
}
val f_map = fn("map(transform: (T) -> R)") {
includeDefault()
include(Maps, CharSequences)
} builder {
inline()
doc {
"""
Returns a ${f.mapResult} containing the results of applying the given [transform] function
to each ${f.element} in the original ${f.collection}.
"""
}
typeParam("R")
returns("List<R>")
body(Iterables) {
"return mapTo(ArrayList<R>(collectionSizeOrDefault(10)), transform)"
}
body(ArraysOfObjects, ArraysOfPrimitives, Maps) {
"return mapTo(ArrayList<R>(size), transform)"
}
body(CharSequences) {
"return mapTo(ArrayList<R>(length), transform)"
}
specialFor(Sequences) {
inline(Inline.No)
returns("Sequence<R>")
}
body(Sequences) {
"return TransformingSequence(this, transform)"
}
}
val f_mapNotNull = fn("mapNotNull(transform: (T) -> R?)") {
include(Iterables, ArraysOfObjects, Sequences, Maps, CharSequences)
} builder {
inline()
typeParam("R : Any")
returns("List<R>")
doc {
"""
Returns a ${f.mapResult} containing only the non-null results of applying the given [transform] function
to each ${f.element} in the original ${f.collection}.
"""
}
body {
"return mapNotNullTo(ArrayList<R>(), transform)"
}
specialFor(Sequences) {
inline(Inline.No)
returns("Sequence<R>")
}
body(Sequences) {
"return TransformingSequence(this, transform).filterNotNull()"
}
}
val f_mapIndexedNotNull = fn("mapIndexedNotNull(transform: (index: Int, T) -> R?)") {
include(Iterables, ArraysOfObjects, Sequences, CharSequences)
} builder {
inline()
typeParam("R : Any")
returns("List<R>")
doc {
"""
Returns a ${f.mapResult} containing only the non-null results of applying the given [transform] function
to each ${f.element} and its index in the original ${f.collection}.
@param [transform] function that takes the index of ${f.element.prefixWithArticle()} and the ${f.element} itself
and returns the result of the transform applied to the ${f.element}.
"""
}
body {
"return mapIndexedNotNullTo(ArrayList<R>(), transform)"
}
specialFor(Sequences) {
inline(Inline.No)
returns("Sequence<R>")
}
body(Sequences) {
"return TransformingIndexedSequence(this, transform).filterNotNull()"
}
}
val f_mapTo = fn("mapTo(destination: C, transform: (T) -> R)") {
includeDefault()
include(Maps, CharSequences)
} builder {
inline()
doc {
"""
Applies the given [transform] function to each ${f.element} of the original ${f.collection}
and appends the results to the given [destination].
"""
}
typeParam("R")
typeParam("C : MutableCollection<in R>")
returns("C")
body {
"""
for (item in this)
destination.add(transform(item))
return destination
"""
}
}
val f_mapIndexedTo = fn("mapIndexedTo(destination: C, transform: (index: Int, T) -> R)") {
includeDefault()
include(CharSequences)
} builder {
inline()
doc {
"""
Applies the given [transform] function to each ${f.element} and its index in the original ${f.collection}
and appends the results to the given [destination].
@param [transform] function that takes the index of ${f.element.prefixWithArticle()} and the ${f.element} itself
and returns the result of the transform applied to the ${f.element}.
"""
}
typeParam("R")
typeParam("C : MutableCollection<in R>")
returns("C")
body {
"""
var index = 0
for (item in this)
destination.add(transform(index++, item))
return destination
"""
}
}
val f_mapNotNullTo = fn("mapNotNullTo(destination: C, transform: (T) -> R?)") {
include(Iterables, ArraysOfObjects, Sequences, Maps, CharSequences)
} builder {
inline()
typeParam("R : Any")
typeParam("C : MutableCollection<in R>")
returns("C")
doc {
"""
Applies the given [transform] function to each ${f.element} in the original ${f.collection}
and appends only the non-null results to the given [destination].
"""
}
body {
"""
forEach { element -> transform(element)?.let { destination.add(it) } }
return destination
"""
}
}
val f_mapIndexedNotNullTo = fn("mapIndexedNotNullTo(destination: C, transform: (index: Int, T) -> R?)") {
include(Iterables, ArraysOfObjects, Sequences, CharSequences)
} builder {
inline()
typeParam("R : Any")
typeParam("C : MutableCollection<in R>")
returns("C")
doc {
"""
Applies the given [transform] function to each ${f.element} and its index in the original ${f.collection}
and appends only the non-null results to the given [destination].
@param [transform] function that takes the index of ${f.element.prefixWithArticle()} and the ${f.element} itself
and returns the result of the transform applied to the ${f.element}.
"""
}
body {
"""
forEachIndexed { index, element -> transform(index, element)?.let { destination.add(it) } }
return destination
"""
}
}
val f_flatMap = fn("flatMap(transform: (T) -> Iterable<R>)") {
includeDefault()
include(Maps, CharSequences)
} builder {
inline()
doc { "Returns a single list of all elements yielded from results of [transform] function being invoked on each ${f.element} of original ${f.collection}." }
typeParam("R")
returns("List<R>")
body {
"return flatMapTo(ArrayList<R>(), transform)"
}
specialFor(Sequences) {
inline(Inline.No)
signature("flatMap(transform: (T) -> Sequence<R>)")
doc { "Returns a single sequence of all elements from results of [transform] function being invoked on each element of original sequence." }
returns("Sequence<R>")
body {
"return FlatteningSequence(this, transform, { it.iterator() })"
}
}
}
val f_flatMapTo = fn("flatMapTo(destination: C, transform: (T) -> Iterable<R>)") {
includeDefault()
include(Maps, CharSequences)
} builder {
inline()
doc { "Appends all elements yielded from results of [transform] function being invoked on each ${f.element} of original ${f.collection}, to the given [destination]." }
specialFor(Sequences) {
signature("flatMapTo(destination: C, transform: (T) -> Sequence<R>)")
}
typeParam("R")
typeParam("C : MutableCollection<in R>")
returns("C")
body {
"""
for (element in this) {
val list = transform(element)
destination.addAll(list)
}
return destination
"""
}
}
val f_groupBy_key = fn("groupBy(keySelector: (T) -> K)") {
includeDefault()
include(CharSequences)
} builder {
inline()
doc {
"""
Groups ${f.element.pluralize()} of the original ${f.collection} by the key returned by the given [keySelector] function
applied to each ${f.element} and returns a map where each group key is associated with a list of corresponding ${f.element.pluralize()}.
The returned map preserves the entry iteration order of the keys produced from the original ${f.collection}.
@sample samples.collections.Collections.Transformations.groupBy
"""
}
sequenceClassification(terminal)
typeParam("K")
returns("Map<K, List<T>>")
body { "return groupByTo(LinkedHashMap<K, MutableList<T>>(), keySelector)" }
}
val f_groupByTo_key = fn("groupByTo(destination: M, keySelector: (T) -> K)") {
includeDefault()
include(CharSequences)
} builder {
inline()
typeParam("K")
typeParam("M : MutableMap<in K, MutableList<T>>")
doc {
"""
Groups ${f.element.pluralize()} of the original ${f.collection} by the key returned by the given [keySelector] function
applied to each ${f.element} and puts to the [destination] map each group key associated with a list of corresponding ${f.element.pluralize()}.
@return The [destination] map.
@sample samples.collections.Collections.Transformations.groupBy
"""
}
sequenceClassification(terminal)
returns("M")
body {
"""
for (element in this) {
val key = keySelector(element)
val list = destination.getOrPut(key) { ArrayList<T>() }
list.add(element)
}
return destination
"""
}
}
val f_groupBy_key_value = fn("groupBy(keySelector: (T) -> K, valueTransform: (T) -> V)") {
includeDefault()
include(CharSequences)
} builder {
inline()
doc {
"""
Groups values returned by the [valueTransform] function applied to each ${f.element} of the original ${f.collection}
by the key returned by the given [keySelector] function applied to the ${f.element}
and returns a map where each group key is associated with a list of corresponding values.
The returned map preserves the entry iteration order of the keys produced from the original ${f.collection}.
@sample samples.collections.Collections.Transformations.groupByKeysAndValues
"""
}
sequenceClassification(terminal)
typeParam("K")
typeParam("V")
returns("Map<K, List<V>>")
body { "return groupByTo(LinkedHashMap<K, MutableList<V>>(), keySelector, valueTransform)" }
}
val f_groupByTo_key_value = fn("groupByTo(destination: M, keySelector: (T) -> K, valueTransform: (T) -> V)") {
includeDefault()
include(CharSequences)
} builder {
inline()
typeParam("K")
typeParam("V")
typeParam("M : MutableMap<in K, MutableList<V>>")
doc {
"""
Groups values returned by the [valueTransform] function applied to each ${f.element} of the original ${f.collection}
by the key returned by the given [keySelector] function applied to the ${f.element}
and puts to the [destination] map each group key associated with a list of corresponding values.
@return The [destination] map.
@sample samples.collections.Collections.Transformations.groupByKeysAndValues
"""
}
sequenceClassification(terminal)
returns("M")
body {
"""
for (element in this) {
val key = keySelector(element)
val list = destination.getOrPut(key) { ArrayList<V>() }
list.add(valueTransform(element))
}
return destination
"""
}
}
val f_groupingBy = fn("groupingBy(crossinline keySelector: (T) -> K)") {
include(Iterables, Sequences, ArraysOfObjects, CharSequences)
} builder {
since("1.1")
inline()
typeParam("T")
typeParam("K")
returns("Grouping<T, K>")
doc {
"""
Creates a [Grouping] source from ${f.collection.prefixWithArticle()} to be used later with one of group-and-fold operations
using the specified [keySelector] function to extract a key from each ${f.element}.
@sample samples.collections.Collections.Transformations.groupingByEachCount
"""
}
body {
"""
return object : Grouping<T, K> {
override fun sourceIterator(): Iterator<T> = [email protected]()
override fun keyOf(element: T): K = keySelector(element)
}
"""
}
}
}