forked from MacRuby/MacRuby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSArray.m
1606 lines (1459 loc) · 34.3 KB
/
NSArray.m
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
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* MacRuby extensions to NSArray.
*
* This file is covered by the Ruby license. See COPYING for more details.
*
* Copyright (C) 2012-2013, The MacRuby Team. All rights reserved.
* Copyright (C) 2010-2011, Apple Inc. All rights reserved.
*/
#import <Foundation/Foundation.h>
#include "macruby_internal.h"
#include "ruby/node.h"
#include "objc.h"
#include "vm.h"
#include "array.h"
#include "hash.h"
VALUE rb_cArray;
VALUE rb_cNSArray;
VALUE rb_cNSMutableArray;
// Some NSArray instances actually do not even respond to mutable methods.
// So one way to know is to check if the addObject: method exists.
#define CHECK_MUTABLE(obj) \
do { \
if (![obj respondsToSelector:@selector(addObject:)]) { \
rb_raise(rb_eRuntimeError, \
"can't modify frozen/immutable array"); \
} \
} \
while (0)
// If a given mutable operation raises an NSException error,
// it is likely that the object is not mutable.
#define TRY_MOP(code) \
@try { \
code; \
} \
@catch(NSException *exc) { \
rb_raise(rb_eRuntimeError, "can't modify frozen/immutable array"); \
}
static id
nsary_dup(id rcv, SEL sel)
{
id dup = [rcv mutableCopy];
if (OBJ_TAINTED(rcv)) {
OBJ_TAINT(dup);
}
return dup;
}
static id
nsary_clear(id rcv, SEL sel)
{
CHECK_MUTABLE(rcv);
TRY_MOP([rcv removeAllObjects]);
return rcv;
}
static id
nsary_inspect(id rcv, SEL sel)
{
NSMutableString *str = [NSMutableString new];
[str appendString:@"["];
for (id item in rcv) {
if ([str length] > 1) {
[str appendString:@", "];
}
[str appendString:(NSString *)rb_inspect(OC2RB(item))];
}
[str appendString:@"]"];
return str;
}
static id
nsary_to_a(id rcv, SEL sel)
{
return rcv;
}
static VALUE
nsary_equal(id rcv, SEL sel, VALUE other)
{
if (TYPE(other) != T_ARRAY) {
return Qfalse;
}
return [rcv isEqualToArray:(id)other] ? Qtrue : Qfalse;
}
static VALUE
nsary_subseq(id rcv, long beg, long len)
{
if (beg < 0 || len < 0) {
return Qnil;
}
const long n = [rcv count];
if (beg > n) {
return Qnil;
}
if (n < len || n < beg + len) {
len = n - beg;
}
return (VALUE)[[rcv subarrayWithRange:NSMakeRange(beg, len)] mutableCopy];
}
static VALUE
nsary_entry(id rcv, long offset)
{
const long n = [rcv count];
if (n == 0) {
return Qnil;
}
if (offset < 0) {
offset += n;
}
if (offset < 0 || n <= offset) {
return Qnil;
}
return OC2RB([rcv objectAtIndex:offset]);
}
static VALUE
nsary_aref(id rcv, SEL sel, int argc, VALUE *argv)
{
long beg, len;
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += [rcv count];
}
return nsary_subseq(rcv, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", 0, 0);
}
VALUE arg = argv[0];
if (FIXNUM_P(arg)) {
return nsary_entry(rcv, FIX2LONG(arg));
}
// Check if Range.
switch (rb_range_beg_len(arg, &beg, &len, [rcv count], 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return nsary_subseq(rcv, beg, len);
}
return nsary_entry(rcv, NUM2LONG(arg));
}
static void
nsary_splice(id ary, long beg, long len, VALUE rpl)
{
const long n = [ary count];
if (len < 0) {
rb_raise(rb_eIndexError, "negative length (%ld)", len);
}
if (beg < 0) {
beg += n;
if (beg < 0) {
beg -= n;
rb_raise(rb_eIndexError, "index %ld out of array", beg);
}
}
if (n < len || n < beg + len) {
len = n - beg;
}
long rlen = 0;
if (rpl != Qundef) {
rpl = rb_ary_to_ary(rpl);
rlen = RARRAY_LEN(rpl);
}
CHECK_MUTABLE(ary);
if (beg >= n) {
for (long i = n; i < beg; i++) {
TRY_MOP([ary addObject:[NSNull null]]);
}
if (rlen > 0 && rpl != Qundef) {
TRY_MOP([ary addObjectsFromArray:(id)rpl]);
}
}
else {
if (rlen > 0 && rpl != Qundef) {
TRY_MOP([ary replaceObjectsInRange:NSMakeRange(beg, len)
withObjectsFromArray:(id)rpl]);
}
else {
TRY_MOP([ary removeObjectsInRange:NSMakeRange(beg, len)]);
}
}
}
static void
nsary_store(id ary, long idx, VALUE val)
{
const long len = [ary count];
if (idx < 0) {
idx += len;
if (idx < 0) {
rb_raise(rb_eIndexError, "index %ld out of array",
idx - len);
}
}
else if (idx >= ARY_MAX_SIZE) {
rb_raise(rb_eIndexError, "index %ld too big", idx);
}
CHECK_MUTABLE(ary);
if (len <= idx) {
for (long i = len; i <= idx; i++) {
TRY_MOP([ary addObject:[NSNull null]]);
}
}
TRY_MOP([ary replaceObjectAtIndex:idx withObject:RB2OC(val)]);
}
static VALUE
nsary_aset(id rcv, SEL sel, int argc, VALUE *argv)
{
if (argc == 3) {
nsary_splice(rcv, NUM2LONG(argv[0]), NUM2LONG(argv[1]), argv[2]);
return argv[2];
}
if (argc != 2) {
rb_raise(rb_eArgError, "wrong number of arguments (%d for 2)", argc);
}
long offset;
if (FIXNUM_P(argv[0])) {
offset = FIX2LONG(argv[0]);
}
else {
long beg, len;
if (rb_range_beg_len(argv[0], &beg, &len, [rcv count], 1)) {
// Check if Range.
nsary_splice(rcv, beg, len, argv[1]);
return argv[1];
}
offset = NUM2LONG(argv[0]);
}
nsary_store(rcv, offset, argv[1]);
return argv[1];
}
static VALUE
nsary_at(id rcv, SEL sel, VALUE pos)
{
return nsary_entry(rcv, NUM2LONG(pos));
}
static VALUE
nsary_fetch(id rcv, SEL sel, int argc, VALUE *argv)
{
VALUE pos, ifnone;
rb_scan_args(argc, argv, "11", &pos, &ifnone);
const bool block_given = rb_block_given_p();
if (block_given && argc == 2) {
rb_warn("block supersedes default value argument");
}
const long len = [rcv count];
long idx = NUM2LONG(pos);
if (idx < 0) {
idx += len;
}
if (idx < 0 || len <= idx) {
if (block_given) {
return rb_yield(pos);
}
if (argc == 1) {
rb_raise(rb_eIndexError, "index %ld out of array", idx);
}
return ifnone;
}
return OC2RB([rcv objectAtIndex:idx]);
}
static VALUE
nsary_shared_first(int argc, VALUE *argv, id ary, bool last, bool remove)
{
VALUE nv;
rb_scan_args(argc, argv, "1", &nv);
long n = NUM2LONG(nv);
const long ary_len = [ary count];
if (n > ary_len) {
n = ary_len;
}
else if (n < 0) {
rb_raise(rb_eArgError, "negative array size");
}
long offset = 0;
if (last) {
offset = ary_len - n;
}
id result = [NSMutableArray new];
for (long i = 0; i < n; i++) {
id item = [ary objectAtIndex:i + offset];
[result addObject:item];
}
if (remove) {
CHECK_MUTABLE(ary);
for (long i = 0; i < n; i++) {
TRY_MOP([ary removeObjectAtIndex:offset]);
}
}
return (VALUE)result;
}
static VALUE
nsary_first(id rcv, SEL sel, int argc, VALUE *argv)
{
if (argc == 0) {
return [rcv count] == 0 ? Qnil : OC2RB([rcv objectAtIndex:0]);
}
return nsary_shared_first(argc, argv, rcv, false, false);
}
static VALUE
nsary_last(id rcv, SEL sel, int argc, VALUE *argv)
{
if (argc == 0) {
const long len = [rcv count];
return len == 0 ? Qnil : OC2RB([rcv objectAtIndex:len - 1]);
}
return nsary_shared_first(argc, argv, rcv, true, false);
}
static id
nsary_concat(id rcv, SEL sel, VALUE ary)
{
ary = to_ary(ary);
CHECK_MUTABLE(rcv);
TRY_MOP([rcv addObjectsFromArray:(id)ary]);
return rcv;
}
static id
nsary_push(id rcv, SEL sel, VALUE elem)
{
CHECK_MUTABLE(rcv);
TRY_MOP([rcv addObject:RB2OC(elem)]);
return rcv;
}
static id
nsary_push_m(id rcv, SEL sel, int argc, VALUE *argv)
{
for (int i = 0; i < argc; i++) {
nsary_push(rcv, 0, argv[i]);
}
return rcv;
}
static VALUE
nsary_pop(id rcv, SEL sel, int argc, VALUE *argv)
{
CHECK_MUTABLE(rcv);
if (argc == 0) {
const long len = [rcv count];
if (len > 0) {
id elem = [rcv objectAtIndex:len - 1];
TRY_MOP([rcv removeObjectAtIndex:len - 1]);
return OC2RB(elem);
}
return Qnil;
}
return nsary_shared_first(argc, argv, rcv, true, true);
}
static VALUE
nsary_shift(id rcv, SEL sel, int argc, VALUE *argv)
{
CHECK_MUTABLE(rcv);
if (argc == 0) {
const long len = [rcv count];
if (len > 0) {
id elem = [rcv objectAtIndex:0];
TRY_MOP([rcv removeObjectAtIndex:0]);
return OC2RB(elem);
}
return Qnil;
}
return nsary_shared_first(argc, argv, rcv, false, true);
}
static id
nsary_unshift(id rcv, SEL sel, int argc, VALUE *argv)
{
CHECK_MUTABLE(rcv);
for (int i = argc - 1; i >= 0; i--) {
TRY_MOP([rcv insertObject:RB2OC(argv[i]) atIndex:0]);
}
return rcv;
}
static void
nsary_insert(id rcv, long idx, VALUE elem)
{
CHECK_MUTABLE(rcv);
const long len = [rcv count];
if (idx < 0) {
idx += len;
if (idx < 0) {
rb_raise(rb_eIndexError, "index %ld out of array", idx - len);
}
}
if (idx > len) {
for (long i = len; i < idx; i++) {
TRY_MOP([rcv addObject:[NSNull null]]);
}
}
TRY_MOP([rcv insertObject:RB2OC(elem) atIndex:idx]);
}
static id
nsary_insert_m(id rcv, SEL sel, int argc, VALUE *argv)
{
CHECK_MUTABLE(rcv);
if (argc < 1) {
rb_raise(rb_eArgError, "wrong number of arguments (at least 1)");
}
if (argc > 1) {
long pos = NUM2LONG(argv[0]);
if (pos == -1) {
pos = [rcv count];
}
if (pos < 0) {
pos++;
}
if (argc == 2) {
nsary_insert(rcv, pos, argv[1]);
}
else {
argc--;
argv++;
NSMutableArray *rpl = [NSMutableArray new];
for (int i = 0; i < argc; i++) {
[rpl addObject:RB2OC(argv[i])];
}
nsary_splice(rcv, pos, 0, (VALUE)rpl);
}
}
return rcv;
}
static VALUE
nsary_each(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
for (long i = 0; i < [rcv count]; i++) {
rb_yield(OC2RB([rcv objectAtIndex:i]));
RETURN_IF_BROKEN();
}
return (VALUE)rcv;
}
static VALUE
nsary_each_index(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
for (long i = 0; i < [rcv count]; i++) {
rb_yield(LONG2NUM(i));
RETURN_IF_BROKEN();
}
return (VALUE)rcv;
}
static VALUE
nsary_reverse_each(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
long len = [rcv count];
while (len--) {
rb_yield(OC2RB([rcv objectAtIndex:len]));
RETURN_IF_BROKEN();
const long n = [rcv count];
if (n < len) {
// Array was modified.
len = n;
}
}
return (VALUE)rcv;
}
static VALUE
nsary_length(id rcv, SEL sel)
{
return LONG2NUM([rcv count]);
}
static VALUE
nsary_empty(id rcv, SEL sel)
{
return [rcv count] == 0 ? Qtrue : Qfalse;
}
static VALUE
nsary_index(id rcv, SEL sel, int argc, VALUE *argv)
{
const long len = [rcv count];
if (argc == 0) {
RETURN_ENUMERATOR(rcv, 0, 0);
for (long i = 0; i < len; i++) {
VALUE test = rb_yield(OC2RB([rcv objectAtIndex:i]));
RETURN_IF_BROKEN();
if (RTEST(test)) {
return LONG2NUM(i);
}
}
}
else {
VALUE val;
rb_scan_args(argc, argv, "01", &val);
if (len > 0) {
NSUInteger index = [rcv indexOfObject:RB2OC(val)
inRange:NSMakeRange(0, len)];
if (index != NSNotFound) {
return LONG2NUM(index);
}
}
}
return Qnil;
}
static VALUE
nsary_rindex(id rcv, SEL sel, int argc, VALUE *argv)
{
const long len = [rcv count];
if (argc == 0) {
RETURN_ENUMERATOR(rcv, 0, 0);
long i = len;
while (i-- > 0) {
VALUE test = rb_yield(OC2RB([rcv objectAtIndex:i]));
RETURN_IF_BROKEN();
if (RTEST(test)) {
return LONG2NUM(i);
}
const long n = [rcv count];
if (n < len) {
// Array was modified.
i = n;
}
}
}
else {
VALUE val;
rb_scan_args(argc, argv, "01", &val);
id ocval = RB2OC(val);
for (long i = len - 1; i >= 0; i--) {
id item = [rcv objectAtIndex:i];
if ([ocval isEqual:item]) {
return LONG2NUM(i);
}
}
}
return Qnil;
}
static id
nsary_reverse_bang(id rcv, SEL sel)
{
CHECK_MUTABLE(rcv);
for (long i = 0, count = [rcv count]; i < (count / 2); i++) {
TRY_MOP([rcv exchangeObjectAtIndex:i withObjectAtIndex:count - i - 1]);
}
return rcv;
}
static id
nsary_reverse(id rcv, SEL sel)
{
NSMutableArray *result = [NSMutableArray arrayWithArray:rcv];
return nsary_reverse_bang(result, 0);
}
static NSInteger
sort_block(id x, id y, void *context)
{
VALUE rbx = OC2RB(x);
VALUE rby = OC2RB(y);
VALUE ret = rb_yield_values(2, rbx, rby);
return rb_cmpint(ret, rbx, rby);
}
static id
nsary_sort_bang(id rcv, SEL sel)
{
CHECK_MUTABLE(rcv);
if ([rcv count] > 1) {
if (rb_block_given_p()) {
TRY_MOP([rcv sortUsingFunction:sort_block context:NULL]);
}
else {
TRY_MOP([rcv sortUsingSelector:@selector(compare:)]);
}
}
return rcv;
}
static id
nsary_sort(id rcv, SEL sel)
{
NSMutableArray *result = [NSMutableArray arrayWithArray:rcv];
return nsary_sort_bang(result, 0);
}
static VALUE
nsary_sort_by_i(VALUE i)
{
return rb_yield(i);
}
static VALUE
nsary_sort_by_bang(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
CHECK_MUTABLE(rcv);
VALUE sorted = rb_objc_block_call((VALUE)rcv, sel_registerName("sort_by"), 0, 0,
nsary_sort_by_i, 0);
TRY_MOP([rcv setArray:(id)sorted]);
return (VALUE)rcv;
}
static VALUE
collect(id rcv)
{
CHECK_MUTABLE(rcv);
for (long i = 0, count = [rcv count]; i < count; i++) {
id elem = [rcv objectAtIndex:i];
id newval = RB2OC(rb_yield(OC2RB(elem)));
RETURN_IF_BROKEN();
TRY_MOP([rcv replaceObjectAtIndex:i withObject:newval]);
}
return (VALUE)rcv;
}
static VALUE
nsary_collect_bang(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
return collect(rcv);
}
static VALUE
nsary_collect(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
NSMutableArray *result = [NSMutableArray arrayWithArray:rcv];
return collect(result);
}
static VALUE
nsary_select(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
NSMutableArray *result = [NSMutableArray new];
for (long i = 0; i < [rcv count]; i++) {
id elem = [rcv objectAtIndex:i];
VALUE test = rb_yield(OC2RB(elem));
RETURN_IF_BROKEN();
if (RTEST(test)) {
[result addObject:elem];
}
}
return (VALUE)result;
}
static VALUE
nsary_select_bang(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
CHECK_MUTABLE(rcv);
NSMutableArray *result = [NSMutableArray new];
for (long i = 0; i < [rcv count]; i++) {
id elem = [rcv objectAtIndex:i];
VALUE test = rb_yield(OC2RB(elem));
RETURN_IF_BROKEN();
if (!RTEST(test)) {
continue;
}
[result addObject:elem];
}
if ([result count] == [rcv count]) {
return Qnil;
}
[rcv setArray:result];
return (VALUE)rcv;
}
static VALUE
nsary_keep_if(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
nsary_select_bang(rcv, 0);
return (VALUE)rcv;
}
static id
nsary_values_at(id rcv, SEL sel, int argc, VALUE *argv)
{
const long rcvlen = [rcv count];
NSMutableArray *result = [NSMutableArray new];
for (long i = 0; i < argc; i++) {
long beg, len;
if (FIXNUM_P(argv[i])) {
id entry = (id)nsary_entry(rcv, FIX2LONG(argv[i]));
[result addObject:RB2OC(entry)];
continue;
}
switch (rb_range_beg_len(argv[i], &beg, &len, rcvlen, 0)) {
// Check if Range.
case Qfalse:
break;
case Qnil:
continue;
default:
for (long j = 0; j < len; j++) {
[result addObject:[rcv objectAtIndex:j + beg]];
}
continue;
}
[result addObject:[rcv objectAtIndex:NUM2LONG(argv[i])]];
}
return result;
}
static bool
nsary_delete_element(id rcv, VALUE elem)
{
id ocelem = RB2OC(elem);
long len = [rcv count];
NSRange range = NSMakeRange(0, len);
NSUInteger index;
bool changed = false;
CHECK_MUTABLE(rcv);
while ((index = [rcv indexOfObject:ocelem inRange:range]) != NSNotFound) {
TRY_MOP([rcv removeObjectAtIndex:index]);
range.location = index;
range.length = --len - index;
changed = true;
}
return changed;
}
static VALUE
nsary_delete(id rcv, SEL sel, VALUE elem)
{
if (!nsary_delete_element(rcv, elem)) {
if (rb_block_given_p()) {
return rb_yield(elem);
}
return Qnil;
}
return elem;
}
static VALUE
nsary_delete_at(id rcv, SEL sel, VALUE pos)
{
CHECK_MUTABLE(rcv);
long index = NUM2LONG(pos);
const long len = [rcv count];
if (index >= len) {
return Qnil;
}
if (index < 0) {
index += len;
if (index < 0) {
return Qnil;
}
}
VALUE elem = OC2RB([rcv objectAtIndex:index]);
TRY_MOP([rcv removeObjectAtIndex:index]);
return elem;
}
static VALUE
reject(id rcv)
{
CHECK_MUTABLE(rcv);
bool changed = false;
for (long i = 0, n = [rcv count]; i < n; i++) {
VALUE elem = OC2RB([rcv objectAtIndex:i]);
VALUE test = rb_yield(elem);
RETURN_IF_BROKEN();
if (RTEST(test)) {
TRY_MOP([rcv removeObjectAtIndex:i]);
n--;
i--;
changed = true;
}
}
return changed ? (VALUE)rcv : Qnil;
}
static VALUE
nsary_delete_if(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
reject(rcv);
return (VALUE)rcv;
}
static VALUE
nsary_reject(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
NSMutableArray *result = [NSMutableArray arrayWithArray:rcv];
reject(result);
return (VALUE)result;
}
static VALUE
nsary_reject_bang(id rcv, SEL sel)
{
RETURN_ENUMERATOR(rcv, 0, 0);
return reject(rcv);
}
static id
nsary_replace(id rcv, SEL sel, VALUE other)
{
other = to_ary(other);
CHECK_MUTABLE(rcv);
TRY_MOP([rcv setArray:(id)other]);
return rcv;
}
static VALUE
nsary_includes(id rcv, SEL sel, VALUE obj)
{
id elem = RB2OC(obj);
return [rcv containsObject:elem] ? Qtrue : Qfalse;
}
static VALUE
nsary_slice_bang(id rcv, SEL sel, int argc, VALUE *argv)
{
const long rcvlen = [rcv count];
VALUE arg1, arg2;
long pos, len;
if (rb_scan_args(argc, argv, "11", &arg1, &arg2) == 2) {
pos = NUM2LONG(arg1);
len = NUM2LONG(arg2);
delete_pos_len:
if (pos < 0) {
pos = rcvlen + pos;
if (pos < 0) {
return Qnil;
}
}
if (rcvlen < len || rcvlen < pos + len) {
len = rcvlen - pos;
}
VALUE result = nsary_subseq(rcv, pos, len);
nsary_splice(rcv, pos, len, Qundef);
return result;
}
if (!FIXNUM_P(arg1)) {
switch (rb_range_beg_len(arg1, &pos, &len, rcvlen, 0)) {
case Qtrue:
// Valid range.
goto delete_pos_len;
case Qnil:
// invalid range.
return Qnil;
default:
// Not a range.
break;
}
}
return nsary_delete_at(rcv, 0, arg1);
}
static id
nsary_plus(id rcv, SEL sel, VALUE other)
{
other = to_ary(other);
NSMutableArray *ary = [NSMutableArray new];
[ary addObjectsFromArray:rcv];
[ary addObjectsFromArray:(id)other];
return ary;
}
static id
nsary_times(id rcv, SEL sel, VALUE times)
{
VALUE tmp = rb_check_string_type(times);
if (!NIL_P(tmp)) {
return (id)rb_ary_join((VALUE)rcv, tmp);
}
const long len = NUM2LONG(times);
if (len < 0) {
rb_raise(rb_eArgError, "negative argument");
}
NSMutableArray *result = [NSMutableArray new];
if (len > 0) {
const long n = [rcv count];
if (LONG_MAX/len < n) {
rb_raise(rb_eArgError, "argument too big");
}
for (long i = 0; i < len; i++) {
[result addObjectsFromArray:rcv];
}
}
return result;
}
static int
nsary_push_value(st_data_t key, st_data_t val, st_data_t ary)
{
rb_ary_push((VALUE)ary, (VALUE)val);
return ST_CONTINUE;
}
static VALUE
nsary_uniq_bang(id rcv, SEL sel)
{
CHECK_MUTABLE(rcv);
VALUE hash;
long len = [rcv count];
bool changed = false;
if (len <= 1) {
return Qnil;
}
NSMutableArray *result = [NSMutableArray new];
if (rb_block_given_p()) {
hash = rb_ary_make_hash_by((VALUE)rcv);
if (len == RHASH_SIZE(hash)) {
return Qnil;
}
st_foreach(RHASH_TBL(hash), nsary_push_value, (st_data_t)result);
changed = true;
}
else {
hash = rb_ary_make_hash((VALUE)rcv, 0);
if (len == RHASH_SIZE(hash)) {
return Qnil;
}
for (long i = 0; i < len; i++) {
id elem = [rcv objectAtIndex:i];
st_data_t vv = (st_data_t)OC2RB(elem);
if (st_delete(RHASH_TBL(hash), &vv, 0)) {
[result addObject:elem];
changed = true;
}
}
}
if (!changed) {
return Qnil;
}
[rcv setArray:result];
return (VALUE)rcv;
}
static id
nsary_uniq(id rcv, SEL sel)
{
id result = [NSMutableArray arrayWithArray:rcv];
nsary_uniq_bang(result, 0);
return result;
}
static VALUE
nsary_compact_bang(id rcv, SEL sel)
{
return nsary_delete_element(rcv, Qnil) ? (VALUE)rcv : Qnil;
}
static id
nsary_compact(id rcv, SEL sel)
{
id result = [NSMutableArray arrayWithArray:rcv];
nsary_compact_bang(result, 0);