-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathoperator_filter.go
More file actions
804 lines (703 loc) · 26.3 KB
/
Copy pathoperator_filter.go
File metadata and controls
804 lines (703 loc) · 26.3 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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
// Copyright 2025 samber.
//
// 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
//
// https://github.com/samber/ro/blob/main/licenses/LICENSE.apache.md
//
// 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 ro
import (
"context"
"sync/atomic"
"github.com/samber/lo"
)
// Filter emits only those items from an Observable that pass a predicate test.
// Play: https://go.dev/play/p/gjk_wULxyEW
func Filter[T any](predicate func(item T) bool) func(Observable[T]) Observable[T] {
return FilterIWithContext(func(ctx context.Context, v T, _ int64) (context.Context, bool) {
return ctx, predicate(v)
})
}
// FilterWithContext emits only those items from an Observable that pass a predicate test.
// Play: https://go.dev/play/p/y4gstlmx4KR
func FilterWithContext[T any](predicate func(ctx context.Context, item T) (context.Context, bool)) func(Observable[T]) Observable[T] {
return FilterIWithContext(func(ctx context.Context, v T, index int64) (context.Context, bool) {
return predicate(ctx, v)
})
}
// FilterI emits only those items from an Observable that pass a predicate test.
// Play: https://go.dev/play/p/Y5a2-AicBWO
func FilterI[T any](predicate func(item T, index int64) bool) func(Observable[T]) Observable[T] {
return FilterIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return ctx, predicate(v, i)
})
}
// FilterIWithContext emits only those items from an Observable that pass a predicate test.
// Play: https://go.dev/play/p/xjz-pViifdB
func FilterIWithContext[T any](predicate func(ctx context.Context, item T, index int64) (context.Context, bool)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
i := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
ctx, ok := predicate(ctx, value, i)
if ok {
destination.NextWithContext(ctx, value)
}
i++
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// Distinct suppresses duplicate items in an Observable.
// Play: https://go.dev/play/p/szxp8gO0_I7
func Distinct[T comparable]() func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
seen := map[T]struct{}{}
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if _, ok := seen[value]; !ok {
destination.NextWithContext(ctx, value)
seen[value] = struct{}{}
}
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// DistinctBy suppresses duplicate items in an Observable based on a key selector.
func DistinctBy[T any, K comparable](keySelector func(item T) K) func(Observable[T]) Observable[T] {
return DistinctByWithContext(func(ctx context.Context, item T) (context.Context, K) {
return ctx, keySelector(item)
})
}
// DistinctByWithContext suppresses duplicate items in an Observable based on a key selector.
// The context is passed to the key selector function.
func DistinctByWithContext[T any, K comparable](keySelector func(ctx context.Context, item T) (context.Context, K)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
seen := map[K]struct{}{}
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
ctx, key := keySelector(ctx, value)
if _, ok := seen[key]; !ok {
destination.NextWithContext(ctx, value)
seen[key] = struct{}{}
}
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// IgnoreElements does not emit any items from an Observable but mirrors its
// termination notification. It is useful for ignoring all the items from an
// Observable but you want to be notified when it completes or when it throws an error.
// Play: https://go.dev/play/p/glDG6E-gZ1V
func IgnoreElements[T any]() func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// Skip suppresses the first n items emitted by an Observable.
// If the count is greater than the number of items emitted by the source Observable,
// Skip will not emit any items. If the count is zero, Skip will emit all items.
// Play: https://go.dev/play/p/AAEJaUZJuIj
func Skip[T any](count int64) func(Observable[T]) Observable[T] {
if count < 0 {
panic(ErrSkipWrongCount)
}
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
index := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if index >= count {
destination.NextWithContext(ctx, value)
}
index++
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// SkipWhile skips items emitted by an Observable until a specified condition
// becomes false. It will then emit all the subsequent items. If the condition
// is never false, SkipWhile will not emit any items. If the condition is false
// on the first item, SkipWhile will emit all items.
func SkipWhile[T any](predicate func(item T) bool) func(Observable[T]) Observable[T] {
return SkipWhileI(func(v T, i int64) bool {
return predicate(v)
})
}
// SkipWhileWithContext skips items emitted by an Observable until a specified condition
// becomes false. It will then emit all the subsequent items. If the condition
// is never false, SkipWhile will not emit any items. If the condition is false
// on the first item, SkipWhile will emit all items.
func SkipWhileWithContext[T any](predicate func(ctx context.Context, item T) (context.Context, bool)) func(Observable[T]) Observable[T] {
return SkipWhileIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return predicate(ctx, v)
})
}
// SkipWhileI skips items emitted by an Observable until a specified condition
// becomes false. It will then emit all the subsequent items. If the condition
// is never false, SkipWhile will not emit any items. If the condition is false
// on the first item, SkipWhile will emit all items.
func SkipWhileI[T any](predicate func(item T, index int64) bool) func(Observable[T]) Observable[T] {
return SkipWhileIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return ctx, predicate(v, i)
})
}
// SkipWhileIWithContext skips items emitted by an Observable until a specified condition
// becomes false. It will then emit all the subsequent items. If the condition
// is never false, SkipWhile will not emit any items. If the condition is false
// on the first item, SkipWhile will emit all items.
// Play: https://go.dev/play/p/oYUQuPWIytL
func SkipWhileIWithContext[T any](predicate func(ctx context.Context, item T, index int64) (context.Context, bool)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
skipping := true
i := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if !skipping {
destination.NextWithContext(ctx, value)
} else if newCtx, ok := predicate(ctx, value, i); !ok {
skipping = false
destination.NextWithContext(newCtx, value)
}
i++
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// SkipLast suppresses the last n items emitted by an Observable. If the count
// is greater than the number of items emitted by the source Observable, SkipLast
// will not emit any items. If the count is zero, SkipLast will emit all items.
// Play: https://go.dev/play/p/gire30ONRBB
func SkipLast[T any](count int) func(Observable[T]) Observable[T] {
if count < 1 {
panic(ErrSkipLastWrongCount)
}
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
// Use a circular buffer approach to avoid memory allocations
buffer := make([]lo.Tuple2[context.Context, T], count)
size := 0
index := 0
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if size < count {
buffer[index] = lo.T2(ctx, value)
size++
} else {
// Buffer is full, emit the oldest item
destination.NextWithContext(buffer[index].A, buffer[index].B)
buffer[index] = lo.T2(ctx, value)
}
index = (index + 1) % count
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// SkipUntil suppresses items emitted by an Observable until a second Observable
// emits an item or completes. It will then emit all the subsequent items. If the
// second Observable is empty, SkipUntil will not emit any items. If the second
// Observable emits an item or completes, SkipUntil will emit all items.
func SkipUntil[T, S any](signal Observable[S]) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
ready := uint32(0)
subscriptions := NewSubscription(nil)
subscriptions.AddUnsubscribable(
source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if atomic.LoadUint32(&ready) == 1 {
destination.NextWithContext(ctx, value)
}
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
),
)
subscriptions.AddUnsubscribable(
signal.SubscribeWithContext(
subscriberCtx,
OnNextWithContext(
func(ctx context.Context, value S) {
atomic.StoreUint32(&ready, 1)
},
),
),
)
return subscriptions.Unsubscribe
})
}
}
// Take emits only the first n items emitted by an Observable. If the count is
// greater than the number of items emitted by the source Observable, Take will
// emit all items. If the count is zero, Take will not emit any items.
// Play: https://go.dev/play/p/IC_hJMsg7yk
func Take[T any](count int64) func(Observable[T]) Observable[T] {
if count < 0 {
panic(ErrTakeWrongCount)
}
return func(source Observable[T]) Observable[T] {
if count == 0 {
return Empty[T]() // Warning: the `source` will never be subscribed
}
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
var index int64
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
destination.NextWithContext(ctx, value)
index++
if index >= count {
destination.CompleteWithContext(ctx)
}
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
)
return sub.Unsubscribe
})
}
}
// TakeWhile emits items emitted by an Observable so long as a specified condition
// is true. It will then complete. If the condition is never true, TakeWhile will
// not emit any items. If the condition is true on the first item, TakeWhile will
// emit all items. If the condition is false on the first item, TakeWhile will not
// emit any items.
// Play: https://go.dev/play/p/lxV03GzOa2J
func TakeWhile[T any](predicate func(item T) bool) func(Observable[T]) Observable[T] {
return TakeWhileIWithContext(func(ctx context.Context, v T, _ int64) (context.Context, bool) {
return ctx, predicate(v)
})
}
// TakeWhileWithContext emits items emitted by an Observable so long as a specified condition
// is true. It will then complete. If the condition is never true, TakeWhile will
// not emit any items. If the condition is true on the first item, TakeWhile will
// emit all items. If the condition is false on the first item, TakeWhile will not
// emit any items.
func TakeWhileWithContext[T any](predicate func(ctx context.Context, item T) (context.Context, bool)) func(Observable[T]) Observable[T] {
return TakeWhileIWithContext(func(ctx context.Context, v T, _ int64) (context.Context, bool) {
return predicate(ctx, v)
})
}
// TakeWhileI emits items emitted by an Observable so long as a specified condition
// is true. It will then complete. If the condition is never true, TakeWhile will
// not emit any items. If the condition is true on the first item, TakeWhile will
// emit all items. If the condition is false on the first item, TakeWhile will not
// emit any items.
func TakeWhileI[T any](predicate func(item T, index int64) bool) func(Observable[T]) Observable[T] {
return TakeWhileIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return ctx, predicate(v, i)
})
}
// TakeWhileIWithContext emits items emitted by an Observable so long as a specified condition
// is true. It will then complete. If the condition is never true, TakeWhile will
// not emit any items. If the condition is true on the first item, TakeWhile will
// emit all items. If the condition is false on the first item, TakeWhile will not
// emit any items.
func TakeWhileIWithContext[T any](predicate func(ctx context.Context, item T, index int64) (context.Context, bool)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
skipping := false
i := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if !skipping {
if currentCtx, ok := predicate(ctx, value, i); ok {
destination.NextWithContext(currentCtx, value)
} else {
destination.CompleteWithContext(currentCtx)
skipping = true
}
}
i++
},
func(ctx context.Context, err error) {
if !skipping {
destination.ErrorWithContext(ctx, err)
}
},
func(ctx context.Context) {
if !skipping {
destination.CompleteWithContext(ctx)
}
},
),
)
return sub.Unsubscribe
})
}
}
// TakeLast emits only the last n items emitted by an Observable. If the count is
// greater than the number of items emitted by the source Observable, TakeLast will
// emit all items. If the count is zero, TakeLast will not emit any items.
// Play: https://go.dev/play/p/J0mX3NpEHzy
func TakeLast[T any](count int) func(Observable[T]) Observable[T] {
if count < 0 {
panic(ErrTakeLastWrongCount)
}
return func(source Observable[T]) Observable[T] {
if count == 0 {
return Empty[T]() // Warning: the `source` will never be subscribed
}
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
// Use a circular buffer to avoid memory allocations
buffer := make([]lo.Tuple2[context.Context, T], count)
size := 0
index := 0
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
buffer[index] = lo.T2(ctx, value)
index = (index + 1) % count
if size < count {
size++
}
},
destination.ErrorWithContext,
func(ctx context.Context) {
// Emit items in order, starting from the oldest
start := 0
if size == count {
start = index
}
for i := 0; i < size; i++ {
item := buffer[(start+i)%count]
destination.NextWithContext(item.A, item.B)
}
destination.CompleteWithContext(ctx)
},
),
)
return sub.Unsubscribe
})
}
}
// TakeUntil emits items emitted by an Observable until a second Observable emits
// an item or completes. It will then complete. If the second Observable is empty,
// TakeUntil will emit all items. If the second Observable emits an item or completes,
// TakeUntil will emit all items. If the second Observable emits an item or completes,
// TakeUntil will complete.
// Play: https://go.dev/play/p/nhgYGyREW1r
func TakeUntil[T, S any](signal Observable[S]) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
ready := uint32(0)
subscriptions := NewSubscription(nil)
subscriptions.AddUnsubscribable(
source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if atomic.LoadUint32(&ready) == 1 {
return
}
destination.NextWithContext(ctx, value)
},
destination.ErrorWithContext,
destination.CompleteWithContext,
),
),
)
subscriptions.AddUnsubscribable(
signal.SubscribeWithContext(
subscriberCtx,
OnNextWithContext(
func(ctx context.Context, value S) {
atomic.StoreUint32(&ready, 1)
destination.CompleteWithContext(ctx)
},
),
),
)
return subscriptions.Unsubscribe
})
}
}
// Head emits only the first item emitted by an Observable. If the source Observable
// is empty, Head will emit an error.
// Play: https://go.dev/play/p/TmhTvpuKAp_U
func Head[T any]() func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
destination.NextWithContext(ctx, value)
destination.CompleteWithContext(ctx)
},
destination.ErrorWithContext,
func(ctx context.Context) {
destination.ErrorWithContext(ctx, ErrHeadEmpty)
},
),
)
return sub.Unsubscribe
})
}
}
// Tail emits only the last item emitted by an Observable. If the source Observable
// is empty, Tail will emit an error.
func Tail[T any]() func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
var last lo.Tuple2[context.Context, T]
hasValue := false
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
last = lo.T2(ctx, value)
hasValue = true
},
destination.ErrorWithContext,
func(ctx context.Context) {
if hasValue {
destination.NextWithContext(last.A, last.B)
destination.CompleteWithContext(ctx)
} else {
destination.ErrorWithContext(ctx, ErrTailEmpty)
}
},
),
)
return sub.Unsubscribe
})
}
}
// First emits only the first item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, First will emit an error.
// Play: https://go.dev/play/p/yneVKit6vh0
func First[T any](predicate func(item T) bool) func(Observable[T]) Observable[T] {
return FirstI(func(v T, _ int64) bool {
return predicate(v)
})
}
// FirstWithContext emits only the first item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, First will emit an error.
func FirstWithContext[T any](predicate func(ctx context.Context, item T) (context.Context, bool)) func(Observable[T]) Observable[T] {
return FirstIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return predicate(ctx, v)
})
}
// FirstI emits only the first item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, FirstI will emit an error.
func FirstI[T any](predicate func(item T, index int64) bool) func(Observable[T]) Observable[T] {
return FirstIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return ctx, predicate(v, i)
})
}
// FirstIWithContext emits only the first item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, FirstI will emit an error.
func FirstIWithContext[T any](predicate func(ctx context.Context, item T, index int64) (context.Context, bool)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
i := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if currentCtx, ok := predicate(ctx, value, i); ok {
destination.NextWithContext(currentCtx, value)
destination.CompleteWithContext(currentCtx)
}
i++
},
destination.ErrorWithContext,
func(ctx context.Context) {
destination.ErrorWithContext(ctx, ErrFirstEmpty)
},
),
)
return sub.Unsubscribe
})
}
}
// Last emits only the last item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, Last will emit an error.
// Play: https://go.dev/play/p/aMsvsTPbmHY
func Last[T any](predicate func(item T) bool) func(Observable[T]) Observable[T] {
return LastI(func(v T, _ int64) bool {
return predicate(v)
})
}
// LastWithContext emits only the last item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, Last will emit an error.
func LastWithContext[T any](predicate func(ctx context.Context, item T) (context.Context, bool)) func(Observable[T]) Observable[T] {
return LastIWithContext(func(ctx context.Context, item T, index int64) (context.Context, bool) {
return predicate(ctx, item)
})
}
// LastI emits only the last item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, LastI will emit an error.
func LastI[T any](predicate func(item T, index int64) bool) func(Observable[T]) Observable[T] {
return LastIWithContext(func(ctx context.Context, v T, i int64) (context.Context, bool) {
return ctx, predicate(v, i)
})
}
// LastIWithContext emits only the last item emitted by an Observable that satisfies a specified
// condition. If the source Observable is empty, LastI will emit an error.
func LastIWithContext[T any](predicate func(ctx context.Context, item T, index int64) (context.Context, bool)) func(Observable[T]) Observable[T] {
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
var last lo.Tuple2[context.Context, T]
hasValue := false
i := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if newCtx, ok := predicate(ctx, value, i); ok {
last = lo.T2(newCtx, value)
hasValue = true
}
i++
},
destination.ErrorWithContext,
func(ctx context.Context) {
if hasValue {
destination.NextWithContext(last.A, last.B)
destination.CompleteWithContext(last.A)
} else {
destination.ErrorWithContext(ctx, ErrLastEmpty)
}
},
),
)
return sub.Unsubscribe
})
}
}
// ElementAt emits only the nth item emitted by an Observable. If the source Observable
// emits fewer than n items, ElementAt will emit an error.
// Play: https://go.dev/play/p/0YE1tCbPaDg
func ElementAt[T any](nth int) func(Observable[T]) Observable[T] {
if nth < 0 {
panic(ErrElementAtWrongNth)
}
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
count := 0
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if count == nth {
destination.NextWithContext(ctx, value)
destination.CompleteWithContext(ctx)
return
}
count++
},
destination.ErrorWithContext,
func(ctx context.Context) {
destination.ErrorWithContext(ctx, ErrElementAtNotFound)
},
),
)
return sub.Unsubscribe
})
}
}
// ElementAtOrDefault emits only the nth item emitted by an Observable. If the source
// Observable emits fewer than n items, ElementAtOrDefault will emit a fallback value.
// Play: https://go.dev/play/p/DWMWPXkc8x4
func ElementAtOrDefault[T any](nth int64, fallback T) func(Observable[T]) Observable[T] {
if nth < 0 {
panic(ErrElementAtOrDefaultWrongNth)
}
return func(source Observable[T]) Observable[T] {
return NewUnsafeObservableWithContext(func(subscriberCtx context.Context, destination Observer[T]) Teardown {
count := int64(0)
sub := source.SubscribeWithContext(
subscriberCtx,
NewObserverWithContext(
func(ctx context.Context, value T) {
if count == nth {
destination.NextWithContext(ctx, value)
destination.CompleteWithContext(ctx)
return
}
count++
},
destination.ErrorWithContext,
func(ctx context.Context) {
destination.NextWithContext(ctx, fallback)
destination.CompleteWithContext(ctx)
},
),
)
return sub.Unsubscribe
})
}
}