forked from MacRuby/MacRuby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray.c
3888 lines (3549 loc) · 91.5 KB
/
array.c
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 implementation of Ruby 1.9's array.c.
*
* This file is covered by the Ruby license. See COPYING for more details.
*
* Copyright (C) 2012, The MacRuby Team. All rights reserved.
* Copyright (C) 2007-2011, Apple Inc. All rights reserved.
* Copyright (C) 1993-2007 Yukihiro Matsumoto
* Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
* Copyright (C) 2000 Information-technology Promotion Agency, Japan
*/
#include "macruby_internal.h"
#include "ruby/util.h"
#include "ruby/st.h"
#include "id.h"
#include "objc.h"
#include "ruby/node.h"
#include "vm.h"
#include "class.h"
#include "array.h"
VALUE rb_cRubyArray;
#define ARY_DEFAULT_SIZE 16
// RubyArray primitives.
void
rary_reserve(VALUE ary, size_t newlen)
{
rb_ary_t *rary = RARY(ary);
if (rary->beg + newlen > rary->cap) {
if (rary->beg > 0) {
if (rary->beg > newlen) {
newlen = 0;
}
else {
newlen -= rary->beg;
}
GC_MEMMOVE(&rary->elements[0],
&rary->elements[rary->beg],
sizeof(VALUE) * rary->len);
rary->beg = 0;
}
if (newlen > rary->cap) {
if (rary->cap > 0) {
newlen *= 2;
}
if (rary->elements == NULL) {
GC_WB(&rary->elements, xmalloc_ptrs(sizeof(VALUE) * newlen));
}
else {
VALUE *new_elements = xrealloc(rary->elements,
sizeof(VALUE) * newlen);
if (new_elements != rary->elements) {
GC_WB(&rary->elements, new_elements);
}
}
rary->cap = newlen;
}
}
}
static VALUE
rary_erase(VALUE ary, size_t idx, size_t len)
{
assert(idx + len <= RARY(ary)->len);
VALUE item = rary_elt(ary, idx);
if (idx == 0) {
for (size_t i = 0; i < len; i++) {
rary_elt_set(ary, i, Qnil);
}
if (len < RARY(ary)->len) {
RARY(ary)->beg += len;
}
else {
RARY(ary)->beg = 0;
}
}
else {
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + idx],
&RARY(ary)->elements[RARY(ary)->beg + idx + len],
sizeof(VALUE) * (RARY(ary)->len - idx - len));
for (size_t i = 0; i < len; i++) {
rary_elt_set(ary, RARY(ary)->len - i - 1, Qnil);
}
}
RARY(ary)->len -= len;
return item;
}
static void
rary_resize(VALUE ary, size_t newlen)
{
if (newlen > RARY(ary)->cap) {
rary_reserve(ary, newlen);
}
for (size_t i = RARY(ary)->len; i < newlen; i++) {
rary_elt_set(ary, i, Qnil);
}
RARY(ary)->len = newlen;
}
static void
rary_concat(VALUE ary, VALUE other, size_t beg, size_t len)
{
rary_reserve(ary, RARY(ary)->len + len);
if (IS_RARY(other)) {
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + RARY(ary)->len],
&RARY(other)->elements[RARY(other)->beg + beg],
sizeof(VALUE) * len);
}
else {
for (size_t i = 0; i < len; i++) {
rary_elt_set(ary, i + RARY(ary)->len,
rb_ary_elt(other, beg + i));
}
}
RARY(ary)->len += len;
}
static void
rary_remove_all(rb_ary_t *ary)
{
memset(ary->elements, 0, sizeof(VALUE) * ary->len);
ary->len = 0;
}
static VALUE
rb_equal_fast(VALUE x, VALUE y)
{
if (x == y) {
return Qtrue;
}
if (SYMBOL_P(x)) {
return x == y ? Qtrue : Qfalse;
}
return rb_equal(x, y);
}
void
rb_mem_clear(register VALUE *mem, register long size)
{
while (size--) {
*mem++ = Qnil;
}
}
static inline VALUE
rary_alloc(VALUE klass, SEL sel)
{
assert(klass != 0);
assert(rb_klass_is_rary(klass));
NEWOBJ(ary, rb_ary_t);
ary->basic.flags = 0;
ary->basic.klass = klass;
ary->beg = ary->len = ary->cap = 0;
ary->elements = NULL;
return (VALUE)ary;
}
static inline void
assert_ary_len(const long len)
{
if (len < 0) {
rb_raise(rb_eArgError, "negative array size (or size too big)");
}
if ((unsigned long)len > ARY_MAX_SIZE) {
rb_raise(rb_eArgError, "array size too big");
}
}
VALUE
rb_ary_new2(long len)
{
assert_ary_len(len);
VALUE ary;
if (rb_cRubyArray != 0) {
ary = rary_alloc(rb_cRubyArray, 0);
rary_reserve(ary, len);
}
else {
// RubyArray does not exist yet... fallback on an CFArray.
ary = (VALUE)CFArrayCreateMutable(NULL, 0, &kCFTypeArrayCallBacks);
CFMakeCollectable((void *)ary);
}
return ary;
}
VALUE
rb_ary_new(void)
{
return rb_ary_new2(ARY_DEFAULT_SIZE);
}
VALUE
rb_ary_new3(long n, ...)
{
VALUE ary = rb_ary_new2(n);
if (n > 0) {
va_list ar;
va_start(ar, n);
rary_reserve(ary, n);
for (long i = 0; i < n; i++) {
rary_push(ary, va_arg(ar, VALUE));
}
va_end(ar);
}
return ary;
}
VALUE
rb_ary_new4(long n, const VALUE *elts)
{
VALUE ary = rb_ary_new2(n);
if (n > 0 && elts != NULL) {
GC_MEMMOVE(rary_ptr(ary),
elts,
sizeof(VALUE) * n);
RARY(ary)->len = n;
}
return ary;
}
VALUE
rb_assoc_new(VALUE car, VALUE cdr)
{
VALUE elems[] = { car, cdr };
return rb_ary_new4(2, elems);
}
VALUE
rb_check_array_type(VALUE ary)
{
return rb_check_convert_type(ary, T_ARRAY, "Array", "to_ary");
}
/*
* call-seq:
* Array.try_convert(obj) -> array or nil
*
* Try to convert <i>obj</i> into an array, using to_ary method.
* Returns converted array or nil if <i>obj</i> cannot be converted
* for any reason. This method is to check if an argument is an
* array.
*
* Array.try_convert([1]) # => [1]
* Array.try_convert("1") # => nil
*
* if tmp = Array.try_convert(arg)
* # the argument is an array
* elsif tmp = String.try_convert(arg)
* # the argument is a string
* end
*
*/
static VALUE
rary_s_try_convert(VALUE dummy, SEL sel, VALUE ary)
{
return rb_check_array_type(ary);
}
/*
* call-seq:
* Array.new(size=0, obj=nil)
* Array.new(array)
* Array.new(size) {|index| block }
*
* Returns a new array. In the first form, the new array is
* empty. In the second it is created with _size_ copies of _obj_
* (that is, _size_ references to the same
* _obj_). The third form creates a copy of the array
* passed as a parameter (the array is generated by calling
* to_ary on the parameter). In the last form, an array
* of the given size is created. Each element in this array is
* calculated by passing the element's index to the given block and
* storing the return value.
*
* Array.new
* Array.new(2)
* Array.new(5, "A")
*
* # only one copy of the object is created
* a = Array.new(2, Hash.new)
* a[0]['cat'] = 'feline'
* a
* a[1]['cat'] = 'Felix'
* a
*
* # here multiple copies are created
* a = Array.new(2) { Hash.new }
* a[0]['cat'] = 'feline'
* a
*
* squares = Array.new(5) {|i| i*i}
* squares
*
* copy = Array.new(squares)
*/
static VALUE rary_replace(VALUE rcv, SEL sel, VALUE other);
static VALUE
rary_initialize(VALUE ary, SEL sel, int argc, VALUE *argv)
{
rary_modify(ary);
if (argc == 0) {
if (rb_block_given_p()) {
rb_warning("given block not used");
}
rary_remove_all(RARY(ary));
return ary;
}
VALUE size, val;
rb_scan_args(argc, argv, "02", &size, &val);
if (argc == 1 && !FIXNUM_P(size)) {
val = rb_check_array_type(size);
if (!NIL_P(val)) {
rary_replace(ary, 0, val);
return ary;
}
}
const long len = NUM2LONG(size);
assert_ary_len(len);
rary_resize(ary, len);
if (rb_block_given_p()) {
if (argc == 2) {
rb_warn("block supersedes default value argument");
}
rary_remove_all(RARY(ary));
for (long i = 0; i < len; i++) {
VALUE v = rb_yield(LONG2NUM(i));
if (BROKEN_VALUE() != Qundef) {
return ary;
}
rary_push(ary, v);
}
}
else {
for (long i = 0; i < len; i++) {
rary_store(ary, i, val);
}
}
return ary;
}
/*
* Returns a new array populated with the given objects.
*
* Array.[]( 1, 'a', /^A/ )
* Array[ 1, 'a', /^A/ ]
* [ 1, 'a', /^A/ ]
*/
static VALUE
rary_s_create(VALUE klass, SEL sel, int argc, VALUE *argv)
{
VALUE ary = rary_alloc(klass, 0);
if (argc < 0) {
rb_raise(rb_eArgError, "negative array size");
}
rary_reserve(ary, argc);
for (int i = 0; i < argc; i++) {
rary_push(ary, argv[i]);
}
return ary;
}
void
rary_insert(VALUE ary, long idx, VALUE val)
{
if (idx < 0) {
idx += RARY(ary)->len;
if (idx < 0) {
rb_raise(rb_eIndexError, "index %ld out of array",
idx - RARY(ary)->len);
}
}
if (idx > RARY(ary)->len) {
rary_resize(ary, idx + 1);
rary_store(ary, idx, val);
}
else if (idx < RARY(ary)->len) {
rary_reserve(ary, RARY(ary)->len + 1);
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + idx + 1],
&RARY(ary)->elements[RARY(ary)->beg + idx],
sizeof(VALUE) * (RARY(ary)->len - idx));
rary_elt_set(ary, idx, val);
RARY(ary)->len++;
}
else {
rary_push(ary, val);
}
}
static VALUE
ary_shared_first(int argc, VALUE *argv, VALUE ary, bool last, bool remove)
{
VALUE nv;
rb_scan_args(argc, argv, "1", &nv);
long n = NUM2LONG(nv);
const long ary_len = RARY(ary)->len;
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;
}
VALUE result = rb_ary_new();
rary_reserve(result, n);
GC_MEMMOVE(rary_ptr(result),
&RARY(ary)->elements[RARY(ary)->beg + offset],
sizeof(VALUE) * n);
RARY(result)->len = n;
if (remove) {
for (long i = 0; i < n; i++) {
rary_erase(ary, offset, 1);
}
}
return result;
}
/*
* call-seq:
* array << obj -> array
*
* Append---Pushes the given object on to the end of this array. This
* expression returns the array itself, so several appends
* may be chained together.
*
* [ 1, 2 ] << "c" << "d" << [ 3, 4 ]
* #=> [ 1, 2, "c", "d", [ 3, 4 ] ]
*
*/
VALUE
rary_push_m(VALUE ary, SEL sel, VALUE item)
{
rary_modify(ary);
rary_push(ary, item);
return ary;
}
/*
* call-seq:
* array.push(obj, ... ) -> array
*
* Append---Pushes the given object(s) on to the end of this array. This
* expression returns the array itself, so several appends
* may be chained together.
*
* a = [ "a", "b", "c" ]
* a.push("d", "e", "f")
* #=> ["a", "b", "c", "d", "e", "f"]
*/
static VALUE
rary_push_m2(VALUE ary, SEL sel, int argc, VALUE *argv)
{
rary_modify(ary);
while (argc-- > 0) {
rary_push(ary, *argv++);
}
return ary;
}
/*
* call-seq:
* array.pop -> obj or nil
* array.pop(n) -> array
*
* Removes the last element from <i>self</i> and returns it, or
* <code>nil</code> if the array is empty.
*
* If a number _n_ is given, returns an array of the last n elements
* (or less) just like <code>array.slice!(-n, n)</code> does.
*
* a = [ "a", "b", "c", "d" ]
* a.pop #=> "d"
* a.pop(2) #=> ["b", "c"]
* a #=> ["a"]
*/
VALUE
rary_pop(VALUE ary, SEL sel, int argc, VALUE *argv)
{
rary_modify(ary);
if (argc == 0) {
const long n = RARY(ary)->len;
if (n == 0) {
return Qnil;
}
return rary_erase(ary, n - 1, 1);
}
return ary_shared_first(argc, argv, ary, true, true);
}
/*
* call-seq:
* array.shift -> obj or nil
* array.shift(n) -> array
*
* Returns the first element of <i>self</i> and removes it (shifting all
* other elements down by one). Returns <code>nil</code> if the array
* is empty.
*
* If a number _n_ is given, returns an array of the first n elements
* (or less) just like <code>array.slice!(0, n)</code> does.
*
* args = [ "-m", "-q", "filename" ]
* args.shift #=> "-m"
* args #=> ["-q", "filename"]
*
* args = [ "-m", "-q", "filename" ]
* args.shift(2) #=> ["-m", "-q"]
* args #=> ["filename"]
*/
VALUE
rary_shift(VALUE ary, SEL sel, int argc, VALUE *argv)
{
rary_modify(ary);
if (argc == 0) {
if (RARY(ary)->len == 0) {
return Qnil;
}
return rary_erase(ary, 0, 1);
}
return ary_shared_first(argc, argv, ary, false, true);
}
/*
* call-seq:
* array.unshift(obj, ...) -> array
*
* Prepends objects to the front of <i>array</i>.
* other elements up one.
*
* a = [ "b", "c", "d" ]
* a.unshift("a") #=> ["a", "b", "c", "d"]
* a.unshift(1, 2) #=> [ 1, 2, "a", "b", "c", "d"]
*/
VALUE
rary_unshift(VALUE ary, SEL sel, int argc, VALUE *argv)
{
rary_modify(ary);
for (int i = argc - 1; i >= 0; i--) {
rary_insert(ary, 0, argv[i]);
}
return ary;
}
/*
* call-seq:
* array[index] -> obj or nil
* array[start, length] -> an_array or nil
* array[range] -> an_array or nil
* array.slice(index) -> obj or nil
* array.slice(start, length) -> an_array or nil
* array.slice(range) -> an_array or nil
*
* Element Reference---Returns the element at _index_,
* or returns a subarray starting at _start_ and
* continuing for _length_ elements, or returns a subarray
* specified by _range_.
* Negative indices count backward from the end of the
* array (-1 is the last element). Returns nil if the index
* (or starting index) are out of range.
*
* a = [ "a", "b", "c", "d", "e" ]
* a[2] + a[0] + a[1] #=> "cab"
* a[6] #=> nil
* a[1, 2] #=> [ "b", "c" ]
* a[1..3] #=> [ "b", "c", "d" ]
* a[4..7] #=> [ "e" ]
* a[6..10] #=> nil
* a[-3, 3] #=> [ "c", "d", "e" ]
* # special cases
* a[5] #=> nil
* a[5, 1] #=> []
* a[5..10] #=> []
*
*/
VALUE
rary_subseq(VALUE ary, long beg, long len)
{
if (beg < 0 || len < 0) {
return Qnil;
}
const long n = RARY(ary)->len;
if (beg > n) {
return Qnil;
}
if (n < len || n < beg + len) {
len = n - beg;
}
VALUE newary = rary_alloc(rb_obj_class(ary), 0);
if (len > 0) {
rary_concat(newary, ary, beg, len);
}
return newary;
}
VALUE
rary_aref(VALUE ary, SEL sel, int argc, VALUE *argv)
{
long beg, len;
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += RARRAY_LEN(ary);
}
return rary_subseq(ary, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", 0, 0);
}
VALUE arg = argv[0];
/* special case - speeding up */
if (FIXNUM_P(arg)) {
return rary_entry(ary, FIX2LONG(arg));
}
/* check if idx is Range */
switch (rb_range_beg_len(arg, &beg, &len, RARRAY_LEN(ary), 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return rary_subseq(ary, beg, len);
}
return rary_entry(ary, NUM2LONG(arg));
}
/*
* call-seq:
* array.at(index) -> obj or nil
*
* Returns the element at _index_. A
* negative index counts from the end of _self_. Returns +nil+
* if the index is out of range. See also <code>Array#[]</code>.
*
* a = [ "a", "b", "c", "d", "e" ]
* a.at(0) #=> "a"
* a.at(-1) #=> "e"
*/
static VALUE
rary_at(VALUE ary, SEL sel, VALUE pos)
{
return rary_entry(ary, NUM2LONG(pos));
}
/*
* call-seq:
* array.first -> obj or nil
* array.first(n) -> an_array
*
* Returns the first element, or the first +n+ elements, of the array.
* If the array is empty, the first form returns <code>nil</code>, and the
* second form returns an empty array.
*
* a = [ "q", "r", "s", "t" ]
* a.first #=> "q"
* a.first(2) #=> ["q", "r"]
*/
static VALUE
rary_first(VALUE ary, SEL sel, int argc, VALUE *argv)
{
if (argc == 0) {
if (RARY(ary)->len == 0) {
return Qnil;
}
return rary_elt(ary, 0);
}
return ary_shared_first(argc, argv, ary, false, false);
}
/*
* call-seq:
* array.last -> obj or nil
* array.last(n) -> an_array
*
* Returns the last element(s) of <i>self</i>. If the array is empty,
* the first form returns <code>nil</code>.
*
* a = [ "w", "x", "y", "z" ]
* a.last #=> "z"
* a.last(2) #=> ["y", "z"]
*/
VALUE
rary_last(VALUE ary, SEL sel, int argc, VALUE *argv)
{
if (argc == 0) {
const long n = RARY(ary)->len;
if (n == 0) {
return Qnil;
}
return rary_elt(ary, n - 1);
}
return ary_shared_first(argc, argv, ary, true, false);
}
/*
* call-seq:
* array.fetch(index) -> obj
* array.fetch(index, default ) -> obj
* array.fetch(index) {|index| block } -> obj
*
* Tries to return the element at position <i>index</i>. If the index
* lies outside the array, the first form throws an
* <code>IndexError</code> exception, the second form returns
* <i>default</i>, and the third form returns the value of invoking
* the block, passing in the index. Negative values of <i>index</i>
* count from the end of the array.
*
* a = [ 11, 22, 33, 44 ]
* a.fetch(1) #=> 22
* a.fetch(-1) #=> 44
* a.fetch(4, 'cat') #=> "cat"
* a.fetch(4) { |i| i*i } #=> 16
*/
static VALUE
rary_fetch(VALUE ary, 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");
}
long idx = NUM2LONG(pos);
if (idx < 0) {
idx += RARY(ary)->len;
}
if (idx < 0 || RARY(ary)->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 rary_elt(ary, idx);
}
/*
* call-seq:
* array.index(obj) -> int or nil
* array.index {|item| block} -> int or nil
*
* Returns the index of the first object in <i>self</i> such that is
* <code>==</code> to <i>obj</i>. If a block is given instead of an
* argument, returns first object for which <em>block</em> is true.
* Returns <code>nil</code> if no match is found.
*
* a = [ "a", "b", "c" ]
* a.index("b") #=> 1
* a.index("z") #=> nil
* a.index{|x|x=="b"} #=> 1
*
* This is an alias of <code>#find_index</code>.
*/
#define NOT_FOUND LONG_MAX
static size_t
rary_index_of_item(VALUE ary, size_t origin, VALUE item)
{
assert(RARY(ary)->len == 0 || origin < RARY(ary)->len);
for (size_t i = origin; i < RARY(ary)->len; i++) {
VALUE item2 = rary_elt(ary, i);
if (rb_equal_fast(item2, item) == Qtrue) {
return i;
}
}
return NOT_FOUND;
}
static VALUE
rary_index(VALUE ary, SEL sel, int argc, VALUE *argv)
{
VALUE val;
if (rb_scan_args(argc, argv, "01", &val) == 0) {
RETURN_ENUMERATOR(ary, 0, 0);
for (long i = 0; i < RARY(ary)->len; i++) {
VALUE elem = rary_elt(ary, i);
VALUE test = rb_yield(elem);
RETURN_IF_BROKEN();
if (RTEST(test)) {
return LONG2NUM(i);
}
}
}
else if (RARY(ary)->len > 0) {
size_t pos = rary_index_of_item(ary, 0, val);
if (pos != NOT_FOUND) {
return LONG2NUM(pos);
}
}
return Qnil;
}
/*
* call-seq:
* array.rindex(obj) -> int or nil
*
* Returns the index of the last object in <i>array</i>
* <code>==</code> to <i>obj</i>. If a block is given instead of an
* argument, returns first object for which <em>block</em> is
* true. Returns <code>nil</code> if no match is found.
*
* a = [ "a", "b", "b", "b", "c" ]
* a.rindex("b") #=> 3
* a.rindex("z") #=> nil
* a.rindex{|x|x=="b"} #=> 3
*/
static size_t
rary_rindex_of_item(VALUE ary, long origin, VALUE item)
{
assert(RARY(ary)->len == 0 || origin < RARY(ary)->len);
for (long i = origin; i >= 0; i--) {
VALUE item2 = rary_elt(ary, i);
if (rb_equal_fast(item, item2) == Qtrue) {
return i;
}
}
return NOT_FOUND;
}
static VALUE
rary_rindex(VALUE ary, SEL sel, int argc, VALUE *argv)
{
if (argc == 0) {
RETURN_ENUMERATOR(ary, 0, 0);
long i = RARY(ary)->len;
while (i-- > 0) {
VALUE elem = rary_elt(ary, i);
VALUE test = rb_yield(elem);
RETURN_IF_BROKEN();
if (RTEST(test)) {
return LONG2NUM(i);
}
if (i > RARY(ary)->len) {
i = RARY(ary)->len;
}
}
}
else {
VALUE val;
rb_scan_args(argc, argv, "01", &val);
if (RARY(ary)->len > 0) {
size_t pos = rary_rindex_of_item(ary, RARY(ary)->len - 1, val);
if (pos != NOT_FOUND) {
return LONG2NUM(pos);
}
}
}
return Qnil;
}
VALUE
rb_ary_to_ary(VALUE obj)
{
if (TYPE(obj) == T_ARRAY) {
return obj;
}
if (rb_respond_to(obj, rb_intern("to_ary"))) {
return to_ary(obj);
}
return rb_ary_new4(1, &obj);
}
static void
rary_splice(VALUE ary, long beg, long len, VALUE rpl)
{
const long n = RARRAY_LEN(ary);
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;
if (rpl == Qundef) {
rlen = 0;
}
else {
rpl = rb_ary_to_ary(rpl);
rlen = RARRAY_LEN(rpl);
}
rary_modify(ary);
if (ary == rpl) {
rpl = rb_ary_dup(rpl);
}
if (beg >= n) {
if (beg > ARY_MAX_SIZE - rlen) {
rb_raise(rb_eIndexError, "index %ld too big", beg);
}
for (long i = n; i < beg; i++) {
rary_push(ary, Qnil);
}
if (rlen > 0) {
rary_concat(ary, rpl, 0, rlen);
}
}
else if (len == rlen) {
if (rlen > 0 && IS_RARY(rpl)) {
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + beg],
&RARY(rpl)->elements[RARY(rpl)->beg],
sizeof(VALUE) * len);
}
else {
for (long i = 0; i < len; i++) {
rary_elt_set(ary, beg + i, rb_ary_elt(rpl, i));
}
}
}
else {
if (rlen > 0 && IS_RARY(rpl)) {
long newlen = RARY(ary)->len + rlen - len;
rary_reserve(ary, newlen);
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + beg + rlen],
&RARY(ary)->elements[RARY(ary)->beg + beg + len],
sizeof(VALUE) * (RARY(ary)->len - (beg + len)));
GC_MEMMOVE(&RARY(ary)->elements[RARY(ary)->beg + beg],
rary_ptr(rpl),
sizeof(VALUE) * rlen);
RARY(ary)->len = newlen;
}
else {
rary_erase(ary, beg, len);
for (long i = 0; i < rlen; i++) {
rary_insert(ary, beg + i, rb_ary_elt(rpl, i));
}
}
}
}
/*
* call-seq:
* array[index] = obj -> obj
* array[start, length] = obj or an_array or nil -> obj or an_array or nil
* array[range] = obj or an_array or nil -> obj or an_array or nil
*
* Element Assignment---Sets the element at _index_,
* or replaces a subarray starting at _start_ and
* continuing for _length_ elements, or replaces a subarray
* specified by _range_. If indices are greater than
* the current capacity of the array, the array grows
* automatically. A negative indices will count backward
* from the end of the array. Inserts elements if _length_ is
* zero. An +IndexError+ is raised if a negative index points
* past the beginning of the array. See also
* <code>Array#push</code>, and <code>Array#unshift</code>.
*
* a = Array.new
* a[4] = "4"; #=> [nil, nil, nil, nil, "4"]
* a[0, 3] = [ 'a', 'b', 'c' ] #=> ["a", "b", "c", nil, "4"]
* a[1..2] = [ 1, 2 ] #=> ["a", 1, 2, nil, "4"]