Ruby 3.5.0dev (2025-04-03 revision 1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
hash.c (1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
1/**********************************************************************
2
3 hash.c -
4
5 $Author$
6 created at: Mon Nov 22 18:51:18 JST 1993
7
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
9 Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
10 Copyright (C) 2000 Information-technology Promotion Agency, Japan
11
12**********************************************************************/
13
14#include "ruby/internal/config.h"
15
16#include <errno.h>
17
18#ifdef __APPLE__
19# ifdef HAVE_CRT_EXTERNS_H
20# include <crt_externs.h>
21# else
22# include "missing/crt_externs.h"
23# endif
24#endif
25
26#include "debug_counter.h"
27#include "id.h"
28#include "internal.h"
29#include "internal/array.h"
30#include "internal/bignum.h"
31#include "internal/basic_operators.h"
32#include "internal/class.h"
33#include "internal/cont.h"
34#include "internal/error.h"
35#include "internal/hash.h"
36#include "internal/object.h"
37#include "internal/proc.h"
38#include "internal/st.h"
39#include "internal/symbol.h"
40#include "internal/thread.h"
41#include "internal/time.h"
42#include "internal/vm.h"
43#include "probes.h"
44#include "ruby/st.h"
45#include "ruby/util.h"
46#include "ruby_assert.h"
47#include "symbol.h"
48#include "ruby/thread_native.h"
49#include "ruby/ractor.h"
50#include "vm_sync.h"
51#include "builtin.h"
52
53/* Flags of RHash
54 *
55 * 1: RHASH_PASS_AS_KEYWORDS
56 * The hash is flagged as Ruby 2 keywords hash.
57 * 2: RHASH_PROC_DEFAULT
58 * The hash has a default proc (rather than a default value).
59 * 3: RHASH_ST_TABLE_FLAG
60 * The hash uses a ST table (rather than an AR table).
61 * 4-7: RHASH_AR_TABLE_SIZE_MASK
62 * The size of the AR table.
63 * 8-11: RHASH_AR_TABLE_BOUND_MASK
64 * The bounds of the AR table.
65 * 13-19: RHASH_LEV_MASK
66 * The iterational level of the hash. Used to prevent modifications
67 * to the hash during iteration.
68 */
69
70#ifndef HASH_DEBUG
71#define HASH_DEBUG 0
72#endif
73
74#if HASH_DEBUG
75#include "internal/gc.h"
76#endif
77
78#define SET_DEFAULT(hash, ifnone) ( \
79 FL_UNSET_RAW(hash, RHASH_PROC_DEFAULT), \
80 RHASH_SET_IFNONE(hash, ifnone))
81
82#define SET_PROC_DEFAULT(hash, proc) set_proc_default(hash, proc)
83
84#define COPY_DEFAULT(hash, hash2) copy_default(RHASH(hash), RHASH(hash2))
85
86static inline void
87copy_default(struct RHash *hash, const struct RHash *hash2)
88{
89 hash->basic.flags &= ~RHASH_PROC_DEFAULT;
90 hash->basic.flags |= hash2->basic.flags & RHASH_PROC_DEFAULT;
91 RHASH_SET_IFNONE(hash, RHASH_IFNONE((VALUE)hash2));
92}
93
94static VALUE rb_hash_s_try_convert(VALUE, VALUE);
95
96/*
97 * Hash WB strategy:
98 * 1. Check mutate st_* functions
99 * * st_insert()
100 * * st_insert2()
101 * * st_update()
102 * * st_add_direct()
103 * 2. Insert WBs
104 */
105
106/* :nodoc: */
107VALUE
108rb_hash_freeze(VALUE hash)
109{
110 return rb_obj_freeze(hash);
111}
112
114VALUE rb_cHash_empty_frozen;
115
116static VALUE envtbl;
117static ID id_hash, id_flatten_bang;
118static ID id_hash_iter_lev;
119
120#define id_default idDefault
121
122VALUE
123rb_hash_set_ifnone(VALUE hash, VALUE ifnone)
124{
125 RB_OBJ_WRITE(hash, (&RHASH(hash)->ifnone), ifnone);
126 return hash;
127}
128
129int
130rb_any_cmp(VALUE a, VALUE b)
131{
132 if (a == b) return 0;
133 if (RB_TYPE_P(a, T_STRING) && RBASIC(a)->klass == rb_cString &&
134 RB_TYPE_P(b, T_STRING) && RBASIC(b)->klass == rb_cString) {
135 return rb_str_hash_cmp(a, b);
136 }
137 if (UNDEF_P(a) || UNDEF_P(b)) return -1;
138 if (SYMBOL_P(a) && SYMBOL_P(b)) {
139 return a != b;
140 }
141
142 return !rb_eql(a, b);
143}
144
145static VALUE
146hash_recursive(VALUE obj, VALUE arg, int recurse)
147{
148 if (recurse) return INT2FIX(0);
149 return rb_funcallv(obj, id_hash, 0, 0);
150}
151
152static long rb_objid_hash(st_index_t index);
153
154static st_index_t
155dbl_to_index(double d)
156{
157 union {double d; st_index_t i;} u;
158 u.d = d;
159 return u.i;
160}
161
162long
163rb_dbl_long_hash(double d)
164{
165 /* normalize -0.0 to 0.0 */
166 if (d == 0.0) d = 0.0;
167#if SIZEOF_INT == SIZEOF_VOIDP
168 return rb_memhash(&d, sizeof(d));
169#else
170 return rb_objid_hash(dbl_to_index(d));
171#endif
172}
173
174static inline long
175any_hash(VALUE a, st_index_t (*other_func)(VALUE))
176{
177 VALUE hval;
178 st_index_t hnum;
179
180 switch (TYPE(a)) {
181 case T_SYMBOL:
182 if (STATIC_SYM_P(a)) {
183 hnum = a >> (RUBY_SPECIAL_SHIFT + ID_SCOPE_SHIFT);
184 hnum = rb_hash_start(hnum);
185 }
186 else {
187 hnum = RSYMBOL(a)->hashval;
188 }
189 break;
190 case T_FIXNUM:
191 case T_TRUE:
192 case T_FALSE:
193 case T_NIL:
194 hnum = rb_objid_hash((st_index_t)a);
195 break;
196 case T_STRING:
197 hnum = rb_str_hash(a);
198 break;
199 case T_BIGNUM:
200 hval = rb_big_hash(a);
201 hnum = FIX2LONG(hval);
202 break;
203 case T_FLOAT: /* prevent pathological behavior: [Bug #10761] */
204 hnum = rb_dbl_long_hash(rb_float_value(a));
205 break;
206 default:
207 hnum = other_func(a);
208 }
209 if ((SIGNED_VALUE)hnum > 0)
210 hnum &= FIXNUM_MAX;
211 else
212 hnum |= FIXNUM_MIN;
213 return (long)hnum;
214}
215
216VALUE rb_obj_hash(VALUE obj);
217VALUE rb_vm_call0(rb_execution_context_t *ec, VALUE recv, ID id, int argc, const VALUE *argv, const rb_callable_method_entry_t *cme, int kw_splat);
218
219static st_index_t
220obj_any_hash(VALUE obj)
221{
222 VALUE hval = Qundef;
223 VALUE klass = CLASS_OF(obj);
224 if (klass) {
225 const rb_callable_method_entry_t *cme = rb_callable_method_entry(klass, id_hash);
226 if (cme && METHOD_ENTRY_BASIC(cme)) {
227 // Optimize away the frame push overhead if it's the default Kernel#hash
228 if (cme->def->type == VM_METHOD_TYPE_CFUNC && cme->def->body.cfunc.func == (rb_cfunc_t)rb_obj_hash) {
229 hval = rb_obj_hash(obj);
230 }
231 else if (RBASIC_CLASS(cme->defined_class) == rb_mKernel) {
232 hval = rb_vm_call0(GET_EC(), obj, id_hash, 0, 0, cme, 0);
233 }
234 }
235 }
236
237 if (UNDEF_P(hval)) {
238 hval = rb_exec_recursive_outer_mid(hash_recursive, obj, 0, id_hash);
239 }
240
241 while (!FIXNUM_P(hval)) {
242 if (RB_TYPE_P(hval, T_BIGNUM)) {
243 int sign;
244 unsigned long ul;
245 sign = rb_integer_pack(hval, &ul, 1, sizeof(ul), 0,
247 if (sign < 0) {
248 hval = LONG2FIX(ul | FIXNUM_MIN);
249 }
250 else {
251 hval = LONG2FIX(ul & FIXNUM_MAX);
252 }
253 }
254 hval = rb_to_int(hval);
255 }
256
257 return FIX2LONG(hval);
258}
259
260st_index_t
261rb_any_hash(VALUE a)
262{
263 return any_hash(a, obj_any_hash);
264}
265
266VALUE
267rb_hash(VALUE obj)
268{
269 return LONG2FIX(any_hash(obj, obj_any_hash));
270}
271
272
273/* Here is a hash function for 64-bit key. It is about 5 times faster
274 (2 times faster when uint128 type is absent) on Haswell than
275 tailored Spooky or City hash function can be. */
276
277/* Here we two primes with random bit generation. */
278static const uint64_t prime1 = ((uint64_t)0x2e0bb864 << 32) | 0xe9ea7df5;
279static const uint32_t prime2 = 0x830fcab9;
280
281
282static inline uint64_t
283mult_and_mix(uint64_t m1, uint64_t m2)
284{
285#if defined HAVE_UINT128_T
286 uint128_t r = (uint128_t) m1 * (uint128_t) m2;
287 return (uint64_t) (r >> 64) ^ (uint64_t) r;
288#else
289 uint64_t hm1 = m1 >> 32, hm2 = m2 >> 32;
290 uint64_t lm1 = m1, lm2 = m2;
291 uint64_t v64_128 = hm1 * hm2;
292 uint64_t v32_96 = hm1 * lm2 + lm1 * hm2;
293 uint64_t v1_32 = lm1 * lm2;
294
295 return (v64_128 + (v32_96 >> 32)) ^ ((v32_96 << 32) + v1_32);
296#endif
297}
298
299static inline uint64_t
300key64_hash(uint64_t key, uint32_t seed)
301{
302 return mult_and_mix(key + seed, prime1);
303}
304
305/* Should cast down the result for each purpose */
306#define st_index_hash(index) key64_hash(rb_hash_start(index), prime2)
307
308static long
309rb_objid_hash(st_index_t index)
310{
311 return (long)st_index_hash(index);
312}
313
314static st_index_t
315objid_hash(VALUE obj)
316{
317 VALUE object_id = rb_obj_id(obj);
318 if (!FIXNUM_P(object_id))
319 object_id = rb_big_hash(object_id);
320
321#if SIZEOF_LONG == SIZEOF_VOIDP
322 return (st_index_t)st_index_hash((st_index_t)NUM2LONG(object_id));
323#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
324 return (st_index_t)st_index_hash((st_index_t)NUM2LL(object_id));
325#endif
326}
327
331VALUE
332rb_obj_hash(VALUE obj)
333{
334 long hnum = any_hash(obj, objid_hash);
335 return ST2FIX(hnum);
336}
337
338static const struct st_hash_type objhash = {
339 rb_any_cmp,
340 rb_any_hash,
341};
342
343#define rb_ident_cmp st_numcmp
344
345static st_index_t
346rb_ident_hash(st_data_t n)
347{
348#ifdef USE_FLONUM /* RUBY */
349 /*
350 * - flonum (on 64-bit) is pathologically bad, mix the actual
351 * float value in, but do not use the float value as-is since
352 * many integers get interpreted as 2.0 or -2.0 [Bug #10761]
353 */
354 if (FLONUM_P(n)) {
355 n ^= dbl_to_index(rb_float_value(n));
356 }
357#endif
358
359 return (st_index_t)st_index_hash((st_index_t)n);
360}
361
362#define identhash rb_hashtype_ident
363const struct st_hash_type rb_hashtype_ident = {
364 rb_ident_cmp,
365 rb_ident_hash,
366};
367
368#define RHASH_IDENTHASH_P(hash) (RHASH_TYPE(hash) == &identhash)
369#define RHASH_STRING_KEY_P(hash, key) (!RHASH_IDENTHASH_P(hash) && (rb_obj_class(key) == rb_cString))
370
371typedef st_index_t st_hash_t;
372
373/*
374 * RHASH_AR_TABLE_P(h):
375 * RHASH_AR_TABLE points to ar_table.
376 *
377 * !RHASH_AR_TABLE_P(h):
378 * RHASH_ST_TABLE points st_table.
379 */
380
381#define RHASH_AR_TABLE_MAX_BOUND RHASH_AR_TABLE_MAX_SIZE
382
383#define RHASH_AR_TABLE_REF(hash, n) (&RHASH_AR_TABLE(hash)->pairs[n])
384#define RHASH_AR_CLEARED_HINT 0xff
385
386static inline st_hash_t
387ar_do_hash(st_data_t key)
388{
389 return (st_hash_t)rb_any_hash(key);
390}
391
392static inline ar_hint_t
393ar_do_hash_hint(st_hash_t hash_value)
394{
395 return (ar_hint_t)hash_value;
396}
397
398static inline ar_hint_t
399ar_hint(VALUE hash, unsigned int index)
400{
401 return RHASH_AR_TABLE(hash)->ar_hint.ary[index];
402}
403
404static inline void
405ar_hint_set_hint(VALUE hash, unsigned int index, ar_hint_t hint)
406{
407 RHASH_AR_TABLE(hash)->ar_hint.ary[index] = hint;
408}
409
410static inline void
411ar_hint_set(VALUE hash, unsigned int index, st_hash_t hash_value)
412{
413 ar_hint_set_hint(hash, index, ar_do_hash_hint(hash_value));
414}
415
416static inline void
417ar_clear_entry(VALUE hash, unsigned int index)
418{
419 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, index);
420 pair->key = Qundef;
421 ar_hint_set_hint(hash, index, RHASH_AR_CLEARED_HINT);
422}
423
424static inline int
425ar_cleared_entry(VALUE hash, unsigned int index)
426{
427 if (ar_hint(hash, index) == RHASH_AR_CLEARED_HINT) {
428 /* RHASH_AR_CLEARED_HINT is only a hint, not mean cleared entry,
429 * so you need to check key == Qundef
430 */
431 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, index);
432 return UNDEF_P(pair->key);
433 }
434 else {
435 return FALSE;
436 }
437}
438
439static inline void
440ar_set_entry(VALUE hash, unsigned int index, st_data_t key, st_data_t val, st_hash_t hash_value)
441{
442 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, index);
443 pair->key = key;
444 pair->val = val;
445 ar_hint_set(hash, index, hash_value);
446}
447
448#define RHASH_AR_TABLE_SIZE(h) (HASH_ASSERT(RHASH_AR_TABLE_P(h)), \
449 RHASH_AR_TABLE_SIZE_RAW(h))
450
451#define RHASH_AR_TABLE_BOUND_RAW(h) \
452 ((unsigned int)((RBASIC(h)->flags >> RHASH_AR_TABLE_BOUND_SHIFT) & \
453 (RHASH_AR_TABLE_BOUND_MASK >> RHASH_AR_TABLE_BOUND_SHIFT)))
454
455#define RHASH_ST_TABLE_SET(h, s) rb_hash_st_table_set(h, s)
456#define RHASH_TYPE(hash) (RHASH_AR_TABLE_P(hash) ? &objhash : RHASH_ST_TABLE(hash)->type)
457
458#define HASH_ASSERT(expr) RUBY_ASSERT_MESG_WHEN(HASH_DEBUG, expr, #expr)
459
460static inline unsigned int
461RHASH_AR_TABLE_BOUND(VALUE h)
462{
463 HASH_ASSERT(RHASH_AR_TABLE_P(h));
464 const unsigned int bound = RHASH_AR_TABLE_BOUND_RAW(h);
465 HASH_ASSERT(bound <= RHASH_AR_TABLE_MAX_SIZE);
466 return bound;
467}
468
469#if HASH_DEBUG
470#define hash_verify(hash) hash_verify_(hash, __FILE__, __LINE__)
471
472void
473rb_hash_dump(VALUE hash)
474{
475 rb_obj_info_dump(hash);
476
477 if (RHASH_AR_TABLE_P(hash)) {
478 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
479
480 fprintf(stderr, " size:%u bound:%u\n",
481 RHASH_AR_TABLE_SIZE(hash), bound);
482
483 for (i=0; i<bound; i++) {
484 st_data_t k, v;
485
486 if (!ar_cleared_entry(hash, i)) {
487 char b1[0x100], b2[0x100];
488 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
489 k = pair->key;
490 v = pair->val;
491 fprintf(stderr, " %d key:%s val:%s hint:%02x\n", i,
492 rb_raw_obj_info(b1, 0x100, k),
493 rb_raw_obj_info(b2, 0x100, v),
494 ar_hint(hash, i));
495 }
496 else {
497 fprintf(stderr, " %d empty\n", i);
498 }
499 }
500 }
501}
502
503static VALUE
504hash_verify_(VALUE hash, const char *file, int line)
505{
506 HASH_ASSERT(RB_TYPE_P(hash, T_HASH));
507
508 if (RHASH_AR_TABLE_P(hash)) {
509 unsigned i, n = 0, bound = RHASH_AR_TABLE_BOUND(hash);
510
511 for (i=0; i<bound; i++) {
512 st_data_t k, v;
513 if (!ar_cleared_entry(hash, i)) {
514 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
515 k = pair->key;
516 v = pair->val;
517 HASH_ASSERT(!UNDEF_P(k));
518 HASH_ASSERT(!UNDEF_P(v));
519 n++;
520 }
521 }
522 if (n != RHASH_AR_TABLE_SIZE(hash)) {
523 rb_bug("n:%u, RHASH_AR_TABLE_SIZE:%u", n, RHASH_AR_TABLE_SIZE(hash));
524 }
525 }
526 else {
527 HASH_ASSERT(RHASH_ST_TABLE(hash) != NULL);
528 HASH_ASSERT(RHASH_AR_TABLE_SIZE_RAW(hash) == 0);
529 HASH_ASSERT(RHASH_AR_TABLE_BOUND_RAW(hash) == 0);
530 }
531
532 return hash;
533}
534
535#else
536#define hash_verify(h) ((void)0)
537#endif
538
539static inline int
540RHASH_TABLE_EMPTY_P(VALUE hash)
541{
542 return RHASH_SIZE(hash) == 0;
543}
544
545#define RHASH_SET_ST_FLAG(h) FL_SET_RAW(h, RHASH_ST_TABLE_FLAG)
546#define RHASH_UNSET_ST_FLAG(h) FL_UNSET_RAW(h, RHASH_ST_TABLE_FLAG)
547
548static void
549hash_st_table_init(VALUE hash, const struct st_hash_type *type, st_index_t size)
550{
551 st_init_existing_table_with_size(RHASH_ST_TABLE(hash), type, size);
552 RHASH_SET_ST_FLAG(hash);
553}
554
555void
556rb_hash_st_table_set(VALUE hash, st_table *st)
557{
558 HASH_ASSERT(st != NULL);
559 RHASH_SET_ST_FLAG(hash);
560
561 *RHASH_ST_TABLE(hash) = *st;
562}
563
564static inline void
565RHASH_AR_TABLE_BOUND_SET(VALUE h, st_index_t n)
566{
567 HASH_ASSERT(RHASH_AR_TABLE_P(h));
568 HASH_ASSERT(n <= RHASH_AR_TABLE_MAX_BOUND);
569
570 RBASIC(h)->flags &= ~RHASH_AR_TABLE_BOUND_MASK;
571 RBASIC(h)->flags |= n << RHASH_AR_TABLE_BOUND_SHIFT;
572}
573
574static inline void
575RHASH_AR_TABLE_SIZE_SET(VALUE h, st_index_t n)
576{
577 HASH_ASSERT(RHASH_AR_TABLE_P(h));
578 HASH_ASSERT(n <= RHASH_AR_TABLE_MAX_SIZE);
579
580 RBASIC(h)->flags &= ~RHASH_AR_TABLE_SIZE_MASK;
581 RBASIC(h)->flags |= n << RHASH_AR_TABLE_SIZE_SHIFT;
582}
583
584static inline void
585HASH_AR_TABLE_SIZE_ADD(VALUE h, st_index_t n)
586{
587 HASH_ASSERT(RHASH_AR_TABLE_P(h));
588
589 RHASH_AR_TABLE_SIZE_SET(h, RHASH_AR_TABLE_SIZE(h) + n);
590
591 hash_verify(h);
592}
593
594#define RHASH_AR_TABLE_SIZE_INC(h) HASH_AR_TABLE_SIZE_ADD(h, 1)
595
596static inline void
597RHASH_AR_TABLE_SIZE_DEC(VALUE h)
598{
599 HASH_ASSERT(RHASH_AR_TABLE_P(h));
600 int new_size = RHASH_AR_TABLE_SIZE(h) - 1;
601
602 if (new_size != 0) {
603 RHASH_AR_TABLE_SIZE_SET(h, new_size);
604 }
605 else {
606 RHASH_AR_TABLE_SIZE_SET(h, 0);
607 RHASH_AR_TABLE_BOUND_SET(h, 0);
608 }
609 hash_verify(h);
610}
611
612static inline void
613RHASH_AR_TABLE_CLEAR(VALUE h)
614{
615 RBASIC(h)->flags &= ~RHASH_AR_TABLE_SIZE_MASK;
616 RBASIC(h)->flags &= ~RHASH_AR_TABLE_BOUND_MASK;
617
618 memset(RHASH_AR_TABLE(h), 0, sizeof(ar_table));
619}
620
621NOINLINE(static int ar_equal(VALUE x, VALUE y));
622
623static int
624ar_equal(VALUE x, VALUE y)
625{
626 return rb_any_cmp(x, y) == 0;
627}
628
629static unsigned
630ar_find_entry_hint(VALUE hash, ar_hint_t hint, st_data_t key)
631{
632 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
633 const ar_hint_t *hints = RHASH_AR_TABLE(hash)->ar_hint.ary;
634
635 /* if table is NULL, then bound also should be 0 */
636
637 for (i = 0; i < bound; i++) {
638 if (hints[i] == hint) {
639 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
640 if (ar_equal(key, pair->key)) {
641 RB_DEBUG_COUNTER_INC(artable_hint_hit);
642 return i;
643 }
644 else {
645#if 0
646 static int pid;
647 static char fname[256];
648 static FILE *fp;
649
650 if (pid != getpid()) {
651 snprintf(fname, sizeof(fname), "/tmp/ruby-armiss.%d", pid = getpid());
652 if ((fp = fopen(fname, "w")) == NULL) rb_bug("fopen");
653 }
654
655 st_hash_t h1 = ar_do_hash(key);
656 st_hash_t h2 = ar_do_hash(pair->key);
657
658 fprintf(fp, "miss: hash_eq:%d hints[%d]:%02x hint:%02x\n"
659 " key :%016lx %s\n"
660 " pair->key:%016lx %s\n",
661 h1 == h2, i, hints[i], hint,
662 h1, rb_obj_info(key), h2, rb_obj_info(pair->key));
663#endif
664 RB_DEBUG_COUNTER_INC(artable_hint_miss);
665 }
666 }
667 }
668 RB_DEBUG_COUNTER_INC(artable_hint_notfound);
669 return RHASH_AR_TABLE_MAX_BOUND;
670}
671
672static unsigned
673ar_find_entry(VALUE hash, st_hash_t hash_value, st_data_t key)
674{
675 ar_hint_t hint = ar_do_hash_hint(hash_value);
676 return ar_find_entry_hint(hash, hint, key);
677}
678
679static inline void
680hash_ar_free_and_clear_table(VALUE hash)
681{
682 RHASH_AR_TABLE_CLEAR(hash);
683
684 HASH_ASSERT(RHASH_AR_TABLE_SIZE(hash) == 0);
685 HASH_ASSERT(RHASH_AR_TABLE_BOUND(hash) == 0);
686}
687
688void rb_st_add_direct_with_hash(st_table *tab, st_data_t key, st_data_t value, st_hash_t hash); // st.c
689
690enum ar_each_key_type {
691 ar_each_key_copy,
692 ar_each_key_cmp,
693 ar_each_key_insert,
694};
695
696static inline int
697ar_each_key(ar_table *ar, int max, enum ar_each_key_type type, st_data_t *dst_keys, st_table *new_tab, st_hash_t *hashes)
698{
699 for (int i = 0; i < max; i++) {
700 ar_table_pair *pair = &ar->pairs[i];
701
702 switch (type) {
703 case ar_each_key_copy:
704 dst_keys[i] = pair->key;
705 break;
706 case ar_each_key_cmp:
707 if (dst_keys[i] != pair->key) return 1;
708 break;
709 case ar_each_key_insert:
710 if (UNDEF_P(pair->key)) continue; // deleted entry
711 rb_st_add_direct_with_hash(new_tab, pair->key, pair->val, hashes[i]);
712 break;
713 }
714 }
715
716 return 0;
717}
718
719static st_table *
720ar_force_convert_table(VALUE hash, const char *file, int line)
721{
722 if (RHASH_ST_TABLE_P(hash)) {
723 return RHASH_ST_TABLE(hash);
724 }
725 else {
726 ar_table *ar = RHASH_AR_TABLE(hash);
727 st_hash_t hashes[RHASH_AR_TABLE_MAX_SIZE];
728 unsigned int bound, size;
729
730 // prepare hash values
731 do {
732 st_data_t keys[RHASH_AR_TABLE_MAX_SIZE];
733 bound = RHASH_AR_TABLE_BOUND(hash);
734 size = RHASH_AR_TABLE_SIZE(hash);
735 ar_each_key(ar, bound, ar_each_key_copy, keys, NULL, NULL);
736
737 for (unsigned int i = 0; i < bound; i++) {
738 // do_hash calls #hash method and it can modify hash object
739 hashes[i] = UNDEF_P(keys[i]) ? 0 : ar_do_hash(keys[i]);
740 }
741
742 // check if modified
743 if (UNLIKELY(!RHASH_AR_TABLE_P(hash))) return RHASH_ST_TABLE(hash);
744 if (UNLIKELY(RHASH_AR_TABLE_BOUND(hash) != bound)) continue;
745 if (UNLIKELY(ar_each_key(ar, bound, ar_each_key_cmp, keys, NULL, NULL))) continue;
746 } while (0);
747
748 // make st
749 st_table tab;
750 st_table *new_tab = &tab;
751 st_init_existing_table_with_size(new_tab, &objhash, size);
752 ar_each_key(ar, bound, ar_each_key_insert, NULL, new_tab, hashes);
753 hash_ar_free_and_clear_table(hash);
754 RHASH_ST_TABLE_SET(hash, new_tab);
755 return RHASH_ST_TABLE(hash);
756 }
757}
758
759static int
760ar_compact_table(VALUE hash)
761{
762 const unsigned bound = RHASH_AR_TABLE_BOUND(hash);
763 const unsigned size = RHASH_AR_TABLE_SIZE(hash);
764
765 if (size == bound) {
766 return size;
767 }
768 else {
769 unsigned i, j=0;
770 ar_table_pair *pairs = RHASH_AR_TABLE(hash)->pairs;
771
772 for (i=0; i<bound; i++) {
773 if (ar_cleared_entry(hash, i)) {
774 if (j <= i) j = i+1;
775 for (; j<bound; j++) {
776 if (!ar_cleared_entry(hash, j)) {
777 pairs[i] = pairs[j];
778 ar_hint_set_hint(hash, i, (st_hash_t)ar_hint(hash, j));
779 ar_clear_entry(hash, j);
780 j++;
781 goto found;
782 }
783 }
784 /* non-empty is not found */
785 goto done;
786 found:;
787 }
788 }
789 done:
790 HASH_ASSERT(i<=bound);
791
792 RHASH_AR_TABLE_BOUND_SET(hash, size);
793 hash_verify(hash);
794 return size;
795 }
796}
797
798static int
799ar_add_direct_with_hash(VALUE hash, st_data_t key, st_data_t val, st_hash_t hash_value)
800{
801 unsigned bin = RHASH_AR_TABLE_BOUND(hash);
802
803 if (RHASH_AR_TABLE_SIZE(hash) >= RHASH_AR_TABLE_MAX_SIZE) {
804 return 1;
805 }
806 else {
807 if (UNLIKELY(bin >= RHASH_AR_TABLE_MAX_BOUND)) {
808 bin = ar_compact_table(hash);
809 }
810 HASH_ASSERT(bin < RHASH_AR_TABLE_MAX_BOUND);
811
812 ar_set_entry(hash, bin, key, val, hash_value);
813 RHASH_AR_TABLE_BOUND_SET(hash, bin+1);
814 RHASH_AR_TABLE_SIZE_INC(hash);
815 return 0;
816 }
817}
818
819static void
820ensure_ar_table(VALUE hash)
821{
822 if (!RHASH_AR_TABLE_P(hash)) {
823 rb_raise(rb_eRuntimeError, "hash representation was changed during iteration");
824 }
825}
826
827static int
828ar_general_foreach(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg)
829{
830 if (RHASH_AR_TABLE_SIZE(hash) > 0) {
831 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
832
833 for (i = 0; i < bound; i++) {
834 if (ar_cleared_entry(hash, i)) continue;
835
836 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
837 st_data_t key = (st_data_t)pair->key;
838 st_data_t val = (st_data_t)pair->val;
839 enum st_retval retval = (*func)(key, val, arg, 0);
840 ensure_ar_table(hash);
841 /* pair may be not valid here because of theap */
842
843 switch (retval) {
844 case ST_CONTINUE:
845 break;
846 case ST_CHECK:
847 case ST_STOP:
848 return 0;
849 case ST_REPLACE:
850 if (replace) {
851 retval = (*replace)(&key, &val, arg, TRUE);
852
853 // TODO: pair should be same as pair before.
854 pair = RHASH_AR_TABLE_REF(hash, i);
855 pair->key = (VALUE)key;
856 pair->val = (VALUE)val;
857 }
858 break;
859 case ST_DELETE:
860 ar_clear_entry(hash, i);
861 RHASH_AR_TABLE_SIZE_DEC(hash);
862 break;
863 }
864 }
865 }
866 return 0;
867}
868
869static int
870ar_foreach_with_replace(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg)
871{
872 return ar_general_foreach(hash, func, replace, arg);
873}
874
875struct functor {
876 st_foreach_callback_func *func;
877 st_data_t arg;
878};
879
880static int
881apply_functor(st_data_t k, st_data_t v, st_data_t d, int _)
882{
883 const struct functor *f = (void *)d;
884 return f->func(k, v, f->arg);
885}
886
887static int
888ar_foreach(VALUE hash, st_foreach_callback_func *func, st_data_t arg)
889{
890 const struct functor f = { func, arg };
891 return ar_general_foreach(hash, apply_functor, NULL, (st_data_t)&f);
892}
893
894static int
895ar_foreach_check(VALUE hash, st_foreach_check_callback_func *func, st_data_t arg,
896 st_data_t never)
897{
898 if (RHASH_AR_TABLE_SIZE(hash) > 0) {
899 unsigned i, ret = 0, bound = RHASH_AR_TABLE_BOUND(hash);
900 enum st_retval retval;
901 st_data_t key;
902 ar_table_pair *pair;
903 ar_hint_t hint;
904
905 for (i = 0; i < bound; i++) {
906 if (ar_cleared_entry(hash, i)) continue;
907
908 pair = RHASH_AR_TABLE_REF(hash, i);
909 key = pair->key;
910 hint = ar_hint(hash, i);
911
912 retval = (*func)(key, pair->val, arg, 0);
913 ensure_ar_table(hash);
914 hash_verify(hash);
915
916 switch (retval) {
917 case ST_CHECK: {
918 pair = RHASH_AR_TABLE_REF(hash, i);
919 if (pair->key == never) break;
920 ret = ar_find_entry_hint(hash, hint, key);
921 if (ret == RHASH_AR_TABLE_MAX_BOUND) {
922 retval = (*func)(0, 0, arg, 1);
923 return 2;
924 }
925 }
926 case ST_CONTINUE:
927 break;
928 case ST_STOP:
929 case ST_REPLACE:
930 return 0;
931 case ST_DELETE: {
932 if (!ar_cleared_entry(hash, i)) {
933 ar_clear_entry(hash, i);
934 RHASH_AR_TABLE_SIZE_DEC(hash);
935 }
936 break;
937 }
938 }
939 }
940 }
941 return 0;
942}
943
944static int
945ar_update(VALUE hash, st_data_t key,
946 st_update_callback_func *func, st_data_t arg)
947{
948 int retval, existing;
949 unsigned bin = RHASH_AR_TABLE_MAX_BOUND;
950 st_data_t value = 0, old_key;
951 st_hash_t hash_value = ar_do_hash(key);
952
953 if (UNLIKELY(!RHASH_AR_TABLE_P(hash))) {
954 // `#hash` changes ar_table -> st_table
955 return -1;
956 }
957
958 if (RHASH_AR_TABLE_SIZE(hash) > 0) {
959 bin = ar_find_entry(hash, hash_value, key);
960 existing = (bin != RHASH_AR_TABLE_MAX_BOUND) ? TRUE : FALSE;
961 }
962 else {
963 existing = FALSE;
964 }
965
966 if (existing) {
967 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, bin);
968 key = pair->key;
969 value = pair->val;
970 }
971 old_key = key;
972 retval = (*func)(&key, &value, arg, existing);
973 /* pair can be invalid here because of theap */
974 ensure_ar_table(hash);
975
976 switch (retval) {
977 case ST_CONTINUE:
978 if (!existing) {
979 if (ar_add_direct_with_hash(hash, key, value, hash_value)) {
980 return -1;
981 }
982 }
983 else {
984 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, bin);
985 if (old_key != key) {
986 pair->key = key;
987 }
988 pair->val = value;
989 }
990 break;
991 case ST_DELETE:
992 if (existing) {
993 ar_clear_entry(hash, bin);
994 RHASH_AR_TABLE_SIZE_DEC(hash);
995 }
996 break;
997 }
998 return existing;
999}
1000
1001static int
1002ar_insert(VALUE hash, st_data_t key, st_data_t value)
1003{
1004 unsigned bin = RHASH_AR_TABLE_BOUND(hash);
1005 st_hash_t hash_value = ar_do_hash(key);
1006
1007 if (UNLIKELY(!RHASH_AR_TABLE_P(hash))) {
1008 // `#hash` changes ar_table -> st_table
1009 return -1;
1010 }
1011
1012 bin = ar_find_entry(hash, hash_value, key);
1013 if (bin == RHASH_AR_TABLE_MAX_BOUND) {
1014 if (RHASH_AR_TABLE_SIZE(hash) >= RHASH_AR_TABLE_MAX_SIZE) {
1015 return -1;
1016 }
1017 else if (bin >= RHASH_AR_TABLE_MAX_BOUND) {
1018 bin = ar_compact_table(hash);
1019 }
1020 HASH_ASSERT(bin < RHASH_AR_TABLE_MAX_BOUND);
1021
1022 ar_set_entry(hash, bin, key, value, hash_value);
1023 RHASH_AR_TABLE_BOUND_SET(hash, bin+1);
1024 RHASH_AR_TABLE_SIZE_INC(hash);
1025 return 0;
1026 }
1027 else {
1028 RHASH_AR_TABLE_REF(hash, bin)->val = value;
1029 return 1;
1030 }
1031}
1032
1033static int
1034ar_lookup(VALUE hash, st_data_t key, st_data_t *value)
1035{
1036 if (RHASH_AR_TABLE_SIZE(hash) == 0) {
1037 return 0;
1038 }
1039 else {
1040 st_hash_t hash_value = ar_do_hash(key);
1041 if (UNLIKELY(!RHASH_AR_TABLE_P(hash))) {
1042 // `#hash` changes ar_table -> st_table
1043 return st_lookup(RHASH_ST_TABLE(hash), key, value);
1044 }
1045 unsigned bin = ar_find_entry(hash, hash_value, key);
1046
1047 if (bin == RHASH_AR_TABLE_MAX_BOUND) {
1048 return 0;
1049 }
1050 else {
1051 HASH_ASSERT(bin < RHASH_AR_TABLE_MAX_BOUND);
1052 if (value != NULL) {
1053 *value = RHASH_AR_TABLE_REF(hash, bin)->val;
1054 }
1055 return 1;
1056 }
1057 }
1058}
1059
1060static int
1061ar_delete(VALUE hash, st_data_t *key, st_data_t *value)
1062{
1063 unsigned bin;
1064 st_hash_t hash_value = ar_do_hash(*key);
1065
1066 if (UNLIKELY(!RHASH_AR_TABLE_P(hash))) {
1067 // `#hash` changes ar_table -> st_table
1068 return st_delete(RHASH_ST_TABLE(hash), key, value);
1069 }
1070
1071 bin = ar_find_entry(hash, hash_value, *key);
1072
1073 if (bin == RHASH_AR_TABLE_MAX_BOUND) {
1074 if (value != 0) *value = 0;
1075 return 0;
1076 }
1077 else {
1078 if (value != 0) {
1079 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, bin);
1080 *value = pair->val;
1081 }
1082 ar_clear_entry(hash, bin);
1083 RHASH_AR_TABLE_SIZE_DEC(hash);
1084 return 1;
1085 }
1086}
1087
1088static int
1089ar_shift(VALUE hash, st_data_t *key, st_data_t *value)
1090{
1091 if (RHASH_AR_TABLE_SIZE(hash) > 0) {
1092 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
1093
1094 for (i = 0; i < bound; i++) {
1095 if (!ar_cleared_entry(hash, i)) {
1096 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
1097 if (value != 0) *value = pair->val;
1098 *key = pair->key;
1099 ar_clear_entry(hash, i);
1100 RHASH_AR_TABLE_SIZE_DEC(hash);
1101 return 1;
1102 }
1103 }
1104 }
1105 if (value != NULL) *value = 0;
1106 return 0;
1107}
1108
1109static long
1110ar_keys(VALUE hash, st_data_t *keys, st_index_t size)
1111{
1112 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
1113 st_data_t *keys_start = keys, *keys_end = keys + size;
1114
1115 for (i = 0; i < bound; i++) {
1116 if (keys == keys_end) {
1117 break;
1118 }
1119 else {
1120 if (!ar_cleared_entry(hash, i)) {
1121 *keys++ = RHASH_AR_TABLE_REF(hash, i)->key;
1122 }
1123 }
1124 }
1125
1126 return keys - keys_start;
1127}
1128
1129static long
1130ar_values(VALUE hash, st_data_t *values, st_index_t size)
1131{
1132 unsigned i, bound = RHASH_AR_TABLE_BOUND(hash);
1133 st_data_t *values_start = values, *values_end = values + size;
1134
1135 for (i = 0; i < bound; i++) {
1136 if (values == values_end) {
1137 break;
1138 }
1139 else {
1140 if (!ar_cleared_entry(hash, i)) {
1141 *values++ = RHASH_AR_TABLE_REF(hash, i)->val;
1142 }
1143 }
1144 }
1145
1146 return values - values_start;
1147}
1148
1149static ar_table*
1150ar_copy(VALUE hash1, VALUE hash2)
1151{
1152 ar_table *old_tab = RHASH_AR_TABLE(hash2);
1153 ar_table *new_tab = RHASH_AR_TABLE(hash1);
1154
1155 *new_tab = *old_tab;
1156 RHASH_AR_TABLE(hash1)->ar_hint.word = RHASH_AR_TABLE(hash2)->ar_hint.word;
1157 RHASH_AR_TABLE_BOUND_SET(hash1, RHASH_AR_TABLE_BOUND(hash2));
1158 RHASH_AR_TABLE_SIZE_SET(hash1, RHASH_AR_TABLE_SIZE(hash2));
1159
1160 rb_gc_writebarrier_remember(hash1);
1161
1162 return new_tab;
1163}
1164
1165static void
1166ar_clear(VALUE hash)
1167{
1168 if (RHASH_AR_TABLE(hash) != NULL) {
1169 RHASH_AR_TABLE_SIZE_SET(hash, 0);
1170 RHASH_AR_TABLE_BOUND_SET(hash, 0);
1171 }
1172 else {
1173 HASH_ASSERT(RHASH_AR_TABLE_SIZE(hash) == 0);
1174 HASH_ASSERT(RHASH_AR_TABLE_BOUND(hash) == 0);
1175 }
1176}
1177
1178static void
1179hash_st_free(VALUE hash)
1180{
1181 HASH_ASSERT(RHASH_ST_TABLE_P(hash));
1182
1183 st_table *tab = RHASH_ST_TABLE(hash);
1184
1185 xfree(tab->bins);
1186 xfree(tab->entries);
1187}
1188
1189static void
1190hash_st_free_and_clear_table(VALUE hash)
1191{
1192 hash_st_free(hash);
1193
1194 RHASH_ST_CLEAR(hash);
1195}
1196
1197void
1198rb_hash_free(VALUE hash)
1199{
1200 if (RHASH_ST_TABLE_P(hash)) {
1201 hash_st_free(hash);
1202 }
1203}
1204
1205typedef int st_foreach_func(st_data_t, st_data_t, st_data_t);
1206
1208 st_table *tbl;
1209 st_foreach_func *func;
1210 st_data_t arg;
1211};
1212
1213static int
1214foreach_safe_i(st_data_t key, st_data_t value, st_data_t args, int error)
1215{
1216 int status;
1217 struct foreach_safe_arg *arg = (void *)args;
1218
1219 if (error) return ST_STOP;
1220 status = (*arg->func)(key, value, arg->arg);
1221 if (status == ST_CONTINUE) {
1222 return ST_CHECK;
1223 }
1224 return status;
1225}
1226
1227void
1228st_foreach_safe(st_table *table, st_foreach_func *func, st_data_t a)
1229{
1230 struct foreach_safe_arg arg;
1231
1232 arg.tbl = table;
1233 arg.func = (st_foreach_func *)func;
1234 arg.arg = a;
1235 if (st_foreach_check(table, foreach_safe_i, (st_data_t)&arg, 0)) {
1236 rb_raise(rb_eRuntimeError, "hash modified during iteration");
1237 }
1238}
1239
1240typedef int rb_foreach_func(VALUE, VALUE, VALUE);
1241
1243 VALUE hash;
1244 rb_foreach_func *func;
1245 VALUE arg;
1246};
1247
1248static int
1249hash_iter_status_check(int status)
1250{
1251 switch (status) {
1252 case ST_DELETE:
1253 return ST_DELETE;
1254 case ST_CONTINUE:
1255 break;
1256 case ST_STOP:
1257 return ST_STOP;
1258 }
1259
1260 return ST_CHECK;
1261}
1262
1263static int
1264hash_ar_foreach_iter(st_data_t key, st_data_t value, st_data_t argp, int error)
1265{
1266 struct hash_foreach_arg *arg = (struct hash_foreach_arg *)argp;
1267
1268 if (error) return ST_STOP;
1269
1270 int status = (*arg->func)((VALUE)key, (VALUE)value, arg->arg);
1271 /* TODO: rehash check? rb_raise(rb_eRuntimeError, "rehash occurred during iteration"); */
1272
1273 return hash_iter_status_check(status);
1274}
1275
1276static int
1277hash_foreach_iter(st_data_t key, st_data_t value, st_data_t argp, int error)
1278{
1279 struct hash_foreach_arg *arg = (struct hash_foreach_arg *)argp;
1280
1281 if (error) return ST_STOP;
1282
1283 st_table *tbl = RHASH_ST_TABLE(arg->hash);
1284 int status = (*arg->func)((VALUE)key, (VALUE)value, arg->arg);
1285
1286 if (RHASH_ST_TABLE(arg->hash) != tbl) {
1287 rb_raise(rb_eRuntimeError, "rehash occurred during iteration");
1288 }
1289
1290 return hash_iter_status_check(status);
1291}
1292
1293static unsigned long
1294iter_lev_in_ivar(VALUE hash)
1295{
1296 VALUE levval = rb_ivar_get(hash, id_hash_iter_lev);
1297 HASH_ASSERT(FIXNUM_P(levval));
1298 long lev = FIX2LONG(levval);
1299 HASH_ASSERT(lev >= 0);
1300 return (unsigned long)lev;
1301}
1302
1303void rb_ivar_set_internal(VALUE obj, ID id, VALUE val);
1304
1305static void
1306iter_lev_in_ivar_set(VALUE hash, unsigned long lev)
1307{
1308 HASH_ASSERT(lev >= RHASH_LEV_MAX);
1309 HASH_ASSERT(POSFIXABLE(lev)); /* POSFIXABLE means fitting to long */
1310 rb_ivar_set_internal(hash, id_hash_iter_lev, LONG2FIX((long)lev));
1311}
1312
1313static inline unsigned long
1314iter_lev_in_flags(VALUE hash)
1315{
1316 return (unsigned long)((RBASIC(hash)->flags >> RHASH_LEV_SHIFT) & RHASH_LEV_MAX);
1317}
1318
1319static inline void
1320iter_lev_in_flags_set(VALUE hash, unsigned long lev)
1321{
1322 HASH_ASSERT(lev <= RHASH_LEV_MAX);
1323 RBASIC(hash)->flags = ((RBASIC(hash)->flags & ~RHASH_LEV_MASK) | ((VALUE)lev << RHASH_LEV_SHIFT));
1324}
1325
1326static inline bool
1327hash_iterating_p(VALUE hash)
1328{
1329 return iter_lev_in_flags(hash) > 0;
1330}
1331
1332static void
1333hash_iter_lev_inc(VALUE hash)
1334{
1335 unsigned long lev = iter_lev_in_flags(hash);
1336 if (lev == RHASH_LEV_MAX) {
1337 lev = iter_lev_in_ivar(hash) + 1;
1338 if (!POSFIXABLE(lev)) { /* paranoiac check */
1339 rb_raise(rb_eRuntimeError, "too much nested iterations");
1340 }
1341 }
1342 else {
1343 lev += 1;
1344 iter_lev_in_flags_set(hash, lev);
1345 if (lev < RHASH_LEV_MAX) return;
1346 }
1347 iter_lev_in_ivar_set(hash, lev);
1348}
1349
1350static void
1351hash_iter_lev_dec(VALUE hash)
1352{
1353 unsigned long lev = iter_lev_in_flags(hash);
1354 if (lev == RHASH_LEV_MAX) {
1355 lev = iter_lev_in_ivar(hash);
1356 if (lev > RHASH_LEV_MAX) {
1357 iter_lev_in_ivar_set(hash, lev-1);
1358 return;
1359 }
1360 rb_attr_delete(hash, id_hash_iter_lev);
1361 }
1362 else if (lev == 0) {
1363 rb_raise(rb_eRuntimeError, "iteration level underflow");
1364 }
1365 iter_lev_in_flags_set(hash, lev - 1);
1366}
1367
1368static VALUE
1369hash_foreach_ensure(VALUE hash)
1370{
1371 hash_iter_lev_dec(hash);
1372 return 0;
1373}
1374
1375int
1376rb_hash_stlike_foreach(VALUE hash, st_foreach_callback_func *func, st_data_t arg)
1377{
1378 if (RHASH_AR_TABLE_P(hash)) {
1379 return ar_foreach(hash, func, arg);
1380 }
1381 else {
1382 return st_foreach(RHASH_ST_TABLE(hash), func, arg);
1383 }
1384}
1385
1386int
1387rb_hash_stlike_foreach_with_replace(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg)
1388{
1389 if (RHASH_AR_TABLE_P(hash)) {
1390 return ar_foreach_with_replace(hash, func, replace, arg);
1391 }
1392 else {
1393 return st_foreach_with_replace(RHASH_ST_TABLE(hash), func, replace, arg);
1394 }
1395}
1396
1397static VALUE
1398hash_foreach_call(VALUE arg)
1399{
1400 VALUE hash = ((struct hash_foreach_arg *)arg)->hash;
1401 int ret = 0;
1402 if (RHASH_AR_TABLE_P(hash)) {
1403 ret = ar_foreach_check(hash, hash_ar_foreach_iter,
1404 (st_data_t)arg, (st_data_t)Qundef);
1405 }
1406 else if (RHASH_ST_TABLE_P(hash)) {
1407 ret = st_foreach_check(RHASH_ST_TABLE(hash), hash_foreach_iter,
1408 (st_data_t)arg, (st_data_t)Qundef);
1409 }
1410 if (ret) {
1411 rb_raise(rb_eRuntimeError, "ret: %d, hash modified during iteration", ret);
1412 }
1413 return Qnil;
1414}
1415
1416void
1417rb_hash_foreach(VALUE hash, rb_foreach_func *func, VALUE farg)
1418{
1419 struct hash_foreach_arg arg;
1420
1421 if (RHASH_TABLE_EMPTY_P(hash))
1422 return;
1423 arg.hash = hash;
1424 arg.func = (rb_foreach_func *)func;
1425 arg.arg = farg;
1426 if (RB_OBJ_FROZEN(hash)) {
1427 hash_foreach_call((VALUE)&arg);
1428 }
1429 else {
1430 hash_iter_lev_inc(hash);
1431 rb_ensure(hash_foreach_call, (VALUE)&arg, hash_foreach_ensure, hash);
1432 }
1433 hash_verify(hash);
1434}
1435
1436void rb_st_compact_table(st_table *tab);
1437
1438static void
1439compact_after_delete(VALUE hash)
1440{
1441 if (!hash_iterating_p(hash) && RHASH_ST_TABLE_P(hash)) {
1442 rb_st_compact_table(RHASH_ST_TABLE(hash));
1443 }
1444}
1445
1446static VALUE
1447hash_alloc_flags(VALUE klass, VALUE flags, VALUE ifnone, bool st)
1448{
1450 const size_t size = sizeof(struct RHash) + (st ? sizeof(st_table) : sizeof(ar_table));
1451
1452 NEWOBJ_OF(hash, struct RHash, klass, T_HASH | wb | flags, size, 0);
1453
1454 RHASH_SET_IFNONE((VALUE)hash, ifnone);
1455
1456 return (VALUE)hash;
1457}
1458
1459static VALUE
1460hash_alloc(VALUE klass)
1461{
1462 /* Allocate to be able to fit both st_table and ar_table. */
1463 return hash_alloc_flags(klass, 0, Qnil, sizeof(st_table) > sizeof(ar_table));
1464}
1465
1466static VALUE
1467empty_hash_alloc(VALUE klass)
1468{
1469 RUBY_DTRACE_CREATE_HOOK(HASH, 0);
1470
1471 return hash_alloc(klass);
1472}
1473
1474VALUE
1475rb_hash_new(void)
1476{
1477 return hash_alloc(rb_cHash);
1478}
1479
1480static VALUE
1481copy_compare_by_id(VALUE hash, VALUE basis)
1482{
1483 if (rb_hash_compare_by_id_p(basis)) {
1484 return rb_hash_compare_by_id(hash);
1485 }
1486 return hash;
1487}
1488
1489VALUE
1490rb_hash_new_with_size(st_index_t size)
1491{
1492 bool st = size > RHASH_AR_TABLE_MAX_SIZE;
1493 VALUE ret = hash_alloc_flags(rb_cHash, 0, Qnil, st);
1494
1495 if (st) {
1496 hash_st_table_init(ret, &objhash, size);
1497 }
1498
1499 return ret;
1500}
1501
1502VALUE
1503rb_hash_new_capa(long capa)
1504{
1505 return rb_hash_new_with_size((st_index_t)capa);
1506}
1507
1508static VALUE
1509hash_copy(VALUE ret, VALUE hash)
1510{
1511 if (RHASH_AR_TABLE_P(hash)) {
1512 if (RHASH_AR_TABLE_P(ret)) {
1513 ar_copy(ret, hash);
1514 }
1515 else {
1516 st_table *tab = RHASH_ST_TABLE(ret);
1517 st_init_existing_table_with_size(tab, &objhash, RHASH_AR_TABLE_SIZE(hash));
1518
1519 int bound = RHASH_AR_TABLE_BOUND(hash);
1520 for (int i = 0; i < bound; i++) {
1521 if (ar_cleared_entry(hash, i)) continue;
1522
1523 ar_table_pair *pair = RHASH_AR_TABLE_REF(hash, i);
1524 st_add_direct(tab, pair->key, pair->val);
1525 RB_OBJ_WRITTEN(ret, Qundef, pair->key);
1526 RB_OBJ_WRITTEN(ret, Qundef, pair->val);
1527 }
1528 }
1529 }
1530 else {
1531 HASH_ASSERT(sizeof(st_table) <= sizeof(ar_table));
1532
1533 RHASH_SET_ST_FLAG(ret);
1534 st_replace(RHASH_ST_TABLE(ret), RHASH_ST_TABLE(hash));
1535
1536 rb_gc_writebarrier_remember(ret);
1537 }
1538 return ret;
1539}
1540
1541static VALUE
1542hash_dup_with_compare_by_id(VALUE hash)
1543{
1544 VALUE dup = hash_alloc_flags(rb_cHash, 0, Qnil, RHASH_ST_TABLE_P(hash));
1545 if (RHASH_ST_TABLE_P(hash)) {
1546 RHASH_SET_ST_FLAG(dup);
1547 }
1548 else {
1549 RHASH_UNSET_ST_FLAG(dup);
1550 }
1551
1552 return hash_copy(dup, hash);
1553}
1554
1555static VALUE
1556hash_dup(VALUE hash, VALUE klass, VALUE flags)
1557{
1558 return hash_copy(hash_alloc_flags(klass, flags, RHASH_IFNONE(hash), !RHASH_EMPTY_P(hash) && RHASH_ST_TABLE_P(hash)),
1559 hash);
1560}
1561
1562VALUE
1563rb_hash_dup(VALUE hash)
1564{
1565 const VALUE flags = RBASIC(hash)->flags;
1566 VALUE ret = hash_dup(hash, rb_obj_class(hash),
1567 flags & (FL_EXIVAR|RHASH_PROC_DEFAULT));
1568 if (flags & FL_EXIVAR)
1569 rb_copy_generic_ivar(ret, hash);
1570 return ret;
1571}
1572
1573VALUE
1574rb_hash_resurrect(VALUE hash)
1575{
1576 VALUE ret = hash_dup(hash, rb_cHash, 0);
1577 return ret;
1578}
1579
1580static void
1581rb_hash_modify_check(VALUE hash)
1582{
1583 rb_check_frozen(hash);
1584}
1585
1586struct st_table *
1587rb_hash_tbl_raw(VALUE hash, const char *file, int line)
1588{
1589 return ar_force_convert_table(hash, file, line);
1590}
1591
1592struct st_table *
1593rb_hash_tbl(VALUE hash, const char *file, int line)
1594{
1595 OBJ_WB_UNPROTECT(hash);
1596 return rb_hash_tbl_raw(hash, file, line);
1597}
1598
1599static void
1600rb_hash_modify(VALUE hash)
1601{
1602 rb_hash_modify_check(hash);
1603}
1604
1605NORETURN(static void no_new_key(void));
1606static void
1607no_new_key(void)
1608{
1609 rb_raise(rb_eRuntimeError, "can't add a new key into hash during iteration");
1610}
1611
1613 VALUE hash;
1614 st_data_t arg;
1615};
1616
1617#define NOINSERT_UPDATE_CALLBACK(func) \
1618static int \
1619func##_noinsert(st_data_t *key, st_data_t *val, st_data_t arg, int existing) \
1620{ \
1621 if (!existing) no_new_key(); \
1622 return func(key, val, (struct update_arg *)arg, existing); \
1623} \
1624 \
1625static int \
1626func##_insert(st_data_t *key, st_data_t *val, st_data_t arg, int existing) \
1627{ \
1628 return func(key, val, (struct update_arg *)arg, existing); \
1629}
1630
1632 st_data_t arg;
1633 st_update_callback_func *func;
1634 VALUE hash;
1635 VALUE key;
1636 VALUE value;
1637};
1638
1639typedef int (*tbl_update_func)(st_data_t *, st_data_t *, st_data_t, int);
1640
1641int
1642rb_hash_stlike_update(VALUE hash, st_data_t key, st_update_callback_func *func, st_data_t arg)
1643{
1644 if (RHASH_AR_TABLE_P(hash)) {
1645 int result = ar_update(hash, key, func, arg);
1646 if (result == -1) {
1647 ar_force_convert_table(hash, __FILE__, __LINE__);
1648 }
1649 else {
1650 return result;
1651 }
1652 }
1653
1654 return st_update(RHASH_ST_TABLE(hash), key, func, arg);
1655}
1656
1657static int
1658tbl_update_modify(st_data_t *key, st_data_t *val, st_data_t arg, int existing)
1659{
1660 struct update_arg *p = (struct update_arg *)arg;
1661 st_data_t old_key = *key;
1662 st_data_t old_value = *val;
1663 VALUE hash = p->hash;
1664 int ret = (p->func)(key, val, arg, existing);
1665 switch (ret) {
1666 default:
1667 break;
1668 case ST_CONTINUE:
1669 if (!existing || *key != old_key || *val != old_value) {
1670 rb_hash_modify(hash);
1671 p->key = *key;
1672 p->value = *val;
1673 }
1674 break;
1675 case ST_DELETE:
1676 if (existing)
1677 rb_hash_modify(hash);
1678 break;
1679 }
1680
1681 return ret;
1682}
1683
1684static int
1685tbl_update(VALUE hash, VALUE key, tbl_update_func func, st_data_t optional_arg)
1686{
1687 struct update_arg arg = {
1688 .arg = optional_arg,
1689 .func = func,
1690 .hash = hash,
1691 .key = key,
1692 .value = (VALUE)optional_arg,
1693 };
1694
1695 int ret = rb_hash_stlike_update(hash, key, tbl_update_modify, (st_data_t)&arg);
1696
1697 /* write barrier */
1698 RB_OBJ_WRITTEN(hash, Qundef, arg.key);
1699 RB_OBJ_WRITTEN(hash, Qundef, arg.value);
1700
1701 return ret;
1702}
1703
1704#define UPDATE_CALLBACK(iter_p, func) ((iter_p) ? func##_noinsert : func##_insert)
1705
1706#define RHASH_UPDATE_ITER(h, iter_p, key, func, a) do { \
1707 tbl_update((h), (key), UPDATE_CALLBACK(iter_p, func), (st_data_t)(a)); \
1708} while (0)
1709
1710#define RHASH_UPDATE(hash, key, func, arg) \
1711 RHASH_UPDATE_ITER(hash, hash_iterating_p(hash), key, func, arg)
1712
1713static void
1714set_proc_default(VALUE hash, VALUE proc)
1715{
1716 if (rb_proc_lambda_p(proc)) {
1717 int n = rb_proc_arity(proc);
1718
1719 if (n != 2 && (n >= 0 || n < -3)) {
1720 if (n < 0) n = -n-1;
1721 rb_raise(rb_eTypeError, "default_proc takes two arguments (2 for %d)", n);
1722 }
1723 }
1724
1725 FL_SET_RAW(hash, RHASH_PROC_DEFAULT);
1726 RHASH_SET_IFNONE(hash, proc);
1727}
1728
1729static VALUE
1730rb_hash_init(rb_execution_context_t *ec, VALUE hash, VALUE capa_value, VALUE ifnone_unset, VALUE ifnone, VALUE block)
1731{
1732 rb_hash_modify(hash);
1733
1734 if (capa_value != INT2FIX(0)) {
1735 long capa = NUM2LONG(capa_value);
1736 if (capa > 0 && RHASH_SIZE(hash) == 0 && RHASH_AR_TABLE_P(hash)) {
1737 hash_st_table_init(hash, &objhash, capa);
1738 }
1739 }
1740
1741 if (!NIL_P(block)) {
1742 if (ifnone_unset != Qtrue) {
1743 rb_check_arity(1, 0, 0);
1744 }
1745 else {
1746 SET_PROC_DEFAULT(hash, block);
1747 }
1748 }
1749 else {
1750 RHASH_SET_IFNONE(hash, ifnone_unset == Qtrue ? Qnil : ifnone);
1751 }
1752
1753 hash_verify(hash);
1754 return hash;
1755}
1756
1757static VALUE rb_hash_to_a(VALUE hash);
1758
1759/*
1760 * call-seq:
1761 * Hash[] -> new_empty_hash
1762 * Hash[other_hash] -> new_hash
1763 * Hash[ [*2_element_arrays] ] -> new_hash
1764 * Hash[*objects] -> new_hash
1765 *
1766 * Returns a new \Hash object populated with the given objects, if any.
1767 * See Hash::new.
1768 *
1769 * With no argument given, returns a new empty hash.
1770 *
1771 * With a single argument +other_hash+ given that is a hash,
1772 * returns a new hash initialized with the entries from that hash
1773 * (but not with its +default+ or +default_proc+):
1774 *
1775 * h = {foo: 0, bar: 1, baz: 2}
1776 * Hash[h] # => {foo: 0, bar: 1, baz: 2}
1777 *
1778 * With a single argument +2_element_arrays+ given that is an array of 2-element arrays,
1779 * returns a new hash wherein each given 2-element array forms a
1780 * key-value entry:
1781 *
1782 * Hash[ [ [:foo, 0], [:bar, 1] ] ] # => {foo: 0, bar: 1}
1783 *
1784 * With an even number of arguments +objects+ given,
1785 * returns a new hash wherein each successive pair of arguments
1786 * is a key-value entry:
1787 *
1788 * Hash[:foo, 0, :bar, 1] # => {foo: 0, bar: 1}
1789 *
1790 * Raises ArgumentError if the argument list does not conform to any
1791 * of the above.
1792 *
1793 * See also {Methods for Creating a Hash}[rdoc-ref:Hash@Methods+for+Creating+a+Hash].
1794 */
1795
1796static VALUE
1797rb_hash_s_create(int argc, VALUE *argv, VALUE klass)
1798{
1799 VALUE hash, tmp;
1800
1801 if (argc == 1) {
1802 tmp = rb_hash_s_try_convert(Qnil, argv[0]);
1803 if (!NIL_P(tmp)) {
1804 if (!RHASH_EMPTY_P(tmp) && rb_hash_compare_by_id_p(tmp)) {
1805 /* hash_copy for non-empty hash will copy compare_by_identity
1806 flag, but we don't want it copied. Work around by
1807 converting hash to flattened array and using that. */
1808 tmp = rb_hash_to_a(tmp);
1809 }
1810 else {
1811 hash = hash_alloc(klass);
1812 if (!RHASH_EMPTY_P(tmp))
1813 hash_copy(hash, tmp);
1814 return hash;
1815 }
1816 }
1817 else {
1818 tmp = rb_check_array_type(argv[0]);
1819 }
1820
1821 if (!NIL_P(tmp)) {
1822 long i;
1823
1824 hash = hash_alloc(klass);
1825 for (i = 0; i < RARRAY_LEN(tmp); ++i) {
1826 VALUE e = RARRAY_AREF(tmp, i);
1827 VALUE v = rb_check_array_type(e);
1828 VALUE key, val = Qnil;
1829
1830 if (NIL_P(v)) {
1831 rb_raise(rb_eArgError, "wrong element type %s at %ld (expected array)",
1832 rb_builtin_class_name(e), i);
1833 }
1834 switch (RARRAY_LEN(v)) {
1835 default:
1836 rb_raise(rb_eArgError, "invalid number of elements (%ld for 1..2)",
1837 RARRAY_LEN(v));
1838 case 2:
1839 val = RARRAY_AREF(v, 1);
1840 case 1:
1841 key = RARRAY_AREF(v, 0);
1842 rb_hash_aset(hash, key, val);
1843 }
1844 }
1845 return hash;
1846 }
1847 }
1848 if (argc % 2 != 0) {
1849 rb_raise(rb_eArgError, "odd number of arguments for Hash");
1850 }
1851
1852 hash = hash_alloc(klass);
1853 rb_hash_bulk_insert(argc, argv, hash);
1854 hash_verify(hash);
1855 return hash;
1856}
1857
1858VALUE
1859rb_to_hash_type(VALUE hash)
1860{
1861 return rb_convert_type_with_id(hash, T_HASH, "Hash", idTo_hash);
1862}
1863#define to_hash rb_to_hash_type
1864
1865VALUE
1866rb_check_hash_type(VALUE hash)
1867{
1868 return rb_check_convert_type_with_id(hash, T_HASH, "Hash", idTo_hash);
1869}
1870
1871/*
1872 * call-seq:
1873 * Hash.try_convert(object) -> object, new_hash, or nil
1874 *
1875 * If +object+ is a hash, returns +object+.
1876 *
1877 * Otherwise if +object+ responds to +:to_hash+,
1878 * calls <tt>object.to_hash</tt>;
1879 * returns the result if it is a hash, or raises TypeError if not.
1880 *
1881 * Otherwise if +object+ does not respond to +:to_hash+, returns +nil+.
1882 */
1883static VALUE
1884rb_hash_s_try_convert(VALUE dummy, VALUE hash)
1885{
1886 return rb_check_hash_type(hash);
1887}
1888
1889/*
1890 * call-seq:
1891 * Hash.ruby2_keywords_hash?(hash) -> true or false
1892 *
1893 * Checks if a given hash is flagged by Module#ruby2_keywords (or
1894 * Proc#ruby2_keywords).
1895 * This method is not for casual use; debugging, researching, and
1896 * some truly necessary cases like serialization of arguments.
1897 *
1898 * ruby2_keywords def foo(*args)
1899 * Hash.ruby2_keywords_hash?(args.last)
1900 * end
1901 * foo(k: 1) #=> true
1902 * foo({k: 1}) #=> false
1903 */
1904static VALUE
1905rb_hash_s_ruby2_keywords_hash_p(VALUE dummy, VALUE hash)
1906{
1907 Check_Type(hash, T_HASH);
1908 return RBOOL(RHASH(hash)->basic.flags & RHASH_PASS_AS_KEYWORDS);
1909}
1910
1911/*
1912 * call-seq:
1913 * Hash.ruby2_keywords_hash(hash) -> hash
1914 *
1915 * Duplicates a given hash and adds a ruby2_keywords flag.
1916 * This method is not for casual use; debugging, researching, and
1917 * some truly necessary cases like deserialization of arguments.
1918 *
1919 * h = {k: 1}
1920 * h = Hash.ruby2_keywords_hash(h)
1921 * def foo(k: 42)
1922 * k
1923 * end
1924 * foo(*[h]) #=> 1 with neither a warning or an error
1925 */
1926static VALUE
1927rb_hash_s_ruby2_keywords_hash(VALUE dummy, VALUE hash)
1928{
1929 Check_Type(hash, T_HASH);
1930 VALUE tmp = rb_hash_dup(hash);
1931 if (RHASH_EMPTY_P(hash) && rb_hash_compare_by_id_p(hash)) {
1932 rb_hash_compare_by_id(tmp);
1933 }
1934 RHASH(tmp)->basic.flags |= RHASH_PASS_AS_KEYWORDS;
1935 return tmp;
1936}
1937
1939 VALUE hash;
1940 st_table *tbl;
1941};
1942
1943static int
1944rb_hash_rehash_i(VALUE key, VALUE value, VALUE arg)
1945{
1946 if (RHASH_AR_TABLE_P(arg)) {
1947 ar_insert(arg, (st_data_t)key, (st_data_t)value);
1948 }
1949 else {
1950 st_insert(RHASH_ST_TABLE(arg), (st_data_t)key, (st_data_t)value);
1951 }
1952 return ST_CONTINUE;
1953}
1954
1955/*
1956 * call-seq:
1957 * rehash -> self
1958 *
1959 * Rebuilds the hash table for +self+ by recomputing the hash index for each key;
1960 * returns <tt>self</tt>.
1961 * Calling this method ensures that the hash table is valid.
1962 *
1963 * The hash table becomes invalid if the hash value of a key
1964 * has changed after the entry was created.
1965 * See {Modifying an Active Hash Key}[rdoc-ref:Hash@Modifying+an+Active+Hash+Key].
1966 */
1967
1968VALUE
1969rb_hash_rehash(VALUE hash)
1970{
1971 VALUE tmp;
1972 st_table *tbl;
1973
1974 if (hash_iterating_p(hash)) {
1975 rb_raise(rb_eRuntimeError, "rehash during iteration");
1976 }
1977 rb_hash_modify_check(hash);
1978 if (RHASH_AR_TABLE_P(hash)) {
1979 tmp = hash_alloc(0);
1980 rb_hash_foreach(hash, rb_hash_rehash_i, (VALUE)tmp);
1981
1982 hash_ar_free_and_clear_table(hash);
1983 ar_copy(hash, tmp);
1984 }
1985 else if (RHASH_ST_TABLE_P(hash)) {
1986 st_table *old_tab = RHASH_ST_TABLE(hash);
1987 tmp = hash_alloc(0);
1988
1989 hash_st_table_init(tmp, old_tab->type, old_tab->num_entries);
1990 tbl = RHASH_ST_TABLE(tmp);
1991
1992 rb_hash_foreach(hash, rb_hash_rehash_i, (VALUE)tmp);
1993
1994 hash_st_free(hash);
1995 RHASH_ST_TABLE_SET(hash, tbl);
1996 RHASH_ST_CLEAR(tmp);
1997 }
1998 hash_verify(hash);
1999 return hash;
2000}
2001
2002static VALUE
2003call_default_proc(VALUE proc, VALUE hash, VALUE key)
2004{
2005 VALUE args[2] = {hash, key};
2006 return rb_proc_call_with_block(proc, 2, args, Qnil);
2007}
2008
2009bool
2010rb_hash_default_unredefined(VALUE hash)
2011{
2012 VALUE klass = RBASIC_CLASS(hash);
2013 if (LIKELY(klass == rb_cHash)) {
2014 return !!BASIC_OP_UNREDEFINED_P(BOP_DEFAULT, HASH_REDEFINED_OP_FLAG);
2015 }
2016 else {
2017 return LIKELY(rb_method_basic_definition_p(klass, id_default));
2018 }
2019}
2020
2021VALUE
2022rb_hash_default_value(VALUE hash, VALUE key)
2023{
2025
2026 if (LIKELY(rb_hash_default_unredefined(hash))) {
2027 VALUE ifnone = RHASH_IFNONE(hash);
2028 if (LIKELY(!FL_TEST_RAW(hash, RHASH_PROC_DEFAULT))) return ifnone;
2029 if (UNDEF_P(key)) return Qnil;
2030 return call_default_proc(ifnone, hash, key);
2031 }
2032 else {
2033 return rb_funcall(hash, id_default, 1, key);
2034 }
2035}
2036
2037static inline int
2038hash_stlike_lookup(VALUE hash, st_data_t key, st_data_t *pval)
2039{
2040 hash_verify(hash);
2041
2042 if (RHASH_AR_TABLE_P(hash)) {
2043 return ar_lookup(hash, key, pval);
2044 }
2045 else {
2046 extern st_index_t rb_iseq_cdhash_hash(VALUE);
2047 RUBY_ASSERT(RHASH_ST_TABLE(hash)->type->hash == rb_any_hash ||
2048 RHASH_ST_TABLE(hash)->type->hash == rb_ident_hash ||
2049 RHASH_ST_TABLE(hash)->type->hash == rb_iseq_cdhash_hash);
2050 return st_lookup(RHASH_ST_TABLE(hash), key, pval);
2051 }
2052}
2053
2054int
2055rb_hash_stlike_lookup(VALUE hash, st_data_t key, st_data_t *pval)
2056{
2057 return hash_stlike_lookup(hash, key, pval);
2058}
2059
2060/*
2061 * call-seq:
2062 * self[key] -> object
2063 *
2064 * Searches for a hash key equivalent to the given +key+;
2065 * see {Hash Key Equivalence}[rdoc-ref:Hash@Hash+Key+Equivalence].
2066 *
2067 * If the key is found, returns its value:
2068 *
2069 * {foo: 0, bar: 1, baz: 2}
2070 * h[:bar] # => 1
2071 *
2072 * Otherwise, returns a default value (see {Hash Default}[rdoc-ref:Hash@Hash+Default]).
2073 *
2074 * Related: #[]=; see also {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
2075 */
2076
2077VALUE
2078rb_hash_aref(VALUE hash, VALUE key)
2079{
2080 st_data_t val;
2081
2082 if (hash_stlike_lookup(hash, key, &val)) {
2083 return (VALUE)val;
2084 }
2085 else {
2086 return rb_hash_default_value(hash, key);
2087 }
2088}
2089
2090VALUE
2091rb_hash_lookup2(VALUE hash, VALUE key, VALUE def)
2092{
2093 st_data_t val;
2094
2095 if (hash_stlike_lookup(hash, key, &val)) {
2096 return (VALUE)val;
2097 }
2098 else {
2099 return def; /* without Hash#default */
2100 }
2101}
2102
2103VALUE
2104rb_hash_lookup(VALUE hash, VALUE key)
2105{
2106 return rb_hash_lookup2(hash, key, Qnil);
2107}
2108
2109/*
2110 * call-seq:
2111 * fetch(key) -> object
2112 * fetch(key, default_value) -> object
2113 * fetch(key) {|key| ... } -> object
2114 *
2115 * With no block given, returns the value for the given +key+, if found;
2116 *
2117 * h = {foo: 0, bar: 1, baz: 2}
2118 * h.fetch(:bar) # => 1
2119 *
2120 * If the key is not found, returns +default_value+, if given,
2121 * or raises KeyError otherwise:
2122 *
2123 * h.fetch(:nosuch, :default) # => :default
2124 * h.fetch(:nosuch) # Raises KeyError.
2125 *
2126 * With a block given, calls the block with +key+ and returns the block's return value:
2127 *
2128 * {}.fetch(:nosuch) {|key| "No key #{key}"} # => "No key nosuch"
2129 *
2130 * Note that this method does not use the values of either #default or #default_proc.
2131 *
2132 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
2133 */
2134
2135static VALUE
2136rb_hash_fetch_m(int argc, VALUE *argv, VALUE hash)
2137{
2138 VALUE key;
2139 st_data_t val;
2140 long block_given;
2141
2142 rb_check_arity(argc, 1, 2);
2143 key = argv[0];
2144
2145 block_given = rb_block_given_p();
2146 if (block_given && argc == 2) {
2147 rb_warn("block supersedes default value argument");
2148 }
2149
2150 if (hash_stlike_lookup(hash, key, &val)) {
2151 return (VALUE)val;
2152 }
2153 else {
2154 if (block_given) {
2155 return rb_yield(key);
2156 }
2157 else if (argc == 1) {
2158 VALUE desc = rb_protect(rb_inspect, key, 0);
2159 if (NIL_P(desc)) {
2160 desc = rb_any_to_s(key);
2161 }
2162 desc = rb_str_ellipsize(desc, 65);
2163 rb_key_err_raise(rb_sprintf("key not found: %"PRIsVALUE, desc), hash, key);
2164 }
2165 else {
2166 return argv[1];
2167 }
2168 }
2169}
2170
2171VALUE
2172rb_hash_fetch(VALUE hash, VALUE key)
2173{
2174 return rb_hash_fetch_m(1, &key, hash);
2175}
2176
2177/*
2178 * call-seq:
2179 * default -> object
2180 * default(key) -> object
2181 *
2182 * Returns the default value for the given +key+.
2183 * The returned value will be determined either by the default proc or by the default value.
2184 * See {Hash Default}[rdoc-ref:Hash@Hash+Default].
2185 *
2186 * With no argument, returns the current default value:
2187 * h = {}
2188 * h.default # => nil
2189 *
2190 * If +key+ is given, returns the default value for +key+,
2191 * regardless of whether that key exists:
2192 * h = Hash.new { |hash, key| hash[key] = "No key #{key}"}
2193 * h[:foo] = "Hello"
2194 * h.default(:foo) # => "No key foo"
2195 */
2196
2197static VALUE
2198rb_hash_default(int argc, VALUE *argv, VALUE hash)
2199{
2200 VALUE ifnone;
2201
2202 rb_check_arity(argc, 0, 1);
2203 ifnone = RHASH_IFNONE(hash);
2204 if (FL_TEST(hash, RHASH_PROC_DEFAULT)) {
2205 if (argc == 0) return Qnil;
2206 return call_default_proc(ifnone, hash, argv[0]);
2207 }
2208 return ifnone;
2209}
2210
2211/*
2212 * call-seq:
2213 * default = value -> object
2214 *
2215 * Sets the default value to +value+; returns +value+:
2216 * h = {}
2217 * h.default # => nil
2218 * h.default = false # => false
2219 * h.default # => false
2220 *
2221 * See {Hash Default}[rdoc-ref:Hash@Hash+Default].
2222 */
2223
2224static VALUE
2225rb_hash_set_default(VALUE hash, VALUE ifnone)
2226{
2227 rb_hash_modify_check(hash);
2228 SET_DEFAULT(hash, ifnone);
2229 return ifnone;
2230}
2231
2232/*
2233 * call-seq:
2234 * default_proc -> proc or nil
2235 *
2236 * Returns the default proc for +self+
2237 * (see {Hash Default}[rdoc-ref:Hash@Hash+Default]):
2238 * h = {}
2239 * h.default_proc # => nil
2240 * h.default_proc = proc {|hash, key| "Default value for #{key}" }
2241 * h.default_proc.class # => Proc
2242 */
2243
2244static VALUE
2245rb_hash_default_proc(VALUE hash)
2246{
2247 if (FL_TEST(hash, RHASH_PROC_DEFAULT)) {
2248 return RHASH_IFNONE(hash);
2249 }
2250 return Qnil;
2251}
2252
2253/*
2254 * call-seq:
2255 * default_proc = proc -> proc
2256 *
2257 * Sets the default proc for +self+ to +proc+
2258 * (see {Hash Default}[rdoc-ref:Hash@Hash+Default]):
2259 * h = {}
2260 * h.default_proc # => nil
2261 * h.default_proc = proc { |hash, key| "Default value for #{key}" }
2262 * h.default_proc.class # => Proc
2263 * h.default_proc = nil
2264 * h.default_proc # => nil
2265 */
2266
2267VALUE
2268rb_hash_set_default_proc(VALUE hash, VALUE proc)
2269{
2270 VALUE b;
2271
2272 rb_hash_modify_check(hash);
2273 if (NIL_P(proc)) {
2274 SET_DEFAULT(hash, proc);
2275 return proc;
2276 }
2277 b = rb_check_convert_type_with_id(proc, T_DATA, "Proc", idTo_proc);
2278 if (NIL_P(b) || !rb_obj_is_proc(b)) {
2279 rb_raise(rb_eTypeError,
2280 "wrong default_proc type %s (expected Proc)",
2281 rb_obj_classname(proc));
2282 }
2283 proc = b;
2284 SET_PROC_DEFAULT(hash, proc);
2285 return proc;
2286}
2287
2288static int
2289key_i(VALUE key, VALUE value, VALUE arg)
2290{
2291 VALUE *args = (VALUE *)arg;
2292
2293 if (rb_equal(value, args[0])) {
2294 args[1] = key;
2295 return ST_STOP;
2296 }
2297 return ST_CONTINUE;
2298}
2299
2300/*
2301 * call-seq:
2302 * key(value) -> key or nil
2303 *
2304 * Returns the key for the first-found entry with the given +value+
2305 * (see {Entry Order}[rdoc-ref:Hash@Entry+Order]):
2306 *
2307 * h = {foo: 0, bar: 2, baz: 2}
2308 * h.key(0) # => :foo
2309 * h.key(2) # => :bar
2310 *
2311 * Returns +nil+ if no such value is found.
2312 *
2313 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
2314 */
2315
2316static VALUE
2317rb_hash_key(VALUE hash, VALUE value)
2318{
2319 VALUE args[2];
2320
2321 args[0] = value;
2322 args[1] = Qnil;
2323
2324 rb_hash_foreach(hash, key_i, (VALUE)args);
2325
2326 return args[1];
2327}
2328
2329int
2330rb_hash_stlike_delete(VALUE hash, st_data_t *pkey, st_data_t *pval)
2331{
2332 if (RHASH_AR_TABLE_P(hash)) {
2333 return ar_delete(hash, pkey, pval);
2334 }
2335 else {
2336 return st_delete(RHASH_ST_TABLE(hash), pkey, pval);
2337 }
2338}
2339
2340/*
2341 * delete a specified entry by a given key.
2342 * if there is the corresponding entry, return a value of the entry.
2343 * if there is no corresponding entry, return Qundef.
2344 */
2345VALUE
2346rb_hash_delete_entry(VALUE hash, VALUE key)
2347{
2348 st_data_t ktmp = (st_data_t)key, val;
2349
2350 if (rb_hash_stlike_delete(hash, &ktmp, &val)) {
2351 return (VALUE)val;
2352 }
2353 else {
2354 return Qundef;
2355 }
2356}
2357
2358/*
2359 * delete a specified entry by a given key.
2360 * if there is the corresponding entry, return a value of the entry.
2361 * if there is no corresponding entry, return Qnil.
2362 */
2363VALUE
2364rb_hash_delete(VALUE hash, VALUE key)
2365{
2366 VALUE deleted_value = rb_hash_delete_entry(hash, key);
2367
2368 if (!UNDEF_P(deleted_value)) { /* likely pass */
2369 return deleted_value;
2370 }
2371 else {
2372 return Qnil;
2373 }
2374}
2375
2376/*
2377 * call-seq:
2378 * delete(key) -> value or nil
2379 * delete(key) {|key| ... } -> object
2380 *
2381 * If an entry for the given +key+ is found,
2382 * deletes the entry and returns its associated value;
2383 * otherwise returns +nil+ or calls the given block.
2384 *
2385 * With no block given and +key+ found, deletes the entry and returns its value:
2386 *
2387 * h = {foo: 0, bar: 1, baz: 2}
2388 * h.delete(:bar) # => 1
2389 * h # => {foo: 0, baz: 2}
2390 *
2391 * With no block given and +key+ not found, returns +nil+.
2392 *
2393 * With a block given and +key+ found, ignores the block,
2394 * deletes the entry, and returns its value:
2395 *
2396 * h = {foo: 0, bar: 1, baz: 2}
2397 * h.delete(:baz) { |key| raise 'Will never happen'} # => 2
2398 * h # => {foo: 0, bar: 1}
2399 *
2400 * With a block given and +key+ not found,
2401 * calls the block and returns the block's return value:
2402 *
2403 * h = {foo: 0, bar: 1, baz: 2}
2404 * h.delete(:nosuch) { |key| "Key #{key} not found" } # => "Key nosuch not found"
2405 * h # => {foo: 0, bar: 1, baz: 2}
2406 *
2407 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2408 */
2409
2410static VALUE
2411rb_hash_delete_m(VALUE hash, VALUE key)
2412{
2413 VALUE val;
2414
2415 rb_hash_modify_check(hash);
2416 val = rb_hash_delete_entry(hash, key);
2417
2418 if (!UNDEF_P(val)) {
2419 compact_after_delete(hash);
2420 return val;
2421 }
2422 else {
2423 if (rb_block_given_p()) {
2424 return rb_yield(key);
2425 }
2426 else {
2427 return Qnil;
2428 }
2429 }
2430}
2431
2433 VALUE key;
2434 VALUE val;
2435};
2436
2437static int
2438shift_i_safe(VALUE key, VALUE value, VALUE arg)
2439{
2440 struct shift_var *var = (struct shift_var *)arg;
2441
2442 var->key = key;
2443 var->val = value;
2444 return ST_STOP;
2445}
2446
2447/*
2448 * call-seq:
2449 * shift -> [key, value] or nil
2450 *
2451 * Removes and returns the first entry of +self+ as a 2-element array;
2452 * see {Entry Order}[rdoc-ref:Hash@Entry+Order]:
2453 *
2454 * h = {foo: 0, bar: 1, baz: 2}
2455 * h.shift # => [:foo, 0]
2456 * h # => {bar: 1, baz: 2}
2457 *
2458 * Returns +nil+ if +self+ is empty.
2459 *
2460 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2461 */
2462
2463static VALUE
2464rb_hash_shift(VALUE hash)
2465{
2466 struct shift_var var;
2467
2468 rb_hash_modify_check(hash);
2469 if (RHASH_AR_TABLE_P(hash)) {
2470 var.key = Qundef;
2471 if (!hash_iterating_p(hash)) {
2472 if (ar_shift(hash, &var.key, &var.val)) {
2473 return rb_assoc_new(var.key, var.val);
2474 }
2475 }
2476 else {
2477 rb_hash_foreach(hash, shift_i_safe, (VALUE)&var);
2478 if (!UNDEF_P(var.key)) {
2479 rb_hash_delete_entry(hash, var.key);
2480 return rb_assoc_new(var.key, var.val);
2481 }
2482 }
2483 }
2484 if (RHASH_ST_TABLE_P(hash)) {
2485 var.key = Qundef;
2486 if (!hash_iterating_p(hash)) {
2487 if (st_shift(RHASH_ST_TABLE(hash), &var.key, &var.val)) {
2488 return rb_assoc_new(var.key, var.val);
2489 }
2490 }
2491 else {
2492 rb_hash_foreach(hash, shift_i_safe, (VALUE)&var);
2493 if (!UNDEF_P(var.key)) {
2494 rb_hash_delete_entry(hash, var.key);
2495 return rb_assoc_new(var.key, var.val);
2496 }
2497 }
2498 }
2499 return Qnil;
2500}
2501
2502static int
2503delete_if_i(VALUE key, VALUE value, VALUE hash)
2504{
2505 if (RTEST(rb_yield_values(2, key, value))) {
2506 rb_hash_modify(hash);
2507 return ST_DELETE;
2508 }
2509 return ST_CONTINUE;
2510}
2511
2512static VALUE
2513hash_enum_size(VALUE hash, VALUE args, VALUE eobj)
2514{
2515 return rb_hash_size(hash);
2516}
2517
2518/*
2519 * call-seq:
2520 * delete_if {|key, value| ... } -> self
2521 * delete_if -> new_enumerator
2522 *
2523 * With a block given, calls the block with each key-value pair,
2524 * deletes each entry for which the block returns a truthy value,
2525 * and returns +self+:
2526 *
2527 * h = {foo: 0, bar: 1, baz: 2}
2528 * h.delete_if {|key, value| value > 0 } # => {foo: 0}
2529 *
2530 * With no block given, returns a new Enumerator.
2531 *
2532 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2533 */
2534
2535VALUE
2536rb_hash_delete_if(VALUE hash)
2537{
2538 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2539 rb_hash_modify_check(hash);
2540 if (!RHASH_TABLE_EMPTY_P(hash)) {
2541 rb_hash_foreach(hash, delete_if_i, hash);
2542 compact_after_delete(hash);
2543 }
2544 return hash;
2545}
2546
2547/*
2548 * call-seq:
2549 * reject! {|key, value| ... } -> self or nil
2550 * reject! -> new_enumerator
2551 *
2552 * With a block given, calls the block with each entry's key and value;
2553 * removes the entry from +self+ if the block returns a truthy value.
2554 *
2555 * Return +self+ if any entries were removed, +nil+ otherwise:
2556 *
2557 * h = {foo: 0, bar: 1, baz: 2}
2558 * h.reject! {|key, value| value < 2 } # => {baz: 2}
2559 * h.reject! {|key, value| value < 2 } # => nil
2560 *
2561 * With no block given, returns a new Enumerator.
2562 *
2563 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2564 */
2565
2566static VALUE
2567rb_hash_reject_bang(VALUE hash)
2568{
2569 st_index_t n;
2570
2571 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2572 rb_hash_modify(hash);
2573 n = RHASH_SIZE(hash);
2574 if (!n) return Qnil;
2575 rb_hash_foreach(hash, delete_if_i, hash);
2576 if (n == RHASH_SIZE(hash)) return Qnil;
2577 return hash;
2578}
2579
2580/*
2581 * call-seq:
2582 * reject {|key, value| ... } -> new_hash
2583 * reject -> new_enumerator
2584 *
2585 * With a block given, returns a copy of +self+ with zero or more entries removed;
2586 * calls the block with each key-value pair;
2587 * excludes the entry in the copy if the block returns a truthy value,
2588 * includes it otherwise:
2589 *
2590 * h = {foo: 0, bar: 1, baz: 2}
2591 * h.reject {|key, value| key.start_with?('b') }
2592 * # => {foo: 0}
2593 *
2594 * With no block given, returns a new Enumerator.
2595 *
2596 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2597 */
2598
2599static VALUE
2600rb_hash_reject(VALUE hash)
2601{
2602 VALUE result;
2603
2604 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2605 result = hash_dup_with_compare_by_id(hash);
2606 if (!RHASH_EMPTY_P(hash)) {
2607 rb_hash_foreach(result, delete_if_i, result);
2608 compact_after_delete(result);
2609 }
2610 return result;
2611}
2612
2613/*
2614 * call-seq:
2615 * slice(*keys) -> new_hash
2616 *
2617 * Returns a new hash containing the entries from +self+ for the given +keys+;
2618 * ignores any keys that are not found:
2619 *
2620 * h = {foo: 0, bar: 1, baz: 2}
2621 * h.slice(:baz, :foo, :nosuch) # => {baz: 2, foo: 0}
2622 *
2623 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2624 */
2625
2626static VALUE
2627rb_hash_slice(int argc, VALUE *argv, VALUE hash)
2628{
2629 int i;
2630 VALUE key, value, result;
2631
2632 if (argc == 0 || RHASH_EMPTY_P(hash)) {
2633 return copy_compare_by_id(rb_hash_new(), hash);
2634 }
2635 result = copy_compare_by_id(rb_hash_new_with_size(argc), hash);
2636
2637 for (i = 0; i < argc; i++) {
2638 key = argv[i];
2639 value = rb_hash_lookup2(hash, key, Qundef);
2640 if (!UNDEF_P(value))
2641 rb_hash_aset(result, key, value);
2642 }
2643
2644 return result;
2645}
2646
2647/*
2648 * call-seq:
2649 * except(*keys) -> new_hash
2650 *
2651 * Returns a copy of +self+ that excludes entries for the given +keys+;
2652 * any +keys+ that are not found are ignored:
2653 *
2654 * h = {foo:0, bar: 1, baz: 2} # => {:foo=>0, :bar=>1, :baz=>2}
2655 * h.except(:baz, :foo) # => {:bar=>1}
2656 * h.except(:bar, :nosuch) # => {:foo=>0, :baz=>2}
2657 *
2658 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2659 */
2660
2661static VALUE
2662rb_hash_except(int argc, VALUE *argv, VALUE hash)
2663{
2664 int i;
2665 VALUE key, result;
2666
2667 result = hash_dup_with_compare_by_id(hash);
2668
2669 for (i = 0; i < argc; i++) {
2670 key = argv[i];
2671 rb_hash_delete(result, key);
2672 }
2673 compact_after_delete(result);
2674
2675 return result;
2676}
2677
2678/*
2679 * call-seq:
2680 * values_at(*keys) -> new_array
2681 *
2682 * Returns a new array containing values for the given +keys+:
2683 *
2684 * h = {foo: 0, bar: 1, baz: 2}
2685 * h.values_at(:baz, :foo) # => [2, 0]
2686 *
2687 * The {hash default}[rdoc-ref:Hash@Hash+Default] is returned
2688 * for each key that is not found:
2689 *
2690 * h.values_at(:hello, :foo) # => [nil, 0]
2691 *
2692 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
2693 */
2694
2695static VALUE
2696rb_hash_values_at(int argc, VALUE *argv, VALUE hash)
2697{
2698 VALUE result = rb_ary_new2(argc);
2699 long i;
2700
2701 for (i=0; i<argc; i++) {
2702 rb_ary_push(result, rb_hash_aref(hash, argv[i]));
2703 }
2704 return result;
2705}
2706
2707/*
2708 * call-seq:
2709 * fetch_values(*keys) -> new_array
2710 * fetch_values(*keys) {|key| ... } -> new_array
2711 *
2712 * When all given +keys+ are found,
2713 * returns a new array containing the values associated with the given +keys+:
2714 *
2715 * h = {foo: 0, bar: 1, baz: 2}
2716 * h.fetch_values(:baz, :foo) # => [2, 0]
2717 *
2718 * When any given +keys+ are not found and a block is given,
2719 * calls the block with each unfound key and uses the block's return value
2720 * as the value for that key:
2721 *
2722 * h.fetch_values(:bar, :foo, :bad, :bam) {|key| key.to_s}
2723 * # => [1, 0, "bad", "bam"]
2724 *
2725 * When any given +keys+ are not found and no block is given,
2726 * raises KeyError.
2727 *
2728 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
2729 */
2730
2731static VALUE
2732rb_hash_fetch_values(int argc, VALUE *argv, VALUE hash)
2733{
2734 VALUE result = rb_ary_new2(argc);
2735 long i;
2736
2737 for (i=0; i<argc; i++) {
2738 rb_ary_push(result, rb_hash_fetch(hash, argv[i]));
2739 }
2740 return result;
2741}
2742
2743static int
2744keep_if_i(VALUE key, VALUE value, VALUE hash)
2745{
2746 if (!RTEST(rb_yield_values(2, key, value))) {
2747 rb_hash_modify(hash);
2748 return ST_DELETE;
2749 }
2750 return ST_CONTINUE;
2751}
2752
2753/*
2754 * call-seq:
2755 * select {|key, value| ... } -> new_hash
2756 * select -> new_enumerator
2757 *
2758 * With a block given, calls the block with each entry's key and value;
2759 * returns a new hash whose entries are those for which the block returns a truthy value:
2760 *
2761 * h = {foo: 0, bar: 1, baz: 2}
2762 * h.select {|key, value| value < 2 } # => {foo: 0, bar: 1}
2763 *
2764 * With no block given, returns a new Enumerator.
2765 *
2766 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2767 */
2768
2769static VALUE
2770rb_hash_select(VALUE hash)
2771{
2772 VALUE result;
2773
2774 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2775 result = hash_dup_with_compare_by_id(hash);
2776 if (!RHASH_EMPTY_P(hash)) {
2777 rb_hash_foreach(result, keep_if_i, result);
2778 compact_after_delete(result);
2779 }
2780 return result;
2781}
2782
2783/*
2784 * call-seq:
2785 * select! {|key, value| ... } -> self or nil
2786 * select! -> new_enumerator
2787 *
2788 * With a block given, calls the block with each entry's key and value;
2789 * removes from +self+ each entry for which the block returns +false+ or +nil+.
2790 *
2791 * Returns +self+ if any entries were removed, +nil+ otherwise:
2792 *
2793 * h = {foo: 0, bar: 1, baz: 2}
2794 * h.select! {|key, value| value < 2 } # => {foo: 0, bar: 1}
2795 * h.select! {|key, value| value < 2 } # => nil
2796 *
2797 *
2798 * With no block given, returns a new Enumerator.
2799 *
2800 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2801 */
2802
2803static VALUE
2804rb_hash_select_bang(VALUE hash)
2805{
2806 st_index_t n;
2807
2808 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2809 rb_hash_modify_check(hash);
2810 n = RHASH_SIZE(hash);
2811 if (!n) return Qnil;
2812 rb_hash_foreach(hash, keep_if_i, hash);
2813 if (n == RHASH_SIZE(hash)) return Qnil;
2814 return hash;
2815}
2816
2817/*
2818 * call-seq:
2819 * keep_if {|key, value| ... } -> self
2820 * keep_if -> new_enumerator
2821 *
2822 * With a block given, calls the block for each key-value pair;
2823 * retains the entry if the block returns a truthy value;
2824 * otherwise deletes the entry; returns +self+:
2825 *
2826 * h = {foo: 0, bar: 1, baz: 2}
2827 * h.keep_if { |key, value| key.start_with?('b') } # => {bar: 1, baz: 2}
2828 *
2829 * With no block given, returns a new Enumerator.
2830 *
2831 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2832 */
2833
2834static VALUE
2835rb_hash_keep_if(VALUE hash)
2836{
2837 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
2838 rb_hash_modify_check(hash);
2839 if (!RHASH_TABLE_EMPTY_P(hash)) {
2840 rb_hash_foreach(hash, keep_if_i, hash);
2841 }
2842 return hash;
2843}
2844
2845static int
2846clear_i(VALUE key, VALUE value, VALUE dummy)
2847{
2848 return ST_DELETE;
2849}
2850
2851/*
2852 * call-seq:
2853 * clear -> self
2854 *
2855 * Removes all entries from +self+; returns emptied +self+.
2856 *
2857 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
2858 */
2859
2860VALUE
2861rb_hash_clear(VALUE hash)
2862{
2863 rb_hash_modify_check(hash);
2864
2865 if (hash_iterating_p(hash)) {
2866 rb_hash_foreach(hash, clear_i, 0);
2867 }
2868 else if (RHASH_AR_TABLE_P(hash)) {
2869 ar_clear(hash);
2870 }
2871 else {
2872 st_clear(RHASH_ST_TABLE(hash));
2873 compact_after_delete(hash);
2874 }
2875
2876 return hash;
2877}
2878
2879static int
2880hash_aset(st_data_t *key, st_data_t *val, struct update_arg *arg, int existing)
2881{
2882 *val = arg->arg;
2883 return ST_CONTINUE;
2884}
2885
2886VALUE
2887rb_hash_key_str(VALUE key)
2888{
2889 if (!RB_FL_ANY_RAW(key, FL_EXIVAR) && RBASIC_CLASS(key) == rb_cString) {
2890 return rb_fstring(key);
2891 }
2892 else {
2893 return rb_str_new_frozen(key);
2894 }
2895}
2896
2897static int
2898hash_aset_str(st_data_t *key, st_data_t *val, struct update_arg *arg, int existing)
2899{
2900 if (!existing && !RB_OBJ_FROZEN(*key)) {
2901 *key = rb_hash_key_str(*key);
2902 }
2903 return hash_aset(key, val, arg, existing);
2904}
2905
2906NOINSERT_UPDATE_CALLBACK(hash_aset)
2907NOINSERT_UPDATE_CALLBACK(hash_aset_str)
2908
2909/*
2910 * call-seq:
2911 * self[key] = object -> object
2912 *
2913 * Associates the given +object+ with the given +key+; returns +object+.
2914 *
2915 * Searches for a hash key equivalent to the given +key+;
2916 * see {Hash Key Equivalence}[rdoc-ref:Hash@Hash+Key+Equivalence].
2917 *
2918 * If the key is found, replaces its value with the given +object+;
2919 * the ordering is not affected
2920 * (see {Entry Order}[rdoc-ref:Hash@Entry+Order]):
2921 *
2922 * h = {foo: 0, bar: 1}
2923 * h[:foo] = 2 # => 2
2924 * h[:foo] # => 2
2925 *
2926 * If +key+ is not found, creates a new entry for the given +key+ and +object+;
2927 * the new entry is last in the order
2928 * (see {Entry Order}[rdoc-ref:Hash@Entry+Order]):
2929 *
2930 * h = {foo: 0, bar: 1}
2931 * h[:baz] = 2 # => 2
2932 * h[:baz] # => 2
2933 * h # => {:foo=>0, :bar=>1, :baz=>2}
2934 *
2935 * Related: #[]; see also {Methods for Assigning}[rdoc-ref:Hash@Methods+for+Assigning].
2936 */
2937
2938VALUE
2939rb_hash_aset(VALUE hash, VALUE key, VALUE val)
2940{
2941 bool iter_p = hash_iterating_p(hash);
2942
2943 rb_hash_modify(hash);
2944
2945 if (!RHASH_STRING_KEY_P(hash, key)) {
2946 RHASH_UPDATE_ITER(hash, iter_p, key, hash_aset, val);
2947 }
2948 else {
2949 RHASH_UPDATE_ITER(hash, iter_p, key, hash_aset_str, val);
2950 }
2951 return val;
2952}
2953
2954/*
2955 * call-seq:
2956 * replace(other_hash) -> self
2957 *
2958 * Replaces the entire contents of +self+ with the contents of +other_hash+;
2959 * returns +self+:
2960 *
2961 * h = {foo: 0, bar: 1, baz: 2}
2962 * h.replace({bat: 3, bam: 4}) # => {bat: 3, bam: 4}
2963 *
2964 * Related: see {Methods for Assigning}[rdoc-ref:Hash@Methods+for+Assigning].
2965 */
2966
2967static VALUE
2968rb_hash_replace(VALUE hash, VALUE hash2)
2969{
2970 rb_hash_modify_check(hash);
2971 if (hash == hash2) return hash;
2972 if (hash_iterating_p(hash)) {
2973 rb_raise(rb_eRuntimeError, "can't replace hash during iteration");
2974 }
2975 hash2 = to_hash(hash2);
2976
2977 COPY_DEFAULT(hash, hash2);
2978
2979 if (RHASH_AR_TABLE_P(hash)) {
2980 hash_ar_free_and_clear_table(hash);
2981 }
2982 else {
2983 hash_st_free_and_clear_table(hash);
2984 }
2985
2986 hash_copy(hash, hash2);
2987
2988 return hash;
2989}
2990
2991/*
2992 * call-seq:
2993 * size -> integer
2994 *
2995 * Returns the count of entries in +self+:
2996 *
2997 * {foo: 0, bar: 1, baz: 2}.size # => 3
2998 *
2999 * Related: see {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
3000 */
3001
3002VALUE
3003rb_hash_size(VALUE hash)
3004{
3005 return INT2FIX(RHASH_SIZE(hash));
3006}
3007
3008size_t
3009rb_hash_size_num(VALUE hash)
3010{
3011 return (long)RHASH_SIZE(hash);
3012}
3013
3014/*
3015 * call-seq:
3016 * empty? -> true or false
3017 *
3018 * Returns +true+ if there are no hash entries, +false+ otherwise:
3019 *
3020 * {}.empty? # => true
3021 * {foo: 0}.empty? # => false
3022 *
3023 * Related: see {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
3024 */
3025
3026VALUE
3027rb_hash_empty_p(VALUE hash)
3028{
3029 return RBOOL(RHASH_EMPTY_P(hash));
3030}
3031
3032static int
3033each_value_i(VALUE key, VALUE value, VALUE _)
3034{
3035 rb_yield(value);
3036 return ST_CONTINUE;
3037}
3038
3039/*
3040 * call-seq:
3041 * each_value {|value| ... } -> self
3042 * each_value -> new_enumerator
3043 *
3044 * With a block given, calls the block with each value; returns +self+:
3045 *
3046 * h = {foo: 0, bar: 1, baz: 2}
3047 * h.each_value {|value| puts value } # => {foo: 0, bar: 1, baz: 2}
3048 *
3049 * Output:
3050 * 0
3051 * 1
3052 * 2
3053 *
3054 * With no block given, returns a new Enumerator.
3055 *
3056 * Related: see {Methods for Iterating}[rdoc-ref:Hash@Methods+for+Iterating].
3057 */
3058
3059static VALUE
3060rb_hash_each_value(VALUE hash)
3061{
3062 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3063 rb_hash_foreach(hash, each_value_i, 0);
3064 return hash;
3065}
3066
3067static int
3068each_key_i(VALUE key, VALUE value, VALUE _)
3069{
3070 rb_yield(key);
3071 return ST_CONTINUE;
3072}
3073
3074/*
3075 * call-seq:
3076 * each_key {|key| ... } -> self
3077 * each_key -> new_enumerator
3078 *
3079 * With a block given, calls the block with each key; returns +self+:
3080 *
3081 * h = {foo: 0, bar: 1, baz: 2}
3082 * h.each_key {|key| puts key } # => {foo: 0, bar: 1, baz: 2}
3083 *
3084 * Output:
3085 * foo
3086 * bar
3087 * baz
3088 *
3089 * With no block given, returns a new Enumerator.
3090 *
3091 * Related: see {Methods for Iterating}[rdoc-ref:Hash@Methods+for+Iterating].
3092 */
3093static VALUE
3094rb_hash_each_key(VALUE hash)
3095{
3096 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3097 rb_hash_foreach(hash, each_key_i, 0);
3098 return hash;
3099}
3100
3101static int
3102each_pair_i(VALUE key, VALUE value, VALUE _)
3103{
3104 rb_yield(rb_assoc_new(key, value));
3105 return ST_CONTINUE;
3106}
3107
3108static int
3109each_pair_i_fast(VALUE key, VALUE value, VALUE _)
3110{
3111 VALUE argv[2];
3112 argv[0] = key;
3113 argv[1] = value;
3114 rb_yield_values2(2, argv);
3115 return ST_CONTINUE;
3116}
3117
3118/*
3119 * call-seq:
3120 * each_pair {|key, value| ... } -> self
3121 * each_pair -> new_enumerator
3122 *
3123 * With a block given, calls the block with each key-value pair; returns +self+:
3124 *
3125 * h = {foo: 0, bar: 1, baz: 2}
3126 * h.each_pair {|key, value| puts "#{key}: #{value}"} # => {foo: 0, bar: 1, baz: 2}
3127 *
3128 * Output:
3129 *
3130 * foo: 0
3131 * bar: 1
3132 * baz: 2
3133 *
3134 * With no block given, returns a new Enumerator.
3135 *
3136 * Related: see {Methods for Iterating}[rdoc-ref:Hash@Methods+for+Iterating].
3137 */
3138
3139static VALUE
3140rb_hash_each_pair(VALUE hash)
3141{
3142 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3143 if (rb_block_pair_yield_optimizable())
3144 rb_hash_foreach(hash, each_pair_i_fast, 0);
3145 else
3146 rb_hash_foreach(hash, each_pair_i, 0);
3147 return hash;
3148}
3149
3151 VALUE trans;
3152 VALUE result;
3153 int block_given;
3154};
3155
3156static int
3157transform_keys_hash_i(VALUE key, VALUE value, VALUE transarg)
3158{
3159 struct transform_keys_args *p = (void *)transarg;
3160 VALUE trans = p->trans, result = p->result;
3161 VALUE new_key = rb_hash_lookup2(trans, key, Qundef);
3162 if (UNDEF_P(new_key)) {
3163 if (p->block_given)
3164 new_key = rb_yield(key);
3165 else
3166 new_key = key;
3167 }
3168 rb_hash_aset(result, new_key, value);
3169 return ST_CONTINUE;
3170}
3171
3172static int
3173transform_keys_i(VALUE key, VALUE value, VALUE result)
3174{
3175 VALUE new_key = rb_yield(key);
3176 rb_hash_aset(result, new_key, value);
3177 return ST_CONTINUE;
3178}
3179
3180/*
3181 * call-seq:
3182 * transform_keys {|old_key| ... } -> new_hash
3183 * transform_keys(other_hash) -> new_hash
3184 * transform_keys(other_hash) {|old_key| ...} -> new_hash
3185 * transform_keys -> new_enumerator
3186 *
3187 * With an argument, a block, or both given,
3188 * derives a new hash +new_hash+ from +self+, the argument, and/or the block;
3189 * all, some, or none of its keys may be different from those in +self+.
3190 *
3191 * With a block given and no argument,
3192 * +new_hash+ has keys determined only by the block.
3193 *
3194 * For each key/value pair <tt>old_key/value</tt> in +self+, calls the block with +old_key+;
3195 * the block's return value becomes +new_key+;
3196 * sets <tt>new_hash[new_key] = value</tt>;
3197 * a duplicate key overwrites:
3198 *
3199 * h = {foo: 0, bar: 1, baz: 2}
3200 * h.transform_keys {|old_key| old_key.to_s }
3201 * # => {"foo" => 0, "bar" => 1, "baz" => 2}
3202 * h.transform_keys {|old_key| 'xxx' }
3203 * # => {"xxx" => 2}
3204 *
3205 * With argument +other_hash+ given and no block,
3206 * +new_hash+ may have new keys provided by +other_hash+
3207 * and unchanged keys provided by +self+.
3208 *
3209 * For each key/value pair <tt>old_key/old_value</tt> in +self+,
3210 * looks for key +old_key+ in +other_hash+:
3211 *
3212 * - If +old_key+ is found, its value <tt>other_hash[old_key]</tt> is taken as +new_key+;
3213 * sets <tt>new_hash[new_key] = value</tt>;
3214 * a duplicate key overwrites:
3215 *
3216 * h = {foo: 0, bar: 1, baz: 2}
3217 * h.transform_keys(baz: :BAZ, bar: :BAR, foo: :FOO)
3218 * # => {FOO: 0, BAR: 1, BAZ: 2}
3219 * h.transform_keys(baz: :FOO, bar: :FOO, foo: :FOO)
3220 * # => {FOO: 2}
3221 *
3222 * - If +old_key+ is not found,
3223 * sets <tt>new_hash[old_key] = value</tt>;
3224 * a duplicate key overwrites:
3225 *
3226 * h = {foo: 0, bar: 1, baz: 2}
3227 * h.transform_keys({})
3228 * # => {foo: 0, bar: 1, baz: 2}
3229 * h.transform_keys(baz: :foo)
3230 * # => {foo: 2, bar: 1}
3231 *
3232 * Unused keys in +other_hash+ are ignored:
3233 *
3234 * h = {foo: 0, bar: 1, baz: 2}
3235 * h.transform_keys(bat: 3)
3236 * # => {foo: 0, bar: 1, baz: 2}
3237 *
3238 * With both argument +other_hash+ and a block given,
3239 * +new_hash+ has new keys specified by +other_hash+ or by the block,
3240 * and unchanged keys provided by +self+.
3241 *
3242 * For each pair +old_key+ and +value+ in +self+:
3243 *
3244 * - If +other_hash+ has key +old_key+ (with value +new_key+),
3245 * does not call the block for that key;
3246 * sets <tt>new_hash[new_key] = value</tt>;
3247 * a duplicate key overwrites:
3248 *
3249 * h = {foo: 0, bar: 1, baz: 2}
3250 * h.transform_keys(baz: :BAZ, bar: :BAR, foo: :FOO) {|key| fail 'Not called' }
3251 * # => {FOO: 0, BAR: 1, BAZ: 2}
3252 *
3253 * - If +other_hash+ does not have key +old_key+,
3254 * calls the block with +old_key+ and takes its return value as +new_key+;
3255 * sets <tt>new_hash[new_key] = value</tt>;
3256 * a duplicate key overwrites:
3257 *
3258 * h = {foo: 0, bar: 1, baz: 2}
3259 * h.transform_keys(baz: :BAZ) {|key| key.to_s.reverse }
3260 * # => {"oof" => 0, "rab" => 1, BAZ: 2}
3261 * h.transform_keys(baz: :BAZ) {|key| 'ook' }
3262 * # => {"ook" => 1, BAZ: 2}
3263 *
3264 * With no argument and no block given, returns a new Enumerator.
3265 *
3266 * Related: see {Methods for Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values].
3267 */
3268static VALUE
3269rb_hash_transform_keys(int argc, VALUE *argv, VALUE hash)
3270{
3271 VALUE result;
3272 struct transform_keys_args transarg = {0};
3273
3274 argc = rb_check_arity(argc, 0, 1);
3275 if (argc > 0) {
3276 transarg.trans = to_hash(argv[0]);
3277 transarg.block_given = rb_block_given_p();
3278 }
3279 else {
3280 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3281 }
3282 result = rb_hash_new();
3283 if (!RHASH_EMPTY_P(hash)) {
3284 if (transarg.trans) {
3285 transarg.result = result;
3286 rb_hash_foreach(hash, transform_keys_hash_i, (VALUE)&transarg);
3287 }
3288 else {
3289 rb_hash_foreach(hash, transform_keys_i, result);
3290 }
3291 }
3292
3293 return result;
3294}
3295
3296static int flatten_i(VALUE key, VALUE val, VALUE ary);
3297
3298/*
3299 * call-seq:
3300 * transform_keys! {|old_key| ... } -> self
3301 * transform_keys!(other_hash) -> self
3302 * transform_keys!(other_hash) {|old_key| ...} -> self
3303 * transform_keys! -> new_enumerator
3304 *
3305 * With an argument, a block, or both given,
3306 * derives keys from the argument, the block, and +self+;
3307 * all, some, or none of the keys in +self+ may be changed.
3308 *
3309 * With a block given and no argument,
3310 * derives keys only from the block;
3311 * all, some, or none of the keys in +self+ may be changed.
3312 *
3313 * For each key/value pair <tt>old_key/value</tt> in +self+, calls the block with +old_key+;
3314 * the block's return value becomes +new_key+;
3315 * removes the entry for +old_key+: <tt>self.delete(old_key)</tt>;
3316 * sets <tt>self[new_key] = value</tt>;
3317 * a duplicate key overwrites:
3318 *
3319 * h = {foo: 0, bar: 1, baz: 2}
3320 * h.transform_keys! {|old_key| old_key.to_s }
3321 * # => {"foo" => 0, "bar" => 1, "baz" => 2}
3322 * h = {foo: 0, bar: 1, baz: 2}
3323 * h.transform_keys! {|old_key| 'xxx' }
3324 * # => {"xxx" => 2}
3325 *
3326 * With argument +other_hash+ given and no block,
3327 * derives keys for +self+ from +other_hash+ and +self+;
3328 * all, some, or none of the keys in +self+ may be changed.
3329 *
3330 * For each key/value pair <tt>old_key/old_value</tt> in +self+,
3331 * looks for key +old_key+ in +other_hash+:
3332 *
3333 * - If +old_key+ is found, takes value <tt>other_hash[old_key]</tt> as +new_key+;
3334 * removes the entry for +old_key+: <tt>self.delete(old_key)</tt>;
3335 * sets <tt>self[new_key] = value</tt>;
3336 * a duplicate key overwrites:
3337 *
3338 * h = {foo: 0, bar: 1, baz: 2}
3339 * h.transform_keys!(baz: :BAZ, bar: :BAR, foo: :FOO)
3340 * # => {FOO: 0, BAR: 1, BAZ: 2}
3341 * h = {foo: 0, bar: 1, baz: 2}
3342 * h.transform_keys!(baz: :FOO, bar: :FOO, foo: :FOO)
3343 * # => {FOO: 2}
3344 *
3345 * - If +old_key+ is not found, does nothing:
3346 *
3347 * h = {foo: 0, bar: 1, baz: 2}
3348 * h.transform_keys!({})
3349 * # => {foo: 0, bar: 1, baz: 2}
3350 * h.transform_keys!(baz: :foo)
3351 * # => {foo: 2, bar: 1}
3352 *
3353 * Unused keys in +other_hash+ are ignored:
3354 *
3355 * h = {foo: 0, bar: 1, baz: 2}
3356 * h.transform_keys!(bat: 3)
3357 * # => {foo: 0, bar: 1, baz: 2}
3358 *
3359 * With both argument +other_hash+ and a block given,
3360 * derives keys from +other_hash+, the block, and +self+;
3361 * all, some, or none of the keys in +self+ may be changed.
3362 *
3363 * For each pair +old_key+ and +value+ in +self+:
3364 *
3365 * - If +other_hash+ has key +old_key+ (with value +new_key+),
3366 * does not call the block for that key;
3367 * removes the entry for +old_key+: <tt>self.delete(old_key)</tt>;
3368 * sets <tt>self[new_key] = value</tt>;
3369 * a duplicate key overwrites:
3370 *
3371 * h = {foo: 0, bar: 1, baz: 2}
3372 * h.transform_keys!(baz: :BAZ, bar: :BAR, foo: :FOO) {|key| fail 'Not called' }
3373 * # => {FOO: 0, BAR: 1, BAZ: 2}
3374 *
3375 * - If +other_hash+ does not have key +old_key+,
3376 * calls the block with +old_key+ and takes its return value as +new_key+;
3377 * removes the entry for +old_key+: <tt>self.delete(old_key)</tt>;
3378 * sets <tt>self[new_key] = value</tt>;
3379 * a duplicate key overwrites:
3380 *
3381 * h = {foo: 0, bar: 1, baz: 2}
3382 * h.transform_keys!(baz: :BAZ) {|key| key.to_s.reverse }
3383 * # => {"oof" => 0, "rab" => 1, BAZ: 2}
3384 * h = {foo: 0, bar: 1, baz: 2}
3385 * h.transform_keys!(baz: :BAZ) {|key| 'ook' }
3386 * # => {"ook" => 1, BAZ: 2}
3387 *
3388 * With no argument and no block given, returns a new Enumerator.
3389 *
3390 * Related: see {Methods for Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values].
3391 */
3392static VALUE
3393rb_hash_transform_keys_bang(int argc, VALUE *argv, VALUE hash)
3394{
3395 VALUE trans = 0;
3396 int block_given = 0;
3397
3398 argc = rb_check_arity(argc, 0, 1);
3399 if (argc > 0) {
3400 trans = to_hash(argv[0]);
3401 block_given = rb_block_given_p();
3402 }
3403 else {
3404 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3405 }
3406 rb_hash_modify_check(hash);
3407 if (!RHASH_TABLE_EMPTY_P(hash)) {
3408 long i;
3409 VALUE new_keys = hash_alloc(0);
3410 VALUE pairs = rb_ary_hidden_new(RHASH_SIZE(hash) * 2);
3411 rb_hash_foreach(hash, flatten_i, pairs);
3412 for (i = 0; i < RARRAY_LEN(pairs); i += 2) {
3413 VALUE key = RARRAY_AREF(pairs, i), new_key, val;
3414
3415 if (!trans) {
3416 new_key = rb_yield(key);
3417 }
3418 else if (!UNDEF_P(new_key = rb_hash_lookup2(trans, key, Qundef))) {
3419 /* use the transformed key */
3420 }
3421 else if (block_given) {
3422 new_key = rb_yield(key);
3423 }
3424 else {
3425 new_key = key;
3426 }
3427 val = RARRAY_AREF(pairs, i+1);
3428 if (!hash_stlike_lookup(new_keys, key, NULL)) {
3429 rb_hash_stlike_delete(hash, &key, NULL);
3430 }
3431 rb_hash_aset(hash, new_key, val);
3432 rb_hash_aset(new_keys, new_key, Qnil);
3433 }
3434 rb_ary_clear(pairs);
3435 rb_hash_clear(new_keys);
3436 }
3437 compact_after_delete(hash);
3438 return hash;
3439}
3440
3441static int
3442transform_values_foreach_func(st_data_t key, st_data_t value, st_data_t argp, int error)
3443{
3444 return ST_REPLACE;
3445}
3446
3447static int
3448transform_values_foreach_replace(st_data_t *key, st_data_t *value, st_data_t argp, int existing)
3449{
3450 VALUE new_value = rb_yield((VALUE)*value);
3451 VALUE hash = (VALUE)argp;
3452 rb_hash_modify(hash);
3453 RB_OBJ_WRITE(hash, value, new_value);
3454 return ST_CONTINUE;
3455}
3456
3457/*
3458 * call-seq:
3459 * transform_values {|value| ... } -> new_hash
3460 * transform_values -> new_enumerator
3461 *
3462 * With a block given, returns a new hash +new_hash+;
3463 * for each pair +key+/+value+ in +self+,
3464 * calls the block with +value+ and captures its return as +new_value+;
3465 * adds to +new_hash+ the entry +key+/+new_value+:
3466 *
3467 * h = {foo: 0, bar: 1, baz: 2}
3468 * h1 = h.transform_values {|value| value * 100}
3469 * h1 # => {foo: 0, bar: 100, baz: 200}
3470 *
3471 * With no block given, returns a new Enumerator.
3472 *
3473 * Related: see {Methods for Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values].
3474 */
3475static VALUE
3476rb_hash_transform_values(VALUE hash)
3477{
3478 VALUE result;
3479
3480 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3481 result = hash_dup_with_compare_by_id(hash);
3482 SET_DEFAULT(result, Qnil);
3483
3484 if (!RHASH_EMPTY_P(hash)) {
3485 rb_hash_stlike_foreach_with_replace(result, transform_values_foreach_func, transform_values_foreach_replace, result);
3486 compact_after_delete(result);
3487 }
3488
3489 return result;
3490}
3491
3492/*
3493 * call-seq:
3494 * transform_values! {|old_value| ... } -> self
3495 * transform_values! -> new_enumerator
3496 *
3497 *
3498 * With a block given, changes the values of +self+ as determined by the block;
3499 * returns +self+.
3500 *
3501 * For each entry +key+/+old_value+ in +self+,
3502 * calls the block with +old_value+,
3503 * captures its return value as +new_value+,
3504 * and sets <tt>self[key] = new_value</tt>:
3505 *
3506 * h = {foo: 0, bar: 1, baz: 2}
3507 * h.transform_values! {|value| value * 100} # => {foo: 0, bar: 100, baz: 200}
3508 *
3509 * With no block given, returns a new Enumerator.
3510 *
3511 * Related: see {Methods for Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values].
3512 */
3513static VALUE
3514rb_hash_transform_values_bang(VALUE hash)
3515{
3516 RETURN_SIZED_ENUMERATOR(hash, 0, 0, hash_enum_size);
3517 rb_hash_modify_check(hash);
3518
3519 if (!RHASH_TABLE_EMPTY_P(hash)) {
3520 rb_hash_stlike_foreach_with_replace(hash, transform_values_foreach_func, transform_values_foreach_replace, hash);
3521 }
3522
3523 return hash;
3524}
3525
3526static int
3527to_a_i(VALUE key, VALUE value, VALUE ary)
3528{
3529 rb_ary_push(ary, rb_assoc_new(key, value));
3530 return ST_CONTINUE;
3531}
3532
3533/*
3534 * call-seq:
3535 * to_a -> new_array
3536 *
3537 * Returns all elements of +self+ as an array of 2-element arrays;
3538 * each nested array contains a key-value pair from +self+:
3539 *
3540 * h = {foo: 0, bar: 1, baz: 2}
3541 * h.to_a # => [[:foo, 0], [:bar, 1], [:baz, 2]]
3542 *
3543 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
3544 */
3545
3546static VALUE
3547rb_hash_to_a(VALUE hash)
3548{
3549 VALUE ary;
3550
3551 ary = rb_ary_new_capa(RHASH_SIZE(hash));
3552 rb_hash_foreach(hash, to_a_i, ary);
3553
3554 return ary;
3555}
3556
3557static bool
3558symbol_key_needs_quote(VALUE str)
3559{
3560 long len = RSTRING_LEN(str);
3561 if (len == 0 || !rb_str_symname_p(str)) return true;
3562 const char *s = RSTRING_PTR(str);
3563 char first = s[0];
3564 if (first == '@' || first == '$' || first == '!') return true;
3565 if (!at_char_boundary(s, s + len - 1, RSTRING_END(str), rb_enc_get(str))) return false;
3566 switch (s[len - 1]) {
3567 case '+':
3568 case '-':
3569 case '*':
3570 case '/':
3571 case '`':
3572 case '%':
3573 case '^':
3574 case '&':
3575 case '|':
3576 case ']':
3577 case '<':
3578 case '=':
3579 case '>':
3580 case '~':
3581 case '@':
3582 return true;
3583 default:
3584 return false;
3585 }
3586}
3587
3588static int
3589inspect_i(VALUE key, VALUE value, VALUE str)
3590{
3591 VALUE str2;
3592
3593 bool is_symbol = SYMBOL_P(key);
3594 bool quote = false;
3595 if (is_symbol) {
3596 str2 = rb_sym2str(key);
3597 quote = symbol_key_needs_quote(str2);
3598 }
3599 else {
3600 str2 = rb_inspect(key);
3601 }
3602 if (RSTRING_LEN(str) > 1) {
3603 rb_str_buf_cat_ascii(str, ", ");
3604 }
3605 else {
3606 rb_enc_copy(str, str2);
3607 }
3608 if (quote) {
3610 }
3611 else {
3612 rb_str_buf_append(str, str2);
3613 }
3614
3615 rb_str_buf_cat_ascii(str, is_symbol ? ": " : " => ");
3616 str2 = rb_inspect(value);
3617 rb_str_buf_append(str, str2);
3618
3619 return ST_CONTINUE;
3620}
3621
3622static VALUE
3623inspect_hash(VALUE hash, VALUE dummy, int recur)
3624{
3625 VALUE str;
3626
3627 if (recur) return rb_usascii_str_new2("{...}");
3628 str = rb_str_buf_new2("{");
3629 rb_hash_foreach(hash, inspect_i, str);
3630 rb_str_buf_cat2(str, "}");
3631
3632 return str;
3633}
3634
3635/*
3636 * call-seq:
3637 * inspect -> new_string
3638 *
3639 * Returns a new string containing the hash entries:
3640 *
3641 * h = {foo: 0, bar: 1, baz: 2}
3642 * h.inspect # => "{foo: 0, bar: 1, baz: 2}"
3643 *
3644 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
3645 */
3646
3647static VALUE
3648rb_hash_inspect(VALUE hash)
3649{
3650 if (RHASH_EMPTY_P(hash))
3651 return rb_usascii_str_new2("{}");
3652 return rb_exec_recursive(inspect_hash, hash, 0);
3653}
3654
3655/*
3656 * call-seq:
3657 * to_hash -> self
3658 *
3659 * Returns +self+.
3660 *
3661 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
3662 */
3663static VALUE
3664rb_hash_to_hash(VALUE hash)
3665{
3666 return hash;
3667}
3668
3669VALUE
3670rb_hash_set_pair(VALUE hash, VALUE arg)
3671{
3672 VALUE pair;
3673
3674 pair = rb_check_array_type(arg);
3675 if (NIL_P(pair)) {
3676 rb_raise(rb_eTypeError, "wrong element type %s (expected array)",
3677 rb_builtin_class_name(arg));
3678 }
3679 if (RARRAY_LEN(pair) != 2) {
3680 rb_raise(rb_eArgError, "element has wrong array length (expected 2, was %ld)",
3681 RARRAY_LEN(pair));
3682 }
3683 rb_hash_aset(hash, RARRAY_AREF(pair, 0), RARRAY_AREF(pair, 1));
3684 return hash;
3685}
3686
3687static int
3688to_h_i(VALUE key, VALUE value, VALUE hash)
3689{
3690 rb_hash_set_pair(hash, rb_yield_values(2, key, value));
3691 return ST_CONTINUE;
3692}
3693
3694static VALUE
3695rb_hash_to_h_block(VALUE hash)
3696{
3697 VALUE h = rb_hash_new_with_size(RHASH_SIZE(hash));
3698 rb_hash_foreach(hash, to_h_i, h);
3699 return h;
3700}
3701
3702/*
3703 * call-seq:
3704 * to_h {|key, value| ... } -> new_hash
3705 * to_h -> self or new_hash
3706 *
3707 * With a block given, returns a new hash whose content is based on the block;
3708 * the block is called with each entry's key and value;
3709 * the block should return a 2-element array
3710 * containing the key and value to be included in the returned array:
3711 *
3712 * h = {foo: 0, bar: 1, baz: 2}
3713 * h.to_h {|key, value| [value, key] }
3714 * # => {0 => :foo, 1 => :bar, 2 => :baz}
3715 *
3716 * With no block given, returns +self+ if +self+ is an instance of +Hash+;
3717 * if +self+ is a subclass of +Hash+, returns a new hash containing the content of +self+.
3718 *
3719 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
3720 */
3721
3722static VALUE
3723rb_hash_to_h(VALUE hash)
3724{
3725 if (rb_block_given_p()) {
3726 return rb_hash_to_h_block(hash);
3727 }
3728 if (rb_obj_class(hash) != rb_cHash) {
3729 const VALUE flags = RBASIC(hash)->flags;
3730 hash = hash_dup(hash, rb_cHash, flags & RHASH_PROC_DEFAULT);
3731 }
3732 return hash;
3733}
3734
3735static int
3736keys_i(VALUE key, VALUE value, VALUE ary)
3737{
3738 rb_ary_push(ary, key);
3739 return ST_CONTINUE;
3740}
3741
3742/*
3743 * call-seq:
3744 * keys -> new_array
3745 *
3746 * Returns a new array containing all keys in +self+:
3747 *
3748 * h = {foo: 0, bar: 1, baz: 2}
3749 * h.keys # => [:foo, :bar, :baz]
3750 *
3751 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
3752 */
3753
3754VALUE
3755rb_hash_keys(VALUE hash)
3756{
3757 st_index_t size = RHASH_SIZE(hash);
3758 VALUE keys = rb_ary_new_capa(size);
3759
3760 if (size == 0) return keys;
3761
3762 if (ST_DATA_COMPATIBLE_P(VALUE)) {
3763 RARRAY_PTR_USE(keys, ptr, {
3764 if (RHASH_AR_TABLE_P(hash)) {
3765 size = ar_keys(hash, ptr, size);
3766 }
3767 else {
3768 st_table *table = RHASH_ST_TABLE(hash);
3769 size = st_keys(table, ptr, size);
3770 }
3771 });
3772 rb_gc_writebarrier_remember(keys);
3773 rb_ary_set_len(keys, size);
3774 }
3775 else {
3776 rb_hash_foreach(hash, keys_i, keys);
3777 }
3778
3779 return keys;
3780}
3781
3782static int
3783values_i(VALUE key, VALUE value, VALUE ary)
3784{
3785 rb_ary_push(ary, value);
3786 return ST_CONTINUE;
3787}
3788
3789/*
3790 * call-seq:
3791 * values -> new_array
3792 *
3793 * Returns a new array containing all values in +self+:
3794 *
3795 * h = {foo: 0, bar: 1, baz: 2}
3796 * h.values # => [0, 1, 2]
3797 *
3798 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
3799 */
3800
3801VALUE
3802rb_hash_values(VALUE hash)
3803{
3804 VALUE values;
3805 st_index_t size = RHASH_SIZE(hash);
3806
3807 values = rb_ary_new_capa(size);
3808 if (size == 0) return values;
3809
3810 if (ST_DATA_COMPATIBLE_P(VALUE)) {
3811 if (RHASH_AR_TABLE_P(hash)) {
3812 rb_gc_writebarrier_remember(values);
3813 RARRAY_PTR_USE(values, ptr, {
3814 size = ar_values(hash, ptr, size);
3815 });
3816 }
3817 else if (RHASH_ST_TABLE_P(hash)) {
3818 st_table *table = RHASH_ST_TABLE(hash);
3819 rb_gc_writebarrier_remember(values);
3820 RARRAY_PTR_USE(values, ptr, {
3821 size = st_values(table, ptr, size);
3822 });
3823 }
3824 rb_ary_set_len(values, size);
3825 }
3826
3827 else {
3828 rb_hash_foreach(hash, values_i, values);
3829 }
3830
3831 return values;
3832}
3833
3834/*
3835 * call-seq:
3836 * include?(key) -> true or false
3837 *
3838 * Returns whether +key+ is a key in +self+:
3839 *
3840 * h = {foo: 0, bar: 1, baz: 2}
3841 * h.include?(:bar) # => true
3842 * h.include?(:BAR) # => false
3843 *
3844 * Related: {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
3845 */
3846
3847VALUE
3848rb_hash_has_key(VALUE hash, VALUE key)
3849{
3850 return RBOOL(hash_stlike_lookup(hash, key, NULL));
3851}
3852
3853static int
3854rb_hash_search_value(VALUE key, VALUE value, VALUE arg)
3855{
3856 VALUE *data = (VALUE *)arg;
3857
3858 if (rb_equal(value, data[1])) {
3859 data[0] = Qtrue;
3860 return ST_STOP;
3861 }
3862 return ST_CONTINUE;
3863}
3864
3865/*
3866 * call-seq:
3867 * has_value?(value) -> true or false
3868 *
3869 * Returns whether +value+ is a value in +self+.
3870 *
3871 * Related: {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
3872 */
3873
3874static VALUE
3875rb_hash_has_value(VALUE hash, VALUE val)
3876{
3877 VALUE data[2];
3878
3879 data[0] = Qfalse;
3880 data[1] = val;
3881 rb_hash_foreach(hash, rb_hash_search_value, (VALUE)data);
3882 return data[0];
3883}
3884
3886 VALUE result;
3887 VALUE hash;
3888 int eql;
3889};
3890
3891static int
3892eql_i(VALUE key, VALUE val1, VALUE arg)
3893{
3894 struct equal_data *data = (struct equal_data *)arg;
3895 st_data_t val2;
3896
3897 if (!hash_stlike_lookup(data->hash, key, &val2)) {
3898 data->result = Qfalse;
3899 return ST_STOP;
3900 }
3901 else {
3902 if (!(data->eql ? rb_eql(val1, (VALUE)val2) : (int)rb_equal(val1, (VALUE)val2))) {
3903 data->result = Qfalse;
3904 return ST_STOP;
3905 }
3906 return ST_CONTINUE;
3907 }
3908}
3909
3910static VALUE
3911recursive_eql(VALUE hash, VALUE dt, int recur)
3912{
3913 struct equal_data *data;
3914
3915 if (recur) return Qtrue; /* Subtle! */
3916 data = (struct equal_data*)dt;
3917 data->result = Qtrue;
3918 rb_hash_foreach(hash, eql_i, dt);
3919
3920 return data->result;
3921}
3922
3923static VALUE
3924hash_equal(VALUE hash1, VALUE hash2, int eql)
3925{
3926 struct equal_data data;
3927
3928 if (hash1 == hash2) return Qtrue;
3929 if (!RB_TYPE_P(hash2, T_HASH)) {
3930 if (!rb_respond_to(hash2, idTo_hash)) {
3931 return Qfalse;
3932 }
3933 if (eql) {
3934 if (rb_eql(hash2, hash1)) {
3935 return Qtrue;
3936 }
3937 else {
3938 return Qfalse;
3939 }
3940 }
3941 else {
3942 return rb_equal(hash2, hash1);
3943 }
3944 }
3945 if (RHASH_SIZE(hash1) != RHASH_SIZE(hash2))
3946 return Qfalse;
3947 if (!RHASH_TABLE_EMPTY_P(hash1) && !RHASH_TABLE_EMPTY_P(hash2)) {
3948 if (RHASH_TYPE(hash1) != RHASH_TYPE(hash2)) {
3949 return Qfalse;
3950 }
3951 else {
3952 data.hash = hash2;
3953 data.eql = eql;
3954 return rb_exec_recursive_paired(recursive_eql, hash1, hash2, (VALUE)&data);
3955 }
3956 }
3957
3958#if 0
3959 if (!(rb_equal(RHASH_IFNONE(hash1), RHASH_IFNONE(hash2)) &&
3960 FL_TEST(hash1, RHASH_PROC_DEFAULT) == FL_TEST(hash2, RHASH_PROC_DEFAULT)))
3961 return Qfalse;
3962#endif
3963 return Qtrue;
3964}
3965
3966/*
3967 * call-seq:
3968 * self == object -> true or false
3969 *
3970 * Returns whether +self+ and +object+ are equal.
3971 *
3972 * Returns +true+ if all of the following are true:
3973 *
3974 * - +object+ is a +Hash+ object (or can be converted to one).
3975 * - +self+ and +object+ have the same keys (regardless of order).
3976 * - For each key +key+, <tt>self[key] == object[key]</tt>.
3977 *
3978 * Otherwise, returns +false+.
3979 *
3980 * Examples:
3981 *
3982 * h = {foo: 0, bar: 1}
3983 * h == {foo: 0, bar: 1} # => true # Equal entries (same order)
3984 * h == {bar: 1, foo: 0} # => true # Equal entries (different order).
3985 * h == 1 # => false # Object not a hash.
3986 * h == {} # => false # Different number of entries.
3987 * h == {foo: 0, bar: 1} # => false # Different key.
3988 * h == {foo: 0, bar: 1} # => false # Different value.
3989 *
3990 * Related: see {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
3991 */
3992
3993static VALUE
3994rb_hash_equal(VALUE hash1, VALUE hash2)
3995{
3996 return hash_equal(hash1, hash2, FALSE);
3997}
3998
3999/*
4000 * call-seq:
4001 * eql?(object) -> true or false
4002 *
4003 * Returns +true+ if all of the following are true:
4004 *
4005 * - The given +object+ is a +Hash+ object.
4006 * - +self+ and +object+ have the same keys (regardless of order).
4007 * - For each key +key+, <tt>self[key].eql?(object[key])</tt>.
4008 *
4009 * Otherwise, returns +false+.
4010 *
4011 * h1 = {foo: 0, bar: 1, baz: 2}
4012 * h2 = {foo: 0, bar: 1, baz: 2}
4013 * h1.eql? h2 # => true
4014 * h3 = {baz: 2, bar: 1, foo: 0}
4015 * h1.eql? h3 # => true
4016 *
4017 * Related: see {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
4018 */
4019
4020static VALUE
4021rb_hash_eql(VALUE hash1, VALUE hash2)
4022{
4023 return hash_equal(hash1, hash2, TRUE);
4024}
4025
4026static int
4027hash_i(VALUE key, VALUE val, VALUE arg)
4028{
4029 st_index_t *hval = (st_index_t *)arg;
4030 st_index_t hdata[2];
4031
4032 hdata[0] = rb_hash(key);
4033 hdata[1] = rb_hash(val);
4034 *hval ^= st_hash(hdata, sizeof(hdata), 0);
4035 return ST_CONTINUE;
4036}
4037
4038/*
4039 * call-seq:
4040 * hash -> an_integer
4041 *
4042 * Returns the integer hash-code for the hash.
4043 *
4044 * Two hashes have the same hash-code if their content is the same
4045 * (regardless of order):
4046 *
4047 * h1 = {foo: 0, bar: 1, baz: 2}
4048 * h2 = {baz: 2, bar: 1, foo: 0}
4049 * h2.hash == h1.hash # => true
4050 * h2.eql? h1 # => true
4051 *
4052 * Related: see {Methods for Querying}[rdoc-ref:Hash@Methods+for+Querying].
4053 */
4054
4055static VALUE
4056rb_hash_hash(VALUE hash)
4057{
4058 st_index_t size = RHASH_SIZE(hash);
4059 st_index_t hval = rb_hash_start(size);
4060 hval = rb_hash_uint(hval, (st_index_t)rb_hash_hash);
4061 if (size) {
4062 rb_hash_foreach(hash, hash_i, (VALUE)&hval);
4063 }
4064 hval = rb_hash_end(hval);
4065 return ST2FIX(hval);
4066}
4067
4068static int
4069rb_hash_invert_i(VALUE key, VALUE value, VALUE hash)
4070{
4071 rb_hash_aset(hash, value, key);
4072 return ST_CONTINUE;
4073}
4074
4075/*
4076 * call-seq:
4077 * invert -> new_hash
4078 *
4079 * Returns a new hash with each key-value pair inverted:
4080 *
4081 * h = {foo: 0, bar: 1, baz: 2}
4082 * h1 = h.invert
4083 * h1 # => {0=>:foo, 1=>:bar, 2=>:baz}
4084 *
4085 * Overwrites any repeated new keys
4086 * (see {Entry Order}[rdoc-ref:Hash@Entry+Order]):
4087 *
4088 * h = {foo: 0, bar: 0, baz: 0}
4089 * h.invert # => {0=>:baz}
4090 *
4091 * Related: see {Methods for Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values].
4092 */
4093
4094static VALUE
4095rb_hash_invert(VALUE hash)
4096{
4097 VALUE h = rb_hash_new_with_size(RHASH_SIZE(hash));
4098
4099 rb_hash_foreach(hash, rb_hash_invert_i, h);
4100 return h;
4101}
4102
4103static int
4104rb_hash_update_i(VALUE key, VALUE value, VALUE hash)
4105{
4106 rb_hash_aset(hash, key, value);
4107 return ST_CONTINUE;
4108}
4109
4110static int
4111rb_hash_update_block_callback(st_data_t *key, st_data_t *value, struct update_arg *arg, int existing)
4112{
4113 st_data_t newvalue = arg->arg;
4114
4115 if (existing) {
4116 newvalue = (st_data_t)rb_yield_values(3, (VALUE)*key, (VALUE)*value, (VALUE)newvalue);
4117 }
4118 else if (RHASH_STRING_KEY_P(arg->hash, *key) && !RB_OBJ_FROZEN(*key)) {
4119 *key = rb_hash_key_str(*key);
4120 }
4121 *value = newvalue;
4122 return ST_CONTINUE;
4123}
4124
4125NOINSERT_UPDATE_CALLBACK(rb_hash_update_block_callback)
4126
4127static int
4128rb_hash_update_block_i(VALUE key, VALUE value, VALUE hash)
4129{
4130 RHASH_UPDATE(hash, key, rb_hash_update_block_callback, value);
4131 return ST_CONTINUE;
4132}
4133
4134/*
4135 * call-seq:
4136 * update(*other_hashes) -> self
4137 * update(*other_hashes) { |key, old_value, new_value| ... } -> self
4138 *
4139 * Updates values and/or adds entries to +self+; returns +self+.
4140 *
4141 * Each argument +other_hash+ in +other_hashes+ must be a hash.
4142 *
4143 * With no block given, for each successive entry +key+/+new_value+ in each successive +other_hash+:
4144 *
4145 * - If +key+ is in +self+, sets <tt>self[key] = new_value</tt>, whose position is unchanged:
4146 *
4147 * h0 = {foo: 0, bar: 1, baz: 2}
4148 * h1 = {bar: 3, foo: -1}
4149 * h0.update(h1) # => {foo: -1, bar: 3, baz: 2}
4150 *
4151 * - If +key+ is not in +self+, adds the entry at the end of +self+:
4152 *
4153 * h = {foo: 0, bar: 1, baz: 2}
4154 * h.update({bam: 3, bah: 4}) # => {foo: 0, bar: 1, baz: 2, bam: 3, bah: 4}
4155 *
4156 * With a block given, for each successive entry +key+/+new_value+ in each successive +other_hash+:
4157 *
4158 * - If +key+ is in +self+, fetches +old_value+ from <tt>self[key]</tt>,
4159 * calls the block with +key+, +old_value+, and +new_value+,
4160 * and sets <tt>self[key] = new_value</tt>, whose position is unchanged :
4161 *
4162 * season = {AB: 75, H: 20, HR: 3, SO: 17, W: 11, HBP: 3}
4163 * today = {AB: 3, H: 1, W: 1}
4164 * yesterday = {AB: 4, H: 2, HR: 1}
4165 * season.update(yesterday, today) {|key, old_value, new_value| old_value + new_value }
4166 * # => {AB: 82, H: 23, HR: 4, SO: 17, W: 12, HBP: 3}
4167 *
4168 * - If +key+ is not in +self+, adds the entry at the end of +self+:
4169 *
4170 * h = {foo: 0, bar: 1, baz: 2}
4171 * h.update({bat: 3}) { fail 'Cannot happen' }
4172 * # => {foo: 0, bar: 1, baz: 2, bat: 3}
4173 *
4174 * Related: see {Methods for Assigning}[rdoc-ref:Hash@Methods+for+Assigning].
4175 */
4176
4177static VALUE
4178rb_hash_update(int argc, VALUE *argv, VALUE self)
4179{
4180 int i;
4181 bool block_given = rb_block_given_p();
4182
4183 rb_hash_modify(self);
4184 for (i = 0; i < argc; i++){
4185 VALUE hash = to_hash(argv[i]);
4186 if (block_given) {
4187 rb_hash_foreach(hash, rb_hash_update_block_i, self);
4188 }
4189 else {
4190 rb_hash_foreach(hash, rb_hash_update_i, self);
4191 }
4192 }
4193 return self;
4194}
4195
4197 VALUE hash;
4198 VALUE value;
4199 rb_hash_update_func *func;
4200};
4201
4202static int
4203rb_hash_update_func_callback(st_data_t *key, st_data_t *value, struct update_arg *arg, int existing)
4204{
4205 struct update_func_arg *uf_arg = (struct update_func_arg *)arg->arg;
4206 VALUE newvalue = uf_arg->value;
4207
4208 if (existing) {
4209 newvalue = (*uf_arg->func)((VALUE)*key, (VALUE)*value, newvalue);
4210 }
4211 *value = newvalue;
4212 return ST_CONTINUE;
4213}
4214
4215NOINSERT_UPDATE_CALLBACK(rb_hash_update_func_callback)
4216
4217static int
4218rb_hash_update_func_i(VALUE key, VALUE value, VALUE arg0)
4219{
4220 struct update_func_arg *arg = (struct update_func_arg *)arg0;
4221 VALUE hash = arg->hash;
4222
4223 arg->value = value;
4224 RHASH_UPDATE(hash, key, rb_hash_update_func_callback, (VALUE)arg);
4225 return ST_CONTINUE;
4226}
4227
4228VALUE
4229rb_hash_update_by(VALUE hash1, VALUE hash2, rb_hash_update_func *func)
4230{
4231 rb_hash_modify(hash1);
4232 hash2 = to_hash(hash2);
4233 if (func) {
4234 struct update_func_arg arg;
4235 arg.hash = hash1;
4236 arg.func = func;
4237 rb_hash_foreach(hash2, rb_hash_update_func_i, (VALUE)&arg);
4238 }
4239 else {
4240 rb_hash_foreach(hash2, rb_hash_update_i, hash1);
4241 }
4242 return hash1;
4243}
4244
4245/*
4246 * call-seq:
4247 * merge(*other_hashes) -> new_hash
4248 * merge(*other_hashes) { |key, old_value, new_value| ... } -> new_hash
4249 *
4250 * Each argument +other_hash+ in +other_hashes+ must be a hash.
4251 *
4252 * With arguments +other_hashes+ given and no block,
4253 * returns the new hash formed by merging each successive +other_hash+
4254 * into a copy of +self+;
4255 * returns that copy;
4256 * for each successive entry in +other_hash+:
4257 *
4258 * - For a new key, the entry is added at the end of +self+.
4259 * - For duplicate key, the entry overwrites the entry in +self+,
4260 * whose position is unchanged.
4261 *
4262 * Example:
4263 *
4264 * h = {foo: 0, bar: 1, baz: 2}
4265 * h1 = {bat: 3, bar: 4}
4266 * h2 = {bam: 5, bat:6}
4267 * h.merge(h1, h2) # => {foo: 0, bar: 4, baz: 2, bat: 6, bam: 5}
4268 *
4269 * With arguments +other_hashes+ and a block given, behaves as above
4270 * except that for a duplicate key
4271 * the overwriting entry takes it value not from the entry in +other_hash+,
4272 * but instead from the block:
4273 *
4274 * - The block is called with the duplicate key and the values
4275 * from both +self+ and +other_hash+.
4276 * - The block's return value becomes the new value for the entry in +self+.
4277 *
4278 * Example:
4279 *
4280 * h = {foo: 0, bar: 1, baz: 2}
4281 * h1 = {bat: 3, bar: 4}
4282 * h2 = {bam: 5, bat:6}
4283 * h.merge(h1, h2) { |key, old_value, new_value| old_value + new_value }
4284 * # => {foo: 0, bar: 5, baz: 2, bat: 9, bam: 5}
4285 *
4286 * With no arguments, returns a copy of +self+; the block, if given, is ignored.
4287 *
4288 * Related: see {Methods for Assigning}[rdoc-ref:Hash@Methods+for+Assigning].
4289 */
4290
4291static VALUE
4292rb_hash_merge(int argc, VALUE *argv, VALUE self)
4293{
4294 return rb_hash_update(argc, argv, copy_compare_by_id(rb_hash_dup(self), self));
4295}
4296
4297static int
4298assoc_cmp(VALUE a, VALUE b)
4299{
4300 return !RTEST(rb_equal(a, b));
4301}
4302
4304 st_table *tbl;
4305 st_data_t key;
4306};
4307
4308static VALUE
4309assoc_lookup(VALUE arg)
4310{
4311 struct assoc_arg *p = (struct assoc_arg*)arg;
4312 st_data_t data;
4313 if (st_lookup(p->tbl, p->key, &data)) return (VALUE)data;
4314 return Qundef;
4315}
4316
4317static int
4318assoc_i(VALUE key, VALUE val, VALUE arg)
4319{
4320 VALUE *args = (VALUE *)arg;
4321
4322 if (RTEST(rb_equal(args[0], key))) {
4323 args[1] = rb_assoc_new(key, val);
4324 return ST_STOP;
4325 }
4326 return ST_CONTINUE;
4327}
4328
4329/*
4330 * call-seq:
4331 * assoc(key) -> entry or nil
4332 *
4333 * If the given +key+ is found, returns its entry as a 2-element array
4334 * containing that key and its value:
4335 *
4336 * h = {foo: 0, bar: 1, baz: 2}
4337 * h.assoc(:bar) # => [:bar, 1]
4338 *
4339 * Returns +nil+ if the key is not found.
4340 *
4341 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
4342 */
4343
4344static VALUE
4345rb_hash_assoc(VALUE hash, VALUE key)
4346{
4347 VALUE args[2];
4348
4349 if (RHASH_EMPTY_P(hash)) return Qnil;
4350
4351 if (RHASH_ST_TABLE_P(hash) && !RHASH_IDENTHASH_P(hash)) {
4352 VALUE value = Qundef;
4353 st_table assoctable = *RHASH_ST_TABLE(hash);
4354 assoctable.type = &(struct st_hash_type){
4355 .compare = assoc_cmp,
4356 .hash = assoctable.type->hash,
4357 };
4358 VALUE arg = (VALUE)&(struct assoc_arg){
4359 .tbl = &assoctable,
4360 .key = (st_data_t)key,
4361 };
4362
4363 if (RB_OBJ_FROZEN(hash)) {
4364 value = assoc_lookup(arg);
4365 }
4366 else {
4367 hash_iter_lev_inc(hash);
4368 value = rb_ensure(assoc_lookup, arg, hash_foreach_ensure, hash);
4369 }
4370 hash_verify(hash);
4371 if (!UNDEF_P(value)) return rb_assoc_new(key, value);
4372 }
4373
4374 args[0] = key;
4375 args[1] = Qnil;
4376 rb_hash_foreach(hash, assoc_i, (VALUE)args);
4377 return args[1];
4378}
4379
4380static int
4381rassoc_i(VALUE key, VALUE val, VALUE arg)
4382{
4383 VALUE *args = (VALUE *)arg;
4384
4385 if (RTEST(rb_equal(args[0], val))) {
4386 args[1] = rb_assoc_new(key, val);
4387 return ST_STOP;
4388 }
4389 return ST_CONTINUE;
4390}
4391
4392/*
4393 * call-seq:
4394 * rassoc(value) -> new_array or nil
4395 *
4396 * Searches +self+ for the first entry whose value is <tt>==</tt> to the given +value+;
4397 * see {Entry Order}[rdoc-ref:Hash@Entry+Order].
4398 *
4399 * If the entry is found, returns its key and value as a 2-element array;
4400 * returns +nil+ if not found:
4401 *
4402 * h = {foo: 0, bar: 1, baz: 1}
4403 * h.rassoc(1) # => [:bar, 1]
4404 *
4405 * Related: see {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
4406 */
4407
4408static VALUE
4409rb_hash_rassoc(VALUE hash, VALUE obj)
4410{
4411 VALUE args[2];
4412
4413 args[0] = obj;
4414 args[1] = Qnil;
4415 rb_hash_foreach(hash, rassoc_i, (VALUE)args);
4416 return args[1];
4417}
4418
4419static int
4420flatten_i(VALUE key, VALUE val, VALUE ary)
4421{
4422 VALUE pair[2];
4423
4424 pair[0] = key;
4425 pair[1] = val;
4426 rb_ary_cat(ary, pair, 2);
4427
4428 return ST_CONTINUE;
4429}
4430
4431/*
4432 * call-seq:
4433 * flatten(depth = 1) -> new_array
4434 *
4435 * With positive integer +depth+,
4436 * returns a new array that is a recursive flattening of +self+ to the given +depth+.
4437 *
4438 * At each level of recursion:
4439 *
4440 * - Each element whose value is an array is "flattened" (that is, replaced by its individual array elements);
4441 * see Array#flatten.
4442 * - Each element whose value is not an array is unchanged.
4443 * even if the value is an object that has instance method flatten (such as a hash).
4444 *
4445 * Examples; note that entry <tt>foo: {bar: 1, baz: 2}</tt> is never flattened.
4446 *
4447 * h = {foo: {bar: 1, baz: 2}, bat: [:bam, [:bap, [:bah]]]}
4448 * h.flatten(1) # => [:foo, {:bar=>1, :baz=>2}, :bat, [:bam, [:bap, [:bah]]]]
4449 * h.flatten(2) # => [:foo, {:bar=>1, :baz=>2}, :bat, :bam, [:bap, [:bah]]]
4450 * h.flatten(3) # => [:foo, {:bar=>1, :baz=>2}, :bat, :bam, :bap, [:bah]]
4451 * h.flatten(4) # => [:foo, {:bar=>1, :baz=>2}, :bat, :bam, :bap, :bah]
4452 * h.flatten(5) # => [:foo, {:bar=>1, :baz=>2}, :bat, :bam, :bap, :bah]
4453 *
4454 * With negative integer +depth+,
4455 * flattens all levels:
4456 *
4457 * h.flatten(-1) # => [:foo, {:bar=>1, :baz=>2}, :bat, :bam, :bap, :bah]
4458 *
4459 * With +depth+ zero,
4460 * returns the equivalent of #to_a:
4461 *
4462 * h.flatten(0) # => [[:foo, {:bar=>1, :baz=>2}], [:bat, [:bam, [:bap, [:bah]]]]]
4463 *
4464 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
4465 */
4466
4467static VALUE
4468rb_hash_flatten(int argc, VALUE *argv, VALUE hash)
4469{
4470 VALUE ary;
4471
4472 rb_check_arity(argc, 0, 1);
4473
4474 if (argc) {
4475 int level = NUM2INT(argv[0]);
4476
4477 if (level == 0) return rb_hash_to_a(hash);
4478
4479 ary = rb_ary_new_capa(RHASH_SIZE(hash) * 2);
4480 rb_hash_foreach(hash, flatten_i, ary);
4481 level--;
4482
4483 if (level > 0) {
4484 VALUE ary_flatten_level = INT2FIX(level);
4485 rb_funcallv(ary, id_flatten_bang, 1, &ary_flatten_level);
4486 }
4487 else if (level < 0) {
4488 /* flatten recursively */
4489 rb_funcallv(ary, id_flatten_bang, 0, 0);
4490 }
4491 }
4492 else {
4493 ary = rb_ary_new_capa(RHASH_SIZE(hash) * 2);
4494 rb_hash_foreach(hash, flatten_i, ary);
4495 }
4496
4497 return ary;
4498}
4499
4500static int
4501delete_if_nil(VALUE key, VALUE value, VALUE hash)
4502{
4503 if (NIL_P(value)) {
4504 return ST_DELETE;
4505 }
4506 return ST_CONTINUE;
4507}
4508
4509/*
4510 * call-seq:
4511 * compact -> new_hash
4512 *
4513 * Returns a copy of +self+ with all +nil+-valued entries removed:
4514 *
4515 * h = {foo: 0, bar: nil, baz: 2, bat: nil}
4516 * h.compact # => {foo: 0, baz: 2}
4517 *
4518 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
4519 */
4520
4521static VALUE
4522rb_hash_compact(VALUE hash)
4523{
4524 VALUE result = rb_hash_dup(hash);
4525 if (!RHASH_EMPTY_P(hash)) {
4526 rb_hash_foreach(result, delete_if_nil, result);
4527 compact_after_delete(result);
4528 }
4529 else if (rb_hash_compare_by_id_p(hash)) {
4530 result = rb_hash_compare_by_id(result);
4531 }
4532 return result;
4533}
4534
4535/*
4536 * call-seq:
4537 * compact! -> self or nil
4538 *
4539 * If +self+ contains any +nil+-valued entries,
4540 * returns +self+ with all +nil+-valued entries removed;
4541 * returns +nil+ otherwise:
4542 *
4543 * h = {foo: 0, bar: nil, baz: 2, bat: nil}
4544 * h.compact!
4545 * h # => {foo: 0, baz: 2}
4546 * h.compact! # => nil
4547 *
4548 * Related: see {Methods for Deleting}[rdoc-ref:Hash@Methods+for+Deleting].
4549 */
4550
4551static VALUE
4552rb_hash_compact_bang(VALUE hash)
4553{
4554 st_index_t n;
4555 rb_hash_modify_check(hash);
4556 n = RHASH_SIZE(hash);
4557 if (n) {
4558 rb_hash_foreach(hash, delete_if_nil, hash);
4559 if (n != RHASH_SIZE(hash))
4560 return hash;
4561 }
4562 return Qnil;
4563}
4564
4565/*
4566 * call-seq:
4567 * compare_by_identity -> self
4568 *
4569 * Sets +self+ to compare keys using _identity_ (rather than mere _equality_);
4570 * returns +self+:
4571 *
4572 * By default, two keys are considered to be the same key
4573 * if and only if they are _equal_ objects (per method #==):
4574 *
4575 * h = {}
4576 * h['x'] = 0
4577 * h['x'] = 1 # Overwrites.
4578 * h # => {"x"=>1}
4579 *
4580 * When this method has been called, two keys are considered to be the same key
4581 * if and only if they are the _same_ object:
4582 *
4583 * h.compare_by_identity
4584 * h['x'] = 2 # Does not overwrite.
4585 * h # => {"x"=>1, "x"=>2}
4586 *
4587 * Related: #compare_by_identity?;
4588 * see also {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4589 */
4590
4591VALUE
4592rb_hash_compare_by_id(VALUE hash)
4593{
4594 VALUE tmp;
4595 st_table *identtable;
4596
4597 if (rb_hash_compare_by_id_p(hash)) return hash;
4598
4599 rb_hash_modify_check(hash);
4600 if (hash_iterating_p(hash)) {
4601 rb_raise(rb_eRuntimeError, "compare_by_identity during iteration");
4602 }
4603
4604 if (RHASH_TABLE_EMPTY_P(hash)) {
4605 // Fast path: There's nothing to rehash, so we don't need a `tmp` table.
4606 // We're most likely an AR table, so this will need an allocation.
4607 ar_force_convert_table(hash, __FILE__, __LINE__);
4608 HASH_ASSERT(RHASH_ST_TABLE_P(hash));
4609
4610 RHASH_ST_TABLE(hash)->type = &identhash;
4611 }
4612 else {
4613 // Slow path: Need to rehash the members of `self` into a new
4614 // `tmp` table using the new `identhash` compare/hash functions.
4615 tmp = hash_alloc(0);
4616 hash_st_table_init(tmp, &identhash, RHASH_SIZE(hash));
4617 identtable = RHASH_ST_TABLE(tmp);
4618
4619 rb_hash_foreach(hash, rb_hash_rehash_i, (VALUE)tmp);
4620 rb_hash_free(hash);
4621
4622 // We know for sure `identtable` is an st table,
4623 // so we can skip `ar_force_convert_table` here.
4624 RHASH_ST_TABLE_SET(hash, identtable);
4625 RHASH_ST_CLEAR(tmp);
4626 }
4627
4628 return hash;
4629}
4630
4631/*
4632 * call-seq:
4633 * compare_by_identity? -> true or false
4634 *
4635 * Returns whether #compare_by_identity has been called:
4636 *
4637 * h = {}
4638 * h.compare_by_identity? # => false
4639 * h.compare_by_identity
4640 * h.compare_by_identity? # => true
4641 *
4642 * Related: #compare_by_identity;
4643 * see also {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4644 */
4645
4646VALUE
4647rb_hash_compare_by_id_p(VALUE hash)
4648{
4649 return RBOOL(RHASH_IDENTHASH_P(hash));
4650}
4651
4652VALUE
4653rb_ident_hash_new(void)
4654{
4655 VALUE hash = rb_hash_new();
4656 hash_st_table_init(hash, &identhash, 0);
4657 return hash;
4658}
4659
4660VALUE
4661rb_ident_hash_new_with_size(st_index_t size)
4662{
4663 VALUE hash = rb_hash_new();
4664 hash_st_table_init(hash, &identhash, size);
4665 return hash;
4666}
4667
4668st_table *
4669rb_init_identtable(void)
4670{
4671 return st_init_table(&identhash);
4672}
4673
4674static int
4675any_p_i(VALUE key, VALUE value, VALUE arg)
4676{
4677 VALUE ret = rb_yield(rb_assoc_new(key, value));
4678 if (RTEST(ret)) {
4679 *(VALUE *)arg = Qtrue;
4680 return ST_STOP;
4681 }
4682 return ST_CONTINUE;
4683}
4684
4685static int
4686any_p_i_fast(VALUE key, VALUE value, VALUE arg)
4687{
4688 VALUE ret = rb_yield_values(2, key, value);
4689 if (RTEST(ret)) {
4690 *(VALUE *)arg = Qtrue;
4691 return ST_STOP;
4692 }
4693 return ST_CONTINUE;
4694}
4695
4696static int
4697any_p_i_pattern(VALUE key, VALUE value, VALUE arg)
4698{
4699 VALUE ret = rb_funcall(((VALUE *)arg)[1], idEqq, 1, rb_assoc_new(key, value));
4700 if (RTEST(ret)) {
4701 *(VALUE *)arg = Qtrue;
4702 return ST_STOP;
4703 }
4704 return ST_CONTINUE;
4705}
4706
4707/*
4708 * call-seq:
4709 * any? -> true or false
4710 * any?(entry) -> true or false
4711 * any? {|key, value| ... } -> true or false
4712 *
4713 * Returns +true+ if any element satisfies a given criterion;
4714 * +false+ otherwise.
4715 *
4716 * If +self+ has no element, returns +false+ and argument or block are not used;
4717 * otherwise behaves as below.
4718 *
4719 * With no argument and no block,
4720 * returns +true+ if +self+ is non-empty, +false+ otherwise.
4721 *
4722 * With argument +entry+ and no block,
4723 * returns +true+ if for any key +key+
4724 * <tt>self.assoc(key) == entry</tt>, +false+ otherwise:
4725 *
4726 * h = {foo: 0, bar: 1, baz: 2}
4727 * h.assoc(:bar) # => [:bar, 1]
4728 * h.any?([:bar, 1]) # => true
4729 * h.any?([:bar, 0]) # => false
4730 *
4731 * With no argument and a block given,
4732 * calls the block with each key-value pair;
4733 * returns +true+ if the block returns a truthy value,
4734 * +false+ otherwise:
4735 *
4736 * h = {foo: 0, bar: 1, baz: 2}
4737 * h.any? {|key, value| value < 3 } # => true
4738 * h.any? {|key, value| value > 3 } # => false
4739 *
4740 * With both argument +entry+ and a block given,
4741 * issues a warning and ignores the block.
4742 *
4743 * Related: Enumerable#any? (which this method overrides);
4744 * see also {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
4745 */
4746
4747static VALUE
4748rb_hash_any_p(int argc, VALUE *argv, VALUE hash)
4749{
4750 VALUE args[2];
4751 args[0] = Qfalse;
4752
4753 rb_check_arity(argc, 0, 1);
4754 if (RHASH_EMPTY_P(hash)) return Qfalse;
4755 if (argc) {
4756 if (rb_block_given_p()) {
4757 rb_warn("given block not used");
4758 }
4759 args[1] = argv[0];
4760
4761 rb_hash_foreach(hash, any_p_i_pattern, (VALUE)args);
4762 }
4763 else {
4764 if (!rb_block_given_p()) {
4765 /* yields pairs, never false */
4766 return Qtrue;
4767 }
4768 if (rb_block_pair_yield_optimizable())
4769 rb_hash_foreach(hash, any_p_i_fast, (VALUE)args);
4770 else
4771 rb_hash_foreach(hash, any_p_i, (VALUE)args);
4772 }
4773 return args[0];
4774}
4775
4776/*
4777 * call-seq:
4778 * dig(key, *identifiers) -> object
4779 *
4780 * Finds and returns an object found in nested objects,
4781 * as specified by +key+ and +identifiers+.
4782 *
4783 * The nested objects may be instances of various classes.
4784 * See {Dig Methods}[rdoc-ref:dig_methods.rdoc].
4785 *
4786 * Nested hashes:
4787 *
4788 * h = {foo: {bar: {baz: 2}}}
4789 * h.dig(:foo) # => {bar: {baz: 2}}
4790 * h.dig(:foo, :bar) # => {baz: 2}
4791 * h.dig(:foo, :bar, :baz) # => 2
4792 * h.dig(:foo, :bar, :BAZ) # => nil
4793 *
4794 * Nested hashes and arrays:
4795 *
4796 * h = {foo: {bar: [:a, :b, :c]}}
4797 * h.dig(:foo, :bar, 2) # => :c
4798 *
4799 * If no such object is found,
4800 * returns the {hash default}[rdoc-ref:Hash@Hash+Default]:
4801 *
4802 * h = {foo: {bar: [:a, :b, :c]}}
4803 * h.dig(:hello) # => nil
4804 * h.default_proc = -> (hash, _key) { hash }
4805 * h.dig(:hello, :world)
4806 * # => {:foo=>{:bar=>[:a, :b, :c]}}
4807 *
4808 * Related: {Methods for Fetching}[rdoc-ref:Hash@Methods+for+Fetching].
4809 */
4810
4811static VALUE
4812rb_hash_dig(int argc, VALUE *argv, VALUE self)
4813{
4815 self = rb_hash_aref(self, *argv);
4816 if (!--argc) return self;
4817 ++argv;
4818 return rb_obj_dig(argc, argv, self, Qnil);
4819}
4820
4821static int
4822hash_le_i(VALUE key, VALUE value, VALUE arg)
4823{
4824 VALUE *args = (VALUE *)arg;
4825 VALUE v = rb_hash_lookup2(args[0], key, Qundef);
4826 if (!UNDEF_P(v) && rb_equal(value, v)) return ST_CONTINUE;
4827 args[1] = Qfalse;
4828 return ST_STOP;
4829}
4830
4831static VALUE
4832hash_le(VALUE hash1, VALUE hash2)
4833{
4834 VALUE args[2];
4835 args[0] = hash2;
4836 args[1] = Qtrue;
4837 rb_hash_foreach(hash1, hash_le_i, (VALUE)args);
4838 return args[1];
4839}
4840
4841/*
4842 * call-seq:
4843 * self <= other_hash -> true or false
4844 *
4845 * Returns +true+ if the entries of +self+ are a subset of the entries of +other_hash+,
4846 * +false+ otherwise:
4847 *
4848 * h0 = {foo: 0, bar: 1}
4849 * h1 = {foo: 0, bar: 1, baz: 2}
4850 * h0 <= h0 # => true
4851 * h0 <= h1 # => true
4852 * h1 <= h0 # => false
4853 *
4854 * See {Hash Inclusion}[rdoc-ref:hash_inclusion.rdoc].
4855 *
4856 * Raises TypeError if +other_hash+ is not a hash and cannot be converted to a hash.
4857 *
4858 * Related: see {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4859 */
4860static VALUE
4861rb_hash_le(VALUE hash, VALUE other)
4862{
4863 other = to_hash(other);
4864 if (RHASH_SIZE(hash) > RHASH_SIZE(other)) return Qfalse;
4865 return hash_le(hash, other);
4866}
4867
4868/*
4869 * call-seq:
4870 * self < other_hash -> true or false
4871 *
4872 * Returns +true+ if the entries of +self+ are a proper subset of the entries of +other_hash+,
4873 * +false+ otherwise:
4874 *
4875 * h = {foo: 0, bar: 1}
4876 * h < {foo: 0, bar: 1, baz: 2} # => true # Proper subset.
4877 * h < {baz: 2, bar: 1, foo: 0} # => true # Order may differ.
4878 * h < h # => false # Not a proper subset.
4879 * h < {bar: 1, foo: 0} # => false # Not a proper subset.
4880 * h < {foo: 0, bar: 1, baz: 2} # => false # Different key.
4881 * h < {foo: 0, bar: 1, baz: 2} # => false # Different value.
4882 *
4883 * See {Hash Inclusion}[rdoc-ref:hash_inclusion.rdoc].
4884 *
4885 * Raises TypeError if +other_hash+ is not a hash and cannot be converted to a hash.
4886 *
4887 * Related: see {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4888 */
4889static VALUE
4890rb_hash_lt(VALUE hash, VALUE other)
4891{
4892 other = to_hash(other);
4893 if (RHASH_SIZE(hash) >= RHASH_SIZE(other)) return Qfalse;
4894 return hash_le(hash, other);
4895}
4896
4897/*
4898 * call-seq:
4899 * self >= other_hash -> true or false
4900 *
4901 * Returns +true+ if the entries of +self+ are a superset of the entries of +other_hash+,
4902 * +false+ otherwise:
4903 *
4904 * h0 = {foo: 0, bar: 1, baz: 2}
4905 * h1 = {foo: 0, bar: 1}
4906 * h0 >= h1 # => true
4907 * h0 >= h0 # => true
4908 * h1 >= h0 # => false
4909 *
4910 * See {Hash Inclusion}[rdoc-ref:hash_inclusion.rdoc].
4911 *
4912 * Raises TypeError if +other_hash+ is not a hash and cannot be converted to a hash.
4913 *
4914 * Related: see {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4915 */
4916static VALUE
4917rb_hash_ge(VALUE hash, VALUE other)
4918{
4919 other = to_hash(other);
4920 if (RHASH_SIZE(hash) < RHASH_SIZE(other)) return Qfalse;
4921 return hash_le(other, hash);
4922}
4923
4924/*
4925 * call-seq:
4926 * self > other_hash -> true or false
4927 *
4928 * Returns +true+ if the entries of +self+ are a proper superset of the entries of +other_hash+,
4929 * +false+ otherwise:
4930 *
4931 * h = {foo: 0, bar: 1, baz: 2}
4932 * h > {foo: 0, bar: 1} # => true # Proper superset.
4933 * h > {bar: 1, foo: 0} # => true # Order may differ.
4934 * h > h # => false # Not a proper superset.
4935 * h > {baz: 2, bar: 1, foo: 0} # => false # Not a proper superset.
4936 * h > {foo: 0, bar: 1} # => false # Different key.
4937 * h > {foo: 0, bar: 1} # => false # Different value.
4938 *
4939 * See {Hash Inclusion}[rdoc-ref:hash_inclusion.rdoc].
4940 *
4941 * Raises TypeError if +other_hash+ is not a hash and cannot be converted to a hash.
4942 *
4943 * Related: see {Methods for Comparing}[rdoc-ref:Hash@Methods+for+Comparing].
4944 */
4945static VALUE
4946rb_hash_gt(VALUE hash, VALUE other)
4947{
4948 other = to_hash(other);
4949 if (RHASH_SIZE(hash) <= RHASH_SIZE(other)) return Qfalse;
4950 return hash_le(other, hash);
4951}
4952
4953static VALUE
4954hash_proc_call(RB_BLOCK_CALL_FUNC_ARGLIST(key, hash))
4955{
4956 rb_check_arity(argc, 1, 1);
4957 return rb_hash_aref(hash, *argv);
4958}
4959
4960/*
4961 * call-seq:
4962 * to_proc -> proc
4963 *
4964 * Returns a Proc object that maps a key to its value:
4965 *
4966 * h = {foo: 0, bar: 1, baz: 2}
4967 * proc = h.to_proc
4968 * proc.class # => Proc
4969 * proc.call(:foo) # => 0
4970 * proc.call(:bar) # => 1
4971 * proc.call(:nosuch) # => nil
4972 *
4973 * Related: see {Methods for Converting}[rdoc-ref:Hash@Methods+for+Converting].
4974 */
4975static VALUE
4976rb_hash_to_proc(VALUE hash)
4977{
4978 return rb_func_lambda_new(hash_proc_call, hash, 1, 1);
4979}
4980
4981/* :nodoc: */
4982static VALUE
4983rb_hash_deconstruct_keys(VALUE hash, VALUE keys)
4984{
4985 return hash;
4986}
4987
4988static int
4989add_new_i(st_data_t *key, st_data_t *val, st_data_t arg, int existing)
4990{
4991 VALUE *args = (VALUE *)arg;
4992 if (existing) return ST_STOP;
4993 RB_OBJ_WRITTEN(args[0], Qundef, (VALUE)*key);
4994 RB_OBJ_WRITE(args[0], (VALUE *)val, args[1]);
4995 return ST_CONTINUE;
4996}
4997
4998/*
4999 * add +key+ to +val+ pair if +hash+ does not contain +key+.
5000 * returns non-zero if +key+ was contained.
5001 */
5002int
5003rb_hash_add_new_element(VALUE hash, VALUE key, VALUE val)
5004{
5005 st_table *tbl;
5006 int ret = 0;
5007 VALUE args[2];
5008 args[0] = hash;
5009 args[1] = val;
5010
5011 if (RHASH_AR_TABLE_P(hash)) {
5012 ret = ar_update(hash, (st_data_t)key, add_new_i, (st_data_t)args);
5013 if (ret != -1) {
5014 return ret;
5015 }
5016 ar_force_convert_table(hash, __FILE__, __LINE__);
5017 }
5018
5019 tbl = RHASH_TBL_RAW(hash);
5020 return st_update(tbl, (st_data_t)key, add_new_i, (st_data_t)args);
5021
5022}
5023
5024static st_data_t
5025key_stringify(VALUE key)
5026{
5027 return (rb_obj_class(key) == rb_cString && !RB_OBJ_FROZEN(key)) ?
5028 rb_hash_key_str(key) : key;
5029}
5030
5031static void
5032ar_bulk_insert(VALUE hash, long argc, const VALUE *argv)
5033{
5034 long i;
5035 for (i = 0; i < argc; ) {
5036 st_data_t k = key_stringify(argv[i++]);
5037 st_data_t v = argv[i++];
5038 ar_insert(hash, k, v);
5039 RB_OBJ_WRITTEN(hash, Qundef, k);
5040 RB_OBJ_WRITTEN(hash, Qundef, v);
5041 }
5042}
5043
5044void
5045rb_hash_bulk_insert(long argc, const VALUE *argv, VALUE hash)
5046{
5047 HASH_ASSERT(argc % 2 == 0);
5048 if (argc > 0) {
5049 st_index_t size = argc / 2;
5050
5051 if (RHASH_AR_TABLE_P(hash) &&
5052 (RHASH_AR_TABLE_SIZE(hash) + size <= RHASH_AR_TABLE_MAX_SIZE)) {
5053 ar_bulk_insert(hash, argc, argv);
5054 }
5055 else {
5056 rb_hash_bulk_insert_into_st_table(argc, argv, hash);
5057 }
5058 }
5059}
5060
5061static char **origenviron;
5062#ifdef _WIN32
5063#define GET_ENVIRON(e) ((e) = rb_w32_get_environ())
5064#define FREE_ENVIRON(e) rb_w32_free_environ(e)
5065static char **my_environ;
5066#undef environ
5067#define environ my_environ
5068#undef getenv
5069#define getenv(n) rb_w32_ugetenv(n)
5070#elif defined(__APPLE__)
5071#undef environ
5072#define environ (*_NSGetEnviron())
5073#define GET_ENVIRON(e) (e)
5074#define FREE_ENVIRON(e)
5075#else
5076extern char **environ;
5077#define GET_ENVIRON(e) (e)
5078#define FREE_ENVIRON(e)
5079#endif
5080#ifdef ENV_IGNORECASE
5081#define ENVMATCH(s1, s2) (STRCASECMP((s1), (s2)) == 0)
5082#define ENVNMATCH(s1, s2, n) (STRNCASECMP((s1), (s2), (n)) == 0)
5083#else
5084#define ENVMATCH(n1, n2) (strcmp((n1), (n2)) == 0)
5085#define ENVNMATCH(s1, s2, n) (memcmp((s1), (s2), (n)) == 0)
5086#endif
5087
5088#define ENV_LOCK() RB_VM_LOCK_ENTER()
5089#define ENV_UNLOCK() RB_VM_LOCK_LEAVE()
5090
5091static inline rb_encoding *
5092env_encoding(void)
5093{
5094#ifdef _WIN32
5095 return rb_utf8_encoding();
5096#else
5097 return rb_locale_encoding();
5098#endif
5099}
5100
5101static VALUE
5102env_enc_str_new(const char *ptr, long len, rb_encoding *enc)
5103{
5104 VALUE str = rb_external_str_new_with_enc(ptr, len, enc);
5105
5106 rb_obj_freeze(str);
5107 return str;
5108}
5109
5110static VALUE
5111env_str_new(const char *ptr, long len)
5112{
5113 return env_enc_str_new(ptr, len, env_encoding());
5114}
5115
5116static VALUE
5117env_str_new2(const char *ptr)
5118{
5119 if (!ptr) return Qnil;
5120 return env_str_new(ptr, strlen(ptr));
5121}
5122
5123static VALUE
5124getenv_with_lock(const char *name)
5125{
5126 VALUE ret;
5127 ENV_LOCK();
5128 {
5129 const char *val = getenv(name);
5130 ret = env_str_new2(val);
5131 }
5132 ENV_UNLOCK();
5133 return ret;
5134}
5135
5136static bool
5137has_env_with_lock(const char *name)
5138{
5139 const char *val;
5140
5141 ENV_LOCK();
5142 {
5143 val = getenv(name);
5144 }
5145 ENV_UNLOCK();
5146
5147 return val ? true : false;
5148}
5149
5150static const char TZ_ENV[] = "TZ";
5151
5152static void *
5153get_env_cstr(VALUE str, const char *name)
5154{
5155 char *var;
5156 rb_encoding *enc = rb_enc_get(str);
5157 if (!rb_enc_asciicompat(enc)) {
5158 rb_raise(rb_eArgError, "bad environment variable %s: ASCII incompatible encoding: %s",
5159 name, rb_enc_name(enc));
5160 }
5161 var = RSTRING_PTR(str);
5162 if (memchr(var, '\0', RSTRING_LEN(str))) {
5163 rb_raise(rb_eArgError, "bad environment variable %s: contains null byte", name);
5164 }
5165 return rb_str_fill_terminator(str, 1); /* ASCII compatible */
5166}
5167
5168#define get_env_ptr(var, val) \
5169 (var = get_env_cstr(val, #var))
5170
5171static inline const char *
5172env_name(volatile VALUE *s)
5173{
5174 const char *name;
5175 StringValue(*s);
5176 get_env_ptr(name, *s);
5177 return name;
5178}
5179
5180#define env_name(s) env_name(&(s))
5181
5182static VALUE env_aset(VALUE nm, VALUE val);
5183
5184static void
5185reset_by_modified_env(const char *nam, const char *val)
5186{
5187 /*
5188 * ENV['TZ'] = nil has a special meaning.
5189 * TZ is no longer considered up-to-date and ruby call tzset() as needed.
5190 * It could be useful if sysadmin change /etc/localtime.
5191 * This hack might works only on Linux glibc.
5192 */
5193 if (ENVMATCH(nam, TZ_ENV)) {
5194 ruby_reset_timezone(val);
5195 }
5196}
5197
5198static VALUE
5199env_delete(VALUE name)
5200{
5201 const char *nam = env_name(name);
5202 reset_by_modified_env(nam, NULL);
5203 VALUE val = getenv_with_lock(nam);
5204
5205 if (!NIL_P(val)) {
5206 ruby_setenv(nam, 0);
5207 }
5208 return val;
5209}
5210
5211/*
5212 * call-seq:
5213 * ENV.delete(name) -> value
5214 * ENV.delete(name) { |name| block } -> value
5215 * ENV.delete(missing_name) -> nil
5216 * ENV.delete(missing_name) { |name| block } -> block_value
5217 *
5218 * Deletes the environment variable with +name+ if it exists and returns its value:
5219 * ENV['foo'] = '0'
5220 * ENV.delete('foo') # => '0'
5221 *
5222 * If a block is not given and the named environment variable does not exist, returns +nil+.
5223 *
5224 * If a block given and the environment variable does not exist,
5225 * yields +name+ to the block and returns the value of the block:
5226 * ENV.delete('foo') { |name| name * 2 } # => "foofoo"
5227 *
5228 * If a block given and the environment variable exists,
5229 * deletes the environment variable and returns its value (ignoring the block):
5230 * ENV['foo'] = '0'
5231 * ENV.delete('foo') { |name| raise 'ignored' } # => "0"
5232 *
5233 * Raises an exception if +name+ is invalid.
5234 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
5235 */
5236static VALUE
5237env_delete_m(VALUE obj, VALUE name)
5238{
5239 VALUE val;
5240
5241 val = env_delete(name);
5242 if (NIL_P(val) && rb_block_given_p()) val = rb_yield(name);
5243 return val;
5244}
5245
5246/*
5247 * call-seq:
5248 * ENV[name] -> value
5249 *
5250 * Returns the value for the environment variable +name+ if it exists:
5251 * ENV['foo'] = '0'
5252 * ENV['foo'] # => "0"
5253 * Returns +nil+ if the named variable does not exist.
5254 *
5255 * Raises an exception if +name+ is invalid.
5256 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
5257 */
5258static VALUE
5259rb_f_getenv(VALUE obj, VALUE name)
5260{
5261 const char *nam = env_name(name);
5262 VALUE env = getenv_with_lock(nam);
5263 return env;
5264}
5265
5266/*
5267 * call-seq:
5268 * ENV.fetch(name) -> value
5269 * ENV.fetch(name, default) -> value
5270 * ENV.fetch(name) { |name| block } -> value
5271 *
5272 * If +name+ is the name of an environment variable, returns its value:
5273 * ENV['foo'] = '0'
5274 * ENV.fetch('foo') # => '0'
5275 * Otherwise if a block is given (but not a default value),
5276 * yields +name+ to the block and returns the block's return value:
5277 * ENV.fetch('foo') { |name| :need_not_return_a_string } # => :need_not_return_a_string
5278 * Otherwise if a default value is given (but not a block), returns the default value:
5279 * ENV.delete('foo')
5280 * ENV.fetch('foo', :default_need_not_be_a_string) # => :default_need_not_be_a_string
5281 * If the environment variable does not exist and both default and block are given,
5282 * issues a warning ("warning: block supersedes default value argument"),
5283 * yields +name+ to the block, and returns the block's return value:
5284 * ENV.fetch('foo', :default) { |name| :block_return } # => :block_return
5285 * Raises KeyError if +name+ is valid, but not found,
5286 * and neither default value nor block is given:
5287 * ENV.fetch('foo') # Raises KeyError (key not found: "foo")
5288 * Raises an exception if +name+ is invalid.
5289 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
5290 */
5291static VALUE
5292env_fetch(int argc, VALUE *argv, VALUE _)
5293{
5294 VALUE key;
5295 long block_given;
5296 const char *nam;
5297 VALUE env;
5298
5299 rb_check_arity(argc, 1, 2);
5300 key = argv[0];
5301 block_given = rb_block_given_p();
5302 if (block_given && argc == 2) {
5303 rb_warn("block supersedes default value argument");
5304 }
5305 nam = env_name(key);
5306 env = getenv_with_lock(nam);
5307
5308 if (NIL_P(env)) {
5309 if (block_given) return rb_yield(key);
5310 if (argc == 1) {
5311 rb_key_err_raise(rb_sprintf("key not found: \"%"PRIsVALUE"\"", key), envtbl, key);
5312 }
5313 return argv[1];
5314 }
5315 return env;
5316}
5317
5318#if defined(_WIN32) || (defined(HAVE_SETENV) && defined(HAVE_UNSETENV))
5319#elif defined __sun
5320static int
5321in_origenv(const char *str)
5322{
5323 char **env;
5324 for (env = origenviron; *env; ++env) {
5325 if (*env == str) return 1;
5326 }
5327 return 0;
5328}
5329#else
5330static int
5331envix(const char *nam)
5332{
5333 // should be locked
5334
5335 register int i, len = strlen(nam);
5336 char **env;
5337
5338 env = GET_ENVIRON(environ);
5339 for (i = 0; env[i]; i++) {
5340 if (ENVNMATCH(env[i],nam,len) && env[i][len] == '=')
5341 break; /* memcmp must come first to avoid */
5342 } /* potential SEGV's */
5343 FREE_ENVIRON(environ);
5344 return i;
5345}
5346#endif
5347
5348#if defined(_WIN32) || \
5349 (defined(__sun) && !(defined(HAVE_SETENV) && defined(HAVE_UNSETENV)))
5350
5351NORETURN(static void invalid_envname(const char *name));
5352
5353static void
5354invalid_envname(const char *name)
5355{
5356 rb_syserr_fail_str(EINVAL, rb_sprintf("ruby_setenv(%s)", name));
5357}
5358
5359static const char *
5360check_envname(const char *name)
5361{
5362 if (strchr(name, '=')) {
5363 invalid_envname(name);
5364 }
5365 return name;
5366}
5367#endif
5368
5369void
5370ruby_setenv(const char *name, const char *value)
5371{
5372#if defined(_WIN32)
5373 VALUE buf;
5374 WCHAR *wname;
5375 WCHAR *wvalue = 0;
5376 int failed = 0;
5377 int len;
5378 check_envname(name);
5379 len = MultiByteToWideChar(CP_UTF8, 0, name, -1, NULL, 0);
5380 if (value) {
5381 int len2;
5382 len2 = MultiByteToWideChar(CP_UTF8, 0, value, -1, NULL, 0);
5383 wname = ALLOCV_N(WCHAR, buf, len + len2);
5384 wvalue = wname + len;
5385 MultiByteToWideChar(CP_UTF8, 0, name, -1, wname, len);
5386 MultiByteToWideChar(CP_UTF8, 0, value, -1, wvalue, len2);
5387 }
5388 else {
5389 wname = ALLOCV_N(WCHAR, buf, len + 1);
5390 MultiByteToWideChar(CP_UTF8, 0, name, -1, wname, len);
5391 wvalue = wname + len;
5392 *wvalue = L'\0';
5393 }
5394
5395 ENV_LOCK();
5396 {
5397 /* Use _wputenv_s() instead of SetEnvironmentVariableW() to make sure
5398 * special variables like "TZ" are interpret by libc. */
5399 failed = _wputenv_s(wname, wvalue);
5400 }
5401 ENV_UNLOCK();
5402
5403 ALLOCV_END(buf);
5404 /* even if putenv() failed, clean up and try to delete the
5405 * variable from the system area. */
5406 if (!value || !*value) {
5407 /* putenv() doesn't handle empty value */
5408 if (!SetEnvironmentVariableW(wname, value ? wvalue : NULL) &&
5409 GetLastError() != ERROR_ENVVAR_NOT_FOUND) goto fail;
5410 }
5411 if (failed) {
5412 fail:
5413 invalid_envname(name);
5414 }
5415#elif defined(HAVE_SETENV) && defined(HAVE_UNSETENV)
5416 if (value) {
5417 int ret;
5418 ENV_LOCK();
5419 {
5420 ret = setenv(name, value, 1);
5421 }
5422 ENV_UNLOCK();
5423
5424 if (ret) rb_sys_fail_sprintf("setenv(%s)", name);
5425 }
5426 else {
5427#ifdef VOID_UNSETENV
5428 ENV_LOCK();
5429 {
5430 unsetenv(name);
5431 }
5432 ENV_UNLOCK();
5433#else
5434 int ret;
5435 ENV_LOCK();
5436 {
5437 ret = unsetenv(name);
5438 }
5439 ENV_UNLOCK();
5440
5441 if (ret) rb_sys_fail_sprintf("unsetenv(%s)", name);
5442#endif
5443 }
5444#elif defined __sun
5445 /* Solaris 9 (or earlier) does not have setenv(3C) and unsetenv(3C). */
5446 /* The below code was tested on Solaris 10 by:
5447 % ./configure ac_cv_func_setenv=no ac_cv_func_unsetenv=no
5448 */
5449 size_t len, mem_size;
5450 char **env_ptr, *str, *mem_ptr;
5451
5452 check_envname(name);
5453 len = strlen(name);
5454 if (value) {
5455 mem_size = len + strlen(value) + 2;
5456 mem_ptr = malloc(mem_size);
5457 if (mem_ptr == NULL)
5458 rb_sys_fail_sprintf("malloc(%"PRIuSIZE")", mem_size);
5459 snprintf(mem_ptr, mem_size, "%s=%s", name, value);
5460 }
5461
5462 ENV_LOCK();
5463 {
5464 for (env_ptr = GET_ENVIRON(environ); (str = *env_ptr) != 0; ++env_ptr) {
5465 if (!strncmp(str, name, len) && str[len] == '=') {
5466 if (!in_origenv(str)) free(str);
5467 while ((env_ptr[0] = env_ptr[1]) != 0) env_ptr++;
5468 break;
5469 }
5470 }
5471 }
5472 ENV_UNLOCK();
5473
5474 if (value) {
5475 int ret;
5476 ENV_LOCK();
5477 {
5478 ret = putenv(mem_ptr);
5479 }
5480 ENV_UNLOCK();
5481
5482 if (ret) {
5483 free(mem_ptr);
5484 rb_sys_fail_sprintf("putenv(%s)", name);
5485 }
5486 }
5487#else /* WIN32 */
5488 size_t len;
5489 int i;
5490
5491 ENV_LOCK();
5492 {
5493 i = envix(name); /* where does it go? */
5494
5495 if (environ == origenviron) { /* need we copy environment? */
5496 int j;
5497 int max;
5498 char **tmpenv;
5499
5500 for (max = i; environ[max]; max++) ;
5501 tmpenv = ALLOC_N(char*, max+2);
5502 for (j=0; j<max; j++) /* copy environment */
5503 tmpenv[j] = ruby_strdup(environ[j]);
5504 tmpenv[max] = 0;
5505 environ = tmpenv; /* tell exec where it is now */
5506 }
5507
5508 if (environ[i]) {
5509 char **envp = origenviron;
5510 while (*envp && *envp != environ[i]) envp++;
5511 if (!*envp)
5512 xfree(environ[i]);
5513 if (!value) {
5514 while (environ[i]) {
5515 environ[i] = environ[i+1];
5516 i++;
5517 }
5518 goto finish;
5519 }
5520 }
5521 else { /* does not exist yet */
5522 if (!value) goto finish;
5523 REALLOC_N(environ, char*, i+2); /* just expand it a bit */
5524 environ[i+1] = 0; /* make sure it's null terminated */
5525 }
5526
5527 len = strlen(name) + strlen(value) + 2;
5528 environ[i] = ALLOC_N(char, len);
5529 snprintf(environ[i],len,"%s=%s",name,value); /* all that work just for this */
5530
5531 finish:;
5532 }
5533 ENV_UNLOCK();
5534#endif /* WIN32 */
5535}
5536
5537void
5538ruby_unsetenv(const char *name)
5539{
5540 ruby_setenv(name, 0);
5541}
5542
5543/*
5544 * call-seq:
5545 * ENV[name] = value -> value
5546 * ENV.store(name, value) -> value
5547 *
5548 * Creates, updates, or deletes the named environment variable, returning the value.
5549 * Both +name+ and +value+ may be instances of String.
5550 * See {Valid Names and Values}[rdoc-ref:ENV@Valid+Names+and+Values].
5551 *
5552 * - If the named environment variable does not exist:
5553 * - If +value+ is +nil+, does nothing.
5554 * ENV.clear
5555 * ENV['foo'] = nil # => nil
5556 * ENV.include?('foo') # => false
5557 * ENV.store('bar', nil) # => nil
5558 * ENV.include?('bar') # => false
5559 * - If +value+ is not +nil+, creates the environment variable with +name+ and +value+:
5560 * # Create 'foo' using ENV.[]=.
5561 * ENV['foo'] = '0' # => '0'
5562 * ENV['foo'] # => '0'
5563 * # Create 'bar' using ENV.store.
5564 * ENV.store('bar', '1') # => '1'
5565 * ENV['bar'] # => '1'
5566 * - If the named environment variable exists:
5567 * - If +value+ is not +nil+, updates the environment variable with value +value+:
5568 * # Update 'foo' using ENV.[]=.
5569 * ENV['foo'] = '2' # => '2'
5570 * ENV['foo'] # => '2'
5571 * # Update 'bar' using ENV.store.
5572 * ENV.store('bar', '3') # => '3'
5573 * ENV['bar'] # => '3'
5574 * - If +value+ is +nil+, deletes the environment variable:
5575 * # Delete 'foo' using ENV.[]=.
5576 * ENV['foo'] = nil # => nil
5577 * ENV.include?('foo') # => false
5578 * # Delete 'bar' using ENV.store.
5579 * ENV.store('bar', nil) # => nil
5580 * ENV.include?('bar') # => false
5581 *
5582 * Raises an exception if +name+ or +value+ is invalid.
5583 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
5584 */
5585static VALUE
5586env_aset_m(VALUE obj, VALUE nm, VALUE val)
5587{
5588 return env_aset(nm, val);
5589}
5590
5591static VALUE
5592env_aset(VALUE nm, VALUE val)
5593{
5594 char *name, *value;
5595
5596 if (NIL_P(val)) {
5597 env_delete(nm);
5598 return Qnil;
5599 }
5600 StringValue(nm);
5601 StringValue(val);
5602 /* nm can be modified in `val.to_str`, don't get `name` before
5603 * check for `val` */
5604 get_env_ptr(name, nm);
5605 get_env_ptr(value, val);
5606
5607 ruby_setenv(name, value);
5608 reset_by_modified_env(name, value);
5609 return val;
5610}
5611
5612static VALUE
5613env_keys(int raw)
5614{
5615 rb_encoding *enc = raw ? 0 : rb_locale_encoding();
5616 VALUE ary = rb_ary_new();
5617
5618 ENV_LOCK();
5619 {
5620 char **env = GET_ENVIRON(environ);
5621 while (*env) {
5622 char *s = strchr(*env, '=');
5623 if (s) {
5624 const char *p = *env;
5625 size_t l = s - p;
5626 VALUE e = raw ? rb_utf8_str_new(p, l) : env_enc_str_new(p, l, enc);
5627 rb_ary_push(ary, e);
5628 }
5629 env++;
5630 }
5631 FREE_ENVIRON(environ);
5632 }
5633 ENV_UNLOCK();
5634
5635 return ary;
5636}
5637
5638/*
5639 * call-seq:
5640 * ENV.keys -> array of names
5641 *
5642 * Returns all variable names in an Array:
5643 * ENV.replace('foo' => '0', 'bar' => '1')
5644 * ENV.keys # => ['bar', 'foo']
5645 * The order of the names is OS-dependent.
5646 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
5647 *
5648 * Returns the empty Array if ENV is empty.
5649 */
5650
5651static VALUE
5652env_f_keys(VALUE _)
5653{
5654 return env_keys(FALSE);
5655}
5656
5657static VALUE
5658rb_env_size(VALUE ehash, VALUE args, VALUE eobj)
5659{
5660 char **env;
5661 long cnt = 0;
5662
5663 ENV_LOCK();
5664 {
5665 env = GET_ENVIRON(environ);
5666 for (; *env ; ++env) {
5667 if (strchr(*env, '=')) {
5668 cnt++;
5669 }
5670 }
5671 FREE_ENVIRON(environ);
5672 }
5673 ENV_UNLOCK();
5674
5675 return LONG2FIX(cnt);
5676}
5677
5678/*
5679 * call-seq:
5680 * ENV.each_key { |name| block } -> ENV
5681 * ENV.each_key -> an_enumerator
5682 *
5683 * Yields each environment variable name:
5684 * ENV.replace('foo' => '0', 'bar' => '1') # => ENV
5685 * names = []
5686 * ENV.each_key { |name| names.push(name) } # => ENV
5687 * names # => ["bar", "foo"]
5688 *
5689 * Returns an Enumerator if no block given:
5690 * e = ENV.each_key # => #<Enumerator: {"bar"=>"1", "foo"=>"0"}:each_key>
5691 * names = []
5692 * e.each { |name| names.push(name) } # => ENV
5693 * names # => ["bar", "foo"]
5694 */
5695static VALUE
5696env_each_key(VALUE ehash)
5697{
5698 VALUE keys;
5699 long i;
5700
5701 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5702 keys = env_keys(FALSE);
5703 for (i=0; i<RARRAY_LEN(keys); i++) {
5704 rb_yield(RARRAY_AREF(keys, i));
5705 }
5706 return ehash;
5707}
5708
5709static VALUE
5710env_values(void)
5711{
5712 VALUE ary = rb_ary_new();
5713
5714 ENV_LOCK();
5715 {
5716 char **env = GET_ENVIRON(environ);
5717
5718 while (*env) {
5719 char *s = strchr(*env, '=');
5720 if (s) {
5721 rb_ary_push(ary, env_str_new2(s+1));
5722 }
5723 env++;
5724 }
5725 FREE_ENVIRON(environ);
5726 }
5727 ENV_UNLOCK();
5728
5729 return ary;
5730}
5731
5732/*
5733 * call-seq:
5734 * ENV.values -> array of values
5735 *
5736 * Returns all environment variable values in an Array:
5737 * ENV.replace('foo' => '0', 'bar' => '1')
5738 * ENV.values # => ['1', '0']
5739 * The order of the values is OS-dependent.
5740 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
5741 *
5742 * Returns the empty Array if ENV is empty.
5743 */
5744static VALUE
5745env_f_values(VALUE _)
5746{
5747 return env_values();
5748}
5749
5750/*
5751 * call-seq:
5752 * ENV.each_value { |value| block } -> ENV
5753 * ENV.each_value -> an_enumerator
5754 *
5755 * Yields each environment variable value:
5756 * ENV.replace('foo' => '0', 'bar' => '1') # => ENV
5757 * values = []
5758 * ENV.each_value { |value| values.push(value) } # => ENV
5759 * values # => ["1", "0"]
5760 *
5761 * Returns an Enumerator if no block given:
5762 * e = ENV.each_value # => #<Enumerator: {"bar"=>"1", "foo"=>"0"}:each_value>
5763 * values = []
5764 * e.each { |value| values.push(value) } # => ENV
5765 * values # => ["1", "0"]
5766 */
5767static VALUE
5768env_each_value(VALUE ehash)
5769{
5770 VALUE values;
5771 long i;
5772
5773 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5774 values = env_values();
5775 for (i=0; i<RARRAY_LEN(values); i++) {
5776 rb_yield(RARRAY_AREF(values, i));
5777 }
5778 return ehash;
5779}
5780
5781/*
5782 * call-seq:
5783 * ENV.each { |name, value| block } -> ENV
5784 * ENV.each -> an_enumerator
5785 * ENV.each_pair { |name, value| block } -> ENV
5786 * ENV.each_pair -> an_enumerator
5787 *
5788 * Yields each environment variable name and its value as a 2-element Array:
5789 * h = {}
5790 * ENV.each_pair { |name, value| h[name] = value } # => ENV
5791 * h # => {"bar"=>"1", "foo"=>"0"}
5792 *
5793 * Returns an Enumerator if no block given:
5794 * h = {}
5795 * e = ENV.each_pair # => #<Enumerator: {"bar"=>"1", "foo"=>"0"}:each_pair>
5796 * e.each { |name, value| h[name] = value } # => ENV
5797 * h # => {"bar"=>"1", "foo"=>"0"}
5798 */
5799static VALUE
5800env_each_pair(VALUE ehash)
5801{
5802 long i;
5803
5804 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5805
5806 VALUE ary = rb_ary_new();
5807
5808 ENV_LOCK();
5809 {
5810 char **env = GET_ENVIRON(environ);
5811
5812 while (*env) {
5813 char *s = strchr(*env, '=');
5814 if (s) {
5815 rb_ary_push(ary, env_str_new(*env, s-*env));
5816 rb_ary_push(ary, env_str_new2(s+1));
5817 }
5818 env++;
5819 }
5820 FREE_ENVIRON(environ);
5821 }
5822 ENV_UNLOCK();
5823
5824 if (rb_block_pair_yield_optimizable()) {
5825 for (i=0; i<RARRAY_LEN(ary); i+=2) {
5826 rb_yield_values(2, RARRAY_AREF(ary, i), RARRAY_AREF(ary, i+1));
5827 }
5828 }
5829 else {
5830 for (i=0; i<RARRAY_LEN(ary); i+=2) {
5831 rb_yield(rb_assoc_new(RARRAY_AREF(ary, i), RARRAY_AREF(ary, i+1)));
5832 }
5833 }
5834
5835 return ehash;
5836}
5837
5838/*
5839 * call-seq:
5840 * ENV.reject! { |name, value| block } -> ENV or nil
5841 * ENV.reject! -> an_enumerator
5842 *
5843 * Similar to ENV.delete_if, but returns +nil+ if no changes were made.
5844 *
5845 * Yields each environment variable name and its value as a 2-element Array,
5846 * deleting each environment variable for which the block returns a truthy value,
5847 * and returning ENV (if any deletions) or +nil+ (if not):
5848 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5849 * ENV.reject! { |name, value| name.start_with?('b') } # => ENV
5850 * ENV # => {"foo"=>"0"}
5851 * ENV.reject! { |name, value| name.start_with?('b') } # => nil
5852 *
5853 * Returns an Enumerator if no block given:
5854 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5855 * e = ENV.reject! # => #<Enumerator: {"bar"=>"1", "baz"=>"2", "foo"=>"0"}:reject!>
5856 * e.each { |name, value| name.start_with?('b') } # => ENV
5857 * ENV # => {"foo"=>"0"}
5858 * e.each { |name, value| name.start_with?('b') } # => nil
5859 */
5860static VALUE
5861env_reject_bang(VALUE ehash)
5862{
5863 VALUE keys;
5864 long i;
5865 int del = 0;
5866
5867 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5868 keys = env_keys(FALSE);
5869 RBASIC_CLEAR_CLASS(keys);
5870 for (i=0; i<RARRAY_LEN(keys); i++) {
5871 VALUE val = rb_f_getenv(Qnil, RARRAY_AREF(keys, i));
5872 if (!NIL_P(val)) {
5873 if (RTEST(rb_yield_values(2, RARRAY_AREF(keys, i), val))) {
5874 env_delete(RARRAY_AREF(keys, i));
5875 del++;
5876 }
5877 }
5878 }
5879 RB_GC_GUARD(keys);
5880 if (del == 0) return Qnil;
5881 return envtbl;
5882}
5883
5884/*
5885 * call-seq:
5886 * ENV.delete_if { |name, value| block } -> ENV
5887 * ENV.delete_if -> an_enumerator
5888 *
5889 * Yields each environment variable name and its value as a 2-element Array,
5890 * deleting each environment variable for which the block returns a truthy value,
5891 * and returning ENV (regardless of whether any deletions):
5892 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5893 * ENV.delete_if { |name, value| name.start_with?('b') } # => ENV
5894 * ENV # => {"foo"=>"0"}
5895 * ENV.delete_if { |name, value| name.start_with?('b') } # => ENV
5896 *
5897 * Returns an Enumerator if no block given:
5898 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5899 * e = ENV.delete_if # => #<Enumerator: {"bar"=>"1", "baz"=>"2", "foo"=>"0"}:delete_if!>
5900 * e.each { |name, value| name.start_with?('b') } # => ENV
5901 * ENV # => {"foo"=>"0"}
5902 * e.each { |name, value| name.start_with?('b') } # => ENV
5903 */
5904static VALUE
5905env_delete_if(VALUE ehash)
5906{
5907 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5908 env_reject_bang(ehash);
5909 return envtbl;
5910}
5911
5912/*
5913 * call-seq:
5914 * ENV.values_at(*names) -> array of values
5915 *
5916 * Returns an Array containing the environment variable values associated with
5917 * the given names:
5918 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5919 * ENV.values_at('foo', 'baz') # => ["0", "2"]
5920 *
5921 * Returns +nil+ in the Array for each name that is not an ENV name:
5922 * ENV.values_at('foo', 'bat', 'bar', 'bam') # => ["0", nil, "1", nil]
5923 *
5924 * Returns an empty Array if no names given.
5925 *
5926 * Raises an exception if any name is invalid.
5927 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
5928 */
5929static VALUE
5930env_values_at(int argc, VALUE *argv, VALUE _)
5931{
5932 VALUE result;
5933 long i;
5934
5935 result = rb_ary_new();
5936 for (i=0; i<argc; i++) {
5937 rb_ary_push(result, rb_f_getenv(Qnil, argv[i]));
5938 }
5939 return result;
5940}
5941
5942/*
5943 * call-seq:
5944 * ENV.select { |name, value| block } -> hash of name/value pairs
5945 * ENV.select -> an_enumerator
5946 * ENV.filter { |name, value| block } -> hash of name/value pairs
5947 * ENV.filter -> an_enumerator
5948 *
5949 * Yields each environment variable name and its value as a 2-element Array,
5950 * returning a Hash of the names and values for which the block returns a truthy value:
5951 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5952 * ENV.select { |name, value| name.start_with?('b') } # => {"bar"=>"1", "baz"=>"2"}
5953 * ENV.filter { |name, value| name.start_with?('b') } # => {"bar"=>"1", "baz"=>"2"}
5954 *
5955 * Returns an Enumerator if no block given:
5956 * e = ENV.select # => #<Enumerator: {"bar"=>"1", "baz"=>"2", "foo"=>"0"}:select>
5957 * e.each { |name, value | name.start_with?('b') } # => {"bar"=>"1", "baz"=>"2"}
5958 * e = ENV.filter # => #<Enumerator: {"bar"=>"1", "baz"=>"2", "foo"=>"0"}:filter>
5959 * e.each { |name, value | name.start_with?('b') } # => {"bar"=>"1", "baz"=>"2"}
5960 */
5961static VALUE
5962env_select(VALUE ehash)
5963{
5964 VALUE result;
5965 VALUE keys;
5966 long i;
5967
5968 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
5969 result = rb_hash_new();
5970 keys = env_keys(FALSE);
5971 for (i = 0; i < RARRAY_LEN(keys); ++i) {
5972 VALUE key = RARRAY_AREF(keys, i);
5973 VALUE val = rb_f_getenv(Qnil, key);
5974 if (!NIL_P(val)) {
5975 if (RTEST(rb_yield_values(2, key, val))) {
5976 rb_hash_aset(result, key, val);
5977 }
5978 }
5979 }
5980 RB_GC_GUARD(keys);
5981
5982 return result;
5983}
5984
5985/*
5986 * call-seq:
5987 * ENV.select! { |name, value| block } -> ENV or nil
5988 * ENV.select! -> an_enumerator
5989 * ENV.filter! { |name, value| block } -> ENV or nil
5990 * ENV.filter! -> an_enumerator
5991 *
5992 * Yields each environment variable name and its value as a 2-element Array,
5993 * deleting each entry for which the block returns +false+ or +nil+,
5994 * and returning ENV if any deletions made, or +nil+ otherwise:
5995 *
5996 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
5997 * ENV.select! { |name, value| name.start_with?('b') } # => ENV
5998 * ENV # => {"bar"=>"1", "baz"=>"2"}
5999 * ENV.select! { |name, value| true } # => nil
6000 *
6001 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6002 * ENV.filter! { |name, value| name.start_with?('b') } # => ENV
6003 * ENV # => {"bar"=>"1", "baz"=>"2"}
6004 * ENV.filter! { |name, value| true } # => nil
6005 *
6006 * Returns an Enumerator if no block given:
6007 *
6008 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6009 * e = ENV.select! # => #<Enumerator: {"bar"=>"1", "baz"=>"2"}:select!>
6010 * e.each { |name, value| name.start_with?('b') } # => ENV
6011 * ENV # => {"bar"=>"1", "baz"=>"2"}
6012 * e.each { |name, value| true } # => nil
6013 *
6014 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6015 * e = ENV.filter! # => #<Enumerator: {"bar"=>"1", "baz"=>"2"}:filter!>
6016 * e.each { |name, value| name.start_with?('b') } # => ENV
6017 * ENV # => {"bar"=>"1", "baz"=>"2"}
6018 * e.each { |name, value| true } # => nil
6019 */
6020static VALUE
6021env_select_bang(VALUE ehash)
6022{
6023 VALUE keys;
6024 long i;
6025 int del = 0;
6026
6027 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
6028 keys = env_keys(FALSE);
6029 RBASIC_CLEAR_CLASS(keys);
6030 for (i=0; i<RARRAY_LEN(keys); i++) {
6031 VALUE val = rb_f_getenv(Qnil, RARRAY_AREF(keys, i));
6032 if (!NIL_P(val)) {
6033 if (!RTEST(rb_yield_values(2, RARRAY_AREF(keys, i), val))) {
6034 env_delete(RARRAY_AREF(keys, i));
6035 del++;
6036 }
6037 }
6038 }
6039 RB_GC_GUARD(keys);
6040 if (del == 0) return Qnil;
6041 return envtbl;
6042}
6043
6044/*
6045 * call-seq:
6046 * ENV.keep_if { |name, value| block } -> ENV
6047 * ENV.keep_if -> an_enumerator
6048 *
6049 * Yields each environment variable name and its value as a 2-element Array,
6050 * deleting each environment variable for which the block returns +false+ or +nil+,
6051 * and returning ENV:
6052 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6053 * ENV.keep_if { |name, value| name.start_with?('b') } # => ENV
6054 * ENV # => {"bar"=>"1", "baz"=>"2"}
6055 *
6056 * Returns an Enumerator if no block given:
6057 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6058 * e = ENV.keep_if # => #<Enumerator: {"bar"=>"1", "baz"=>"2", "foo"=>"0"}:keep_if>
6059 * e.each { |name, value| name.start_with?('b') } # => ENV
6060 * ENV # => {"bar"=>"1", "baz"=>"2"}
6061 */
6062static VALUE
6063env_keep_if(VALUE ehash)
6064{
6065 RETURN_SIZED_ENUMERATOR(ehash, 0, 0, rb_env_size);
6066 env_select_bang(ehash);
6067 return envtbl;
6068}
6069
6070/*
6071 * call-seq:
6072 * ENV.slice(*names) -> hash of name/value pairs
6073 *
6074 * Returns a Hash of the given ENV names and their corresponding values:
6075 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2', 'bat' => '3')
6076 * ENV.slice('foo', 'baz') # => {"foo"=>"0", "baz"=>"2"}
6077 * ENV.slice('baz', 'foo') # => {"baz"=>"2", "foo"=>"0"}
6078 * Raises an exception if any of the +names+ is invalid
6079 * (see {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values]):
6080 * ENV.slice('foo', 'bar', :bat) # Raises TypeError (no implicit conversion of Symbol into String)
6081 */
6082static VALUE
6083env_slice(int argc, VALUE *argv, VALUE _)
6084{
6085 int i;
6086 VALUE key, value, result;
6087
6088 if (argc == 0) {
6089 return rb_hash_new();
6090 }
6091 result = rb_hash_new_with_size(argc);
6092
6093 for (i = 0; i < argc; i++) {
6094 key = argv[i];
6095 value = rb_f_getenv(Qnil, key);
6096 if (value != Qnil)
6097 rb_hash_aset(result, key, value);
6098 }
6099
6100 return result;
6101}
6102
6103VALUE
6104rb_env_clear(void)
6105{
6106 VALUE keys;
6107 long i;
6108
6109 keys = env_keys(TRUE);
6110 for (i=0; i<RARRAY_LEN(keys); i++) {
6111 VALUE key = RARRAY_AREF(keys, i);
6112 const char *nam = RSTRING_PTR(key);
6113 ruby_setenv(nam, 0);
6114 }
6115 RB_GC_GUARD(keys);
6116 return envtbl;
6117}
6118
6119/*
6120 * call-seq:
6121 * ENV.clear -> ENV
6122 *
6123 * Removes every environment variable; returns ENV:
6124 * ENV.replace('foo' => '0', 'bar' => '1')
6125 * ENV.size # => 2
6126 * ENV.clear # => ENV
6127 * ENV.size # => 0
6128 */
6129static VALUE
6130env_clear(VALUE _)
6131{
6132 return rb_env_clear();
6133}
6134
6135/*
6136 * call-seq:
6137 * ENV.to_s -> "ENV"
6138 *
6139 * Returns String 'ENV':
6140 * ENV.to_s # => "ENV"
6141 */
6142static VALUE
6143env_to_s(VALUE _)
6144{
6145 return rb_usascii_str_new2("ENV");
6146}
6147
6148/*
6149 * call-seq:
6150 * ENV.inspect -> a_string
6151 *
6152 * Returns the contents of the environment as a String:
6153 * ENV.replace('foo' => '0', 'bar' => '1')
6154 * ENV.inspect # => "{\"bar\"=>\"1\", \"foo\"=>\"0\"}"
6155 */
6156static VALUE
6157env_inspect(VALUE _)
6158{
6159 VALUE str = rb_str_buf_new2("{");
6160 rb_encoding *enc = env_encoding();
6161
6162 ENV_LOCK();
6163 {
6164 char **env = GET_ENVIRON(environ);
6165 while (*env) {
6166 const char *s = strchr(*env, '=');
6167
6168 if (env != environ) {
6169 rb_str_buf_cat2(str, ", ");
6170 }
6171 if (s) {
6172 rb_str_buf_append(str, rb_str_inspect(env_enc_str_new(*env, s-*env, enc)));
6173 rb_str_buf_cat2(str, " => ");
6174 s++;
6175 rb_str_buf_append(str, rb_str_inspect(env_enc_str_new(s, strlen(s), enc)));
6176 }
6177 env++;
6178 }
6179 FREE_ENVIRON(environ);
6180 }
6181 ENV_UNLOCK();
6182
6183 rb_str_buf_cat2(str, "}");
6184
6185 return str;
6186}
6187
6188/*
6189 * call-seq:
6190 * ENV.to_a -> array of 2-element arrays
6191 *
6192 * Returns the contents of ENV as an Array of 2-element Arrays,
6193 * each of which is a name/value pair:
6194 * ENV.replace('foo' => '0', 'bar' => '1')
6195 * ENV.to_a # => [["bar", "1"], ["foo", "0"]]
6196 */
6197static VALUE
6198env_to_a(VALUE _)
6199{
6200 VALUE ary = rb_ary_new();
6201
6202 ENV_LOCK();
6203 {
6204 char **env = GET_ENVIRON(environ);
6205 while (*env) {
6206 char *s = strchr(*env, '=');
6207 if (s) {
6208 rb_ary_push(ary, rb_assoc_new(env_str_new(*env, s-*env),
6209 env_str_new2(s+1)));
6210 }
6211 env++;
6212 }
6213 FREE_ENVIRON(environ);
6214 }
6215 ENV_UNLOCK();
6216
6217 return ary;
6218}
6219
6220/*
6221 * call-seq:
6222 * ENV.rehash -> nil
6223 *
6224 * (Provided for compatibility with Hash.)
6225 *
6226 * Does not modify ENV; returns +nil+.
6227 */
6228static VALUE
6229env_none(VALUE _)
6230{
6231 return Qnil;
6232}
6233
6234static int
6235env_size_with_lock(void)
6236{
6237 int i = 0;
6238
6239 ENV_LOCK();
6240 {
6241 char **env = GET_ENVIRON(environ);
6242 while (env[i]) i++;
6243 FREE_ENVIRON(environ);
6244 }
6245 ENV_UNLOCK();
6246
6247 return i;
6248}
6249
6250/*
6251 * call-seq:
6252 * ENV.length -> an_integer
6253 * ENV.size -> an_integer
6254 *
6255 * Returns the count of environment variables:
6256 * ENV.replace('foo' => '0', 'bar' => '1')
6257 * ENV.length # => 2
6258 * ENV.size # => 2
6259 */
6260static VALUE
6261env_size(VALUE _)
6262{
6263 return INT2FIX(env_size_with_lock());
6264}
6265
6266/*
6267 * call-seq:
6268 * ENV.empty? -> true or false
6269 *
6270 * Returns +true+ when there are no environment variables, +false+ otherwise:
6271 * ENV.clear
6272 * ENV.empty? # => true
6273 * ENV['foo'] = '0'
6274 * ENV.empty? # => false
6275 */
6276static VALUE
6277env_empty_p(VALUE _)
6278{
6279 bool empty = true;
6280
6281 ENV_LOCK();
6282 {
6283 char **env = GET_ENVIRON(environ);
6284 if (env[0] != 0) {
6285 empty = false;
6286 }
6287 FREE_ENVIRON(environ);
6288 }
6289 ENV_UNLOCK();
6290
6291 return RBOOL(empty);
6292}
6293
6294/*
6295 * call-seq:
6296 * ENV.include?(name) -> true or false
6297 * ENV.has_key?(name) -> true or false
6298 * ENV.member?(name) -> true or false
6299 * ENV.key?(name) -> true or false
6300 *
6301 * Returns +true+ if there is an environment variable with the given +name+:
6302 * ENV.replace('foo' => '0', 'bar' => '1')
6303 * ENV.include?('foo') # => true
6304 * Returns +false+ if +name+ is a valid String and there is no such environment variable:
6305 * ENV.include?('baz') # => false
6306 * Returns +false+ if +name+ is the empty String or is a String containing character <code>'='</code>:
6307 * ENV.include?('') # => false
6308 * ENV.include?('=') # => false
6309 * Raises an exception if +name+ is a String containing the NUL character <code>"\0"</code>:
6310 * ENV.include?("\0") # Raises ArgumentError (bad environment variable name: contains null byte)
6311 * Raises an exception if +name+ has an encoding that is not ASCII-compatible:
6312 * ENV.include?("\xa1\xa1".force_encoding(Encoding::UTF_16LE))
6313 * # Raises ArgumentError (bad environment variable name: ASCII incompatible encoding: UTF-16LE)
6314 * Raises an exception if +name+ is not a String:
6315 * ENV.include?(Object.new) # TypeError (no implicit conversion of Object into String)
6316 */
6317static VALUE
6318env_has_key(VALUE env, VALUE key)
6319{
6320 const char *s = env_name(key);
6321 return RBOOL(has_env_with_lock(s));
6322}
6323
6324/*
6325 * call-seq:
6326 * ENV.assoc(name) -> [name, value] or nil
6327 *
6328 * Returns a 2-element Array containing the name and value of the environment variable
6329 * for +name+ if it exists:
6330 * ENV.replace('foo' => '0', 'bar' => '1')
6331 * ENV.assoc('foo') # => ['foo', '0']
6332 * Returns +nil+ if +name+ is a valid String and there is no such environment variable.
6333 *
6334 * Returns +nil+ if +name+ is the empty String or is a String containing character <code>'='</code>.
6335 *
6336 * Raises an exception if +name+ is a String containing the NUL character <code>"\0"</code>:
6337 * ENV.assoc("\0") # Raises ArgumentError (bad environment variable name: contains null byte)
6338 * Raises an exception if +name+ has an encoding that is not ASCII-compatible:
6339 * ENV.assoc("\xa1\xa1".force_encoding(Encoding::UTF_16LE))
6340 * # Raises ArgumentError (bad environment variable name: ASCII incompatible encoding: UTF-16LE)
6341 * Raises an exception if +name+ is not a String:
6342 * ENV.assoc(Object.new) # TypeError (no implicit conversion of Object into String)
6343 */
6344static VALUE
6345env_assoc(VALUE env, VALUE key)
6346{
6347 const char *s = env_name(key);
6348 VALUE e = getenv_with_lock(s);
6349
6350 if (!NIL_P(e)) {
6351 return rb_assoc_new(key, e);
6352 }
6353 else {
6354 return Qnil;
6355 }
6356}
6357
6358/*
6359 * call-seq:
6360 * ENV.value?(value) -> true or false
6361 * ENV.has_value?(value) -> true or false
6362 *
6363 * Returns +true+ if +value+ is the value for some environment variable name, +false+ otherwise:
6364 * ENV.replace('foo' => '0', 'bar' => '1')
6365 * ENV.value?('0') # => true
6366 * ENV.has_value?('0') # => true
6367 * ENV.value?('2') # => false
6368 * ENV.has_value?('2') # => false
6369 */
6370static VALUE
6371env_has_value(VALUE dmy, VALUE obj)
6372{
6373 obj = rb_check_string_type(obj);
6374 if (NIL_P(obj)) return Qnil;
6375
6376 VALUE ret = Qfalse;
6377
6378 ENV_LOCK();
6379 {
6380 char **env = GET_ENVIRON(environ);
6381 while (*env) {
6382 char *s = strchr(*env, '=');
6383 if (s++) {
6384 long len = strlen(s);
6385 if (RSTRING_LEN(obj) == len && strncmp(s, RSTRING_PTR(obj), len) == 0) {
6386 ret = Qtrue;
6387 break;
6388 }
6389 }
6390 env++;
6391 }
6392 FREE_ENVIRON(environ);
6393 }
6394 ENV_UNLOCK();
6395
6396 return ret;
6397}
6398
6399/*
6400 * call-seq:
6401 * ENV.rassoc(value) -> [name, value] or nil
6402 *
6403 * Returns a 2-element Array containing the name and value of the
6404 * *first* *found* environment variable that has value +value+, if one
6405 * exists:
6406 * ENV.replace('foo' => '0', 'bar' => '0')
6407 * ENV.rassoc('0') # => ["bar", "0"]
6408 * The order in which environment variables are examined is OS-dependent.
6409 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
6410 *
6411 * Returns +nil+ if there is no such environment variable.
6412 */
6413static VALUE
6414env_rassoc(VALUE dmy, VALUE obj)
6415{
6416 obj = rb_check_string_type(obj);
6417 if (NIL_P(obj)) return Qnil;
6418
6419 VALUE result = Qnil;
6420
6421 ENV_LOCK();
6422 {
6423 char **env = GET_ENVIRON(environ);
6424
6425 while (*env) {
6426 const char *p = *env;
6427 char *s = strchr(p, '=');
6428 if (s++) {
6429 long len = strlen(s);
6430 if (RSTRING_LEN(obj) == len && strncmp(s, RSTRING_PTR(obj), len) == 0) {
6431 result = rb_assoc_new(rb_str_new(p, s-p-1), obj);
6432 break;
6433 }
6434 }
6435 env++;
6436 }
6437 FREE_ENVIRON(environ);
6438 }
6439 ENV_UNLOCK();
6440
6441 return result;
6442}
6443
6444/*
6445 * call-seq:
6446 * ENV.key(value) -> name or nil
6447 *
6448 * Returns the name of the first environment variable with +value+, if it exists:
6449 * ENV.replace('foo' => '0', 'bar' => '0')
6450 * ENV.key('0') # => "foo"
6451 * The order in which environment variables are examined is OS-dependent.
6452 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
6453 *
6454 * Returns +nil+ if there is no such value.
6455 *
6456 * Raises an exception if +value+ is invalid:
6457 * ENV.key(Object.new) # raises TypeError (no implicit conversion of Object into String)
6458 * See {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values].
6459 */
6460static VALUE
6461env_key(VALUE dmy, VALUE value)
6462{
6463 StringValue(value);
6464 VALUE str = Qnil;
6465
6466 ENV_LOCK();
6467 {
6468 char **env = GET_ENVIRON(environ);
6469 while (*env) {
6470 char *s = strchr(*env, '=');
6471 if (s++) {
6472 long len = strlen(s);
6473 if (RSTRING_LEN(value) == len && strncmp(s, RSTRING_PTR(value), len) == 0) {
6474 str = env_str_new(*env, s-*env-1);
6475 break;
6476 }
6477 }
6478 env++;
6479 }
6480 FREE_ENVIRON(environ);
6481 }
6482 ENV_UNLOCK();
6483
6484 return str;
6485}
6486
6487static VALUE
6488env_to_hash(void)
6489{
6490 VALUE hash = rb_hash_new();
6491
6492 ENV_LOCK();
6493 {
6494 char **env = GET_ENVIRON(environ);
6495 while (*env) {
6496 char *s = strchr(*env, '=');
6497 if (s) {
6498 rb_hash_aset(hash, env_str_new(*env, s-*env),
6499 env_str_new2(s+1));
6500 }
6501 env++;
6502 }
6503 FREE_ENVIRON(environ);
6504 }
6505 ENV_UNLOCK();
6506
6507 return hash;
6508}
6509
6510VALUE
6511rb_envtbl(void)
6512{
6513 return envtbl;
6514}
6515
6516VALUE
6517rb_env_to_hash(void)
6518{
6519 return env_to_hash();
6520}
6521
6522/*
6523 * call-seq:
6524 * ENV.to_hash -> hash of name/value pairs
6525 *
6526 * Returns a Hash containing all name/value pairs from ENV:
6527 * ENV.replace('foo' => '0', 'bar' => '1')
6528 * ENV.to_hash # => {"bar"=>"1", "foo"=>"0"}
6529 */
6530
6531static VALUE
6532env_f_to_hash(VALUE _)
6533{
6534 return env_to_hash();
6535}
6536
6537/*
6538 * call-seq:
6539 * ENV.to_h -> hash of name/value pairs
6540 * ENV.to_h {|name, value| block } -> hash of name/value pairs
6541 *
6542 * With no block, returns a Hash containing all name/value pairs from ENV:
6543 * ENV.replace('foo' => '0', 'bar' => '1')
6544 * ENV.to_h # => {"bar"=>"1", "foo"=>"0"}
6545 * With a block, returns a Hash whose items are determined by the block.
6546 * Each name/value pair in ENV is yielded to the block.
6547 * The block must return a 2-element Array (name/value pair)
6548 * that is added to the return Hash as a key and value:
6549 * ENV.to_h { |name, value| [name.to_sym, value.to_i] } # => {bar: 1, foo: 0}
6550 * Raises an exception if the block does not return an Array:
6551 * ENV.to_h { |name, value| name } # Raises TypeError (wrong element type String (expected array))
6552 * Raises an exception if the block returns an Array of the wrong size:
6553 * ENV.to_h { |name, value| [name] } # Raises ArgumentError (element has wrong array length (expected 2, was 1))
6554 */
6555static VALUE
6556env_to_h(VALUE _)
6557{
6558 VALUE hash = env_to_hash();
6559 if (rb_block_given_p()) {
6560 hash = rb_hash_to_h_block(hash);
6561 }
6562 return hash;
6563}
6564
6565/*
6566 * call-seq:
6567 * ENV.except(*keys) -> a_hash
6568 *
6569 * Returns a hash except the given keys from ENV and their values.
6570 *
6571 * ENV #=> {"LANG"=>"en_US.UTF-8", "TERM"=>"xterm-256color", "HOME"=>"/Users/rhc"}
6572 * ENV.except("TERM","HOME") #=> {"LANG"=>"en_US.UTF-8"}
6573 */
6574static VALUE
6575env_except(int argc, VALUE *argv, VALUE _)
6576{
6577 int i;
6578 VALUE key, hash = env_to_hash();
6579
6580 for (i = 0; i < argc; i++) {
6581 key = argv[i];
6582 rb_hash_delete(hash, key);
6583 }
6584
6585 return hash;
6586}
6587
6588/*
6589 * call-seq:
6590 * ENV.reject { |name, value| block } -> hash of name/value pairs
6591 * ENV.reject -> an_enumerator
6592 *
6593 * Yields each environment variable name and its value as a 2-element Array.
6594 * Returns a Hash whose items are determined by the block.
6595 * When the block returns a truthy value, the name/value pair is added to the return Hash;
6596 * otherwise the pair is ignored:
6597 * ENV.replace('foo' => '0', 'bar' => '1', 'baz' => '2')
6598 * ENV.reject { |name, value| name.start_with?('b') } # => {"foo"=>"0"}
6599 * Returns an Enumerator if no block given:
6600 * e = ENV.reject
6601 * e.each { |name, value| name.start_with?('b') } # => {"foo"=>"0"}
6602 */
6603static VALUE
6604env_reject(VALUE _)
6605{
6606 return rb_hash_delete_if(env_to_hash());
6607}
6608
6609NORETURN(static VALUE env_freeze(VALUE self));
6610/*
6611 * call-seq:
6612 * ENV.freeze
6613 *
6614 * Raises an exception:
6615 * ENV.freeze # Raises TypeError (cannot freeze ENV)
6616 */
6617static VALUE
6618env_freeze(VALUE self)
6619{
6620 rb_raise(rb_eTypeError, "cannot freeze ENV");
6621 UNREACHABLE_RETURN(self);
6622}
6623
6624/*
6625 * call-seq:
6626 * ENV.shift -> [name, value] or nil
6627 *
6628 * Removes the first environment variable from ENV and returns
6629 * a 2-element Array containing its name and value:
6630 * ENV.replace('foo' => '0', 'bar' => '1')
6631 * ENV.to_hash # => {'bar' => '1', 'foo' => '0'}
6632 * ENV.shift # => ['bar', '1']
6633 * ENV.to_hash # => {'foo' => '0'}
6634 * Exactly which environment variable is "first" is OS-dependent.
6635 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
6636 *
6637 * Returns +nil+ if the environment is empty.
6638 */
6639static VALUE
6640env_shift(VALUE _)
6641{
6642 VALUE result = Qnil;
6643 VALUE key = Qnil;
6644
6645 ENV_LOCK();
6646 {
6647 char **env = GET_ENVIRON(environ);
6648 if (*env) {
6649 const char *p = *env;
6650 char *s = strchr(p, '=');
6651 if (s) {
6652 key = env_str_new(p, s-p);
6653 VALUE val = env_str_new2(getenv(RSTRING_PTR(key)));
6654 result = rb_assoc_new(key, val);
6655 }
6656 }
6657 FREE_ENVIRON(environ);
6658 }
6659 ENV_UNLOCK();
6660
6661 if (!NIL_P(key)) {
6662 env_delete(key);
6663 }
6664
6665 return result;
6666}
6667
6668/*
6669 * call-seq:
6670 * ENV.invert -> hash of value/name pairs
6671 *
6672 * Returns a Hash whose keys are the ENV values,
6673 * and whose values are the corresponding ENV names:
6674 * ENV.replace('foo' => '0', 'bar' => '1')
6675 * ENV.invert # => {"1"=>"bar", "0"=>"foo"}
6676 * For a duplicate ENV value, overwrites the hash entry:
6677 * ENV.replace('foo' => '0', 'bar' => '0')
6678 * ENV.invert # => {"0"=>"foo"}
6679 * Note that the order of the ENV processing is OS-dependent,
6680 * which means that the order of overwriting is also OS-dependent.
6681 * See {About Ordering}[rdoc-ref:ENV@About+Ordering].
6682 */
6683static VALUE
6684env_invert(VALUE _)
6685{
6686 return rb_hash_invert(env_to_hash());
6687}
6688
6689static void
6690keylist_delete(VALUE keys, VALUE key)
6691{
6692 long keylen, elen;
6693 const char *keyptr, *eptr;
6694 RSTRING_GETMEM(key, keyptr, keylen);
6695 /* Don't stop at first key, as it is possible to have
6696 multiple environment values with the same key.
6697 */
6698 for (long i=0; i<RARRAY_LEN(keys); i++) {
6699 VALUE e = RARRAY_AREF(keys, i);
6700 RSTRING_GETMEM(e, eptr, elen);
6701 if (elen != keylen) continue;
6702 if (!ENVNMATCH(keyptr, eptr, elen)) continue;
6703 rb_ary_delete_at(keys, i);
6704 i--;
6705 }
6706}
6707
6708static int
6709env_replace_i(VALUE key, VALUE val, VALUE keys)
6710{
6711 env_name(key);
6712 env_aset(key, val);
6713
6714 keylist_delete(keys, key);
6715 return ST_CONTINUE;
6716}
6717
6718/*
6719 * call-seq:
6720 * ENV.replace(hash) -> ENV
6721 *
6722 * Replaces the entire content of the environment variables
6723 * with the name/value pairs in the given +hash+;
6724 * returns ENV.
6725 *
6726 * Replaces the content of ENV with the given pairs:
6727 * ENV.replace('foo' => '0', 'bar' => '1') # => ENV
6728 * ENV.to_hash # => {"bar"=>"1", "foo"=>"0"}
6729 *
6730 * Raises an exception if a name or value is invalid
6731 * (see {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values]):
6732 * ENV.replace('foo' => '0', :bar => '1') # Raises TypeError (no implicit conversion of Symbol into String)
6733 * ENV.replace('foo' => '0', 'bar' => 1) # Raises TypeError (no implicit conversion of Integer into String)
6734 * ENV.to_hash # => {"bar"=>"1", "foo"=>"0"}
6735 */
6736static VALUE
6737env_replace(VALUE env, VALUE hash)
6738{
6739 VALUE keys;
6740 long i;
6741
6742 keys = env_keys(TRUE);
6743 if (env == hash) return env;
6744 hash = to_hash(hash);
6745 rb_hash_foreach(hash, env_replace_i, keys);
6746
6747 for (i=0; i<RARRAY_LEN(keys); i++) {
6748 env_delete(RARRAY_AREF(keys, i));
6749 }
6750 RB_GC_GUARD(keys);
6751 return env;
6752}
6753
6754static int
6755env_update_i(VALUE key, VALUE val, VALUE _)
6756{
6757 env_aset(key, val);
6758 return ST_CONTINUE;
6759}
6760
6761static int
6762env_update_block_i(VALUE key, VALUE val, VALUE _)
6763{
6764 VALUE oldval = rb_f_getenv(Qnil, key);
6765 if (!NIL_P(oldval)) {
6766 val = rb_yield_values(3, key, oldval, val);
6767 }
6768 env_aset(key, val);
6769 return ST_CONTINUE;
6770}
6771
6772/*
6773 * call-seq:
6774 * ENV.update -> ENV
6775 * ENV.update(*hashes) -> ENV
6776 * ENV.update(*hashes) { |name, env_val, hash_val| block } -> ENV
6777 * ENV.merge! -> ENV
6778 * ENV.merge!(*hashes) -> ENV
6779 * ENV.merge!(*hashes) { |name, env_val, hash_val| block } -> ENV
6780 *
6781 * Adds to ENV each key/value pair in the given +hash+; returns ENV:
6782 * ENV.replace('foo' => '0', 'bar' => '1')
6783 * ENV.merge!('baz' => '2', 'bat' => '3') # => {"bar"=>"1", "bat"=>"3", "baz"=>"2", "foo"=>"0"}
6784 * Deletes the ENV entry for a hash value that is +nil+:
6785 * ENV.merge!('baz' => nil, 'bat' => nil) # => {"bar"=>"1", "foo"=>"0"}
6786 * For an already-existing name, if no block given, overwrites the ENV value:
6787 * ENV.merge!('foo' => '4') # => {"bar"=>"1", "foo"=>"4"}
6788 * For an already-existing name, if block given,
6789 * yields the name, its ENV value, and its hash value;
6790 * the block's return value becomes the new name:
6791 * ENV.merge!('foo' => '5') { |name, env_val, hash_val | env_val + hash_val } # => {"bar"=>"1", "foo"=>"45"}
6792 * Raises an exception if a name or value is invalid
6793 * (see {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values]);
6794 * ENV.replace('foo' => '0', 'bar' => '1')
6795 * ENV.merge!('foo' => '6', :bar => '7', 'baz' => '9') # Raises TypeError (no implicit conversion of Symbol into String)
6796 * ENV # => {"bar"=>"1", "foo"=>"6"}
6797 * ENV.merge!('foo' => '7', 'bar' => 8, 'baz' => '9') # Raises TypeError (no implicit conversion of Integer into String)
6798 * ENV # => {"bar"=>"1", "foo"=>"7"}
6799 * Raises an exception if the block returns an invalid name:
6800 * (see {Invalid Names and Values}[rdoc-ref:ENV@Invalid+Names+and+Values]):
6801 * ENV.merge!('bat' => '8', 'foo' => '9') { |name, env_val, hash_val | 10 } # Raises TypeError (no implicit conversion of Integer into String)
6802 * ENV # => {"bar"=>"1", "bat"=>"8", "foo"=>"7"}
6803 *
6804 * Note that for the exceptions above,
6805 * hash pairs preceding an invalid name or value are processed normally;
6806 * those following are ignored.
6807 */
6808static VALUE
6809env_update(int argc, VALUE *argv, VALUE env)
6810{
6811 rb_foreach_func *func = rb_block_given_p() ?
6812 env_update_block_i : env_update_i;
6813 for (int i = 0; i < argc; ++i) {
6814 VALUE hash = argv[i];
6815 if (env == hash) continue;
6816 hash = to_hash(hash);
6817 rb_hash_foreach(hash, func, 0);
6818 }
6819 return env;
6820}
6821
6822NORETURN(static VALUE env_clone(int, VALUE *, VALUE));
6823/*
6824 * call-seq:
6825 * ENV.clone(freeze: nil) # raises TypeError
6826 *
6827 * Raises TypeError, because ENV is a wrapper for the process-wide
6828 * environment variables and a clone is useless.
6829 * Use #to_h to get a copy of ENV data as a hash.
6830 */
6831static VALUE
6832env_clone(int argc, VALUE *argv, VALUE obj)
6833{
6834 if (argc) {
6835 VALUE opt;
6836 if (rb_scan_args(argc, argv, "0:", &opt) < argc) {
6837 rb_get_freeze_opt(1, &opt);
6838 }
6839 }
6840
6841 rb_raise(rb_eTypeError, "Cannot clone ENV, use ENV.to_h to get a copy of ENV as a hash");
6842}
6843
6844NORETURN(static VALUE env_dup(VALUE));
6845/*
6846 * call-seq:
6847 * ENV.dup # raises TypeError
6848 *
6849 * Raises TypeError, because ENV is a singleton object.
6850 * Use #to_h to get a copy of ENV data as a hash.
6851 */
6852static VALUE
6853env_dup(VALUE obj)
6854{
6855 rb_raise(rb_eTypeError, "Cannot dup ENV, use ENV.to_h to get a copy of ENV as a hash");
6856}
6857
6858static const rb_data_type_t env_data_type = {
6859 "ENV",
6860 {
6861 NULL,
6862 NULL,
6863 NULL,
6864 NULL,
6865 },
6866 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED,
6867};
6868
6869/*
6870 * A \Hash object maps each of its unique keys to a specific value.
6871 *
6872 * A hash has certain similarities to an Array, but:
6873
6874 * - An array index is always an integer.
6875 * - A hash key can be (almost) any object.
6876 *
6877 * === \Hash \Data Syntax
6878 *
6879 * The original syntax for a hash entry uses the "hash rocket," <tt>=></tt>:
6880 *
6881 * h = {:foo => 0, :bar => 1, :baz => 2}
6882 * h # => {foo: 0, bar: 1, baz: 2}
6883 *
6884 * Alternatively, but only for a key that's a symbol,
6885 * you can use a newer JSON-style syntax,
6886 * where each bareword becomes a symbol:
6887 *
6888 * h = {foo: 0, bar: 1, baz: 2}
6889 * h # => {foo: 0, bar: 1, baz: 2}
6890 *
6891 * You can also use a string in place of a bareword:
6892 *
6893 * h = {'foo': 0, 'bar': 1, 'baz': 2}
6894 * h # => {foo: 0, bar: 1, baz: 2}
6895 *
6896 * And you can mix the styles:
6897 *
6898 * h = {foo: 0, :bar => 1, 'baz': 2}
6899 * h # => {foo: 0, bar: 1, baz: 2}
6900 *
6901 * But it's an error to try the JSON-style syntax
6902 * for a key that's not a bareword or a string:
6903 *
6904 * # Raises SyntaxError (syntax error, unexpected ':', expecting =>):
6905 * h = {0: 'zero'}
6906 *
6907 * The value can be omitted, meaning that value will be fetched from the context
6908 * by the name of the key:
6909 *
6910 * x = 0
6911 * y = 100
6912 * h = {x:, y:}
6913 * h # => {x: 0, y: 100}
6914 *
6915 * === Common Uses
6916 *
6917 * You can use a hash to give names to objects:
6918 *
6919 * person = {name: 'Matz', language: 'Ruby'}
6920 * person # => {name: "Matz", language: "Ruby"}
6921 *
6922 * You can use a hash to give names to method arguments:
6923 *
6924 * def some_method(hash)
6925 * p hash
6926 * end
6927 * some_method({foo: 0, bar: 1, baz: 2}) # => {foo: 0, bar: 1, baz: 2}
6928 *
6929 * Note: when the last argument in a method call is a hash,
6930 * the curly braces may be omitted:
6931 *
6932 * some_method(foo: 0, bar: 1, baz: 2) # => {foo: 0, bar: 1, baz: 2}
6933 *
6934 * You can use a hash to initialize an object:
6935 *
6936 * class Dev
6937 * attr_accessor :name, :language
6938 * def initialize(hash)
6939 * self.name = hash[:name]
6940 * self.language = hash[:language]
6941 * end
6942 * end
6943 * matz = Dev.new(name: 'Matz', language: 'Ruby')
6944 * matz # => #<Dev: @name="Matz", @language="Ruby">
6945 *
6946 * === Creating a \Hash
6947 *
6948 * You can create a \Hash object explicitly with:
6949 *
6950 * - A {hash literal}[rdoc-ref:syntax/literals.rdoc@Hash+Literals].
6951 *
6952 * You can convert certain objects to hashes with:
6953 *
6954 * - Method Kernel#Hash.
6955 *
6956 * You can create a hash by calling method Hash.new:
6957 *
6958 * # Create an empty hash.
6959 * h = Hash.new
6960 * h # => {}
6961 * h.class # => Hash
6962 *
6963 * You can create a hash by calling method Hash.[]:
6964 *
6965 * # Create an empty hash.
6966 * h = Hash[]
6967 * h # => {}
6968 * # Create a hash with initial entries.
6969 * h = Hash[foo: 0, bar: 1, baz: 2]
6970 * h # => {foo: 0, bar: 1, baz: 2}
6971 *
6972 * You can create a hash by using its literal form (curly braces):
6973 *
6974 * # Create an empty hash.
6975 * h = {}
6976 * h # => {}
6977 * # Create a +Hash+ with initial entries.
6978 * h = {foo: 0, bar: 1, baz: 2}
6979 * h # => {foo: 0, bar: 1, baz: 2}
6980 *
6981 * === \Hash Value Basics
6982 *
6983 * The simplest way to retrieve a hash value (instance method #[]):
6984 *
6985 * h = {foo: 0, bar: 1, baz: 2}
6986 * h[:foo] # => 0
6987 *
6988 * The simplest way to create or update a hash value (instance method #[]=):
6989 *
6990 * h = {foo: 0, bar: 1, baz: 2}
6991 * h[:bat] = 3 # => 3
6992 * h # => {foo: 0, bar: 1, baz: 2, bat: 3}
6993 * h[:foo] = 4 # => 4
6994 * h # => {foo: 4, bar: 1, baz: 2, bat: 3}
6995 *
6996 * The simplest way to delete a hash entry (instance method #delete):
6997 *
6998 * h = {foo: 0, bar: 1, baz: 2}
6999 * h.delete(:bar) # => 1
7000 * h # => {foo: 0, baz: 2}
7001 *
7002 * === Entry Order
7003 *
7004 * A \Hash object presents its entries in the order of their creation. This is seen in:
7005 *
7006 * - Iterative methods such as <tt>each</tt>, <tt>each_key</tt>, <tt>each_pair</tt>, <tt>each_value</tt>.
7007 * - Other order-sensitive methods such as <tt>shift</tt>, <tt>keys</tt>, <tt>values</tt>.
7008 * - The string returned by method <tt>inspect</tt>.
7009 *
7010 * A new hash has its initial ordering per the given entries:
7011 *
7012 * h = Hash[foo: 0, bar: 1]
7013 * h # => {foo: 0, bar: 1}
7014 *
7015 * New entries are added at the end:
7016 *
7017 * h[:baz] = 2
7018 * h # => {foo: 0, bar: 1, baz: 2}
7019 *
7020 * Updating a value does not affect the order:
7021 *
7022 * h[:baz] = 3
7023 * h # => {foo: 0, bar: 1, baz: 3}
7024 *
7025 * But re-creating a deleted entry can affect the order:
7026 *
7027 * h.delete(:foo)
7028 * h[:foo] = 5
7029 * h # => {bar: 1, baz: 3, foo: 5}
7030 *
7031 * === +Hash+ Keys
7032 *
7033 * ==== +Hash+ Key Equivalence
7034 *
7035 * Two objects are treated as the same \hash key when their <code>hash</code> value
7036 * is identical and the two objects are <code>eql?</code> to each other.
7037 *
7038 * ==== Modifying an Active +Hash+ Key
7039 *
7040 * Modifying a +Hash+ key while it is in use damages the hash's index.
7041 *
7042 * This +Hash+ has keys that are Arrays:
7043 *
7044 * a0 = [ :foo, :bar ]
7045 * a1 = [ :baz, :bat ]
7046 * h = {a0 => 0, a1 => 1}
7047 * h.include?(a0) # => true
7048 * h[a0] # => 0
7049 * a0.hash # => 110002110
7050 *
7051 * Modifying array element <tt>a0[0]</tt> changes its hash value:
7052 *
7053 * a0[0] = :bam
7054 * a0.hash # => 1069447059
7055 *
7056 * And damages the +Hash+ index:
7057 *
7058 * h.include?(a0) # => false
7059 * h[a0] # => nil
7060 *
7061 * You can repair the hash index using method +rehash+:
7062 *
7063 * h.rehash # => {[:bam, :bar]=>0, [:baz, :bat]=>1}
7064 * h.include?(a0) # => true
7065 * h[a0] # => 0
7066 *
7067 * A String key is always safe.
7068 * That's because an unfrozen String
7069 * passed as a key will be replaced by a duplicated and frozen String:
7070 *
7071 * s = 'foo'
7072 * s.frozen? # => false
7073 * h = {s => 0}
7074 * first_key = h.keys.first
7075 * first_key.frozen? # => true
7076 *
7077 * ==== User-Defined +Hash+ Keys
7078 *
7079 * To be usable as a +Hash+ key, objects must implement the methods <code>hash</code> and <code>eql?</code>.
7080 * Note: this requirement does not apply if the +Hash+ uses #compare_by_identity since comparison will then
7081 * rely on the keys' object id instead of <code>hash</code> and <code>eql?</code>.
7082 *
7083 * Object defines basic implementation for <code>hash</code> and <code>eq?</code> that makes each object
7084 * a distinct key. Typically, user-defined classes will want to override these methods to provide meaningful
7085 * behavior, or for example inherit Struct that has useful definitions for these.
7086 *
7087 * A typical implementation of <code>hash</code> is based on the
7088 * object's data while <code>eql?</code> is usually aliased to the overridden
7089 * <code>==</code> method:
7090 *
7091 * class Book
7092 * attr_reader :author, :title
7093 *
7094 * def initialize(author, title)
7095 * @author = author
7096 * @title = title
7097 * end
7098 *
7099 * def ==(other)
7100 * self.class === other &&
7101 * other.author == @author &&
7102 * other.title == @title
7103 * end
7104 *
7105 * alias eql? ==
7106 *
7107 * def hash
7108 * [self.class, @author, @title].hash
7109 * end
7110 * end
7111 *
7112 * book1 = Book.new 'matz', 'Ruby in a Nutshell'
7113 * book2 = Book.new 'matz', 'Ruby in a Nutshell'
7114 *
7115 * reviews = {}
7116 *
7117 * reviews[book1] = 'Great reference!'
7118 * reviews[book2] = 'Nice and compact!'
7119 *
7120 * reviews.length #=> 1
7121 *
7122 * === Key Not Found?
7123 *
7124 * When a method tries to retrieve and return the value for a key and that key <i>is found</i>,
7125 * the returned value is the value associated with the key.
7126 *
7127 * But what if the key <i>is not found</i>?
7128 * In that case, certain methods will return a default value while other will raise a \KeyError.
7129 *
7130 * ==== Nil Return Value
7131 *
7132 * If you want +nil+ returned for a not-found key, you can call:
7133 *
7134 * - #[](key) (usually written as <tt>#[key]</tt>.
7135 * - #assoc(key).
7136 * - #dig(key, *identifiers).
7137 * - #values_at(*keys).
7138 *
7139 * You can override these behaviors for #[], #dig, and #values_at (but not #assoc);
7140 * see {Hash Default}[rdoc-ref:Hash@Hash+Default].
7141 *
7142 * ==== \KeyError
7143 *
7144 * If you want KeyError raised for a not-found key, you can call:
7145 *
7146 * - #fetch(key).
7147 * - #fetch_values(*keys).
7148 *
7149 * ==== \Hash Default
7150 *
7151 * For certain methods (#[], #dig, and #values_at),
7152 * the return value for a not-found key is determined by two hash properties:
7153 *
7154 * - <i>default value</i>: returned by method #default.
7155 * - <i>default proc</i>: returned by method #default_proc.
7156 *
7157 * In the simple case, both values are +nil+,
7158 * and the methods return +nil+ for a not-found key;
7159 * see {Nil Return Value}[rdoc-ref:Hash@Nil+Return+Value] above.
7160 *
7161 * Note that this entire section ("Hash Default"):
7162 *
7163 * - Applies _only_ to methods #[], #dig, and #values_at.
7164 * - Does _not_ apply to methods #assoc, #fetch, or #fetch_values,
7165 * which are not affected by the default value or default proc.
7166 *
7167 * ===== Any-Key Default
7168 *
7169 * You can define an any-key default for a hash;
7170 * that is, a value that will be returned for _any_ not-found key:
7171 *
7172 * - The value of #default_proc <i>must be</i> +nil+.
7173 * - The value of #default (which may be any object, including +nil+)
7174 * will be returned for a not-found key.
7175 *
7176 * You can set the default value when the hash is created with Hash.new and option +default_value+,
7177 * or later with method #default=.
7178 *
7179 * Note: although the value of #default may be any object,
7180 * it may not be a good idea to use a mutable object.
7181 *
7182 * ===== Per-Key Defaults
7183 *
7184 * You can define a per-key default for a hash;
7185 * that is, a Proc that will return a value based on the key itself.
7186 *
7187 * You can set the default proc when the hash is created with Hash.new and a block,
7188 * or later with method #default_proc=.
7189 *
7190 * Note that the proc can modify +self+,
7191 * but modifying +self+ in this way is not thread-safe;
7192 * multiple threads can concurrently call into the default proc
7193 * for the same key.
7194 *
7195 * ==== \Method Default
7196 *
7197 * For two methods, you can specify a default value for a not-found key
7198 * that has effect only for a single method call
7199 * (and not for any subsequent calls):
7200 *
7201 * - For method #fetch, you can specify an any-key default:
7202 * - For either method #fetch or method #fetch_values,
7203 * you can specify a per-key default via a block.
7204 *
7205 * === What's Here
7206 *
7207 * First, what's elsewhere. Class +Hash+:
7208 *
7209 * - Inherits from {class Object}[rdoc-ref:Object@What-27s+Here].
7210 * - Includes {module Enumerable}[rdoc-ref:Enumerable@What-27s+Here],
7211 * which provides dozens of additional methods.
7212 *
7213 * Here, class +Hash+ provides methods that are useful for:
7214 *
7215 * - {Creating a Hash}[rdoc-ref:Hash@Methods+for+Creating+a+Hash]
7216 * - {Setting Hash State}[rdoc-ref:Hash@Methods+for+Setting+Hash+State]
7217 * - {Querying}[rdoc-ref:Hash@Methods+for+Querying]
7218 * - {Comparing}[rdoc-ref:Hash@Methods+for+Comparing]
7219 * - {Fetching}[rdoc-ref:Hash@Methods+for+Fetching]
7220 * - {Assigning}[rdoc-ref:Hash@Methods+for+Assigning]
7221 * - {Deleting}[rdoc-ref:Hash@Methods+for+Deleting]
7222 * - {Iterating}[rdoc-ref:Hash@Methods+for+Iterating]
7223 * - {Converting}[rdoc-ref:Hash@Methods+for+Converting]
7224 * - {Transforming Keys and Values}[rdoc-ref:Hash@Methods+for+Transforming+Keys+and+Values]
7225 *
7226 * Class +Hash+ also includes methods from module Enumerable.
7227 *
7228 * ==== Methods for Creating a +Hash+
7229 *
7230 * - ::[]: Returns a new hash populated with given objects.
7231 * - ::new: Returns a new empty hash.
7232 * - ::try_convert: Returns a new hash created from a given object.
7233 *
7234 * ==== Methods for Setting +Hash+ State
7235 *
7236 * - #compare_by_identity: Sets +self+ to consider only identity in comparing keys.
7237 * - #default=: Sets the default to a given value.
7238 * - #default_proc=: Sets the default proc to a given proc.
7239 * - #rehash: Rebuilds the hash table by recomputing the hash index for each key.
7240 *
7241 * ==== Methods for Querying
7242 *
7243 * - #any?: Returns whether any element satisfies a given criterion.
7244 * - #compare_by_identity?: Returns whether the hash considers only identity when comparing keys.
7245 * - #default: Returns the default value, or the default value for a given key.
7246 * - #default_proc: Returns the default proc.
7247 * - #empty?: Returns whether there are no entries.
7248 * - #eql?: Returns whether a given object is equal to +self+.
7249 * - #hash: Returns the integer hash code.
7250 * - #has_value? (aliased as #value?): Returns whether a given object is a value in +self+.
7251 * - #include? (aliased as #has_key?, #member?, #key?): Returns whether a given object is a key in +self+.
7252 * - #size (aliased as #length): Returns the count of entries.
7253 *
7254 * ==== Methods for Comparing
7255 *
7256 * - #<: Returns whether +self+ is a proper subset of a given object.
7257 * - #<=: Returns whether +self+ is a subset of a given object.
7258 * - #==: Returns whether a given object is equal to +self+.
7259 * - #>: Returns whether +self+ is a proper superset of a given object
7260 * - #>=: Returns whether +self+ is a superset of a given object.
7261 *
7262 * ==== Methods for Fetching
7263 *
7264 * - #[]: Returns the value associated with a given key.
7265 * - #assoc: Returns a 2-element array containing a given key and its value.
7266 * - #dig: Returns the object in nested objects that is specified
7267 * by a given key and additional arguments.
7268 * - #fetch: Returns the value for a given key.
7269 * - #fetch_values: Returns array containing the values associated with given keys.
7270 * - #key: Returns the key for the first-found entry with a given value.
7271 * - #keys: Returns an array containing all keys in +self+.
7272 * - #rassoc: Returns a 2-element array consisting of the key and value
7273 * of the first-found entry having a given value.
7274 * - #values: Returns an array containing all values in +self+/
7275 * - #values_at: Returns an array containing values for given keys.
7276 *
7277 * ==== Methods for Assigning
7278 *
7279 * - #[]= (aliased as #store): Associates a given key with a given value.
7280 * - #merge: Returns the hash formed by merging each given hash into a copy of +self+.
7281 * - #update (aliased as #merge!): Merges each given hash into +self+.
7282 * - #replace (aliased as #initialize_copy): Replaces the entire contents of +self+ with the contents of a given hash.
7283 *
7284 * ==== Methods for Deleting
7285 *
7286 * These methods remove entries from +self+:
7287 *
7288 * - #clear: Removes all entries from +self+.
7289 * - #compact!: Removes all +nil+-valued entries from +self+.
7290 * - #delete: Removes the entry for a given key.
7291 * - #delete_if: Removes entries selected by a given block.
7292 * - #select! (aliased as #filter!): Keep only those entries selected by a given block.
7293 * - #keep_if: Keep only those entries selected by a given block.
7294 * - #reject!: Removes entries selected by a given block.
7295 * - #shift: Removes and returns the first entry.
7296 *
7297 * These methods return a copy of +self+ with some entries removed:
7298 *
7299 * - #compact: Returns a copy of +self+ with all +nil+-valued entries removed.
7300 * - #except: Returns a copy of +self+ with entries removed for specified keys.
7301 * - #select (aliased as #filter): Returns a copy of +self+ with only those entries selected by a given block.
7302 * - #reject: Returns a copy of +self+ with entries removed as specified by a given block.
7303 * - #slice: Returns a hash containing the entries for given keys.
7304 *
7305 * ==== Methods for Iterating
7306 * - #each_pair (aliased as #each): Calls a given block with each key-value pair.
7307 * - #each_key: Calls a given block with each key.
7308 * - #each_value: Calls a given block with each value.
7309 *
7310 * ==== Methods for Converting
7311 *
7312 * - #flatten: Returns an array that is a 1-dimensional flattening of +self+.
7313 * - #inspect (aliased as #to_s): Returns a new String containing the hash entries.
7314 * - #to_a: Returns a new array of 2-element arrays;
7315 * each nested array contains a key-value pair from +self+.
7316 * - #to_h: Returns +self+ if a +Hash+;
7317 * if a subclass of +Hash+, returns a +Hash+ containing the entries from +self+.
7318 * - #to_hash: Returns +self+.
7319 * - #to_proc: Returns a proc that maps a given key to its value.
7320 *
7321 * ==== Methods for Transforming Keys and Values
7322 *
7323 * - #flatten!: Returns +self+, flattened.
7324 * - #invert: Returns a hash with the each key-value pair inverted.
7325 * - #transform_keys: Returns a copy of +self+ with modified keys.
7326 * - #transform_keys!: Modifies keys in +self+
7327 * - #transform_values: Returns a copy of +self+ with modified values.
7328 * - #transform_values!: Modifies values in +self+.
7329 *
7330 */
7331
7332void
7333Init_Hash(void)
7334{
7335 id_hash = rb_intern_const("hash");
7336 id_flatten_bang = rb_intern_const("flatten!");
7337 id_hash_iter_lev = rb_make_internal_id();
7338
7339 rb_cHash = rb_define_class("Hash", rb_cObject);
7340
7342
7343 rb_define_alloc_func(rb_cHash, empty_hash_alloc);
7344 rb_define_singleton_method(rb_cHash, "[]", rb_hash_s_create, -1);
7345 rb_define_singleton_method(rb_cHash, "try_convert", rb_hash_s_try_convert, 1);
7346 rb_define_method(rb_cHash, "initialize_copy", rb_hash_replace, 1);
7347 rb_define_method(rb_cHash, "rehash", rb_hash_rehash, 0);
7348 rb_define_method(rb_cHash, "freeze", rb_hash_freeze, 0);
7349
7350 rb_define_method(rb_cHash, "to_hash", rb_hash_to_hash, 0);
7351 rb_define_method(rb_cHash, "to_h", rb_hash_to_h, 0);
7352 rb_define_method(rb_cHash, "to_a", rb_hash_to_a, 0);
7353 rb_define_method(rb_cHash, "inspect", rb_hash_inspect, 0);
7354 rb_define_alias(rb_cHash, "to_s", "inspect");
7355 rb_define_method(rb_cHash, "to_proc", rb_hash_to_proc, 0);
7356
7357 rb_define_method(rb_cHash, "==", rb_hash_equal, 1);
7358 rb_define_method(rb_cHash, "[]", rb_hash_aref, 1);
7359 rb_define_method(rb_cHash, "hash", rb_hash_hash, 0);
7360 rb_define_method(rb_cHash, "eql?", rb_hash_eql, 1);
7361 rb_define_method(rb_cHash, "fetch", rb_hash_fetch_m, -1);
7362 rb_define_method(rb_cHash, "[]=", rb_hash_aset, 2);
7363 rb_define_method(rb_cHash, "store", rb_hash_aset, 2);
7364 rb_define_method(rb_cHash, "default", rb_hash_default, -1);
7365 rb_define_method(rb_cHash, "default=", rb_hash_set_default, 1);
7366 rb_define_method(rb_cHash, "default_proc", rb_hash_default_proc, 0);
7367 rb_define_method(rb_cHash, "default_proc=", rb_hash_set_default_proc, 1);
7368 rb_define_method(rb_cHash, "key", rb_hash_key, 1);
7369 rb_define_method(rb_cHash, "size", rb_hash_size, 0);
7370 rb_define_method(rb_cHash, "length", rb_hash_size, 0);
7371 rb_define_method(rb_cHash, "empty?", rb_hash_empty_p, 0);
7372
7373 rb_define_method(rb_cHash, "each_value", rb_hash_each_value, 0);
7374 rb_define_method(rb_cHash, "each_key", rb_hash_each_key, 0);
7375 rb_define_method(rb_cHash, "each_pair", rb_hash_each_pair, 0);
7376 rb_define_method(rb_cHash, "each", rb_hash_each_pair, 0);
7377
7378 rb_define_method(rb_cHash, "transform_keys", rb_hash_transform_keys, -1);
7379 rb_define_method(rb_cHash, "transform_keys!", rb_hash_transform_keys_bang, -1);
7380 rb_define_method(rb_cHash, "transform_values", rb_hash_transform_values, 0);
7381 rb_define_method(rb_cHash, "transform_values!", rb_hash_transform_values_bang, 0);
7382
7383 rb_define_method(rb_cHash, "keys", rb_hash_keys, 0);
7384 rb_define_method(rb_cHash, "values", rb_hash_values, 0);
7385 rb_define_method(rb_cHash, "values_at", rb_hash_values_at, -1);
7386 rb_define_method(rb_cHash, "fetch_values", rb_hash_fetch_values, -1);
7387
7388 rb_define_method(rb_cHash, "shift", rb_hash_shift, 0);
7389 rb_define_method(rb_cHash, "delete", rb_hash_delete_m, 1);
7390 rb_define_method(rb_cHash, "delete_if", rb_hash_delete_if, 0);
7391 rb_define_method(rb_cHash, "keep_if", rb_hash_keep_if, 0);
7392 rb_define_method(rb_cHash, "select", rb_hash_select, 0);
7393 rb_define_method(rb_cHash, "select!", rb_hash_select_bang, 0);
7394 rb_define_method(rb_cHash, "filter", rb_hash_select, 0);
7395 rb_define_method(rb_cHash, "filter!", rb_hash_select_bang, 0);
7396 rb_define_method(rb_cHash, "reject", rb_hash_reject, 0);
7397 rb_define_method(rb_cHash, "reject!", rb_hash_reject_bang, 0);
7398 rb_define_method(rb_cHash, "slice", rb_hash_slice, -1);
7399 rb_define_method(rb_cHash, "except", rb_hash_except, -1);
7400 rb_define_method(rb_cHash, "clear", rb_hash_clear, 0);
7401 rb_define_method(rb_cHash, "invert", rb_hash_invert, 0);
7402 rb_define_method(rb_cHash, "update", rb_hash_update, -1);
7403 rb_define_method(rb_cHash, "replace", rb_hash_replace, 1);
7404 rb_define_method(rb_cHash, "merge!", rb_hash_update, -1);
7405 rb_define_method(rb_cHash, "merge", rb_hash_merge, -1);
7406 rb_define_method(rb_cHash, "assoc", rb_hash_assoc, 1);
7407 rb_define_method(rb_cHash, "rassoc", rb_hash_rassoc, 1);
7408 rb_define_method(rb_cHash, "flatten", rb_hash_flatten, -1);
7409 rb_define_method(rb_cHash, "compact", rb_hash_compact, 0);
7410 rb_define_method(rb_cHash, "compact!", rb_hash_compact_bang, 0);
7411
7412 rb_define_method(rb_cHash, "include?", rb_hash_has_key, 1);
7413 rb_define_method(rb_cHash, "member?", rb_hash_has_key, 1);
7414 rb_define_method(rb_cHash, "has_key?", rb_hash_has_key, 1);
7415 rb_define_method(rb_cHash, "has_value?", rb_hash_has_value, 1);
7416 rb_define_method(rb_cHash, "key?", rb_hash_has_key, 1);
7417 rb_define_method(rb_cHash, "value?", rb_hash_has_value, 1);
7418
7419 rb_define_method(rb_cHash, "compare_by_identity", rb_hash_compare_by_id, 0);
7420 rb_define_method(rb_cHash, "compare_by_identity?", rb_hash_compare_by_id_p, 0);
7421
7422 rb_define_method(rb_cHash, "any?", rb_hash_any_p, -1);
7423 rb_define_method(rb_cHash, "dig", rb_hash_dig, -1);
7424
7425 rb_define_method(rb_cHash, "<=", rb_hash_le, 1);
7426 rb_define_method(rb_cHash, "<", rb_hash_lt, 1);
7427 rb_define_method(rb_cHash, ">=", rb_hash_ge, 1);
7428 rb_define_method(rb_cHash, ">", rb_hash_gt, 1);
7429
7430 rb_define_method(rb_cHash, "deconstruct_keys", rb_hash_deconstruct_keys, 1);
7431
7432 rb_define_singleton_method(rb_cHash, "ruby2_keywords_hash?", rb_hash_s_ruby2_keywords_hash_p, 1);
7433 rb_define_singleton_method(rb_cHash, "ruby2_keywords_hash", rb_hash_s_ruby2_keywords_hash, 1);
7434
7435 rb_cHash_empty_frozen = rb_hash_freeze(rb_hash_new());
7436 rb_vm_register_global_object(rb_cHash_empty_frozen);
7437
7438 /* Document-class: ENV
7439 *
7440 * +ENV+ is a hash-like accessor for environment variables.
7441 *
7442 * === Interaction with the Operating System
7443 *
7444 * The +ENV+ object interacts with the operating system's environment variables:
7445 *
7446 * - When you get the value for a name in +ENV+, the value is retrieved from among the current environment variables.
7447 * - When you create or set a name-value pair in +ENV+, the name and value are immediately set in the environment variables.
7448 * - When you delete a name-value pair in +ENV+, it is immediately deleted from the environment variables.
7449 *
7450 * === Names and Values
7451 *
7452 * Generally, a name or value is a String.
7453 *
7454 * ==== Valid Names and Values
7455 *
7456 * Each name or value must be one of the following:
7457 *
7458 * - A String.
7459 * - An object that responds to \#to_str by returning a String, in which case that String will be used as the name or value.
7460 *
7461 * ==== Invalid Names and Values
7462 *
7463 * A new name:
7464 *
7465 * - May not be the empty string:
7466 * ENV[''] = '0'
7467 * # Raises Errno::EINVAL (Invalid argument - ruby_setenv())
7468 *
7469 * - May not contain character <code>"="</code>:
7470 * ENV['='] = '0'
7471 * # Raises Errno::EINVAL (Invalid argument - ruby_setenv(=))
7472 *
7473 * A new name or value:
7474 *
7475 * - May not be a non-String that does not respond to \#to_str:
7476 *
7477 * ENV['foo'] = Object.new
7478 * # Raises TypeError (no implicit conversion of Object into String)
7479 * ENV[Object.new] = '0'
7480 * # Raises TypeError (no implicit conversion of Object into String)
7481 *
7482 * - May not contain the NUL character <code>"\0"</code>:
7483 *
7484 * ENV['foo'] = "\0"
7485 * # Raises ArgumentError (bad environment variable value: contains null byte)
7486 * ENV["\0"] == '0'
7487 * # Raises ArgumentError (bad environment variable name: contains null byte)
7488 *
7489 * - May not have an ASCII-incompatible encoding such as UTF-16LE or ISO-2022-JP:
7490 *
7491 * ENV['foo'] = '0'.force_encoding(Encoding::ISO_2022_JP)
7492 * # Raises ArgumentError (bad environment variable name: ASCII incompatible encoding: ISO-2022-JP)
7493 * ENV["foo".force_encoding(Encoding::ISO_2022_JP)] = '0'
7494 * # Raises ArgumentError (bad environment variable name: ASCII incompatible encoding: ISO-2022-JP)
7495 *
7496 * === About Ordering
7497 *
7498 * +ENV+ enumerates its name/value pairs in the order found
7499 * in the operating system's environment variables.
7500 * Therefore the ordering of +ENV+ content is OS-dependent, and may be indeterminate.
7501 *
7502 * This will be seen in:
7503 * - A Hash returned by an +ENV+ method.
7504 * - An Enumerator returned by an +ENV+ method.
7505 * - An Array returned by ENV.keys, ENV.values, or ENV.to_a.
7506 * - The String returned by ENV.inspect.
7507 * - The Array returned by ENV.shift.
7508 * - The name returned by ENV.key.
7509 *
7510 * === About the Examples
7511 * Some methods in +ENV+ return +ENV+ itself. Typically, there are many environment variables.
7512 * It's not useful to display a large +ENV+ in the examples here,
7513 * so most example snippets begin by resetting the contents of +ENV+:
7514 * - ENV.replace replaces +ENV+ with a new collection of entries.
7515 * - ENV.clear empties +ENV+.
7516 *
7517 * === What's Here
7518 *
7519 * First, what's elsewhere. Class +ENV+:
7520 *
7521 * - Inherits from {class Object}[rdoc-ref:Object@What-27s+Here].
7522 * - Extends {module Enumerable}[rdoc-ref:Enumerable@What-27s+Here],
7523 *
7524 * Here, class +ENV+ provides methods that are useful for:
7525 *
7526 * - {Querying}[rdoc-ref:ENV@Methods+for+Querying]
7527 * - {Assigning}[rdoc-ref:ENV@Methods+for+Assigning]
7528 * - {Deleting}[rdoc-ref:ENV@Methods+for+Deleting]
7529 * - {Iterating}[rdoc-ref:ENV@Methods+for+Iterating]
7530 * - {Converting}[rdoc-ref:ENV@Methods+for+Converting]
7531 * - {And more ....}[rdoc-ref:ENV@More+Methods]
7532 *
7533 * ==== Methods for Querying
7534 *
7535 * - ::[]: Returns the value for the given environment variable name if it exists:
7536 * - ::empty?: Returns whether +ENV+ is empty.
7537 * - ::has_value?, ::value?: Returns whether the given value is in +ENV+.
7538 * - ::include?, ::has_key?, ::key?, ::member?: Returns whether the given name
7539 is in +ENV+.
7540 * - ::key: Returns the name of the first entry with the given value.
7541 * - ::size, ::length: Returns the number of entries.
7542 * - ::value?: Returns whether any entry has the given value.
7543 *
7544 * ==== Methods for Assigning
7545 *
7546 * - ::[]=, ::store: Creates, updates, or deletes the named environment variable.
7547 * - ::clear: Removes every environment variable; returns +ENV+:
7548 * - ::update, ::merge!: Adds to +ENV+ each key/value pair in the given hash.
7549 * - ::replace: Replaces the entire content of the +ENV+
7550 * with the name/value pairs in the given hash.
7551 *
7552 * ==== Methods for Deleting
7553 *
7554 * - ::delete: Deletes the named environment variable name if it exists.
7555 * - ::delete_if: Deletes entries selected by the block.
7556 * - ::keep_if: Deletes entries not selected by the block.
7557 * - ::reject!: Similar to #delete_if, but returns +nil+ if no change was made.
7558 * - ::select!, ::filter!: Deletes entries selected by the block.
7559 * - ::shift: Removes and returns the first entry.
7560 *
7561 * ==== Methods for Iterating
7562 *
7563 * - ::each, ::each_pair: Calls the block with each name/value pair.
7564 * - ::each_key: Calls the block with each name.
7565 * - ::each_value: Calls the block with each value.
7566 *
7567 * ==== Methods for Converting
7568 *
7569 * - ::assoc: Returns a 2-element array containing the name and value
7570 * of the named environment variable if it exists:
7571 * - ::clone: Returns +ENV+ (and issues a warning).
7572 * - ::except: Returns a hash of all name/value pairs except those given.
7573 * - ::fetch: Returns the value for the given name.
7574 * - ::inspect: Returns the contents of +ENV+ as a string.
7575 * - ::invert: Returns a hash whose keys are the +ENV+ values,
7576 and whose values are the corresponding +ENV+ names.
7577 * - ::keys: Returns an array of all names.
7578 * - ::rassoc: Returns the name and value of the first found entry
7579 * that has the given value.
7580 * - ::reject: Returns a hash of those entries not rejected by the block.
7581 * - ::select, ::filter: Returns a hash of name/value pairs selected by the block.
7582 * - ::slice: Returns a hash of the given names and their corresponding values.
7583 * - ::to_a: Returns the entries as an array of 2-element Arrays.
7584 * - ::to_h: Returns a hash of entries selected by the block.
7585 * - ::to_hash: Returns a hash of all entries.
7586 * - ::to_s: Returns the string <tt>'ENV'</tt>.
7587 * - ::values: Returns all values as an array.
7588 * - ::values_at: Returns an array of the values for the given name.
7589 *
7590 * ==== More Methods
7591 *
7592 * - ::dup: Raises an exception.
7593 * - ::freeze: Raises an exception.
7594 * - ::rehash: Returns +nil+, without modifying +ENV+.
7595 *
7596 */
7597
7598 /*
7599 * Hack to get RDoc to regard ENV as a class:
7600 * envtbl = rb_define_class("ENV", rb_cObject);
7601 */
7602 origenviron = environ;
7603 envtbl = TypedData_Wrap_Struct(rb_cObject, &env_data_type, NULL);
7606
7607
7608 rb_define_singleton_method(envtbl, "[]", rb_f_getenv, 1);
7609 rb_define_singleton_method(envtbl, "fetch", env_fetch, -1);
7610 rb_define_singleton_method(envtbl, "[]=", env_aset_m, 2);
7611 rb_define_singleton_method(envtbl, "store", env_aset_m, 2);
7612 rb_define_singleton_method(envtbl, "each", env_each_pair, 0);
7613 rb_define_singleton_method(envtbl, "each_pair", env_each_pair, 0);
7614 rb_define_singleton_method(envtbl, "each_key", env_each_key, 0);
7615 rb_define_singleton_method(envtbl, "each_value", env_each_value, 0);
7616 rb_define_singleton_method(envtbl, "delete", env_delete_m, 1);
7617 rb_define_singleton_method(envtbl, "delete_if", env_delete_if, 0);
7618 rb_define_singleton_method(envtbl, "keep_if", env_keep_if, 0);
7619 rb_define_singleton_method(envtbl, "slice", env_slice, -1);
7620 rb_define_singleton_method(envtbl, "except", env_except, -1);
7621 rb_define_singleton_method(envtbl, "clear", env_clear, 0);
7622 rb_define_singleton_method(envtbl, "reject", env_reject, 0);
7623 rb_define_singleton_method(envtbl, "reject!", env_reject_bang, 0);
7624 rb_define_singleton_method(envtbl, "select", env_select, 0);
7625 rb_define_singleton_method(envtbl, "select!", env_select_bang, 0);
7626 rb_define_singleton_method(envtbl, "filter", env_select, 0);
7627 rb_define_singleton_method(envtbl, "filter!", env_select_bang, 0);
7628 rb_define_singleton_method(envtbl, "shift", env_shift, 0);
7629 rb_define_singleton_method(envtbl, "freeze", env_freeze, 0);
7630 rb_define_singleton_method(envtbl, "invert", env_invert, 0);
7631 rb_define_singleton_method(envtbl, "replace", env_replace, 1);
7632 rb_define_singleton_method(envtbl, "update", env_update, -1);
7633 rb_define_singleton_method(envtbl, "merge!", env_update, -1);
7634 rb_define_singleton_method(envtbl, "inspect", env_inspect, 0);
7635 rb_define_singleton_method(envtbl, "rehash", env_none, 0);
7636 rb_define_singleton_method(envtbl, "to_a", env_to_a, 0);
7637 rb_define_singleton_method(envtbl, "to_s", env_to_s, 0);
7638 rb_define_singleton_method(envtbl, "key", env_key, 1);
7639 rb_define_singleton_method(envtbl, "size", env_size, 0);
7640 rb_define_singleton_method(envtbl, "length", env_size, 0);
7641 rb_define_singleton_method(envtbl, "empty?", env_empty_p, 0);
7642 rb_define_singleton_method(envtbl, "keys", env_f_keys, 0);
7643 rb_define_singleton_method(envtbl, "values", env_f_values, 0);
7644 rb_define_singleton_method(envtbl, "values_at", env_values_at, -1);
7645 rb_define_singleton_method(envtbl, "include?", env_has_key, 1);
7646 rb_define_singleton_method(envtbl, "member?", env_has_key, 1);
7647 rb_define_singleton_method(envtbl, "has_key?", env_has_key, 1);
7648 rb_define_singleton_method(envtbl, "has_value?", env_has_value, 1);
7649 rb_define_singleton_method(envtbl, "key?", env_has_key, 1);
7650 rb_define_singleton_method(envtbl, "value?", env_has_value, 1);
7651 rb_define_singleton_method(envtbl, "to_hash", env_f_to_hash, 0);
7652 rb_define_singleton_method(envtbl, "to_h", env_to_h, 0);
7653 rb_define_singleton_method(envtbl, "assoc", env_assoc, 1);
7654 rb_define_singleton_method(envtbl, "rassoc", env_rassoc, 1);
7655 rb_define_singleton_method(envtbl, "clone", env_clone, -1);
7656 rb_define_singleton_method(envtbl, "dup", env_dup, 0);
7657
7658 VALUE envtbl_class = rb_singleton_class(envtbl);
7659 rb_undef_method(envtbl_class, "initialize");
7660 rb_undef_method(envtbl_class, "initialize_clone");
7661 rb_undef_method(envtbl_class, "initialize_copy");
7662 rb_undef_method(envtbl_class, "initialize_dup");
7663
7664 /*
7665 * +ENV+ is a Hash-like accessor for environment variables.
7666 *
7667 * See ENV (the class) for more details.
7668 */
7669 rb_define_global_const("ENV", envtbl);
7670
7671 HASH_ASSERT(sizeof(ar_hint_t) * RHASH_AR_TABLE_MAX_SIZE == sizeof(VALUE));
7672}
7673
7674#include "hash.rbinc"
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
Definition assert.h:219
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
static bool RB_FL_ANY_RAW(VALUE obj, VALUE flags)
This is an implementation detail of RB_FL_ANY().
Definition fl_type.h:518
static bool RB_OBJ_FROZEN(VALUE obj)
Checks if an object is frozen.
Definition fl_type.h:898
@ RUBY_FL_SHAREABLE
This flag has something to do with Ractor.
Definition fl_type.h:266
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
Definition class.c:1190
VALUE rb_define_class(const char *name, VALUE super)
Defines a top-level class.
Definition class.c:980
void rb_extend_object(VALUE obj, VALUE module)
Extend the object with the module.
Definition eval.c:1755
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
Definition class.c:2300
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
Definition class.c:2348
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
Definition class.c:2169
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
Definition class.c:2638
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition eval.c:936
#define TYPE(_)
Old name of rb_type.
Definition value_type.h:108
#define rb_str_buf_cat2
Old name of rb_usascii_str_new_cstr.
Definition string.h:1682
#define FL_EXIVAR
Old name of RUBY_FL_EXIVAR.
Definition fl_type.h:66
#define NUM2LL
Old name of RB_NUM2LL.
Definition long_long.h:34
#define REALLOC_N
Old name of RB_REALLOC_N.
Definition memory.h:403
#define T_STRING
Old name of RUBY_T_STRING.
Definition value_type.h:78
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define T_NIL
Old name of RUBY_T_NIL.
Definition value_type.h:72
#define T_FLOAT
Old name of RUBY_T_FLOAT.
Definition value_type.h:64
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
Definition value_type.h:57
#define rb_str_buf_new2
Old name of rb_str_buf_new_cstr.
Definition string.h:1679
#define T_FIXNUM
Old name of RUBY_T_FIXNUM.
Definition value_type.h:63
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
Definition assume.h:29
#define T_DATA
Old name of RUBY_T_DATA.
Definition value_type.h:60
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:203
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define STATIC_SYM_P
Old name of RB_STATIC_SYM_P.
#define T_TRUE
Old name of RUBY_T_TRUE.
Definition value_type.h:81
#define T_HASH
Old name of RUBY_T_HASH.
Definition value_type.h:65
#define ALLOC_N
Old name of RB_ALLOC_N.
Definition memory.h:399
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
Definition fl_type.h:132
#define rb_usascii_str_new2
Old name of rb_usascii_str_new_cstr.
Definition string.h:1680
#define T_FALSE
Old name of RUBY_T_FALSE.
Definition value_type.h:61
#define FIXNUM_MIN
Old name of RUBY_FIXNUM_MIN.
Definition fixnum.h:27
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
Definition st_data_t.h:33
#define FIXNUM_MAX
Old name of RUBY_FIXNUM_MAX.
Definition fixnum.h:26
#define NUM2INT
Old name of RB_NUM2INT.
Definition int.h:44
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
Definition long.h:46
#define NIL_P
Old name of RB_NIL_P.
#define ALLOCV_N
Old name of RB_ALLOCV_N.
Definition memory.h:405
#define FL_WB_PROTECTED
Old name of RUBY_FL_WB_PROTECTED.
Definition fl_type.h:59
#define POSFIXABLE
Old name of RB_POSFIXABLE.
Definition fixnum.h:29
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
Definition value_type.h:80
#define FL_TEST
Old name of RB_FL_TEST.
Definition fl_type.h:131
#define NUM2LONG
Old name of RB_NUM2LONG.
Definition long.h:51
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define OBJ_WB_UNPROTECT
Old name of RB_OBJ_WB_UNPROTECT.
Definition gc.h:621
#define rb_ary_new2
Old name of rb_ary_new_capa.
Definition array.h:657
#define FL_SET_RAW
Old name of RB_FL_SET_RAW.
Definition fl_type.h:130
#define ALLOCV_END
Old name of RB_ALLOCV_END.
Definition memory.h:406
#define SYMBOL_P
Old name of RB_SYMBOL_P.
Definition value_type.h:88
void rb_syserr_fail_str(int e, VALUE mesg)
Identical to rb_syserr_fail(), except it takes the message in Ruby's String instead of C's.
Definition error.c:3911
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
VALUE rb_eRuntimeError
RuntimeError exception.
Definition error.c:1428
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
Definition error.c:466
VALUE rb_mKernel
Kernel module.
Definition object.c:65
VALUE rb_any_to_s(VALUE obj)
Generates a textual representation of the given object.
Definition object.c:669
VALUE rb_mEnumerable
Enumerable module.
Definition enum.c:27
int rb_eql(VALUE lhs, VALUE rhs)
Checks for equality of the passed objects, in terms of Object#eql?.
Definition object.c:192
VALUE rb_cHash
Hash class.
Definition hash.c:113
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
Definition object.c:247
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
Definition object.c:680
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
Definition object.c:179
VALUE rb_obj_freeze(VALUE obj)
Just calls rb_obj_freeze_inline() inside.
Definition object.c:1260
VALUE rb_cString
String class.
Definition string.c:79
VALUE rb_to_int(VALUE val)
Identical to rb_check_to_int(), except it raises in case of conversion mismatch.
Definition object.c:3192
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
Definition gc.h:615
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
Definition gc.h:603
VALUE rb_external_str_new_with_enc(const char *ptr, long len, rb_encoding *enc)
Identical to rb_external_str_new(), except it additionally takes an encoding.
Definition string.c:1300
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
#define RGENGC_WB_PROTECTED_HASH
This is a compile-time flag to enable/disable write barrier for struct RHash.
Definition gc.h:457
Defines RBIMPL_HAS_BUILTIN.
#define INTEGER_PACK_NATIVE_BYTE_ORDER
Means either INTEGER_PACK_MSBYTE_FIRST or INTEGER_PACK_LSBYTE_FIRST, depending on the host processor'...
Definition bignum.h:546
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn)
This roughly resembles return enum_for(__callee__) unless block_given?.
Definition enumerator.h:206
#define UNLIMITED_ARGUMENTS
This macro is used in conjunction with rb_check_arity().
Definition error.h:35
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
Definition error.h:284
VALUE rb_hash_update_func(VALUE newkey, VALUE oldkey, VALUE value)
Type of callback functions to pass to rb_hash_update_by().
Definition hash.h:269
#define st_foreach_safe
Just another name of rb_st_foreach_safe.
Definition hash.h:51
VALUE rb_proc_lambda_p(VALUE recv)
Queries if the given object is a lambda.
Definition proc.c:244
VALUE rb_proc_call_with_block(VALUE recv, int argc, const VALUE *argv, VALUE proc)
Identical to rb_proc_call(), except you can additionally pass another proc object,...
Definition proc.c:1021
int rb_proc_arity(VALUE recv)
Queries the number of mandatory arguments of the given Proc.
Definition proc.c:1128
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
Definition proc.c:119
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
Definition string.h:942
#define rb_hash_end(h)
Just another name of st_hash_end.
Definition string.h:945
int rb_str_hash_cmp(VALUE str1, VALUE str2)
Compares two strings.
Definition string.c:4064
VALUE rb_str_ellipsize(VALUE str, long len)
Shortens str and adds three dots, an ellipsis, if it is longer than len characters.
Definition string.c:11497
st_index_t rb_memhash(const void *ptr, long len)
This is a universal hash function.
Definition random.c:1752
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1498
VALUE rb_str_new_frozen(VALUE str)
Creates a frozen copy of the string, if necessary.
Definition string.c:1470
st_index_t rb_str_hash(VALUE str)
Calculates a hash value of a string.
Definition string.c:4050
VALUE rb_str_buf_append(VALUE dst, VALUE src)
Identical to rb_str_cat_cstr(), except it takes Ruby's string instead of C's.
Definition string.c:3661
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
Definition random.c:1746
VALUE rb_str_inspect(VALUE str)
Generates a "readable" version of the receiver.
Definition string.c:7245
VALUE rb_str_buf_cat_ascii(VALUE dst, const char *src)
Identical to rb_str_cat_cstr(), except it additionally assumes the source string be a NUL terminated ...
Definition string.c:3637
VALUE rb_check_string_type(VALUE obj)
Try converting an object to its stringised representation using its to_str method,...
Definition string.c:2867
#define rb_utf8_str_new(str, len)
Identical to rb_str_new, except it generates a string of "UTF-8" encoding.
Definition string.h:1549
VALUE rb_exec_recursive(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE h)
"Recursion" API entry point.
VALUE rb_exec_recursive_paired(VALUE(*f)(VALUE g, VALUE h, int r), VALUE g, VALUE p, VALUE h)
Identical to rb_exec_recursive(), except it checks for the recursion on the ordered pair of { g,...
VALUE rb_ivar_get(VALUE obj, ID name)
Identical to rb_iv_get(), except it accepts the name as an ID instead of a C string.
Definition variable.c:1415
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
Definition vm_method.c:2956
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:986
void rb_define_global_const(const char *name, VALUE val)
Identical to rb_define_const(), except it defines that of "global", i.e.
Definition variable.c:3776
int capa
Designed capacity of the buffer.
Definition io.h:11
int len
Length of the buffer.
Definition io.h:8
char * ruby_strdup(const char *str)
This is our own version of strdup(3) that uses ruby_xmalloc() instead of system malloc (benefits our ...
Definition util.c:536
#define RB_BLOCK_CALL_FUNC_ARGLIST(yielded_arg, callback_arg)
Shim for block function parameters.
Definition iterator.h:58
VALUE rb_yield_values(int n,...)
Identical to rb_yield(), except it takes variadic number of parameters and pass them to the block.
Definition vm_eval.c:1366
VALUE rb_yield_values2(int n, const VALUE *argv)
Identical to rb_yield_values(), except it takes the parameters as a C array instead of variadic argum...
Definition vm_eval.c:1388
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1354
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
VALUE type(ANYARGS)
ANYARGS-ed function type.
VALUE rb_ensure(type *q, VALUE w, type *e, VALUE r)
An equivalent of ensure clause.
void rb_copy_generic_ivar(VALUE clone, VALUE obj)
Copies the list of instance variables.
Definition variable.c:2100
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:51
#define RARRAY_PTR_USE(ary, ptr_name, expr)
Declares a section of code where raw pointers are used.
Definition rarray.h:348
#define RARRAY_AREF(a, i)
Definition rarray.h:403
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
Definition rbasic.h:150
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
#define RHASH_SET_IFNONE(h, ifnone)
Destructively updates the default value of the hash.
Definition rhash.h:92
#define RHASH_IFNONE(h)
Definition rhash.h:59
#define RHASH_SIZE(h)
Queries the size of the hash.
Definition rhash.h:69
#define RHASH_EMPTY_P(h)
Checks if the hash is empty.
Definition rhash.h:79
#define StringValue(v)
Ensures that the parameter object is a String.
Definition rstring.h:66
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
Definition rstring.h:442
#define RSTRING_GETMEM(str, ptrvar, lenvar)
Convenient macro to obtain the contents and length at once.
Definition rstring.h:488
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
Definition rtypeddata.h:449
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
Definition variable.c:507
@ RUBY_SPECIAL_SHIFT
Least significant 8 bits are reserved.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
Definition stdarg.h:35
VALUE flags
Per-object flags.
Definition rbasic.h:75
Definition hash.h:53
Definition method.h:63
This is the struct that holds necessary info for a struct.
Definition rtypeddata.h:200
Definition st.h:79
intptr_t SIGNED_VALUE
A signed integer type that has the same width with VALUE.
Definition value.h:63
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
Definition value_type.h:433
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376