Ruby 3.5.0dev (2025-04-02 revision 580aa60051773e3512121088eb8ebaee8ce605ea)
class.c (580aa60051773e3512121088eb8ebaee8ce605ea)
1/**********************************************************************
2
3 class.c -
4
5 $Author$
6 created at: Tue Aug 10 15:05:44 JST 1993
7
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
9
10**********************************************************************/
11
17#include "ruby/internal/config.h"
18#include <ctype.h>
19
20#include "constant.h"
21#include "debug_counter.h"
22#include "id_table.h"
23#include "internal.h"
24#include "internal/class.h"
25#include "internal/eval.h"
26#include "internal/hash.h"
27#include "internal/object.h"
28#include "internal/string.h"
29#include "internal/variable.h"
30#include "ruby/st.h"
31#include "vm_core.h"
32#include "yjit.h"
33
34/* Flags of T_CLASS
35 *
36 * 0: RCLASS_IS_ROOT
37 * The class has been added to the VM roots. Will always be marked and pinned.
38 * This is done for classes defined from C to allow storing them in global variables.
39 * 1: RUBY_FL_SINGLETON
40 * This class is a singleton class.
41 * 2: RCLASS_SUPERCLASSES_INCLUDE_SELF
42 * The RCLASS_SUPERCLASSES contains the class as the last element.
43 * This means that this class owns the RCLASS_SUPERCLASSES list.
44 * if !SHAPE_IN_BASIC_FLAGS
45 * 4-19: SHAPE_FLAG_MASK
46 * Shape ID for the class.
47 * endif
48 */
49
50/* Flags of T_ICLASS
51 *
52 * 0: RICLASS_IS_ORIGIN
53 * 3: RICLASS_ORIGIN_SHARED_MTBL
54 * The T_ICLASS does not own the method table.
55 * if !SHAPE_IN_BASIC_FLAGS
56 * 4-19: SHAPE_FLAG_MASK
57 * Shape ID. This is set but not used.
58 * endif
59 */
60
61/* Flags of T_MODULE
62 *
63 * 0: RCLASS_IS_ROOT
64 * The class has been added to the VM roots. Will always be marked and pinned.
65 * This is done for classes defined from C to allow storing them in global variables.
66 * 1: RMODULE_ALLOCATED_BUT_NOT_INITIALIZED
67 * Module has not been initialized.
68 * 2: RCLASS_SUPERCLASSES_INCLUDE_SELF
69 * See RCLASS_SUPERCLASSES_INCLUDE_SELF in T_CLASS.
70 * 3: RMODULE_IS_REFINEMENT
71 * Module is used for refinements.
72 * if !SHAPE_IN_BASIC_FLAGS
73 * 4-19: SHAPE_FLAG_MASK
74 * Shape ID for the module.
75 * endif
76 */
77
78#define METACLASS_OF(k) RBASIC(k)->klass
79#define SET_METACLASS_OF(k, cls) RBASIC_SET_CLASS(k, cls)
80
81RUBY_EXTERN rb_serial_t ruby_vm_global_cvar_state;
82
84push_subclass_entry_to_list(VALUE super, VALUE klass)
85{
86 rb_subclass_entry_t *entry, *head;
87
89 entry->klass = klass;
90
91 head = RCLASS_SUBCLASSES(super);
92 if (!head) {
94 RCLASS_SUBCLASSES(super) = head;
95 }
96 entry->next = head->next;
97 entry->prev = head;
98
99 if (head->next) {
100 head->next->prev = entry;
101 }
102 head->next = entry;
103
104 return entry;
105}
106
107void
108rb_class_subclass_add(VALUE super, VALUE klass)
109{
110 if (super && !UNDEF_P(super)) {
111 rb_subclass_entry_t *entry = push_subclass_entry_to_list(super, klass);
112 RCLASS_SUBCLASS_ENTRY(klass) = entry;
113 }
114}
115
116static void
117rb_module_add_to_subclasses_list(VALUE module, VALUE iclass)
118{
119 rb_subclass_entry_t *entry = push_subclass_entry_to_list(module, iclass);
120 RCLASS_MODULE_SUBCLASS_ENTRY(iclass) = entry;
121}
122
123void
124rb_class_remove_subclass_head(VALUE klass)
125{
126 rb_subclass_entry_t *head = RCLASS_SUBCLASSES(klass);
127
128 if (head) {
129 if (head->next) {
130 head->next->prev = NULL;
131 }
132 RCLASS_SUBCLASSES(klass) = NULL;
133 xfree(head);
134 }
135}
136
137void
138rb_class_remove_from_super_subclasses(VALUE klass)
139{
140 rb_subclass_entry_t *entry = RCLASS_SUBCLASS_ENTRY(klass);
141
142 if (entry) {
143 rb_subclass_entry_t *prev = entry->prev, *next = entry->next;
144
145 if (prev) {
146 prev->next = next;
147 }
148 if (next) {
149 next->prev = prev;
150 }
151
152 xfree(entry);
153 }
154
155 RCLASS_SUBCLASS_ENTRY(klass) = NULL;
156}
157
158void
159rb_class_remove_from_module_subclasses(VALUE klass)
160{
161 rb_subclass_entry_t *entry = RCLASS_MODULE_SUBCLASS_ENTRY(klass);
162
163 if (entry) {
164 rb_subclass_entry_t *prev = entry->prev, *next = entry->next;
165
166 if (prev) {
167 prev->next = next;
168 }
169 if (next) {
170 next->prev = prev;
171 }
172
173 xfree(entry);
174 }
175
176 RCLASS_MODULE_SUBCLASS_ENTRY(klass) = NULL;
177}
178
179void
180rb_class_foreach_subclass(VALUE klass, void (*f)(VALUE, VALUE), VALUE arg)
181{
182 // RCLASS_SUBCLASSES should always point to our head element which has NULL klass
183 rb_subclass_entry_t *cur = RCLASS_SUBCLASSES(klass);
184 // if we have a subclasses list, then the head is a placeholder with no valid
185 // class. So ignore it and use the next element in the list (if one exists)
186 if (cur) {
187 RUBY_ASSERT(!cur->klass);
188 cur = cur->next;
189 }
190
191 /* do not be tempted to simplify this loop into a for loop, the order of
192 operations is important here if `f` modifies the linked list */
193 while (cur) {
194 VALUE curklass = cur->klass;
195 cur = cur->next;
196 // do not trigger GC during f, otherwise the cur will become
197 // a dangling pointer if the subclass is collected
198 f(curklass, arg);
199 }
200}
201
202static void
203class_detach_subclasses(VALUE klass, VALUE arg)
204{
205 rb_class_remove_from_super_subclasses(klass);
206}
207
208void
209rb_class_detach_subclasses(VALUE klass)
210{
211 rb_class_foreach_subclass(klass, class_detach_subclasses, Qnil);
212}
213
214static void
215class_detach_module_subclasses(VALUE klass, VALUE arg)
216{
217 rb_class_remove_from_module_subclasses(klass);
218}
219
220void
221rb_class_detach_module_subclasses(VALUE klass)
222{
223 rb_class_foreach_subclass(klass, class_detach_module_subclasses, Qnil);
224}
225
238static VALUE
240{
241 size_t alloc_size = sizeof(struct RClass) + sizeof(rb_classext_t);
242
243 flags &= T_MASK;
245 NEWOBJ_OF(obj, struct RClass, klass, flags, alloc_size, 0);
246
247 memset(RCLASS_EXT(obj), 0, sizeof(rb_classext_t));
248
249 /* ZALLOC
250 RCLASS_CONST_TBL(obj) = 0;
251 RCLASS_M_TBL(obj) = 0;
252 RCLASS_IV_INDEX_TBL(obj) = 0;
253 RCLASS_SET_SUPER((VALUE)obj, 0);
254 RCLASS_SUBCLASSES(obj) = NULL;
255 RCLASS_PARENT_SUBCLASSES(obj) = NULL;
256 RCLASS_MODULE_SUBCLASSES(obj) = NULL;
257 */
258 RCLASS_SET_ORIGIN((VALUE)obj, (VALUE)obj);
259 RB_OBJ_WRITE(obj, &RCLASS_REFINED_CLASS(obj), Qnil);
260 RCLASS_SET_ALLOCATOR((VALUE)obj, 0);
261
262 return (VALUE)obj;
263}
264
265static void
266RCLASS_M_TBL_INIT(VALUE c)
267{
268 RCLASS_M_TBL(c) = rb_id_table_create(0);
269}
270
280VALUE
282{
284
285 RCLASS_SET_SUPER(klass, super);
286 RCLASS_M_TBL_INIT(klass);
287
288 return (VALUE)klass;
289}
290
291static VALUE *
292class_superclasses_including_self(VALUE klass)
293{
294 if (FL_TEST_RAW(klass, RCLASS_SUPERCLASSES_INCLUDE_SELF))
295 return RCLASS_SUPERCLASSES(klass);
296
297 size_t depth = RCLASS_SUPERCLASS_DEPTH(klass);
298 VALUE *superclasses = xmalloc(sizeof(VALUE) * (depth + 1));
299 if (depth > 0)
300 memcpy(superclasses, RCLASS_SUPERCLASSES(klass), sizeof(VALUE) * depth);
301 superclasses[depth] = klass;
302
303 RCLASS_SUPERCLASSES(klass) = superclasses;
304 FL_SET_RAW(klass, RCLASS_SUPERCLASSES_INCLUDE_SELF);
305 return superclasses;
306}
307
308void
309rb_class_update_superclasses(VALUE klass)
310{
311 VALUE super = RCLASS_SUPER(klass);
312
313 if (!RB_TYPE_P(klass, T_CLASS)) return;
314 if (UNDEF_P(super)) return;
315
316 // If the superclass array is already built
317 if (RCLASS_SUPERCLASSES(klass))
318 return;
319
320 // find the proper superclass
321 while (super != Qfalse && !RB_TYPE_P(super, T_CLASS)) {
322 super = RCLASS_SUPER(super);
323 }
324
325 // For BasicObject and uninitialized classes, depth=0 and ary=NULL
326 if (super == Qfalse)
327 return;
328
329 // Sometimes superclasses are set before the full ancestry tree is built
330 // This happens during metaclass construction
331 if (super != rb_cBasicObject && !RCLASS_SUPERCLASS_DEPTH(super)) {
332 rb_class_update_superclasses(super);
333
334 // If it is still unset we need to try later
335 if (!RCLASS_SUPERCLASS_DEPTH(super))
336 return;
337 }
338
339 RCLASS_SUPERCLASSES(klass) = class_superclasses_including_self(super);
340 RCLASS_SUPERCLASS_DEPTH(klass) = RCLASS_SUPERCLASS_DEPTH(super) + 1;
341}
342
343void
345{
346 if (!RB_TYPE_P(super, T_CLASS)) {
347 rb_raise(rb_eTypeError, "superclass must be an instance of Class (given an instance of %"PRIsVALUE")",
348 rb_obj_class(super));
349 }
350 if (RCLASS_SINGLETON_P(super)) {
351 rb_raise(rb_eTypeError, "can't make subclass of singleton class");
352 }
353 if (super == rb_cClass) {
354 rb_raise(rb_eTypeError, "can't make subclass of Class");
355 }
356}
357
358VALUE
360{
361 Check_Type(super, T_CLASS);
363 VALUE klass = rb_class_boot(super);
364
365 if (super != rb_cObject && super != rb_cBasicObject) {
366 RCLASS_EXT(klass)->max_iv_count = RCLASS_EXT(super)->max_iv_count;
367 }
368
369 return klass;
370}
371
372VALUE
373rb_class_s_alloc(VALUE klass)
374{
375 return rb_class_boot(0);
376}
377
378static void
379clone_method(VALUE old_klass, VALUE new_klass, ID mid, const rb_method_entry_t *me)
380{
381 if (me->def->type == VM_METHOD_TYPE_ISEQ) {
382 rb_cref_t *new_cref;
383 rb_vm_rewrite_cref(me->def->body.iseq.cref, old_klass, new_klass, &new_cref);
384 rb_add_method_iseq(new_klass, mid, me->def->body.iseq.iseqptr, new_cref, METHOD_ENTRY_VISI(me));
385 }
386 else {
387 rb_method_entry_set(new_klass, mid, me, METHOD_ENTRY_VISI(me));
388 }
389}
390
392 VALUE new_klass;
393 VALUE old_klass;
394};
395
396static enum rb_id_table_iterator_result
397clone_method_i(ID key, VALUE value, void *data)
398{
399 const struct clone_method_arg *arg = (struct clone_method_arg *)data;
400 clone_method(arg->old_klass, arg->new_klass, key, (const rb_method_entry_t *)value);
401 return ID_TABLE_CONTINUE;
402}
403
405 VALUE klass;
406 struct rb_id_table *tbl;
407};
408
409static int
410clone_const(ID key, const rb_const_entry_t *ce, struct clone_const_arg *arg)
411{
413 MEMCPY(nce, ce, rb_const_entry_t, 1);
414 RB_OBJ_WRITTEN(arg->klass, Qundef, ce->value);
415 RB_OBJ_WRITTEN(arg->klass, Qundef, ce->file);
416
417 rb_id_table_insert(arg->tbl, key, (VALUE)nce);
418 return ID_TABLE_CONTINUE;
419}
420
421static enum rb_id_table_iterator_result
422clone_const_i(ID key, VALUE value, void *data)
423{
424 return clone_const(key, (const rb_const_entry_t *)value, data);
425}
426
427static void
428class_init_copy_check(VALUE clone, VALUE orig)
429{
430 if (orig == rb_cBasicObject) {
431 rb_raise(rb_eTypeError, "can't copy the root class");
432 }
433 if (RCLASS_SUPER(clone) != 0 || clone == rb_cBasicObject) {
434 rb_raise(rb_eTypeError, "already initialized class");
435 }
436 if (RCLASS_SINGLETON_P(orig)) {
437 rb_raise(rb_eTypeError, "can't copy singleton class");
438 }
439}
440
442 VALUE clone;
443 struct rb_id_table * new_table;
444};
445
446static enum rb_id_table_iterator_result
447cvc_table_copy(ID id, VALUE val, void *data)
448{
449 struct cvc_table_copy_ctx *ctx = (struct cvc_table_copy_ctx *)data;
450 struct rb_cvar_class_tbl_entry * orig_entry;
451 orig_entry = (struct rb_cvar_class_tbl_entry *)val;
452
453 struct rb_cvar_class_tbl_entry *ent;
454
455 ent = ALLOC(struct rb_cvar_class_tbl_entry);
456 ent->class_value = ctx->clone;
457 ent->cref = orig_entry->cref;
458 ent->global_cvar_state = orig_entry->global_cvar_state;
459 rb_id_table_insert(ctx->new_table, id, (VALUE)ent);
460
461 RB_OBJ_WRITTEN(ctx->clone, Qundef, ent->cref);
462
463 return ID_TABLE_CONTINUE;
464}
465
466static void
467copy_tables(VALUE clone, VALUE orig)
468{
469 if (RCLASS_CONST_TBL(clone)) {
470 rb_free_const_table(RCLASS_CONST_TBL(clone));
471 RCLASS_CONST_TBL(clone) = 0;
472 }
473 if (RCLASS_CVC_TBL(orig)) {
474 struct rb_id_table *rb_cvc_tbl = RCLASS_CVC_TBL(orig);
475 struct rb_id_table *rb_cvc_tbl_dup = rb_id_table_create(rb_id_table_size(rb_cvc_tbl));
476
477 struct cvc_table_copy_ctx ctx;
478 ctx.clone = clone;
479 ctx.new_table = rb_cvc_tbl_dup;
480 rb_id_table_foreach(rb_cvc_tbl, cvc_table_copy, &ctx);
481 RCLASS_CVC_TBL(clone) = rb_cvc_tbl_dup;
482 }
483 rb_id_table_free(RCLASS_M_TBL(clone));
484 RCLASS_M_TBL(clone) = 0;
485 if (!RB_TYPE_P(clone, T_ICLASS)) {
486 st_data_t id;
487
488 rb_iv_tbl_copy(clone, orig);
489 CONST_ID(id, "__tmp_classpath__");
490 rb_attr_delete(clone, id);
491 CONST_ID(id, "__classpath__");
492 rb_attr_delete(clone, id);
493 }
494 if (RCLASS_CONST_TBL(orig)) {
495 struct clone_const_arg arg;
496
497 arg.tbl = RCLASS_CONST_TBL(clone) = rb_id_table_create(0);
498 arg.klass = clone;
499 rb_id_table_foreach(RCLASS_CONST_TBL(orig), clone_const_i, &arg);
500 }
501}
502
503static bool ensure_origin(VALUE klass);
504
508enum {RMODULE_ALLOCATED_BUT_NOT_INITIALIZED = RUBY_FL_USER1};
509
510static inline bool
511RMODULE_UNINITIALIZED(VALUE module)
512{
513 return FL_TEST_RAW(module, RMODULE_ALLOCATED_BUT_NOT_INITIALIZED);
514}
515
516void
517rb_module_set_initialized(VALUE mod)
518{
519 FL_UNSET_RAW(mod, RMODULE_ALLOCATED_BUT_NOT_INITIALIZED);
520 /* no more re-initialization */
521}
522
523void
524rb_module_check_initializable(VALUE mod)
525{
526 if (!RMODULE_UNINITIALIZED(mod)) {
527 rb_raise(rb_eTypeError, "already initialized module");
528 }
529}
530
531/* :nodoc: */
532VALUE
534{
535 switch (BUILTIN_TYPE(clone)) {
536 case T_CLASS:
537 case T_ICLASS:
538 class_init_copy_check(clone, orig);
539 break;
540 case T_MODULE:
541 rb_module_check_initializable(clone);
542 break;
543 default:
544 break;
545 }
546 if (!OBJ_INIT_COPY(clone, orig)) return clone;
547
548 /* cloned flag is refer at constant inline cache
549 * see vm_get_const_key_cref() in vm_insnhelper.c
550 */
551 RCLASS_EXT(clone)->cloned = true;
552 RCLASS_EXT(orig)->cloned = true;
553
554 if (!RCLASS_SINGLETON_P(CLASS_OF(clone))) {
555 RBASIC_SET_CLASS(clone, rb_singleton_class_clone(orig));
556 rb_singleton_class_attached(METACLASS_OF(clone), (VALUE)clone);
557 }
558 RCLASS_SET_ALLOCATOR(clone, RCLASS_ALLOCATOR(orig));
559 copy_tables(clone, orig);
560 if (RCLASS_M_TBL(orig)) {
561 struct clone_method_arg arg;
562 arg.old_klass = orig;
563 arg.new_klass = clone;
564 RCLASS_M_TBL_INIT(clone);
565 rb_id_table_foreach(RCLASS_M_TBL(orig), clone_method_i, &arg);
566 }
567
568 if (RCLASS_ORIGIN(orig) == orig) {
569 RCLASS_SET_SUPER(clone, RCLASS_SUPER(orig));
570 }
571 else {
572 VALUE p = RCLASS_SUPER(orig);
573 VALUE orig_origin = RCLASS_ORIGIN(orig);
574 VALUE prev_clone_p = clone;
575 VALUE origin_stack = rb_ary_hidden_new(2);
576 VALUE origin[2];
577 VALUE clone_p = 0;
578 long origin_len;
579 int add_subclass;
580 VALUE clone_origin;
581
582 ensure_origin(clone);
583 clone_origin = RCLASS_ORIGIN(clone);
584
585 while (p && p != orig_origin) {
586 if (BUILTIN_TYPE(p) != T_ICLASS) {
587 rb_bug("non iclass between module/class and origin");
588 }
589 clone_p = class_alloc(RBASIC(p)->flags, METACLASS_OF(p));
590 /* We should set the m_tbl right after allocation before anything
591 * that can trigger GC to avoid clone_p from becoming old and
592 * needing to fire write barriers. */
593 RCLASS_SET_M_TBL(clone_p, RCLASS_M_TBL(p));
594 RCLASS_SET_SUPER(prev_clone_p, clone_p);
595 prev_clone_p = clone_p;
596 RCLASS_CONST_TBL(clone_p) = RCLASS_CONST_TBL(p);
597 RCLASS_SET_ALLOCATOR(clone_p, RCLASS_ALLOCATOR(p));
598 if (RB_TYPE_P(clone, T_CLASS)) {
599 RCLASS_SET_INCLUDER(clone_p, clone);
600 }
601 add_subclass = TRUE;
602 if (p != RCLASS_ORIGIN(p)) {
603 origin[0] = clone_p;
604 origin[1] = RCLASS_ORIGIN(p);
605 rb_ary_cat(origin_stack, origin, 2);
606 }
607 else if ((origin_len = RARRAY_LEN(origin_stack)) > 1 &&
608 RARRAY_AREF(origin_stack, origin_len - 1) == p) {
609 RCLASS_SET_ORIGIN(RARRAY_AREF(origin_stack, (origin_len -= 2)), clone_p);
610 RICLASS_SET_ORIGIN_SHARED_MTBL(clone_p);
611 rb_ary_resize(origin_stack, origin_len);
612 add_subclass = FALSE;
613 }
614 if (add_subclass) {
615 rb_module_add_to_subclasses_list(METACLASS_OF(p), clone_p);
616 }
617 p = RCLASS_SUPER(p);
618 }
619
620 if (p == orig_origin) {
621 if (clone_p) {
622 RCLASS_SET_SUPER(clone_p, clone_origin);
623 RCLASS_SET_SUPER(clone_origin, RCLASS_SUPER(orig_origin));
624 }
625 copy_tables(clone_origin, orig_origin);
626 if (RCLASS_M_TBL(orig_origin)) {
627 struct clone_method_arg arg;
628 arg.old_klass = orig;
629 arg.new_klass = clone;
630 RCLASS_M_TBL_INIT(clone_origin);
631 rb_id_table_foreach(RCLASS_M_TBL(orig_origin), clone_method_i, &arg);
632 }
633 }
634 else {
635 rb_bug("no origin for class that has origin");
636 }
637
638 rb_class_update_superclasses(clone);
639 }
640
641 return clone;
642}
643
644VALUE
646{
647 return rb_singleton_class_clone_and_attach(obj, Qundef);
648}
649
650// Clone and return the singleton class of `obj` if it has been created and is attached to `obj`.
651VALUE
652rb_singleton_class_clone_and_attach(VALUE obj, VALUE attach)
653{
654 const VALUE klass = METACLASS_OF(obj);
655
656 // Note that `rb_singleton_class()` can create situations where `klass` is
657 // attached to an object other than `obj`. In which case `obj` does not have
658 // a material singleton class attached yet and there is no singleton class
659 // to clone.
660 if (!(RCLASS_SINGLETON_P(klass) && RCLASS_ATTACHED_OBJECT(klass) == obj)) {
661 // nothing to clone
662 return klass;
663 }
664 else {
665 /* copy singleton(unnamed) class */
666 bool klass_of_clone_is_new;
667 VALUE clone = class_alloc(RBASIC(klass)->flags, 0);
668
669 if (BUILTIN_TYPE(obj) == T_CLASS) {
670 klass_of_clone_is_new = true;
671 RBASIC_SET_CLASS(clone, clone);
672 }
673 else {
674 VALUE klass_metaclass_clone = rb_singleton_class_clone(klass);
675 // When `METACLASS_OF(klass) == klass_metaclass_clone`, it means the
676 // recursive call did not clone `METACLASS_OF(klass)`.
677 klass_of_clone_is_new = (METACLASS_OF(klass) != klass_metaclass_clone);
678 RBASIC_SET_CLASS(clone, klass_metaclass_clone);
679 }
680
681 RCLASS_SET_SUPER(clone, RCLASS_SUPER(klass));
682 rb_iv_tbl_copy(clone, klass);
683 if (RCLASS_CONST_TBL(klass)) {
684 struct clone_const_arg arg;
685 arg.tbl = RCLASS_CONST_TBL(clone) = rb_id_table_create(0);
686 arg.klass = clone;
687 rb_id_table_foreach(RCLASS_CONST_TBL(klass), clone_const_i, &arg);
688 }
689 if (!UNDEF_P(attach)) {
690 rb_singleton_class_attached(clone, attach);
691 }
692 RCLASS_M_TBL_INIT(clone);
693 {
694 struct clone_method_arg arg;
695 arg.old_klass = klass;
696 arg.new_klass = clone;
697 rb_id_table_foreach(RCLASS_M_TBL(klass), clone_method_i, &arg);
698 }
699 if (klass_of_clone_is_new) {
700 rb_singleton_class_attached(METACLASS_OF(clone), clone);
701 }
702 FL_SET(clone, FL_SINGLETON);
703
704 return clone;
705 }
706}
707
708void
710{
711 if (RCLASS_SINGLETON_P(klass)) {
712 RCLASS_SET_ATTACHED_OBJECT(klass, obj);
713 }
714}
715
721#define META_CLASS_OF_CLASS_CLASS_P(k) (METACLASS_OF(k) == (k))
722
723static int
724rb_singleton_class_has_metaclass_p(VALUE sklass)
725{
726 return RCLASS_ATTACHED_OBJECT(METACLASS_OF(sklass)) == sklass;
727}
728
729int
730rb_singleton_class_internal_p(VALUE sklass)
731{
732 return (RB_TYPE_P(RCLASS_ATTACHED_OBJECT(sklass), T_CLASS) &&
733 !rb_singleton_class_has_metaclass_p(sklass));
734}
735
741#define HAVE_METACLASS_P(k) \
742 (FL_TEST(METACLASS_OF(k), FL_SINGLETON) && \
743 rb_singleton_class_has_metaclass_p(k))
744
752#define ENSURE_EIGENCLASS(klass) \
753 (HAVE_METACLASS_P(klass) ? METACLASS_OF(klass) : make_metaclass(klass))
754
755
765static inline VALUE
767{
768 VALUE super;
769 VALUE metaclass = rb_class_boot(Qundef);
770
771 FL_SET(metaclass, FL_SINGLETON);
772 rb_singleton_class_attached(metaclass, klass);
773
774 if (META_CLASS_OF_CLASS_CLASS_P(klass)) {
775 SET_METACLASS_OF(klass, metaclass);
776 SET_METACLASS_OF(metaclass, metaclass);
777 }
778 else {
779 VALUE tmp = METACLASS_OF(klass); /* for a meta^(n)-class klass, tmp is meta^(n)-class of Class class */
780 SET_METACLASS_OF(klass, metaclass);
781 SET_METACLASS_OF(metaclass, ENSURE_EIGENCLASS(tmp));
782 }
783
784 super = RCLASS_SUPER(klass);
785 while (RB_TYPE_P(super, T_ICLASS)) super = RCLASS_SUPER(super);
786 RCLASS_SET_SUPER(metaclass, super ? ENSURE_EIGENCLASS(super) : rb_cClass);
787
788 // Full class ancestry may not have been filled until we reach here.
789 rb_class_update_superclasses(METACLASS_OF(metaclass));
790
791 return metaclass;
792}
793
800static inline VALUE
802{
803 VALUE orig_class = METACLASS_OF(obj);
804 VALUE klass = rb_class_boot(orig_class);
805
806 FL_SET(klass, FL_SINGLETON);
807 RBASIC_SET_CLASS(obj, klass);
808 rb_singleton_class_attached(klass, obj);
809 rb_yjit_invalidate_no_singleton_class(orig_class);
810
811 SET_METACLASS_OF(klass, METACLASS_OF(rb_class_real(orig_class)));
812 return klass;
813}
814
815
816static VALUE
817boot_defclass(const char *name, VALUE super)
818{
819 VALUE obj = rb_class_boot(super);
820 ID id = rb_intern(name);
821
822 rb_const_set((rb_cObject ? rb_cObject : obj), id, obj);
823 rb_vm_register_global_object(obj);
824 return obj;
825}
826
827/***********************************************************************
828 *
829 * Document-class: Refinement
830 *
831 * Refinement is a class of the +self+ (current context) inside +refine+
832 * statement. It allows to import methods from other modules, see #import_methods.
833 */
834
835#if 0 /* for RDoc */
836/*
837 * Document-method: Refinement#import_methods
838 *
839 * call-seq:
840 * import_methods(module, ...) -> self
841 *
842 * Imports methods from modules. Unlike Module#include,
843 * Refinement#import_methods copies methods and adds them into the refinement,
844 * so the refinement is activated in the imported methods.
845 *
846 * Note that due to method copying, only methods defined in Ruby code can be imported.
847 *
848 * module StrUtils
849 * def indent(level)
850 * ' ' * level + self
851 * end
852 * end
853 *
854 * module M
855 * refine String do
856 * import_methods StrUtils
857 * end
858 * end
859 *
860 * using M
861 * "foo".indent(3)
862 * #=> " foo"
863 *
864 * module M
865 * refine String do
866 * import_methods Enumerable
867 * # Can't import method which is not defined with Ruby code: Enumerable#drop
868 * end
869 * end
870 *
871 */
872
873static VALUE
874refinement_import_methods(int argc, VALUE *argv, VALUE refinement)
875{
876}
877# endif
878
898void
899Init_class_hierarchy(void)
900{
901 rb_cBasicObject = boot_defclass("BasicObject", 0);
902 rb_cObject = boot_defclass("Object", rb_cBasicObject);
903 rb_vm_register_global_object(rb_cObject);
904
905 /* resolve class name ASAP for order-independence */
906 rb_set_class_path_string(rb_cObject, rb_cObject, rb_fstring_lit("Object"));
907
908 rb_cModule = boot_defclass("Module", rb_cObject);
909 rb_cClass = boot_defclass("Class", rb_cModule);
910 rb_cRefinement = boot_defclass("Refinement", rb_cModule);
911
912#if 0 /* for RDoc */
913 // we pretend it to be public, otherwise RDoc will ignore it
914 rb_define_method(rb_cRefinement, "import_methods", refinement_import_methods, -1);
915#endif
916
917 rb_const_set(rb_cObject, rb_intern_const("BasicObject"), rb_cBasicObject);
918 RBASIC_SET_CLASS(rb_cClass, rb_cClass);
919 RBASIC_SET_CLASS(rb_cModule, rb_cClass);
920 RBASIC_SET_CLASS(rb_cObject, rb_cClass);
921 RBASIC_SET_CLASS(rb_cRefinement, rb_cClass);
922 RBASIC_SET_CLASS(rb_cBasicObject, rb_cClass);
923
925}
926
927
938VALUE
939rb_make_metaclass(VALUE obj, VALUE unused)
940{
941 if (BUILTIN_TYPE(obj) == T_CLASS) {
942 return make_metaclass(obj);
943 }
944 else {
945 return make_singleton_class(obj);
946 }
947}
948
949VALUE
951{
952 VALUE klass;
953
954 if (!super) super = rb_cObject;
955 klass = rb_class_new(super);
956 rb_make_metaclass(klass, METACLASS_OF(super));
957
958 return klass;
959}
960
961
970VALUE
972{
973 ID inherited;
974 if (!super) super = rb_cObject;
975 CONST_ID(inherited, "inherited");
976 return rb_funcall(super, inherited, 1, klass);
977}
978
979VALUE
980rb_define_class(const char *name, VALUE super)
981{
982 VALUE klass;
983 ID id;
984
985 id = rb_intern(name);
986 if (rb_const_defined(rb_cObject, id)) {
987 klass = rb_const_get(rb_cObject, id);
988 if (!RB_TYPE_P(klass, T_CLASS)) {
989 rb_raise(rb_eTypeError, "%s is not a class (%"PRIsVALUE")",
990 name, rb_obj_class(klass));
991 }
992 if (rb_class_real(RCLASS_SUPER(klass)) != super) {
993 rb_raise(rb_eTypeError, "superclass mismatch for class %s", name);
994 }
995
996 /* Class may have been defined in Ruby and not pin-rooted */
997 rb_vm_register_global_object(klass);
998 return klass;
999 }
1000 if (!super) {
1001 rb_raise(rb_eArgError, "no super class for '%s'", name);
1002 }
1003 klass = rb_define_class_id(id, super);
1004 rb_vm_register_global_object(klass);
1005 rb_const_set_raw(rb_cObject, id, klass);
1006 rb_class_inherited(super, klass);
1007 rb_const_added(klass, id);
1008
1009 return klass;
1010}
1011
1012VALUE
1013rb_define_class_under(VALUE outer, const char *name, VALUE super)
1014{
1015 return rb_define_class_id_under(outer, rb_intern(name), super);
1016}
1017
1018VALUE
1019rb_define_class_id_under_no_pin(VALUE outer, ID id, VALUE super)
1020{
1021 VALUE klass;
1022
1023 if (rb_const_defined_at(outer, id)) {
1024 klass = rb_const_get_at(outer, id);
1025 if (!RB_TYPE_P(klass, T_CLASS)) {
1026 rb_raise(rb_eTypeError, "%"PRIsVALUE"::%"PRIsVALUE" is not a class"
1027 " (%"PRIsVALUE")",
1028 outer, rb_id2str(id), rb_obj_class(klass));
1029 }
1030 if (rb_class_real(RCLASS_SUPER(klass)) != super) {
1031 rb_raise(rb_eTypeError, "superclass mismatch for class "
1032 "%"PRIsVALUE"::%"PRIsVALUE""
1033 " (%"PRIsVALUE" is given but was %"PRIsVALUE")",
1034 outer, rb_id2str(id), RCLASS_SUPER(klass), super);
1035 }
1036
1037 return klass;
1038 }
1039 if (!super) {
1040 rb_raise(rb_eArgError, "no super class for '%"PRIsVALUE"::%"PRIsVALUE"'",
1041 rb_class_path(outer), rb_id2str(id));
1042 }
1043 klass = rb_define_class_id(id, super);
1044 rb_set_class_path_string(klass, outer, rb_id2str(id));
1045
1046 rb_const_set_raw(outer, id, klass);
1047 rb_class_inherited(super, klass);
1048 rb_const_added(outer, id);
1049
1050 return klass;
1051}
1052
1053VALUE
1055{
1056 VALUE klass = rb_define_class_id_under_no_pin(outer, id, super);
1057 rb_vm_register_global_object(klass);
1058 return klass;
1059}
1060
1061VALUE
1062rb_module_s_alloc(VALUE klass)
1063{
1064 VALUE mod = class_alloc(T_MODULE, klass);
1065 RCLASS_M_TBL_INIT(mod);
1066 FL_SET(mod, RMODULE_ALLOCATED_BUT_NOT_INITIALIZED);
1067 return mod;
1068}
1069
1070static inline VALUE
1071module_new(VALUE klass)
1072{
1073 VALUE mdl = class_alloc(T_MODULE, klass);
1074 RCLASS_M_TBL_INIT(mdl);
1075 return (VALUE)mdl;
1076}
1077
1078VALUE
1080{
1081 return module_new(rb_cModule);
1082}
1083
1084VALUE
1086{
1087 return module_new(rb_cRefinement);
1088}
1089
1090// Kept for compatibility. Use rb_module_new() instead.
1091VALUE
1093{
1094 return rb_module_new();
1095}
1096
1097VALUE
1098rb_define_module(const char *name)
1099{
1100 VALUE module;
1101 ID id;
1102
1103 id = rb_intern(name);
1104 if (rb_const_defined(rb_cObject, id)) {
1105 module = rb_const_get(rb_cObject, id);
1106 if (!RB_TYPE_P(module, T_MODULE)) {
1107 rb_raise(rb_eTypeError, "%s is not a module (%"PRIsVALUE")",
1108 name, rb_obj_class(module));
1109 }
1110 /* Module may have been defined in Ruby and not pin-rooted */
1111 rb_vm_register_global_object(module);
1112 return module;
1113 }
1114 module = rb_module_new();
1115 rb_vm_register_global_object(module);
1116 rb_const_set(rb_cObject, id, module);
1117
1118 return module;
1119}
1120
1121VALUE
1122rb_define_module_under(VALUE outer, const char *name)
1123{
1124 return rb_define_module_id_under(outer, rb_intern(name));
1125}
1126
1127VALUE
1129{
1130 VALUE module;
1131
1132 if (rb_const_defined_at(outer, id)) {
1133 module = rb_const_get_at(outer, id);
1134 if (!RB_TYPE_P(module, T_MODULE)) {
1135 rb_raise(rb_eTypeError, "%"PRIsVALUE"::%"PRIsVALUE" is not a module"
1136 " (%"PRIsVALUE")",
1137 outer, rb_id2str(id), rb_obj_class(module));
1138 }
1139 /* Module may have been defined in Ruby and not pin-rooted */
1140 rb_vm_register_global_object(module);
1141 return module;
1142 }
1143 module = rb_module_new();
1144 rb_const_set(outer, id, module);
1145 rb_set_class_path_string(module, outer, rb_id2str(id));
1146 rb_vm_register_global_object(module);
1147
1148 return module;
1149}
1150
1151VALUE
1152rb_include_class_new(VALUE module, VALUE super)
1153{
1155
1156 RCLASS_SET_M_TBL(klass, RCLASS_M_TBL(module));
1157
1158 RCLASS_SET_ORIGIN(klass, klass);
1159 if (BUILTIN_TYPE(module) == T_ICLASS) {
1160 module = METACLASS_OF(module);
1161 }
1162 RUBY_ASSERT(!RB_TYPE_P(module, T_ICLASS));
1163 if (!RCLASS_CONST_TBL(module)) {
1164 RCLASS_CONST_TBL(module) = rb_id_table_create(0);
1165 }
1166
1167 RCLASS_CVC_TBL(klass) = RCLASS_CVC_TBL(module);
1168 RCLASS_CONST_TBL(klass) = RCLASS_CONST_TBL(module);
1169
1170 RCLASS_SET_SUPER(klass, super);
1171 RBASIC_SET_CLASS(klass, module);
1172
1173 return (VALUE)klass;
1174}
1175
1176static int include_modules_at(const VALUE klass, VALUE c, VALUE module, int search_super);
1177
1178static void
1179ensure_includable(VALUE klass, VALUE module)
1180{
1181 rb_class_modify_check(klass);
1182 Check_Type(module, T_MODULE);
1183 rb_module_set_initialized(module);
1184 if (!NIL_P(rb_refinement_module_get_refined_class(module))) {
1185 rb_raise(rb_eArgError, "refinement module is not allowed");
1186 }
1187}
1188
1189void
1191{
1192 int changed = 0;
1193
1194 ensure_includable(klass, module);
1195
1196 changed = include_modules_at(klass, RCLASS_ORIGIN(klass), module, TRUE);
1197 if (changed < 0)
1198 rb_raise(rb_eArgError, "cyclic include detected");
1199
1200 if (RB_TYPE_P(klass, T_MODULE)) {
1201 rb_subclass_entry_t *iclass = RCLASS_SUBCLASSES(klass);
1202 // skip the placeholder subclass entry at the head of the list
1203 if (iclass) {
1204 RUBY_ASSERT(!iclass->klass);
1205 iclass = iclass->next;
1206 }
1207
1208 while (iclass) {
1209 int do_include = 1;
1210 VALUE check_class = iclass->klass;
1211 /* During lazy sweeping, iclass->klass could be a dead object that
1212 * has not yet been swept. */
1213 if (!rb_objspace_garbage_object_p(check_class)) {
1214 while (check_class) {
1215 RUBY_ASSERT(!rb_objspace_garbage_object_p(check_class));
1216
1217 if (RB_TYPE_P(check_class, T_ICLASS) &&
1218 (METACLASS_OF(check_class) == module)) {
1219 do_include = 0;
1220 }
1221 check_class = RCLASS_SUPER(check_class);
1222 }
1223
1224 if (do_include) {
1225 include_modules_at(iclass->klass, RCLASS_ORIGIN(iclass->klass), module, TRUE);
1226 }
1227 }
1228
1229 iclass = iclass->next;
1230 }
1231 }
1232}
1233
1234static enum rb_id_table_iterator_result
1235add_refined_method_entry_i(ID key, VALUE value, void *data)
1236{
1237 rb_add_refined_method_entry((VALUE)data, key);
1238 return ID_TABLE_CONTINUE;
1239}
1240
1241static enum rb_id_table_iterator_result
1242clear_module_cache_i(ID id, VALUE val, void *data)
1243{
1244 VALUE klass = (VALUE)data;
1245 rb_clear_method_cache(klass, id);
1246 return ID_TABLE_CONTINUE;
1247}
1248
1249static bool
1250module_in_super_chain(const VALUE klass, VALUE module)
1251{
1252 struct rb_id_table *const klass_m_tbl = RCLASS_M_TBL(RCLASS_ORIGIN(klass));
1253 if (klass_m_tbl) {
1254 while (module) {
1255 if (klass_m_tbl == RCLASS_M_TBL(module))
1256 return true;
1257 module = RCLASS_SUPER(module);
1258 }
1259 }
1260 return false;
1261}
1262
1263// For each ID key in the class constant table, we're going to clear the VM's
1264// inline constant caches associated with it.
1265static enum rb_id_table_iterator_result
1266clear_constant_cache_i(ID id, VALUE value, void *data)
1267{
1269 return ID_TABLE_CONTINUE;
1270}
1271
1272static int
1273do_include_modules_at(const VALUE klass, VALUE c, VALUE module, int search_super, bool check_cyclic)
1274{
1275 VALUE p, iclass, origin_stack = 0;
1276 int method_changed = 0;
1277 long origin_len;
1278 VALUE klass_origin = RCLASS_ORIGIN(klass);
1279 VALUE original_klass = klass;
1280
1281 if (check_cyclic && module_in_super_chain(klass, module))
1282 return -1;
1283
1284 while (module) {
1285 int c_seen = FALSE;
1286 int superclass_seen = FALSE;
1287 struct rb_id_table *tbl;
1288
1289 if (klass == c) {
1290 c_seen = TRUE;
1291 }
1292 if (klass_origin != c || search_super) {
1293 /* ignore if the module included already in superclasses for include,
1294 * ignore if the module included before origin class for prepend
1295 */
1296 for (p = RCLASS_SUPER(klass); p; p = RCLASS_SUPER(p)) {
1297 int type = BUILTIN_TYPE(p);
1298 if (klass_origin == p && !search_super)
1299 break;
1300 if (c == p)
1301 c_seen = TRUE;
1302 if (type == T_ICLASS) {
1303 if (RCLASS_M_TBL(p) == RCLASS_M_TBL(module)) {
1304 if (!superclass_seen && c_seen) {
1305 c = p; /* move insertion point */
1306 }
1307 goto skip;
1308 }
1309 }
1310 else if (type == T_CLASS) {
1311 superclass_seen = TRUE;
1312 }
1313 }
1314 }
1315
1316 VALUE super_class = RCLASS_SUPER(c);
1317
1318 // invalidate inline method cache
1319 RB_DEBUG_COUNTER_INC(cvar_include_invalidate);
1320 ruby_vm_global_cvar_state++;
1321 tbl = RCLASS_M_TBL(module);
1322 if (tbl && rb_id_table_size(tbl)) {
1323 if (search_super) { // include
1324 if (super_class && !RB_TYPE_P(super_class, T_MODULE)) {
1325 rb_id_table_foreach(tbl, clear_module_cache_i, (void *)super_class);
1326 }
1327 }
1328 else { // prepend
1329 if (!RB_TYPE_P(original_klass, T_MODULE)) {
1330 rb_id_table_foreach(tbl, clear_module_cache_i, (void *)original_klass);
1331 }
1332 }
1333 method_changed = 1;
1334 }
1335
1336 // setup T_ICLASS for the include/prepend module
1337 iclass = rb_include_class_new(module, super_class);
1338 c = RCLASS_SET_SUPER(c, iclass);
1339 RCLASS_SET_INCLUDER(iclass, klass);
1340 if (module != RCLASS_ORIGIN(module)) {
1341 if (!origin_stack) origin_stack = rb_ary_hidden_new(2);
1342 VALUE origin[2] = {iclass, RCLASS_ORIGIN(module)};
1343 rb_ary_cat(origin_stack, origin, 2);
1344 }
1345 else if (origin_stack && (origin_len = RARRAY_LEN(origin_stack)) > 1 &&
1346 RARRAY_AREF(origin_stack, origin_len - 1) == module) {
1347 RCLASS_SET_ORIGIN(RARRAY_AREF(origin_stack, (origin_len -= 2)), iclass);
1348 RICLASS_SET_ORIGIN_SHARED_MTBL(iclass);
1349 rb_ary_resize(origin_stack, origin_len);
1350 }
1351
1352 VALUE m = module;
1353 if (BUILTIN_TYPE(m) == T_ICLASS) m = METACLASS_OF(m);
1354 rb_module_add_to_subclasses_list(m, iclass);
1355
1356 if (BUILTIN_TYPE(klass) == T_MODULE && FL_TEST(klass, RMODULE_IS_REFINEMENT)) {
1357 VALUE refined_class =
1358 rb_refinement_module_get_refined_class(klass);
1359
1360 rb_id_table_foreach(RCLASS_M_TBL(module), add_refined_method_entry_i, (void *)refined_class);
1362 }
1363
1364 tbl = RCLASS_CONST_TBL(module);
1365 if (tbl && rb_id_table_size(tbl))
1366 rb_id_table_foreach(tbl, clear_constant_cache_i, NULL);
1367 skip:
1368 module = RCLASS_SUPER(module);
1369 }
1370
1371 return method_changed;
1372}
1373
1374static int
1375include_modules_at(const VALUE klass, VALUE c, VALUE module, int search_super)
1376{
1377 return do_include_modules_at(klass, c, module, search_super, true);
1378}
1379
1380static enum rb_id_table_iterator_result
1381move_refined_method(ID key, VALUE value, void *data)
1382{
1383 rb_method_entry_t *me = (rb_method_entry_t *)value;
1384
1385 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1386 VALUE klass = (VALUE)data;
1387 struct rb_id_table *tbl = RCLASS_M_TBL(klass);
1388
1389 if (me->def->body.refined.orig_me) {
1390 const rb_method_entry_t *orig_me = me->def->body.refined.orig_me, *new_me;
1391 RB_OBJ_WRITE(me, &me->def->body.refined.orig_me, NULL);
1392 new_me = rb_method_entry_clone(me);
1393 rb_method_table_insert(klass, tbl, key, new_me);
1394 rb_method_entry_copy(me, orig_me);
1395 return ID_TABLE_CONTINUE;
1396 }
1397 else {
1398 rb_method_table_insert(klass, tbl, key, me);
1399 return ID_TABLE_DELETE;
1400 }
1401 }
1402 else {
1403 return ID_TABLE_CONTINUE;
1404 }
1405}
1406
1407static enum rb_id_table_iterator_result
1408cache_clear_refined_method(ID key, VALUE value, void *data)
1409{
1410 rb_method_entry_t *me = (rb_method_entry_t *) value;
1411
1412 if (me->def->type == VM_METHOD_TYPE_REFINED && me->def->body.refined.orig_me) {
1413 VALUE klass = (VALUE)data;
1414 rb_clear_method_cache(klass, me->called_id);
1415 }
1416 // Refined method entries without an orig_me is going to stay in the method
1417 // table of klass, like before the move, so no need to clear the cache.
1418
1419 return ID_TABLE_CONTINUE;
1420}
1421
1422static bool
1423ensure_origin(VALUE klass)
1424{
1425 VALUE origin = RCLASS_ORIGIN(klass);
1426 if (origin == klass) {
1427 origin = class_alloc(T_ICLASS, klass);
1428 RCLASS_SET_M_TBL(origin, RCLASS_M_TBL(klass));
1429 RCLASS_SET_SUPER(origin, RCLASS_SUPER(klass));
1430 RCLASS_SET_SUPER(klass, origin);
1431 RCLASS_SET_ORIGIN(klass, origin);
1432 RCLASS_M_TBL_INIT(klass);
1433 rb_id_table_foreach(RCLASS_M_TBL(origin), cache_clear_refined_method, (void *)klass);
1434 rb_id_table_foreach(RCLASS_M_TBL(origin), move_refined_method, (void *)klass);
1435 return true;
1436 }
1437 return false;
1438}
1439
1440void
1442{
1443 int changed;
1444 bool klass_had_no_origin;
1445
1446 ensure_includable(klass, module);
1447 if (module_in_super_chain(klass, module))
1448 rb_raise(rb_eArgError, "cyclic prepend detected");
1449
1450 klass_had_no_origin = ensure_origin(klass);
1451 changed = do_include_modules_at(klass, klass, module, FALSE, false);
1452 RUBY_ASSERT(changed >= 0); // already checked for cyclic prepend above
1453 if (changed) {
1454 rb_vm_check_redefinition_by_prepend(klass);
1455 }
1456 if (RB_TYPE_P(klass, T_MODULE)) {
1457 rb_subclass_entry_t *iclass = RCLASS_SUBCLASSES(klass);
1458 // skip the placeholder subclass entry at the head of the list if it exists
1459 if (iclass) {
1460 RUBY_ASSERT(!iclass->klass);
1461 iclass = iclass->next;
1462 }
1463
1464 VALUE klass_origin = RCLASS_ORIGIN(klass);
1465 struct rb_id_table *klass_m_tbl = RCLASS_M_TBL(klass);
1466 struct rb_id_table *klass_origin_m_tbl = RCLASS_M_TBL(klass_origin);
1467 while (iclass) {
1468 /* During lazy sweeping, iclass->klass could be a dead object that
1469 * has not yet been swept. */
1470 if (!rb_objspace_garbage_object_p(iclass->klass)) {
1471 const VALUE subclass = iclass->klass;
1472 if (klass_had_no_origin && klass_origin_m_tbl == RCLASS_M_TBL(subclass)) {
1473 // backfill an origin iclass to handle refinements and future prepends
1474 rb_id_table_foreach(RCLASS_M_TBL(subclass), clear_module_cache_i, (void *)subclass);
1475 RCLASS_M_TBL(subclass) = klass_m_tbl;
1476 VALUE origin = rb_include_class_new(klass_origin, RCLASS_SUPER(subclass));
1477 RCLASS_SET_SUPER(subclass, origin);
1478 RCLASS_SET_INCLUDER(origin, RCLASS_INCLUDER(subclass));
1479 RCLASS_SET_ORIGIN(subclass, origin);
1480 RICLASS_SET_ORIGIN_SHARED_MTBL(origin);
1481 }
1482 include_modules_at(subclass, subclass, module, FALSE);
1483 }
1484
1485 iclass = iclass->next;
1486 }
1487 }
1488}
1489
1490/*
1491 * call-seq:
1492 * mod.included_modules -> array
1493 *
1494 * Returns the list of modules included or prepended in <i>mod</i>
1495 * or one of <i>mod</i>'s ancestors.
1496 *
1497 * module Sub
1498 * end
1499 *
1500 * module Mixin
1501 * prepend Sub
1502 * end
1503 *
1504 * module Outer
1505 * include Mixin
1506 * end
1507 *
1508 * Mixin.included_modules #=> [Sub]
1509 * Outer.included_modules #=> [Sub, Mixin]
1510 */
1511
1512VALUE
1514{
1515 VALUE ary = rb_ary_new();
1516 VALUE p;
1517 VALUE origin = RCLASS_ORIGIN(mod);
1518
1519 for (p = RCLASS_SUPER(mod); p; p = RCLASS_SUPER(p)) {
1520 if (p != origin && RCLASS_ORIGIN(p) == p && BUILTIN_TYPE(p) == T_ICLASS) {
1521 VALUE m = METACLASS_OF(p);
1522 if (RB_TYPE_P(m, T_MODULE))
1523 rb_ary_push(ary, m);
1524 }
1525 }
1526 return ary;
1527}
1528
1529/*
1530 * call-seq:
1531 * mod.include?(module) -> true or false
1532 *
1533 * Returns <code>true</code> if <i>module</i> is included
1534 * or prepended in <i>mod</i> or one of <i>mod</i>'s ancestors.
1535 *
1536 * module A
1537 * end
1538 * class B
1539 * include A
1540 * end
1541 * class C < B
1542 * end
1543 * B.include?(A) #=> true
1544 * C.include?(A) #=> true
1545 * A.include?(A) #=> false
1546 */
1547
1548VALUE
1550{
1551 VALUE p;
1552
1553 Check_Type(mod2, T_MODULE);
1554 for (p = RCLASS_SUPER(mod); p; p = RCLASS_SUPER(p)) {
1555 if (BUILTIN_TYPE(p) == T_ICLASS && !FL_TEST(p, RICLASS_IS_ORIGIN)) {
1556 if (METACLASS_OF(p) == mod2) return Qtrue;
1557 }
1558 }
1559 return Qfalse;
1560}
1561
1562/*
1563 * call-seq:
1564 * mod.ancestors -> array
1565 *
1566 * Returns a list of modules included/prepended in <i>mod</i>
1567 * (including <i>mod</i> itself).
1568 *
1569 * module Mod
1570 * include Math
1571 * include Comparable
1572 * prepend Enumerable
1573 * end
1574 *
1575 * Mod.ancestors #=> [Enumerable, Mod, Comparable, Math]
1576 * Math.ancestors #=> [Math]
1577 * Enumerable.ancestors #=> [Enumerable]
1578 */
1579
1580VALUE
1582{
1583 VALUE p, ary = rb_ary_new();
1584 VALUE refined_class = Qnil;
1585 if (BUILTIN_TYPE(mod) == T_MODULE && FL_TEST(mod, RMODULE_IS_REFINEMENT)) {
1586 refined_class = rb_refinement_module_get_refined_class(mod);
1587 }
1588
1589 for (p = mod; p; p = RCLASS_SUPER(p)) {
1590 if (p == refined_class) break;
1591 if (p != RCLASS_ORIGIN(p)) continue;
1592 if (BUILTIN_TYPE(p) == T_ICLASS) {
1593 rb_ary_push(ary, METACLASS_OF(p));
1594 }
1595 else {
1596 rb_ary_push(ary, p);
1597 }
1598 }
1599 return ary;
1600}
1601
1603{
1604 VALUE buffer;
1605 long count;
1606 long maxcount;
1607 bool immediate_only;
1608};
1609
1610static void
1611class_descendants_recursive(VALUE klass, VALUE v)
1612{
1613 struct subclass_traverse_data *data = (struct subclass_traverse_data *) v;
1614
1615 if (BUILTIN_TYPE(klass) == T_CLASS && !RCLASS_SINGLETON_P(klass)) {
1616 if (data->buffer && data->count < data->maxcount && !rb_objspace_garbage_object_p(klass)) {
1617 // assumes that this does not cause GC as long as the length does not exceed the capacity
1618 rb_ary_push(data->buffer, klass);
1619 }
1620 data->count++;
1621 if (!data->immediate_only) {
1622 rb_class_foreach_subclass(klass, class_descendants_recursive, v);
1623 }
1624 }
1625 else {
1626 rb_class_foreach_subclass(klass, class_descendants_recursive, v);
1627 }
1628}
1629
1630static VALUE
1631class_descendants(VALUE klass, bool immediate_only)
1632{
1633 struct subclass_traverse_data data = { Qfalse, 0, -1, immediate_only };
1634
1635 // estimate the count of subclasses
1636 rb_class_foreach_subclass(klass, class_descendants_recursive, (VALUE) &data);
1637
1638 // the following allocation may cause GC which may change the number of subclasses
1639 data.buffer = rb_ary_new_capa(data.count);
1640 data.maxcount = data.count;
1641 data.count = 0;
1642
1643 size_t gc_count = rb_gc_count();
1644
1645 // enumerate subclasses
1646 rb_class_foreach_subclass(klass, class_descendants_recursive, (VALUE) &data);
1647
1648 if (gc_count != rb_gc_count()) {
1649 rb_bug("GC must not occur during the subclass iteration of Class#descendants");
1650 }
1651
1652 return data.buffer;
1653}
1654
1655/*
1656 * call-seq:
1657 * subclasses -> array
1658 *
1659 * Returns an array of classes where the receiver is the
1660 * direct superclass of the class, excluding singleton classes.
1661 * The order of the returned array is not defined.
1662 *
1663 * class A; end
1664 * class B < A; end
1665 * class C < B; end
1666 * class D < A; end
1667 *
1668 * A.subclasses #=> [D, B]
1669 * B.subclasses #=> [C]
1670 * C.subclasses #=> []
1671 *
1672 * Anonymous subclasses (not associated with a constant) are
1673 * returned, too:
1674 *
1675 * c = Class.new(A)
1676 * A.subclasses # => [#<Class:0x00007f003c77bd78>, D, B]
1677 *
1678 * Note that the parent does not hold references to subclasses
1679 * and doesn't prevent them from being garbage collected. This
1680 * means that the subclass might disappear when all references
1681 * to it are dropped:
1682 *
1683 * # drop the reference to subclass, it can be garbage-collected now
1684 * c = nil
1685 *
1686 * A.subclasses
1687 * # It can be
1688 * # => [#<Class:0x00007f003c77bd78>, D, B]
1689 * # ...or just
1690 * # => [D, B]
1691 * # ...depending on whether garbage collector was run
1692 */
1693
1694VALUE
1696{
1697 return class_descendants(klass, true);
1698}
1699
1700/*
1701 * call-seq:
1702 * attached_object -> object
1703 *
1704 * Returns the object for which the receiver is the singleton class.
1705 *
1706 * Raises an TypeError if the class is not a singleton class.
1707 *
1708 * class Foo; end
1709 *
1710 * Foo.singleton_class.attached_object #=> Foo
1711 * Foo.attached_object #=> TypeError: `Foo' is not a singleton class
1712 * Foo.new.singleton_class.attached_object #=> #<Foo:0x000000010491a370>
1713 * TrueClass.attached_object #=> TypeError: `TrueClass' is not a singleton class
1714 * NilClass.attached_object #=> TypeError: `NilClass' is not a singleton class
1715 */
1716
1717VALUE
1719{
1720 if (!RCLASS_SINGLETON_P(klass)) {
1721 rb_raise(rb_eTypeError, "'%"PRIsVALUE"' is not a singleton class", klass);
1722 }
1723
1724 return RCLASS_ATTACHED_OBJECT(klass);
1725}
1726
1727static void
1728ins_methods_push(st_data_t name, st_data_t ary)
1729{
1730 rb_ary_push((VALUE)ary, ID2SYM((ID)name));
1731}
1732
1733static int
1734ins_methods_i(st_data_t name, st_data_t type, st_data_t ary)
1735{
1736 switch ((rb_method_visibility_t)type) {
1737 case METHOD_VISI_UNDEF:
1738 case METHOD_VISI_PRIVATE:
1739 break;
1740 default: /* everything but private */
1741 ins_methods_push(name, ary);
1742 break;
1743 }
1744 return ST_CONTINUE;
1745}
1746
1747static int
1748ins_methods_type_i(st_data_t name, st_data_t type, st_data_t ary, rb_method_visibility_t visi)
1749{
1750 if ((rb_method_visibility_t)type == visi) {
1751 ins_methods_push(name, ary);
1752 }
1753 return ST_CONTINUE;
1754}
1755
1756static int
1757ins_methods_prot_i(st_data_t name, st_data_t type, st_data_t ary)
1758{
1759 return ins_methods_type_i(name, type, ary, METHOD_VISI_PROTECTED);
1760}
1761
1762static int
1763ins_methods_priv_i(st_data_t name, st_data_t type, st_data_t ary)
1764{
1765 return ins_methods_type_i(name, type, ary, METHOD_VISI_PRIVATE);
1766}
1767
1768static int
1769ins_methods_pub_i(st_data_t name, st_data_t type, st_data_t ary)
1770{
1771 return ins_methods_type_i(name, type, ary, METHOD_VISI_PUBLIC);
1772}
1773
1774static int
1775ins_methods_undef_i(st_data_t name, st_data_t type, st_data_t ary)
1776{
1777 return ins_methods_type_i(name, type, ary, METHOD_VISI_UNDEF);
1778}
1779
1781 st_table *list;
1782 int recur;
1783};
1784
1785static enum rb_id_table_iterator_result
1786method_entry_i(ID key, VALUE value, void *data)
1787{
1788 const rb_method_entry_t *me = (const rb_method_entry_t *)value;
1789 struct method_entry_arg *arg = (struct method_entry_arg *)data;
1790 rb_method_visibility_t type;
1791
1792 if (me->def->type == VM_METHOD_TYPE_REFINED) {
1793 VALUE owner = me->owner;
1794 me = rb_resolve_refined_method(Qnil, me);
1795 if (!me) return ID_TABLE_CONTINUE;
1796 if (!arg->recur && me->owner != owner) return ID_TABLE_CONTINUE;
1797 }
1798 if (!st_is_member(arg->list, key)) {
1799 if (UNDEFINED_METHOD_ENTRY_P(me)) {
1800 type = METHOD_VISI_UNDEF; /* none */
1801 }
1802 else {
1803 type = METHOD_ENTRY_VISI(me);
1804 RUBY_ASSERT(type != METHOD_VISI_UNDEF);
1805 }
1806 st_add_direct(arg->list, key, (st_data_t)type);
1807 }
1808 return ID_TABLE_CONTINUE;
1809}
1810
1811static void
1812add_instance_method_list(VALUE mod, struct method_entry_arg *me_arg)
1813{
1814 struct rb_id_table *m_tbl = RCLASS_M_TBL(mod);
1815 if (!m_tbl) return;
1816 rb_id_table_foreach(m_tbl, method_entry_i, me_arg);
1817}
1818
1819static bool
1820particular_class_p(VALUE mod)
1821{
1822 if (!mod) return false;
1823 if (RCLASS_SINGLETON_P(mod)) return true;
1824 if (BUILTIN_TYPE(mod) == T_ICLASS) return true;
1825 return false;
1826}
1827
1828static VALUE
1829class_instance_method_list(int argc, const VALUE *argv, VALUE mod, int obj, int (*func) (st_data_t, st_data_t, st_data_t))
1830{
1831 VALUE ary;
1832 int recur = TRUE, prepended = 0;
1833 struct method_entry_arg me_arg;
1834
1835 if (rb_check_arity(argc, 0, 1)) recur = RTEST(argv[0]);
1836
1837 me_arg.list = st_init_numtable();
1838 me_arg.recur = recur;
1839
1840 if (obj) {
1841 for (; particular_class_p(mod); mod = RCLASS_SUPER(mod)) {
1842 add_instance_method_list(mod, &me_arg);
1843 }
1844 }
1845
1846 if (!recur && RCLASS_ORIGIN(mod) != mod) {
1847 mod = RCLASS_ORIGIN(mod);
1848 prepended = 1;
1849 }
1850
1851 for (; mod; mod = RCLASS_SUPER(mod)) {
1852 add_instance_method_list(mod, &me_arg);
1853 if (BUILTIN_TYPE(mod) == T_ICLASS && !prepended) continue;
1854 if (!recur) break;
1855 }
1856 ary = rb_ary_new2(me_arg.list->num_entries);
1857 st_foreach(me_arg.list, func, ary);
1858 st_free_table(me_arg.list);
1859
1860 return ary;
1861}
1862
1863/*
1864 * call-seq:
1865 * mod.instance_methods(include_super=true) -> array
1866 *
1867 * Returns an array containing the names of the public and protected instance
1868 * methods in the receiver. For a module, these are the public and protected methods;
1869 * for a class, they are the instance (not singleton) methods. If the optional
1870 * parameter is <code>false</code>, the methods of any ancestors are not included.
1871 *
1872 * module A
1873 * def method1() end
1874 * end
1875 * class B
1876 * include A
1877 * def method2() end
1878 * end
1879 * class C < B
1880 * def method3() end
1881 * end
1882 *
1883 * A.instance_methods(false) #=> [:method1]
1884 * B.instance_methods(false) #=> [:method2]
1885 * B.instance_methods(true).include?(:method1) #=> true
1886 * C.instance_methods(false) #=> [:method3]
1887 * C.instance_methods.include?(:method2) #=> true
1888 *
1889 * Note that method visibility changes in the current class, as well as aliases,
1890 * are considered as methods of the current class by this method:
1891 *
1892 * class C < B
1893 * alias method4 method2
1894 * protected :method2
1895 * end
1896 * C.instance_methods(false).sort #=> [:method2, :method3, :method4]
1897 */
1898
1899VALUE
1900rb_class_instance_methods(int argc, const VALUE *argv, VALUE mod)
1901{
1902 return class_instance_method_list(argc, argv, mod, 0, ins_methods_i);
1903}
1904
1905/*
1906 * call-seq:
1907 * mod.protected_instance_methods(include_super=true) -> array
1908 *
1909 * Returns a list of the protected instance methods defined in
1910 * <i>mod</i>. If the optional parameter is <code>false</code>, the
1911 * methods of any ancestors are not included.
1912 */
1913
1914VALUE
1916{
1917 return class_instance_method_list(argc, argv, mod, 0, ins_methods_prot_i);
1918}
1919
1920/*
1921 * call-seq:
1922 * mod.private_instance_methods(include_super=true) -> array
1923 *
1924 * Returns a list of the private instance methods defined in
1925 * <i>mod</i>. If the optional parameter is <code>false</code>, the
1926 * methods of any ancestors are not included.
1927 *
1928 * module Mod
1929 * def method1() end
1930 * private :method1
1931 * def method2() end
1932 * end
1933 * Mod.instance_methods #=> [:method2]
1934 * Mod.private_instance_methods #=> [:method1]
1935 */
1936
1937VALUE
1939{
1940 return class_instance_method_list(argc, argv, mod, 0, ins_methods_priv_i);
1941}
1942
1943/*
1944 * call-seq:
1945 * mod.public_instance_methods(include_super=true) -> array
1946 *
1947 * Returns a list of the public instance methods defined in <i>mod</i>.
1948 * If the optional parameter is <code>false</code>, the methods of
1949 * any ancestors are not included.
1950 */
1951
1952VALUE
1954{
1955 return class_instance_method_list(argc, argv, mod, 0, ins_methods_pub_i);
1956}
1957
1958/*
1959 * call-seq:
1960 * mod.undefined_instance_methods -> array
1961 *
1962 * Returns a list of the undefined instance methods defined in <i>mod</i>.
1963 * The undefined methods of any ancestors are not included.
1964 */
1965
1966VALUE
1967rb_class_undefined_instance_methods(VALUE mod)
1968{
1969 VALUE include_super = Qfalse;
1970 return class_instance_method_list(1, &include_super, mod, 0, ins_methods_undef_i);
1971}
1972
1973/*
1974 * call-seq:
1975 * obj.methods(regular=true) -> array
1976 *
1977 * Returns a list of the names of public and protected methods of
1978 * <i>obj</i>. This will include all the methods accessible in
1979 * <i>obj</i>'s ancestors.
1980 * If the optional parameter is <code>false</code>, it
1981 * returns an array of <i>obj</i>'s public and protected singleton methods,
1982 * the array will not include methods in modules included in <i>obj</i>.
1983 *
1984 * class Klass
1985 * def klass_method()
1986 * end
1987 * end
1988 * k = Klass.new
1989 * k.methods[0..9] #=> [:klass_method, :nil?, :===,
1990 * # :==~, :!, :eql?
1991 * # :hash, :<=>, :class, :singleton_class]
1992 * k.methods.length #=> 56
1993 *
1994 * k.methods(false) #=> []
1995 * def k.singleton_method; end
1996 * k.methods(false) #=> [:singleton_method]
1997 *
1998 * module M123; def m123; end end
1999 * k.extend M123
2000 * k.methods(false) #=> [:singleton_method]
2001 */
2002
2003VALUE
2004rb_obj_methods(int argc, const VALUE *argv, VALUE obj)
2005{
2006 rb_check_arity(argc, 0, 1);
2007 if (argc > 0 && !RTEST(argv[0])) {
2008 return rb_obj_singleton_methods(argc, argv, obj);
2009 }
2010 return class_instance_method_list(argc, argv, CLASS_OF(obj), 1, ins_methods_i);
2011}
2012
2013/*
2014 * call-seq:
2015 * obj.protected_methods(all=true) -> array
2016 *
2017 * Returns the list of protected methods accessible to <i>obj</i>. If
2018 * the <i>all</i> parameter is set to <code>false</code>, only those methods
2019 * in the receiver will be listed.
2020 */
2021
2022VALUE
2023rb_obj_protected_methods(int argc, const VALUE *argv, VALUE obj)
2024{
2025 return class_instance_method_list(argc, argv, CLASS_OF(obj), 1, ins_methods_prot_i);
2026}
2027
2028/*
2029 * call-seq:
2030 * obj.private_methods(all=true) -> array
2031 *
2032 * Returns the list of private methods accessible to <i>obj</i>. If
2033 * the <i>all</i> parameter is set to <code>false</code>, only those methods
2034 * in the receiver will be listed.
2035 */
2036
2037VALUE
2038rb_obj_private_methods(int argc, const VALUE *argv, VALUE obj)
2039{
2040 return class_instance_method_list(argc, argv, CLASS_OF(obj), 1, ins_methods_priv_i);
2041}
2042
2043/*
2044 * call-seq:
2045 * obj.public_methods(all=true) -> array
2046 *
2047 * Returns the list of public methods accessible to <i>obj</i>. If
2048 * the <i>all</i> parameter is set to <code>false</code>, only those methods
2049 * in the receiver will be listed.
2050 */
2051
2052VALUE
2053rb_obj_public_methods(int argc, const VALUE *argv, VALUE obj)
2054{
2055 return class_instance_method_list(argc, argv, CLASS_OF(obj), 1, ins_methods_pub_i);
2056}
2057
2058/*
2059 * call-seq:
2060 * obj.singleton_methods(all=true) -> array
2061 *
2062 * Returns an array of the names of singleton methods for <i>obj</i>.
2063 * If the optional <i>all</i> parameter is true, the list will include
2064 * methods in modules included in <i>obj</i>.
2065 * Only public and protected singleton methods are returned.
2066 *
2067 * module Other
2068 * def three() end
2069 * end
2070 *
2071 * class Single
2072 * def Single.four() end
2073 * end
2074 *
2075 * a = Single.new
2076 *
2077 * def a.one()
2078 * end
2079 *
2080 * class << a
2081 * include Other
2082 * def two()
2083 * end
2084 * end
2085 *
2086 * Single.singleton_methods #=> [:four]
2087 * a.singleton_methods(false) #=> [:two, :one]
2088 * a.singleton_methods #=> [:two, :one, :three]
2089 */
2090
2091VALUE
2092rb_obj_singleton_methods(int argc, const VALUE *argv, VALUE obj)
2093{
2094 VALUE ary, klass, origin;
2095 struct method_entry_arg me_arg;
2096 struct rb_id_table *mtbl;
2097 int recur = TRUE;
2098
2099 if (rb_check_arity(argc, 0, 1)) recur = RTEST(argv[0]);
2100 if (RCLASS_SINGLETON_P(obj)) {
2101 rb_singleton_class(obj);
2102 }
2103 klass = CLASS_OF(obj);
2104 origin = RCLASS_ORIGIN(klass);
2105 me_arg.list = st_init_numtable();
2106 me_arg.recur = recur;
2107 if (klass && RCLASS_SINGLETON_P(klass)) {
2108 if ((mtbl = RCLASS_M_TBL(origin)) != 0) rb_id_table_foreach(mtbl, method_entry_i, &me_arg);
2109 klass = RCLASS_SUPER(klass);
2110 }
2111 if (recur) {
2112 while (klass && (RCLASS_SINGLETON_P(klass) || RB_TYPE_P(klass, T_ICLASS))) {
2113 if (klass != origin && (mtbl = RCLASS_M_TBL(klass)) != 0) rb_id_table_foreach(mtbl, method_entry_i, &me_arg);
2114 klass = RCLASS_SUPER(klass);
2115 }
2116 }
2117 ary = rb_ary_new2(me_arg.list->num_entries);
2118 st_foreach(me_arg.list, ins_methods_i, ary);
2119 st_free_table(me_arg.list);
2120
2121 return ary;
2122}
2123
2132#ifdef rb_define_method_id
2133#undef rb_define_method_id
2134#endif
2135void
2136rb_define_method_id(VALUE klass, ID mid, VALUE (*func)(ANYARGS), int argc)
2137{
2138 rb_add_method_cfunc(klass, mid, func, argc, METHOD_VISI_PUBLIC);
2139}
2140
2141#ifdef rb_define_method
2142#undef rb_define_method
2143#endif
2144void
2145rb_define_method(VALUE klass, const char *name, VALUE (*func)(ANYARGS), int argc)
2146{
2147 rb_add_method_cfunc(klass, rb_intern(name), func, argc, METHOD_VISI_PUBLIC);
2148}
2149
2150#ifdef rb_define_protected_method
2151#undef rb_define_protected_method
2152#endif
2153void
2154rb_define_protected_method(VALUE klass, const char *name, VALUE (*func)(ANYARGS), int argc)
2155{
2156 rb_add_method_cfunc(klass, rb_intern(name), func, argc, METHOD_VISI_PROTECTED);
2157}
2158
2159#ifdef rb_define_private_method
2160#undef rb_define_private_method
2161#endif
2162void
2163rb_define_private_method(VALUE klass, const char *name, VALUE (*func)(ANYARGS), int argc)
2164{
2165 rb_add_method_cfunc(klass, rb_intern(name), func, argc, METHOD_VISI_PRIVATE);
2166}
2167
2168void
2169rb_undef_method(VALUE klass, const char *name)
2170{
2171 rb_add_method(klass, rb_intern(name), VM_METHOD_TYPE_UNDEF, 0, METHOD_VISI_UNDEF);
2172}
2173
2174static enum rb_id_table_iterator_result
2175undef_method_i(ID name, VALUE value, void *data)
2176{
2177 VALUE klass = (VALUE)data;
2178 rb_add_method(klass, name, VM_METHOD_TYPE_UNDEF, 0, METHOD_VISI_UNDEF);
2179 return ID_TABLE_CONTINUE;
2180}
2181
2182void
2183rb_undef_methods_from(VALUE klass, VALUE super)
2184{
2185 struct rb_id_table *mtbl = RCLASS_M_TBL(super);
2186 if (mtbl) {
2187 rb_id_table_foreach(mtbl, undef_method_i, (void *)klass);
2188 }
2189}
2190
2199static inline VALUE
2200special_singleton_class_of(VALUE obj)
2201{
2202 switch (obj) {
2203 case Qnil: return rb_cNilClass;
2204 case Qfalse: return rb_cFalseClass;
2205 case Qtrue: return rb_cTrueClass;
2206 default: return Qnil;
2207 }
2208}
2209
2210VALUE
2211rb_special_singleton_class(VALUE obj)
2212{
2213 return special_singleton_class_of(obj);
2214}
2215
2225static VALUE
2226singleton_class_of(VALUE obj)
2227{
2228 VALUE klass;
2229
2230 switch (TYPE(obj)) {
2231 case T_FIXNUM:
2232 case T_BIGNUM:
2233 case T_FLOAT:
2234 case T_SYMBOL:
2235 rb_raise(rb_eTypeError, "can't define singleton");
2236
2237 case T_FALSE:
2238 case T_TRUE:
2239 case T_NIL:
2240 klass = special_singleton_class_of(obj);
2241 if (NIL_P(klass))
2242 rb_bug("unknown immediate %p", (void *)obj);
2243 return klass;
2244
2245 case T_STRING:
2246 if (CHILLED_STRING_P(obj)) {
2247 CHILLED_STRING_MUTATED(obj);
2248 }
2249 else if (FL_TEST_RAW(obj, RSTRING_FSTR)) {
2250 rb_raise(rb_eTypeError, "can't define singleton");
2251 }
2252 }
2253
2254 klass = METACLASS_OF(obj);
2255 if (!(RCLASS_SINGLETON_P(klass) &&
2256 RCLASS_ATTACHED_OBJECT(klass) == obj)) {
2257 klass = rb_make_metaclass(obj, klass);
2258 }
2259
2260 RB_FL_SET_RAW(klass, RB_OBJ_FROZEN_RAW(obj));
2261
2262 return klass;
2263}
2264
2265void
2267{
2268 /* should not propagate to meta-meta-class, and so on */
2269 if (!RCLASS_SINGLETON_P(x)) {
2270 VALUE klass = RBASIC_CLASS(x);
2271 if (klass && // no class when hidden from ObjectSpace
2273 OBJ_FREEZE(klass);
2274 }
2275 }
2276}
2277
2285VALUE
2287{
2288 VALUE klass;
2289
2290 if (SPECIAL_CONST_P(obj)) {
2291 return rb_special_singleton_class(obj);
2292 }
2293 klass = METACLASS_OF(obj);
2294 if (!RCLASS_SINGLETON_P(klass)) return Qnil;
2295 if (RCLASS_ATTACHED_OBJECT(klass) != obj) return Qnil;
2296 return klass;
2297}
2298
2299VALUE
2301{
2302 VALUE klass = singleton_class_of(obj);
2303
2304 /* ensures an exposed class belongs to its own eigenclass */
2305 if (RB_TYPE_P(obj, T_CLASS)) (void)ENSURE_EIGENCLASS(klass);
2306
2307 return klass;
2308}
2309
2319#ifdef rb_define_singleton_method
2320#undef rb_define_singleton_method
2321#endif
2322void
2323rb_define_singleton_method(VALUE obj, const char *name, VALUE (*func)(ANYARGS), int argc)
2324{
2325 rb_define_method(singleton_class_of(obj), name, func, argc);
2326}
2327
2328#ifdef rb_define_module_function
2329#undef rb_define_module_function
2330#endif
2331void
2332rb_define_module_function(VALUE module, const char *name, VALUE (*func)(ANYARGS), int argc)
2333{
2334 rb_define_private_method(module, name, func, argc);
2335 rb_define_singleton_method(module, name, func, argc);
2336}
2337
2338#ifdef rb_define_global_function
2339#undef rb_define_global_function
2340#endif
2341void
2342rb_define_global_function(const char *name, VALUE (*func)(ANYARGS), int argc)
2343{
2344 rb_define_module_function(rb_mKernel, name, func, argc);
2345}
2346
2347void
2348rb_define_alias(VALUE klass, const char *name1, const char *name2)
2349{
2350 rb_alias(klass, rb_intern(name1), rb_intern(name2));
2351}
2352
2353void
2354rb_define_attr(VALUE klass, const char *name, int read, int write)
2355{
2356 rb_attr(klass, rb_intern(name), read, write, FALSE);
2357}
2358
2359VALUE
2360rb_keyword_error_new(const char *error, VALUE keys)
2361{
2362 long i = 0, len = RARRAY_LEN(keys);
2363 VALUE error_message = rb_sprintf("%s keyword%.*s", error, len > 1, "s");
2364
2365 if (len > 0) {
2366 rb_str_cat_cstr(error_message, ": ");
2367 while (1) {
2368 const VALUE k = RARRAY_AREF(keys, i);
2369 rb_str_append(error_message, rb_inspect(k));
2370 if (++i >= len) break;
2371 rb_str_cat_cstr(error_message, ", ");
2372 }
2373 }
2374
2375 return rb_exc_new_str(rb_eArgError, error_message);
2376}
2377
2378NORETURN(static void rb_keyword_error(const char *error, VALUE keys));
2379static void
2380rb_keyword_error(const char *error, VALUE keys)
2381{
2382 rb_exc_raise(rb_keyword_error_new(error, keys));
2383}
2384
2385NORETURN(static void unknown_keyword_error(VALUE hash, const ID *table, int keywords));
2386static void
2387unknown_keyword_error(VALUE hash, const ID *table, int keywords)
2388{
2389 int i;
2390 for (i = 0; i < keywords; i++) {
2391 st_data_t key = ID2SYM(table[i]);
2392 rb_hash_stlike_delete(hash, &key, NULL);
2393 }
2394 rb_keyword_error("unknown", rb_hash_keys(hash));
2395}
2396
2397
2398static int
2399separate_symbol(st_data_t key, st_data_t value, st_data_t arg)
2400{
2401 VALUE *kwdhash = (VALUE *)arg;
2402 if (!SYMBOL_P(key)) kwdhash++;
2403 if (!*kwdhash) *kwdhash = rb_hash_new();
2404 rb_hash_aset(*kwdhash, (VALUE)key, (VALUE)value);
2405 return ST_CONTINUE;
2406}
2407
2408VALUE
2410{
2411 VALUE parthash[2] = {0, 0};
2412 VALUE hash = *orighash;
2413
2414 if (RHASH_EMPTY_P(hash)) {
2415 *orighash = 0;
2416 return hash;
2417 }
2418 rb_hash_foreach(hash, separate_symbol, (st_data_t)&parthash);
2419 *orighash = parthash[1];
2420 if (parthash[1] && RBASIC_CLASS(hash) != rb_cHash) {
2421 RBASIC_SET_CLASS(parthash[1], RBASIC_CLASS(hash));
2422 }
2423 return parthash[0];
2424}
2425
2426int
2427rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
2428{
2429 int i = 0, j;
2430 int rest = 0;
2431 VALUE missing = Qnil;
2432 st_data_t key;
2433
2434#define extract_kwarg(keyword, val) \
2435 (key = (st_data_t)(keyword), values ? \
2436 (rb_hash_stlike_delete(keyword_hash, &key, &(val)) || ((val) = Qundef, 0)) : \
2437 rb_hash_stlike_lookup(keyword_hash, key, NULL))
2438
2439 if (NIL_P(keyword_hash)) keyword_hash = 0;
2440
2441 if (optional < 0) {
2442 rest = 1;
2443 optional = -1-optional;
2444 }
2445 if (required) {
2446 for (; i < required; i++) {
2447 VALUE keyword = ID2SYM(table[i]);
2448 if (keyword_hash) {
2449 if (extract_kwarg(keyword, values[i])) {
2450 continue;
2451 }
2452 }
2453 if (NIL_P(missing)) missing = rb_ary_hidden_new(1);
2454 rb_ary_push(missing, keyword);
2455 }
2456 if (!NIL_P(missing)) {
2457 rb_keyword_error("missing", missing);
2458 }
2459 }
2460 j = i;
2461 if (optional && keyword_hash) {
2462 for (i = 0; i < optional; i++) {
2463 if (extract_kwarg(ID2SYM(table[required+i]), values[required+i])) {
2464 j++;
2465 }
2466 }
2467 }
2468 if (!rest && keyword_hash) {
2469 if (RHASH_SIZE(keyword_hash) > (unsigned int)(values ? 0 : j)) {
2470 unknown_keyword_error(keyword_hash, table, required+optional);
2471 }
2472 }
2473 if (values && !keyword_hash) {
2474 for (i = 0; i < required + optional; i++) {
2475 values[i] = Qundef;
2476 }
2477 }
2478 return j;
2479#undef extract_kwarg
2480}
2481
2483 int kw_flag;
2484 int n_lead;
2485 int n_opt;
2486 int n_trail;
2487 bool f_var;
2488 bool f_hash;
2489 bool f_block;
2490};
2491
2492static void
2493rb_scan_args_parse(int kw_flag, const char *fmt, struct rb_scan_args_t *arg)
2494{
2495 const char *p = fmt;
2496
2497 memset(arg, 0, sizeof(*arg));
2498 arg->kw_flag = kw_flag;
2499
2500 if (ISDIGIT(*p)) {
2501 arg->n_lead = *p - '0';
2502 p++;
2503 if (ISDIGIT(*p)) {
2504 arg->n_opt = *p - '0';
2505 p++;
2506 }
2507 }
2508 if (*p == '*') {
2509 arg->f_var = 1;
2510 p++;
2511 }
2512 if (ISDIGIT(*p)) {
2513 arg->n_trail = *p - '0';
2514 p++;
2515 }
2516 if (*p == ':') {
2517 arg->f_hash = 1;
2518 p++;
2519 }
2520 if (*p == '&') {
2521 arg->f_block = 1;
2522 p++;
2523 }
2524 if (*p != '\0') {
2525 rb_fatal("bad scan arg format: %s", fmt);
2526 }
2527}
2528
2529static int
2530rb_scan_args_assign(const struct rb_scan_args_t *arg, int argc, const VALUE *const argv, va_list vargs)
2531{
2532 int i, argi = 0;
2533 VALUE *var, hash = Qnil;
2534#define rb_scan_args_next_param() va_arg(vargs, VALUE *)
2535 const int kw_flag = arg->kw_flag;
2536 const int n_lead = arg->n_lead;
2537 const int n_opt = arg->n_opt;
2538 const int n_trail = arg->n_trail;
2539 const int n_mand = n_lead + n_trail;
2540 const bool f_var = arg->f_var;
2541 const bool f_hash = arg->f_hash;
2542 const bool f_block = arg->f_block;
2543
2544 /* capture an option hash - phase 1: pop from the argv */
2545 if (f_hash && argc > 0) {
2546 VALUE last = argv[argc - 1];
2547 if (rb_scan_args_keyword_p(kw_flag, last)) {
2548 hash = rb_hash_dup(last);
2549 argc--;
2550 }
2551 }
2552
2553 if (argc < n_mand) {
2554 goto argc_error;
2555 }
2556
2557 /* capture leading mandatory arguments */
2558 for (i = 0; i < n_lead; i++) {
2559 var = rb_scan_args_next_param();
2560 if (var) *var = argv[argi];
2561 argi++;
2562 }
2563 /* capture optional arguments */
2564 for (i = 0; i < n_opt; i++) {
2565 var = rb_scan_args_next_param();
2566 if (argi < argc - n_trail) {
2567 if (var) *var = argv[argi];
2568 argi++;
2569 }
2570 else {
2571 if (var) *var = Qnil;
2572 }
2573 }
2574 /* capture variable length arguments */
2575 if (f_var) {
2576 int n_var = argc - argi - n_trail;
2577
2578 var = rb_scan_args_next_param();
2579 if (0 < n_var) {
2580 if (var) *var = rb_ary_new_from_values(n_var, &argv[argi]);
2581 argi += n_var;
2582 }
2583 else {
2584 if (var) *var = rb_ary_new();
2585 }
2586 }
2587 /* capture trailing mandatory arguments */
2588 for (i = 0; i < n_trail; i++) {
2589 var = rb_scan_args_next_param();
2590 if (var) *var = argv[argi];
2591 argi++;
2592 }
2593 /* capture an option hash - phase 2: assignment */
2594 if (f_hash) {
2595 var = rb_scan_args_next_param();
2596 if (var) *var = hash;
2597 }
2598 /* capture iterator block */
2599 if (f_block) {
2600 var = rb_scan_args_next_param();
2601 if (rb_block_given_p()) {
2602 *var = rb_block_proc();
2603 }
2604 else {
2605 *var = Qnil;
2606 }
2607 }
2608
2609 if (argi == argc) {
2610 return argc;
2611 }
2612
2613 argc_error:
2614 return -(argc + 1);
2615#undef rb_scan_args_next_param
2616}
2617
2618static int
2619rb_scan_args_result(const struct rb_scan_args_t *const arg, int argc)
2620{
2621 const int n_lead = arg->n_lead;
2622 const int n_opt = arg->n_opt;
2623 const int n_trail = arg->n_trail;
2624 const int n_mand = n_lead + n_trail;
2625 const bool f_var = arg->f_var;
2626
2627 if (argc >= 0) {
2628 return argc;
2629 }
2630
2631 argc = -argc - 1;
2632 rb_error_arity(argc, n_mand, f_var ? UNLIMITED_ARGUMENTS : n_mand + n_opt);
2634}
2635
2636#undef rb_scan_args
2637int
2638rb_scan_args(int argc, const VALUE *argv, const char *fmt, ...)
2639{
2640 va_list vargs;
2641 struct rb_scan_args_t arg;
2642 rb_scan_args_parse(RB_SCAN_ARGS_PASS_CALLED_KEYWORDS, fmt, &arg);
2643 va_start(vargs,fmt);
2644 argc = rb_scan_args_assign(&arg, argc, argv, vargs);
2645 va_end(vargs);
2646 return rb_scan_args_result(&arg, argc);
2647}
2648
2649#undef rb_scan_args_kw
2650int
2651rb_scan_args_kw(int kw_flag, int argc, const VALUE *argv, const char *fmt, ...)
2652{
2653 va_list vargs;
2654 struct rb_scan_args_t arg;
2655 rb_scan_args_parse(kw_flag, fmt, &arg);
2656 va_start(vargs,fmt);
2657 argc = rb_scan_args_assign(&arg, argc, argv, vargs);
2658 va_end(vargs);
2659 return rb_scan_args_result(&arg, argc);
2660}
2661
#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_method_id(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_protected_method(klass, mid, func, arity)
Defines klass#mid and makes it protected.
#define rb_define_module_function(klass, mid, func, arity)
Defines klass#mid and makes it a module function.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
#define rb_define_global_function(mid, func, arity)
Defines rb_mKernel #mid.
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition dllexport.h:45
static VALUE RB_OBJ_FROZEN_RAW(VALUE obj)
This is an implementation detail of RB_OBJ_FROZEN().
Definition fl_type.h:883
static void RB_FL_SET_RAW(VALUE obj, VALUE flags)
This is an implementation detail of RB_FL_SET().
Definition fl_type.h:606
@ RUBY_FL_USER1
User-defined flag.
Definition fl_type.h:329
VALUE rb_class_protected_instance_methods(int argc, const VALUE *argv, VALUE mod)
Identical to rb_class_instance_methods(), except it returns names of methods that are protected only.
Definition class.c:1915
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
Definition class.c:1190
VALUE rb_refinement_new(void)
Creates a new, anonymous refinement.
Definition class.c:1085
VALUE rb_define_class(const char *name, VALUE super)
Defines a top-level class.
Definition class.c:980
VALUE rb_class_new(VALUE super)
Creates a new, anonymous class.
Definition class.c:359
static VALUE make_singleton_class(VALUE obj)
Creates a singleton class for obj.
Definition class.c:801
VALUE rb_singleton_class_clone(VALUE obj)
Clones a singleton class.
Definition class.c:645
void rb_prepend_module(VALUE klass, VALUE module)
Identical to rb_include_module(), except it "prepends" the passed module to the klass,...
Definition class.c:1441
VALUE rb_class_subclasses(VALUE klass)
Queries the class's direct descendants.
Definition class.c:1695
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
Definition class.c:2300
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
Definition class.c:1013
VALUE rb_class_attached_object(VALUE klass)
Returns the attached object for a singleton class.
Definition class.c:1718
VALUE rb_obj_singleton_methods(int argc, const VALUE *argv, VALUE obj)
Identical to rb_class_instance_methods(), except it returns names of singleton methods instead of ins...
Definition class.c:2092
VALUE rb_module_new(void)
Creates a new, anonymous module.
Definition class.c:1079
#define META_CLASS_OF_CLASS_CLASS_P(k)
whether k is a meta^(n)-class of Class class
Definition class.c:721
VALUE rb_class_instance_methods(int argc, const VALUE *argv, VALUE mod)
Generates an array of symbols, which are the list of method names defined in the passed class.
Definition class.c:1900
void rb_check_inheritable(VALUE super)
Asserts that the given class can derive a child class.
Definition class.c:344
VALUE rb_class_public_instance_methods(int argc, const VALUE *argv, VALUE mod)
Identical to rb_class_instance_methods(), except it returns names of methods that are public only.
Definition class.c:1953
VALUE rb_class_boot(VALUE super)
A utility function that wraps class_alloc.
Definition class.c:281
VALUE rb_define_module(const char *name)
Defines a top-level module.
Definition class.c:1098
void rb_class_modify_check(VALUE klass)
Asserts that klass is not a frozen class.
Definition eval.c:418
VALUE rb_define_module_id_under(VALUE outer, ID id)
Identical to rb_define_module_under(), except it takes the name in ID instead of C's string.
Definition class.c:1128
void rb_singleton_class_attached(VALUE klass, VALUE obj)
Attaches a singleton class to its corresponding object.
Definition class.c:709
void rb_freeze_singleton_class(VALUE x)
This is an implementation detail of RB_OBJ_FREEZE().
Definition class.c:2266
VALUE rb_mod_included_modules(VALUE mod)
Queries the list of included modules.
Definition class.c:1513
VALUE rb_define_class_id_under(VALUE outer, ID id, VALUE super)
Identical to rb_define_class_under(), except it takes the name in ID instead of C's string.
Definition class.c:1054
VALUE rb_mod_ancestors(VALUE mod)
Queries the module's ancestors.
Definition class.c:1581
static VALUE make_metaclass(VALUE klass)
Creates a metaclass of klass
Definition class.c:766
static VALUE class_alloc(VALUE flags, VALUE klass)
Allocates a struct RClass for a new class.
Definition class.c:239
VALUE rb_class_inherited(VALUE super, VALUE klass)
Calls Class::inherited.
Definition class.c:971
VALUE rb_mod_include_p(VALUE mod, VALUE mod2)
Queries if the passed module is included by the module.
Definition class.c:1549
VALUE rb_class_private_instance_methods(int argc, const VALUE *argv, VALUE mod)
Identical to rb_class_instance_methods(), except it returns names of methods that are private only.
Definition class.c:1938
#define ENSURE_EIGENCLASS(klass)
ensures klass belongs to its own eigenclass.
Definition class.c:752
VALUE rb_mod_init_copy(VALUE clone, VALUE orig)
The comment that comes with this function says :nodoc:.
Definition class.c:533
VALUE rb_define_module_under(VALUE outer, const char *name)
Defines a module under the namespace of outer.
Definition class.c:1122
VALUE rb_singleton_class_get(VALUE obj)
Returns the singleton class of obj, or nil if obj is not a singleton object.
Definition class.c:2286
VALUE rb_define_module_id(ID id)
This is a very badly designed API that creates an anonymous module.
Definition class.c:1092
VALUE rb_define_class_id(ID id, VALUE super)
This is a very badly designed API that creates an anonymous class.
Definition class.c:950
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
Definition class.c:2348
VALUE rb_extract_keywords(VALUE *orighash)
Splits a hash into two.
Definition class.c:2409
void rb_define_attr(VALUE klass, const char *name, int read, int write)
Defines public accessor method(s) for an attribute.
Definition class.c:2354
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
Definition class.c:2169
int rb_scan_args_kw(int kw_flag, int argc, const VALUE *argv, const char *fmt,...)
Identical to rb_scan_args(), except it also accepts kw_splat.
Definition class.c:2651
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
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
Keyword argument deconstructor.
Definition class.c:2427
#define TYPE(_)
Old name of rb_type.
Definition value_type.h:108
#define FL_SINGLETON
Old name of RUBY_FL_SINGLETON.
Definition fl_type.h:58
#define FL_UNSET_RAW
Old name of RB_FL_UNSET_RAW.
Definition fl_type.h:134
#define OBJ_INIT_COPY(obj, orig)
Old name of RB_OBJ_INIT_COPY.
Definition object.h:41
#define ALLOC
Old name of RB_ALLOC.
Definition memory.h:400
#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 T_MASK
Old name of RUBY_T_MASK.
Definition value_type.h:68
#define Qundef
Old name of RUBY_Qundef.
#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 ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
Definition value_type.h:57
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
Definition fl_type.h:135
#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 ZALLOC
Old name of RB_ZALLOC.
Definition memory.h:402
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:203
#define xmalloc
Old name of ruby_xmalloc.
Definition xmalloc.h:53
#define T_MODULE
Old name of RUBY_T_MODULE.
Definition value_type.h:70
#define ISDIGIT
Old name of rb_isdigit.
Definition ctype.h:93
#define T_TRUE
Old name of RUBY_T_TRUE.
Definition value_type.h:81
#define T_ICLASS
Old name of RUBY_T_ICLASS.
Definition value_type.h:66
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
Definition fl_type.h:132
#define FL_SET
Old name of RB_FL_SET.
Definition fl_type.h:129
#define T_FALSE
Old name of RUBY_T_FALSE.
Definition value_type.h:61
#define Qtrue
Old name of RUBY_Qtrue.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define NIL_P
Old name of RB_NIL_P.
#define FL_WB_PROTECTED
Old name of RUBY_FL_WB_PROTECTED.
Definition fl_type.h:59
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
Definition value_type.h:80
#define T_CLASS
Old name of RUBY_T_CLASS.
Definition value_type.h:58
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
Definition value_type.h:85
#define FL_TEST
Old name of RB_FL_TEST.
Definition fl_type.h:131
#define FL_FREEZE
Old name of RUBY_FL_FREEZE.
Definition fl_type.h:67
#define CONST_ID
Old name of RUBY_CONST_ID.
Definition symbol.h:47
#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 SYMBOL_P
Old name of RB_SYMBOL_P.
Definition value_type.h:88
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
Definition eval.c:675
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
VALUE rb_exc_new_str(VALUE etype, VALUE str)
Identical to rb_exc_new_cstr(), except it takes a Ruby's string instead of C's.
Definition error.c:1481
VALUE rb_cClass
Class class.
Definition object.c:68
VALUE rb_mKernel
Kernel module.
Definition object.c:65
VALUE rb_cRefinement
Refinement class.
Definition object.c:69
VALUE rb_cNilClass
NilClass class.
Definition object.c:71
VALUE rb_cHash
Hash class.
Definition hash.c:113
VALUE rb_cFalseClass
FalseClass class.
Definition object.c:73
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_cBasicObject
BasicObject class.
Definition object.c:64
VALUE rb_cModule
Module class.
Definition object.c:67
VALUE rb_class_real(VALUE klass)
Finds a "real" class.
Definition object.c:237
VALUE rb_cTrueClass
TrueClass class.
Definition object.c:72
#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_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
#define RGENGC_WB_PROTECTED_CLASS
This is a compile-time flag to enable/disable write barrier for struct RClass.
Definition gc.h:523
#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_block_proc(void)
Constructs a Proc object from implicitly passed components.
Definition proc.c:845
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
Definition string.c:3693
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1656
VALUE rb_const_get(VALUE space, ID name)
Identical to rb_const_defined(), except it returns the actual defined value.
Definition variable.c:3193
void rb_const_set(VALUE space, ID name, VALUE val)
Names a constant.
Definition variable.c:3668
VALUE rb_const_get_at(VALUE space, ID name)
Identical to rb_const_defined_at(), except it returns the actual defined value.
Definition variable.c:3199
void rb_set_class_path_string(VALUE klass, VALUE space, VALUE name)
Identical to rb_set_class_path(), except it accepts the name as Ruby's string instead of C's.
Definition variable.c:416
int rb_const_defined_at(VALUE space, ID name)
Identical to rb_const_defined(), except it doesn't look for parent classes.
Definition variable.c:3521
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
Definition variable.c:373
int rb_const_defined(VALUE space, ID name)
Queries if the constant is defined at the namespace.
Definition variable.c:3515
void rb_alias(VALUE klass, ID dst, ID src)
Resembles alias.
Definition vm_method.c:2285
void rb_attr(VALUE klass, ID name, int need_reader, int need_writer, int honour_visibility)
This function resembles now-deprecated Module#attr.
Definition vm_method.c:1865
void rb_clear_constant_cache_for_id(ID id)
Clears the inline constant caches associated with a particular ID.
Definition vm_method.c:138
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
int len
Length of the buffer.
Definition io.h:8
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
Definition memory.h:372
VALUE type(ANYARGS)
ANYARGS-ed function type.
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:51
#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 RCLASS_SUPER
Just another name of rb_class_get_superclass.
Definition rclass.h:44
#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 RB_SCAN_ARGS_PASS_CALLED_KEYWORDS
Same behaviour as rb_scan_args().
Definition scan_args.h:50
#define RTEST
This is an old name of RB_TEST.
#define ANYARGS
Functions declared using this macro take arbitrary arguments, including void.
Definition stdarg.h:64
Definition class.h:80
Definition class.c:1780
Definition constant.h:33
CREF (Class REFerence)
Definition method.h:45
Definition class.h:36
Definition method.h:55
rb_cref_t * cref
class reference, should be marked
Definition method.h:137
const rb_iseq_t * iseqptr
iseq pointer, should be separated from iseqval
Definition method.h:136
Internal header for Class.
Definition class.h:29
Definition st.h:79
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