Uh oh!
There was an error while loading. Please reload this page.
forked from ruby/ruby
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhash.c
More file actions
Latest commit
3977 lines (3544 loc) · 92.2 KB
/
Copy pathhash.c
File metadata and controls
3977 lines (3544 loc) · 92.2 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
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
/**********************************************************************
hash.c -
$Author$
created at: Mon Nov 22 18:51:18 JST 1993
Copyright (C) 1993-2007 Yukihiro Matsumoto
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
Copyright (C) 2000 Information-technology Promotion Agency, Japan
**********************************************************************/
#include"ruby/ruby.h"
#include"ruby/st.h"
#include"ruby/util.h"
#include"ruby/encoding.h"
#include"internal.h"
#include<errno.h>
#include"probes.h"
#include"id.h"
#ifdef__APPLE__
# ifdefHAVE_CRT_EXTERNS_H
# include<crt_externs.h>
# else
# include"missing/crt_externs.h"
# endif
#endif
#defineHAS_EXTRA_STATES(hash, klass) ( \
((klass = has_extra_methods(rb_obj_class(hash))) != 0) || \
FL_TEST((hash), FL_EXIVAR|FL_TAINT|HASH_PROC_DEFAULT) || \
!NIL_P(RHASH_IFNONE(hash)))
staticVALUE
has_extra_methods(VALUEklass)
{
constVALUEbase=rb_cHash;
VALUEc=klass;
while (c!=base) {
st_table*mtbl=RCLASS_M_TBL(c);
if (mtbl&&mtbl->num_entries) returnklass;
c=RCLASS_SUPER(c);
}
return0;
}
staticVALUErb_hash_s_try_convert(VALUE, VALUE);
/*
* Hash WB strategy:
* 1. Check mutate st_* functions
* * st_insert()
* * st_insert2()
* * st_update()
* * st_add_direct()
* 2. Insert WBs
*/
VALUE
rb_hash_freeze(VALUEhash)
{
returnrb_obj_freeze(hash);
}
VALUErb_cHash;
staticVALUEenvtbl;
staticIDid_hash, id_yield, id_default, id_flatten_bang;
VALUE
rb_hash_ifnone(VALUEh)
{
returnRHASH_IFNONE(h);
}
VALUE
rb_hash_set_ifnone(VALUEhash, VALUEifnone)
{
RB_OBJ_WRITE(hash, (&RHASH(hash)->ifnone), ifnone);
returnhash;
}
staticint
rb_any_cmp(VALUEa, VALUEb)
{
if (a==b) return0;
if (FIXNUM_P(a) &&FIXNUM_P(b)) {
returna!=b;
}
if (RB_TYPE_P(a, T_STRING) &&RBASIC(a)->klass==rb_cString&&
RB_TYPE_P(b, T_STRING) &&RBASIC(b)->klass==rb_cString) {
returnrb_str_hash_cmp(a, b);
}
if (a==Qundef||b==Qundef) return-1;
if (SYMBOL_P(a) &&SYMBOL_P(b)) {
returna!=b;
}
return !rb_eql(a, b);
}
staticVALUE
hash_recursive(VALUEobj, VALUEarg, intrecurse)
{
if (recurse) returnINT2FIX(0);
returnrb_funcallv(obj, id_hash, 0, 0);
}
VALUE
rb_hash(VALUEobj)
{
VALUEhval=rb_exec_recursive_outer(hash_recursive, obj, 0);
while (!FIXNUM_P(hval)) {
if (RB_TYPE_P(hval, T_BIGNUM)) {
intsign;
unsigned longul;
sign=rb_integer_pack(hval, &ul, 1, sizeof(ul), 0,
INTEGER_PACK_NATIVE_BYTE_ORDER);
ul &= (1UL << (sizeof(long)*CHAR_BIT-1)) -1;
if (sign<0)
returnLONG2FIX(-(long)ul);
returnLONG2FIX((long)ul);
}
hval=rb_to_int(hval);
}
returnhval;
}
longrb_objid_hash(st_index_tindex);
staticst_index_t
rb_any_hash(VALUEa)
{
VALUEhval;
st_index_thnum;
if (SPECIAL_CONST_P(a)) {
if (a==Qundef) return0;
if (SYMBOL_P(a)) a >>= (RUBY_SPECIAL_SHIFT+ID_SCOPE_SHIFT);
hnum=rb_objid_hash((st_index_t)a);
}
elseif (BUILTIN_TYPE(a) ==T_STRING) {
hnum=rb_str_hash(a);
}
else {
hval=rb_hash(a);
hnum=FIX2LONG(hval);
}
hnum <<= 1;
return (st_index_t)RSHIFT(hnum, 1);
}
long
rb_objid_hash(st_index_tindex)
{
st_index_thnum=rb_hash_start(index);
hnum=rb_hash_uint(hnum, (st_index_t)rb_any_hash);
hnum=rb_hash_end(hnum);
returnhnum;
}
int
rb_hash_iter_lev(VALUEh)
{
returnRHASH_ITER_LEV(h);
}
staticconststructst_hash_typeobjhash= {
rb_any_cmp,
rb_any_hash,
};
externconststructst_hash_typest_hashtype_num;
#defineidenthash st_hashtype_num
typedefintst_foreach_func(st_data_t, st_data_t, st_data_t);
structforeach_safe_arg {
st_table*tbl;
st_foreach_func*func;
st_data_targ;
};
staticint
foreach_safe_i(st_data_tkey, st_data_tvalue, st_data_targs, interror)
{
intstatus;
structforeach_safe_arg*arg= (void*)args;
if (error) returnST_STOP;
status= (*arg->func)(key, value, arg->arg);
if (status==ST_CONTINUE) {
returnST_CHECK;
}
returnstatus;
}
void
st_foreach_safe(st_table*table, int (*func)(ANYARGS), st_data_ta)
{
structforeach_safe_argarg;
arg.tbl=table;
arg.func= (st_foreach_func*)func;
arg.arg=a;
if (st_foreach_check(table, foreach_safe_i, (st_data_t)&arg, 0)) {
rb_raise(rb_eRuntimeError, "hash modified during iteration");
}
}
typedefintrb_foreach_func(VALUE, VALUE, VALUE);
structhash_foreach_arg {
VALUEhash;
rb_foreach_func*func;
VALUEarg;
};
staticint
hash_foreach_iter(st_data_tkey, st_data_tvalue, st_data_targp, interror)
{
structhash_foreach_arg*arg= (structhash_foreach_arg*)argp;
intstatus;
st_table*tbl;
if (error) returnST_STOP;
tbl=RHASH(arg->hash)->ntbl;
status= (*arg->func)((VALUE)key, (VALUE)value, arg->arg);
if (RHASH(arg->hash)->ntbl!=tbl) {
rb_raise(rb_eRuntimeError, "rehash occurred during iteration");
}
switch (status) {
caseST_DELETE:
FL_SET(arg->hash, HASH_DELETED);
returnST_DELETE;
caseST_CONTINUE:
break;
caseST_STOP:
returnST_STOP;
}
returnST_CHECK;
}
staticVALUE
hash_foreach_ensure_rollback(VALUEhash)
{
RHASH_ITER_LEV(hash)++;
return0;
}
staticVALUE
hash_foreach_ensure(VALUEhash)
{
if (--RHASH_ITER_LEV(hash) ==0) {
if (FL_TEST(hash, HASH_DELETED)) {
st_cleanup_safe(RHASH(hash)->ntbl, (st_data_t)Qundef);
FL_UNSET(hash, HASH_DELETED);
}
}
return0;
}
staticVALUE
hash_foreach_call(VALUEarg)
{
VALUEhash= ((structhash_foreach_arg*)arg)->hash;
if (st_foreach_check(RHASH(hash)->ntbl, hash_foreach_iter, (st_data_t)arg, (st_data_t)Qundef)) {
rb_raise(rb_eRuntimeError, "hash modified during iteration");
}
returnQnil;
}
void
rb_hash_foreach(VALUEhash, int (*func)(ANYARGS), VALUEfarg)
{
structhash_foreach_argarg;
if (!RHASH(hash)->ntbl)
return;
RHASH_ITER_LEV(hash)++;
arg.hash=hash;
arg.func= (rb_foreach_func*)func;
arg.arg=farg;
rb_ensure(hash_foreach_call, (VALUE)&arg, hash_foreach_ensure, hash);
}
staticVALUE
hash_alloc(VALUEklass)
{
NEWOBJ_OF(hash, structRHash, klass, T_HASH | (RGENGC_WB_PROTECTED_HASH ? FL_WB_PROTECTED : 0));
RHASH_SET_IFNONE((VALUE)hash, Qnil);
return (VALUE)hash;
}
staticVALUE
empty_hash_alloc(VALUEklass)
{
if (RUBY_DTRACE_HASH_CREATE_ENABLED()) {
RUBY_DTRACE_HASH_CREATE(0, rb_sourcefile(), rb_sourceline());
}
returnhash_alloc(klass);
}
VALUE
rb_hash_new(void)
{
returnhash_alloc(rb_cHash);
}
staticinlineVALUE
rb_hash_dup_empty(VALUEhash)
{
NEWOBJ_OF(ret, structRHash,
rb_obj_class(hash),
(RBASIC(hash)->flags)&(T_MASK|FL_EXIVAR|FL_TAINT));
if (FL_TEST((hash), FL_EXIVAR))
rb_copy_generic_ivar((VALUE)(ret),(VALUE)(hash));
if (FL_TEST(hash, HASH_PROC_DEFAULT)) {
FL_SET(ret, HASH_PROC_DEFAULT);
}
RHASH_SET_IFNONE(ret, RHASH_IFNONE(hash));
return (VALUE)ret;
}
VALUE
rb_hash_dup(VALUEhash)
{
VALUEret=rb_hash_dup_empty(hash);
if (!RHASH_EMPTY_P(hash))
RHASH(ret)->ntbl=st_copy(RHASH(hash)->ntbl);
returnret;
}
staticvoid
rb_hash_modify_check(VALUEhash)
{
rb_check_frozen(hash);
}
staticstructst_table*
hash_tbl(VALUEhash)
{
if (!RHASH(hash)->ntbl) {
RHASH(hash)->ntbl=st_init_table(&objhash);
}
returnRHASH(hash)->ntbl;
}
structst_table*
rb_hash_tbl(VALUEhash)
{
OBJ_WB_UNPROTECT(hash);
returnhash_tbl(hash);
}
structst_table*
rb_hash_tbl_raw(VALUEhash)
{
returnhash_tbl(hash);
}
staticvoid
rb_hash_modify(VALUEhash)
{
rb_hash_modify_check(hash);
hash_tbl(hash);
}
NORETURN(staticvoidno_new_key(void));
staticvoid
no_new_key(void)
{
rb_raise(rb_eRuntimeError, "can't add a new key into hash during iteration");
}
structupdate_callback_arg {
VALUEhash;
st_data_targ;
};
#defineNOINSERT_UPDATE_CALLBACK(func) \
static int \
func##_noinsert(st_data_t *key, st_data_t *val, st_data_t arg, int existing) \
{ \
if (!existing) no_new_key(); \
return func(key, val, (struct update_arg *)arg, existing); \
} \
\
static int \
func##_insert(st_data_t *key, st_data_t *val, st_data_t arg, int existing) \
{ \
return func(key, val, (struct update_arg *)arg, existing); \
}
structupdate_arg {
st_data_targ;
VALUEhash;
VALUEnew_key;
VALUEold_key;
VALUEnew_value;
VALUEold_value;
};
staticint
tbl_update(VALUEhash, VALUEkey, int (*func)(st_data_t*key, st_data_t*val, st_data_targ, intexisting), st_data_toptional_arg)
{
structupdate_argarg;
intresult;
arg.arg=optional_arg;
arg.hash=hash;
arg.new_key=0;
arg.old_key=Qundef;
arg.new_value=0;
arg.old_value=Qundef;
result=st_update(RHASH(hash)->ntbl, (st_data_t)key, func, (st_data_t)&arg);
/* write barrier */
if (arg.new_key) RB_OBJ_WRITTEN(hash, arg.old_key, arg.new_key);
if (arg.new_value) RB_OBJ_WRITTEN(hash, arg.old_value, arg.new_value);
returnresult;
}
#defineUPDATE_CALLBACK(iter_lev, func) ((iter_lev) > 0 ? func##_noinsert : func##_insert)
#defineRHASH_UPDATE_ITER(h, iter_lev, key, func, a) do { \
tbl_update((h), (key), UPDATE_CALLBACK((iter_lev), func), (st_data_t)(a)); \
} while (0)
#defineRHASH_UPDATE(hash, key, func, arg) \
RHASH_UPDATE_ITER(hash, RHASH_ITER_LEV(hash), key, func, arg)
staticvoid
default_proc_arity_check(VALUEproc)
{
intn=rb_proc_arity(proc);
if (rb_proc_lambda_p(proc) &&n!=2&& (n >= 0||n<-3)) {
if (n<0) n=-n-1;
rb_raise(rb_eTypeError, "default_proc takes two arguments (2 for %d)", n);
}
}
/*
* call-seq:
* Hash.new -> new_hash
* Hash.new(obj) -> new_hash
* Hash.new {|hash, key| block } -> new_hash
*
* Returns a new, empty hash. If this hash is subsequently accessed by
* a key that doesn't correspond to a hash entry, the value returned
* depends on the style of <code>new</code> used to create the hash. In
* the first form, the access returns <code>nil</code>. If
* <i>obj</i> is specified, this single object will be used for
* all <em>default values</em>. If a block is specified, it will be
* called with the hash object and the key, and should return the
* default value. It is the block's responsibility to store the value
* in the hash if required.
*
* h = Hash.new("Go Fish")
* h["a"] = 100
* h["b"] = 200
* h["a"] #=> 100
* h["c"] #=> "Go Fish"
* # The following alters the single default object
* h["c"].upcase! #=> "GO FISH"
* h["d"] #=> "GO FISH"
* h.keys #=> ["a", "b"]
*
* # While this creates a new default object each time
* h = Hash.new { |hash, key| hash[key] = "Go Fish: #{key}" }
* h["c"] #=> "Go Fish: c"
* h["c"].upcase! #=> "GO FISH: C"
* h["d"] #=> "Go Fish: d"
* h.keys #=> ["c", "d"]
*
*/
staticVALUE
rb_hash_initialize(intargc, VALUE*argv, VALUEhash)
{
VALUEifnone;
rb_hash_modify(hash);
if (rb_block_given_p()) {
rb_check_arity(argc, 0, 0);
ifnone=rb_block_proc();
default_proc_arity_check(ifnone);
RHASH_SET_IFNONE(hash, ifnone);
FL_SET(hash, HASH_PROC_DEFAULT);
}
else {
rb_check_arity(argc, 0, 1);
ifnone=argc==0 ? Qnil : argv[0];
RHASH_SET_IFNONE(hash, ifnone);
}
returnhash;
}
/*
* call-seq:
* Hash[ key, value, ... ] -> new_hash
* Hash[ [ [key, value], ... ] ] -> new_hash
* Hash[ object ] -> new_hash
*
* Creates a new hash populated with the given objects.
*
* Similar to the literal <code>{ _key_ => _value_, ... }</code>. In the first
* form, keys and values occur in pairs, so there must be an even number of
* arguments.
*
* The second and third form take a single argument which is either an array
* of key-value pairs or an object convertible to a hash.
*
* Hash["a", 100, "b", 200] #=> {"a"=>100, "b"=>200}
* Hash[ [ ["a", 100], ["b", 200] ] ] #=> {"a"=>100, "b"=>200}
* Hash["a" => 100, "b" => 200] #=> {"a"=>100, "b"=>200}
*/
staticVALUE
rb_hash_s_create(intargc, VALUE*argv, VALUEklass)
{
VALUEhash, tmp;
inti;
if (argc==1) {
tmp=rb_hash_s_try_convert(Qnil, argv[0]);
if (!NIL_P(tmp)) {
hash=hash_alloc(klass);
if (RHASH(tmp)->ntbl) {
RHASH(hash)->ntbl=st_copy(RHASH(tmp)->ntbl);
}
returnhash;
}
tmp=rb_check_array_type(argv[0]);
if (!NIL_P(tmp)) {
longi;
hash=hash_alloc(klass);
for (i=0; i<RARRAY_LEN(tmp); ++i) {
VALUEe=RARRAY_AREF(tmp, i);
VALUEv=rb_check_array_type(e);
VALUEkey, val=Qnil;
if (NIL_P(v)) {
#if0/* refix in the next release */
rb_raise(rb_eArgError, "wrong element type %s at %ld (expected array)",
rb_builtin_class_name(e), i);
#else
rb_warn("wrong element type %s at %ld (expected array)",
rb_builtin_class_name(e), i);
rb_warn("ignoring wrong elements is deprecated, remove them explicitly");
rb_warn("this causes ArgumentError in the next release");
continue;
#endif
}
switch (RARRAY_LEN(v)) {
default:
rb_raise(rb_eArgError, "invalid number of elements (%ld for 1..2)",
RARRAY_LEN(v));
case2:
val=RARRAY_AREF(v, 1);
case1:
key=RARRAY_AREF(v, 0);
rb_hash_aset(hash, key, val);
}
}
returnhash;
}
}
if (argc % 2!=0) {
rb_raise(rb_eArgError, "odd number of arguments for Hash");
}
hash=hash_alloc(klass);
for (i=0; i<argc; i+=2) {
rb_hash_aset(hash, argv[i], argv[i+1]);
}
returnhash;
}
staticVALUE
to_hash(VALUEhash)
{
returnrb_convert_type(hash, T_HASH, "Hash", "to_hash");
}
VALUE
rb_check_hash_type(VALUEhash)
{
returnrb_check_convert_type(hash, T_HASH, "Hash", "to_hash");
}
/*
* call-seq:
* Hash.try_convert(obj) -> hash or nil
*
* Try to convert <i>obj</i> into a hash, using to_hash method.
* Returns converted hash or nil if <i>obj</i> cannot be converted
* for any reason.
*
* Hash.try_convert({1=>2}) # => {1=>2}
* Hash.try_convert("1=>2") # => nil
*/
staticVALUE
rb_hash_s_try_convert(VALUEdummy, VALUEhash)
{
returnrb_check_hash_type(hash);
}
structrehash_arg {
VALUEhash;
st_table*tbl;
};
staticint
rb_hash_rehash_i(VALUEkey, VALUEvalue, VALUEarg)
{
st_table*tbl= (st_table*)arg;
st_insert(tbl, (st_data_t)key, (st_data_t)value);
returnST_CONTINUE;
}
/*
* call-seq:
* hsh.rehash -> hsh
*
* Rebuilds the hash based on the current hash values for each key. If
* values of key objects have changed since they were inserted, this
* method will reindex <i>hsh</i>. If <code>Hash#rehash</code> is
* called while an iterator is traversing the hash, an
* <code>RuntimeError</code> will be raised in the iterator.
*
* a = [ "a", "b" ]
* c = [ "c", "d" ]
* h = { a => 100, c => 300 }
* h[a] #=> 100
* a[0] = "z"
* h[a] #=> nil
* h.rehash #=> {["z", "b"]=>100, ["c", "d"]=>300}
* h[a] #=> 100
*/
staticVALUE
rb_hash_rehash(VALUEhash)
{
VALUEtmp;
st_table*tbl;
if (RHASH_ITER_LEV(hash) >0) {
rb_raise(rb_eRuntimeError, "rehash during iteration");
}
rb_hash_modify_check(hash);
if (!RHASH(hash)->ntbl)
returnhash;
tmp=hash_alloc(0);
tbl=st_init_table_with_size(RHASH(hash)->ntbl->type, RHASH(hash)->ntbl->num_entries);
RHASH(tmp)->ntbl=tbl;
rb_hash_foreach(hash, rb_hash_rehash_i, (VALUE)tbl);
st_free_table(RHASH(hash)->ntbl);
RHASH(hash)->ntbl=tbl;
RHASH(tmp)->ntbl=0;
returnhash;
}
staticVALUE
hash_default_value(VALUEhash, VALUEkey)
{
if (rb_method_basic_definition_p(CLASS_OF(hash), id_default)) {
VALUEifnone=RHASH_IFNONE(hash);
if (!FL_TEST(hash, HASH_PROC_DEFAULT)) returnifnone;
if (key==Qundef) returnQnil;
returnrb_funcall(ifnone, id_yield, 2, hash, key);
}
else {
returnrb_funcall(hash, id_default, 1, key);
}
}
/*
* call-seq:
* hsh[key] -> value
*
* Element Reference---Retrieves the <i>value</i> object corresponding
* to the <i>key</i> object. If not found, returns the default value (see
* <code>Hash::new</code> for details).
*
* h = { "a" => 100, "b" => 200 }
* h["a"] #=> 100
* h["c"] #=> nil
*
*/
VALUE
rb_hash_aref(VALUEhash, VALUEkey)
{
st_data_tval;
if (!RHASH(hash)->ntbl|| !st_lookup(RHASH(hash)->ntbl, key, &val)) {
returnhash_default_value(hash, key);
}
return (VALUE)val;
}
VALUE
rb_hash_lookup2(VALUEhash, VALUEkey, VALUEdef)
{
st_data_tval;
if (!RHASH(hash)->ntbl|| !st_lookup(RHASH(hash)->ntbl, key, &val)) {
returndef; /* without Hash#default */
}
return (VALUE)val;
}
VALUE
rb_hash_lookup(VALUEhash, VALUEkey)
{
returnrb_hash_lookup2(hash, key, Qnil);
}
/*
* call-seq:
* hsh.fetch(key [, default] ) -> obj
* hsh.fetch(key) {| key | block } -> obj
*
* Returns a value from the hash for the given key. If the key can't be
* found, there are several options: With no other arguments, it will
* raise an <code>KeyError</code> exception; if <i>default</i> is
* given, then that will be returned; if the optional code block is
* specified, then that will be run and its result returned.
*
* h = { "a" => 100, "b" => 200 }
* h.fetch("a") #=> 100
* h.fetch("z", "go fish") #=> "go fish"
* h.fetch("z") { |el| "go fish, #{el}"} #=> "go fish, z"
*
* The following example shows that an exception is raised if the key
* is not found and a default value is not supplied.
*
* h = { "a" => 100, "b" => 200 }
* h.fetch("z")
*
* <em>produces:</em>
*
* prog.rb:2:in `fetch': key not found (KeyError)
* from prog.rb:2
*
*/
staticVALUE
rb_hash_fetch_m(intargc, VALUE*argv, VALUEhash)
{
VALUEkey;
st_data_tval;
longblock_given;
rb_check_arity(argc, 1, 2);
key=argv[0];
block_given=rb_block_given_p();
if (block_given&&argc==2) {
rb_warn("block supersedes default value argument");
}
if (!RHASH(hash)->ntbl|| !st_lookup(RHASH(hash)->ntbl, key, &val)) {
if (block_given) returnrb_yield(key);
if (argc==1) {
volatileVALUEdesc=rb_protect(rb_inspect, key, 0);
if (NIL_P(desc)) {
desc=rb_any_to_s(key);
}
desc=rb_str_ellipsize(desc, 65);
rb_raise(rb_eKeyError, "key not found: %"PRIsVALUE, desc);
}
returnargv[1];
}
return (VALUE)val;
}
VALUE
rb_hash_fetch(VALUEhash, VALUEkey)
{
returnrb_hash_fetch_m(1, &key, hash);
}
/*
* call-seq:
* hsh.default(key=nil) -> obj
*
* Returns the default value, the value that would be returned by
* <i>hsh</i>[<i>key</i>] if <i>key</i> did not exist in <i>hsh</i>.
* See also <code>Hash::new</code> and <code>Hash#default=</code>.
*
* h = Hash.new #=> {}
* h.default #=> nil
* h.default(2) #=> nil
*
* h = Hash.new("cat") #=> {}
* h.default #=> "cat"
* h.default(2) #=> "cat"
*
* h = Hash.new {|h,k| h[k] = k.to_i*10} #=> {}
* h.default #=> nil
* h.default(2) #=> 20
*/
staticVALUE
rb_hash_default(intargc, VALUE*argv, VALUEhash)
{
VALUEkey, ifnone;
rb_check_arity(argc, 0, 1);
key=argv[0];
ifnone=RHASH_IFNONE(hash);
if (FL_TEST(hash, HASH_PROC_DEFAULT)) {
if (argc==0) returnQnil;
returnrb_funcall(ifnone, id_yield, 2, hash, key);
}
returnifnone;
}
/*
* call-seq:
* hsh.default = obj -> obj
*
* Sets the default value, the value returned for a key that does not
* exist in the hash. It is not possible to set the default to a
* <code>Proc</code> that will be executed on each key lookup.
*
* h = { "a" => 100, "b" => 200 }
* h.default = "Go fish"
* h["a"] #=> 100
* h["z"] #=> "Go fish"
* # This doesn't do what you might hope...
* h.default = proc do |hash, key|
* hash[key] = key + key
* end
* h[2] #=> #<Proc:0x401b3948@-:6>
* h["cat"] #=> #<Proc:0x401b3948@-:6>
*/
staticVALUE
rb_hash_set_default(VALUEhash, VALUEifnone)
{
rb_hash_modify_check(hash);
RHASH_SET_IFNONE(hash, ifnone);
FL_UNSET(hash, HASH_PROC_DEFAULT);
returnifnone;
}
/*
* call-seq:
* hsh.default_proc -> anObject
*
* If <code>Hash::new</code> was invoked with a block, return that
* block, otherwise return <code>nil</code>.
*
* h = Hash.new {|h,k| h[k] = k*k } #=> {}
* p = h.default_proc #=> #<Proc:0x401b3d08@-:1>
* a = [] #=> []
* p.call(a, 2)
* a #=> [nil, nil, 4]
*/
staticVALUE
rb_hash_default_proc(VALUEhash)
{
if (FL_TEST(hash, HASH_PROC_DEFAULT)) {
returnRHASH_IFNONE(hash);
}
returnQnil;
}
/*
* call-seq:
* hsh.default_proc = proc_obj or nil
*
* Sets the default proc to be executed on each failed key lookup.
*
* h.default_proc = proc do |hash, key|
* hash[key] = key + key
* end
* h[2] #=> 4
* h["cat"] #=> "catcat"
*/
staticVALUE
rb_hash_set_default_proc(VALUEhash, VALUEproc)
{
VALUEb;
rb_hash_modify_check(hash);
if (NIL_P(proc)) {
FL_UNSET(hash, HASH_PROC_DEFAULT);
RHASH_SET_IFNONE(hash, proc);
returnproc;
}
b=rb_check_convert_type(proc, T_DATA, "Proc", "to_proc");
if (NIL_P(b) || !rb_obj_is_proc(b)) {
rb_raise(rb_eTypeError,
"wrong default_proc type %s (expected Proc)",
rb_obj_classname(proc));
}
proc=b;
default_proc_arity_check(proc);
RHASH_SET_IFNONE(hash, proc);
FL_SET(hash, HASH_PROC_DEFAULT);
returnproc;
}
staticint
key_i(VALUEkey, VALUEvalue, VALUEarg)
{
VALUE*args= (VALUE*)arg;
if (rb_equal(value, args[0])) {
args[1] =key;
returnST_STOP;
}
returnST_CONTINUE;
}
/*
* call-seq:
* hsh.key(value) -> key
*
* Returns the key of an occurrence of a given value. If the value is
* not found, returns <code>nil</code>.
*
* h = { "a" => 100, "b" => 200, "c" => 300, "d" => 300 }
* h.key(200) #=> "b"
* h.key(300) #=> "c"
* h.key(999) #=> nil
*
*/
staticVALUE
rb_hash_key(VALUEhash, VALUEvalue)
{
VALUEargs[2];
args[0] =value;
args[1] =Qnil;
rb_hash_foreach(hash, key_i, (VALUE)args);
returnargs[1];
}
/* :nodoc: */
staticVALUE
rb_hash_index(VALUEhash, VALUEvalue)
{
rb_warn("Hash#index is deprecated; use Hash#key");
returnrb_hash_key(hash, value);
}
staticVALUE
rb_hash_delete_key(VALUEhash, VALUEkey)
{
st_data_tktmp= (st_data_t)key, val;
if (!RHASH(hash)->ntbl)
returnQundef;
if (RHASH_ITER_LEV(hash) >0) {
if (st_delete_safe(RHASH(hash)->ntbl, &ktmp, &val, (st_data_t)Qundef)) {
FL_SET(hash, HASH_DELETED);
return (VALUE)val;
}
}
elseif (st_delete(RHASH(hash)->ntbl, &ktmp, &val))
return (VALUE)val;
returnQundef;
}
/*
* call-seq:
* hsh.delete(key) -> value
* hsh.delete(key) {| key | block } -> value
*
* Deletes the key-value pair and returns the value from <i>hsh</i> whose
* key is equal to <i>key</i>. If the key is not found, returns the
* <em>default value</em>. If the optional code block is given and the