Ruby 4.1.0dev (2026-08-15 revision d17a0d008310e36d1e16f9614c7ca01fe38cf3d6)
struct.c (d17a0d008310e36d1e16f9614c7ca01fe38cf3d6)
1/**********************************************************************
2
3 struct.c -
4
5 $Author$
6 created at: Tue Mar 22 18:44:30 JST 1995
7
8 Copyright (C) 1993-2007 Yukihiro Matsumoto
9
10**********************************************************************/
11
12#include "id.h"
13#include "internal.h"
14#include "internal/class.h"
15#include "internal/error.h"
16#include "internal/hash.h"
17#include "internal/object.h"
18#include "internal/proc.h"
19#include "internal/struct.h"
20#include "internal/symbol.h"
21#include "vm_core.h"
22#include "builtin.h"
23
24/* only for struct[:field] access */
25enum {
26 AREF_HASH_UNIT = 5,
27 AREF_HASH_THRESHOLD = 10
28};
29
30/* Note: Data is a stricter version of the Struct: no attr writers & no
31 hash-alike/array-alike behavior. It shares most of the implementation
32 on the C level, but is unrelated on the Ruby level. */
34static VALUE rb_cData;
35static ID id_members, id_back_members, id_keyword_init;
36
37static VALUE struct_alloc(VALUE);
38
39static inline VALUE
40struct_ivar_get(VALUE c, ID id)
41{
42 VALUE orig = c;
43 VALUE ivar = rb_attr_get(c, id);
44
45 if (!NIL_P(ivar))
46 return ivar;
47
48 for (;;) {
50 if (c == rb_cStruct || c == rb_cData || !RTEST(c))
51 return Qnil;
53 ivar = rb_attr_get(c, id);
54 if (!NIL_P(ivar)) {
55 if (!OBJ_FROZEN(orig)) rb_ivar_set(orig, id, ivar);
56 return ivar;
57 }
58 }
59}
60
62rb_struct_s_keyword_init(VALUE klass)
63{
64 return struct_ivar_get(klass, id_keyword_init);
65}
66
69{
70 VALUE members = struct_ivar_get(klass, id_members);
71
72 if (NIL_P(members)) {
73 rb_raise(rb_eTypeError, "uninitialized struct");
74 }
75 if (!RB_TYPE_P(members, T_ARRAY)) {
76 rb_raise(rb_eTypeError, "corrupted struct");
77 }
78 return members;
79}
80
83{
85
86 if (RSTRUCT_LEN_RAW(s) != RARRAY_LEN(members)) {
87 rb_raise(rb_eTypeError, "struct size differs (%ld required %ld given)",
88 RARRAY_LEN(members), RSTRUCT_LEN_RAW(s));
89 }
90 return members;
91}
92
93static long
94struct_member_pos_ideal(VALUE name, long mask)
95{
96 /* (id & (mask/2)) * 2 */
97 return (SYM2ID(name) >> (ID_SCOPE_SHIFT - 1)) & mask;
98}
99
100static long
101struct_member_pos_probe(long prev, long mask)
102{
103 /* (((prev/2) * AREF_HASH_UNIT + 1) & (mask/2)) * 2 */
104 return (prev * AREF_HASH_UNIT + 2) & mask;
105}
106
107static VALUE
108struct_set_members(VALUE klass, VALUE /* frozen hidden array */ members)
109{
110 VALUE back;
111 const long members_length = RARRAY_LEN(members);
112
113 if (members_length <= AREF_HASH_THRESHOLD) {
114 back = members;
115 }
116 else {
117 long i, j, mask = 64;
118 VALUE name;
119
120 while (mask < members_length * AREF_HASH_UNIT) mask *= 2;
121
122 back = rb_ary_hidden_new(mask + 1);
123 rb_ary_store(back, mask, INT2FIX(members_length));
124 mask -= 2; /* mask = (2**k-1)*2 */
125
126 for (i=0; i < members_length; i++) {
127 name = RARRAY_AREF(members, i);
128
129 j = struct_member_pos_ideal(name, mask);
130
131 for (;;) {
132 if (!RTEST(RARRAY_AREF(back, j))) {
133 rb_ary_store(back, j, name);
134 rb_ary_store(back, j + 1, INT2FIX(i));
135 break;
136 }
137 j = struct_member_pos_probe(j, mask);
138 }
139 }
140 OBJ_FREEZE(back);
141 }
142 rb_ivar_set(klass, id_members, members);
143 rb_ivar_set(klass, id_back_members, back);
144
145 return members;
146}
147
148static inline int
149struct_member_pos(VALUE s, VALUE name)
150{
151 VALUE back = struct_ivar_get(rb_obj_class(s), id_back_members);
152 long j, mask;
153
154 if (UNLIKELY(NIL_P(back))) {
155 rb_raise(rb_eTypeError, "uninitialized struct");
156 }
157 if (UNLIKELY(!RB_TYPE_P(back, T_ARRAY))) {
158 rb_raise(rb_eTypeError, "corrupted struct");
159 }
160
161 mask = RARRAY_LEN(back);
162
163 if (mask <= AREF_HASH_THRESHOLD) {
164 if (UNLIKELY(RSTRUCT_LEN_RAW(s) != mask)) {
165 rb_raise(rb_eTypeError,
166 "struct size differs (%ld required %ld given)",
167 mask, RSTRUCT_LEN_RAW(s));
168 }
169 for (j = 0; j < mask; j++) {
170 if (RARRAY_AREF(back, j) == name)
171 return (int)j;
172 }
173 return -1;
174 }
175
176 if (UNLIKELY(RSTRUCT_LEN_RAW(s) != FIX2INT(RARRAY_AREF(back, mask-1)))) {
177 rb_raise(rb_eTypeError, "struct size differs (%d required %ld given)",
178 FIX2INT(RARRAY_AREF(back, mask-1)), RSTRUCT_LEN_RAW(s));
179 }
180
181 mask -= 3;
182 j = struct_member_pos_ideal(name, mask);
183
184 for (;;) {
185 VALUE e = RARRAY_AREF(back, j);
186 if (e == name)
187 return FIX2INT(RARRAY_AREF(back, j + 1));
188 if (!RTEST(e)) {
189 return -1;
190 }
191 j = struct_member_pos_probe(j, mask);
192 }
193}
194
195/*
196 * call-seq:
197 * StructClass::members -> array_of_symbols
198 *
199 * Returns the member names of the Struct descendant as an array:
200 *
201 * Customer = Struct.new(:name, :address, :zip)
202 * Customer.members # => [:name, :address, :zip]
203 *
204 */
205
206static VALUE
207rb_struct_s_members_m(VALUE klass)
208{
209 VALUE members = rb_struct_s_members(klass);
210
211 return rb_ary_dup(members);
212}
213
214/*
215 * call-seq:
216 * members -> array_of_symbols
217 *
218 * Returns the member names from +self+ as an array:
219 *
220 * Customer = Struct.new(:name, :address, :zip)
221 * Customer.new.members # => [:name, :address, :zip]
222 *
223 * Related: #to_a.
224 */
225
226static VALUE
227rb_struct_members_m(VALUE obj)
228{
229 return rb_struct_s_members_m(rb_obj_class(obj));
230}
231
232VALUE
234{
235 VALUE slot = ID2SYM(id);
236 int i = struct_member_pos(obj, slot);
237 if (i != -1) {
238 return RSTRUCT_GET_RAW(obj, i);
239 }
240 rb_name_err_raise("'%1$s' is not a struct member", obj, ID2SYM(id));
241
243}
244
245static void
246rb_struct_modify(VALUE s)
247{
248 rb_check_frozen(s);
249}
250
251static VALUE
252anonymous_struct(VALUE klass)
253{
254 VALUE nstr;
255
256 nstr = rb_class_new(klass);
257 rb_make_metaclass(nstr, RBASIC(klass)->klass);
258 rb_class_inherited(klass, nstr);
259 return nstr;
260}
261
262static VALUE
263new_struct(VALUE name, VALUE super)
264{
265 /* old style: should we warn? */
266 ID id;
267 name = rb_str_to_str(name);
268 if (!rb_is_const_name(name)) {
269 rb_name_err_raise("identifier %1$s needs to be constant",
270 super, name);
271 }
272 id = rb_to_id(name);
273 if (rb_const_defined_at(super, id)) {
274 rb_warn("redefining constant %"PRIsVALUE"::%"PRIsVALUE, super, name);
275 rb_mod_remove_const(super, ID2SYM(id));
276 }
277 return rb_define_class_id_under_no_pin(super, id, super);
278}
279
280NORETURN(static void invalid_struct_pos(VALUE s, VALUE idx));
281
282static void
283define_aref_method(VALUE nstr, VALUE name, VALUE off)
284{
285 rb_add_method_optimized(nstr, SYM2ID(name), OPTIMIZED_METHOD_TYPE_STRUCT_AREF, FIX2UINT(off), METHOD_VISI_PUBLIC);
286}
287
288void
289rb_struct_define_aref_method(VALUE nstr, ID name, unsigned int off)
290{
291 rb_add_method_optimized(nstr, name, OPTIMIZED_METHOD_TYPE_STRUCT_AREF, off, METHOD_VISI_PUBLIC);
292}
293
294static void
295define_aset_method(VALUE nstr, VALUE name, VALUE off)
296{
297 rb_add_method_optimized(nstr, SYM2ID(name), OPTIMIZED_METHOD_TYPE_STRUCT_ASET, FIX2UINT(off), METHOD_VISI_PUBLIC);
298}
299
300static VALUE
301rb_struct_s_inspect(VALUE klass)
302{
303 VALUE inspect = rb_class_name(klass);
304 if (RTEST(rb_struct_s_keyword_init(klass))) {
305 rb_str_cat_cstr(inspect, "(keyword_init: true)");
306 }
307 return inspect;
308}
309
310static VALUE
311rb_data_s_new(int argc, const VALUE *argv, VALUE klass)
312{
313 if (rb_keyword_given_p()) {
314 if (argc > 1 || !RB_TYPE_P(argv[0], T_HASH)) {
315 rb_error_arity(argc, 0, 0);
316 }
317 return rb_class_new_instance_pass_kw(argc, argv, klass);
318 }
319 else {
320 VALUE members = struct_ivar_get(klass, id_members);
321 int num_members = RARRAY_LENINT(members);
322
323 rb_check_arity(argc, 0, num_members);
324 VALUE arg_hash = rb_hash_new_with_size(argc);
325 for (long i=0; i<argc; i++) {
326 VALUE k = rb_ary_entry(members, i), v = argv[i];
327 rb_hash_aset(arg_hash, k, v);
328 }
329 return rb_class_new_instance_kw(1, &arg_hash, klass, RB_PASS_KEYWORDS);
330 }
331}
332
333#if 0 /* for RDoc */
334
335/*
336 * call-seq:
337 * StructClass::keyword_init? -> true or falsy value
338 *
339 * Returns +true+ if the class was initialized with <tt>keyword_init: true</tt>.
340 * Otherwise returns +nil+ or +false+.
341 *
342 * Examples:
343 * Foo = Struct.new(:a)
344 * Foo.keyword_init? # => nil
345 * Bar = Struct.new(:a, keyword_init: true)
346 * Bar.keyword_init? # => true
347 * Baz = Struct.new(:a, keyword_init: false)
348 * Baz.keyword_init? # => false
349 */
350static VALUE
351rb_struct_s_keyword_init_p(VALUE obj)
352{
353}
354#endif
355
356#define rb_struct_s_keyword_init_p rb_struct_s_keyword_init
357
358static VALUE
359setup_struct(VALUE nstr, VALUE members)
360{
361 long i, len;
362
363 members = struct_set_members(nstr, members);
364
365 rb_define_alloc_func(nstr, struct_alloc);
368 rb_define_singleton_method(nstr, "members", rb_struct_s_members_m, 0);
369 rb_define_singleton_method(nstr, "inspect", rb_struct_s_inspect, 0);
370 rb_define_singleton_method(nstr, "keyword_init?", rb_struct_s_keyword_init_p, 0);
371
372 len = RARRAY_LEN(members);
373 for (i=0; i< len; i++) {
374 VALUE sym = RARRAY_AREF(members, i);
375 ID id = SYM2ID(sym);
376 VALUE off = LONG2NUM(i);
377
378 define_aref_method(nstr, sym, off);
379 define_aset_method(nstr, ID2SYM(rb_id_attrset(id)), off);
380 }
381
382 return nstr;
383}
384
385static VALUE
386setup_data(VALUE subclass, VALUE members)
387{
388 long i, len;
389
390 members = struct_set_members(subclass, members);
391
392 rb_define_alloc_func(subclass, struct_alloc);
393 VALUE sclass = rb_singleton_class(subclass);
394 rb_undef_method(sclass, "define");
395 rb_define_method(sclass, "new", rb_data_s_new, -1);
396 rb_define_method(sclass, "[]", rb_data_s_new, -1);
397 rb_define_method(sclass, "members", rb_struct_s_members_m, 0);
398 rb_define_method(sclass, "inspect", rb_struct_s_inspect, 0); // FIXME: just a separate method?..
399
400 len = RARRAY_LEN(members);
401 for (i=0; i< len; i++) {
402 VALUE sym = RARRAY_AREF(members, i);
403 VALUE off = LONG2NUM(i);
404
405 define_aref_method(subclass, sym, off);
406 }
407
408 return subclass;
409}
410
411VALUE
413{
414 return struct_alloc(klass);
415}
416
417static VALUE
418struct_make_members_list(va_list ar)
419{
420 char *mem;
421 VALUE ary, list = rb_ident_hash_new();
422 RBASIC_CLEAR_CLASS(list);
423 while ((mem = va_arg(ar, char*)) != 0) {
424 VALUE sym = rb_sym_intern_ascii_cstr(mem);
425 if (RTEST(rb_hash_has_key(list, sym))) {
426 rb_raise(rb_eArgError, "duplicate member: %s", mem);
427 }
428 rb_hash_aset(list, sym, Qtrue);
429 }
430 ary = rb_hash_keys(list);
431 RBASIC_CLEAR_CLASS(ary);
432 OBJ_FREEZE(ary);
433 return ary;
434}
435
436static VALUE
437struct_define_without_accessor(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc, VALUE members)
438{
439 VALUE klass;
440
441 if (class_name) {
442 if (outer) {
443 klass = rb_define_class_under(outer, class_name, super);
444 }
445 else {
446 klass = rb_define_class(class_name, super);
447 }
448 }
449 else {
450 klass = anonymous_struct(super);
451 }
452
453 struct_set_members(klass, members);
454
455 if (alloc) {
456 rb_define_alloc_func(klass, alloc);
457 }
458 else {
459 rb_define_alloc_func(klass, struct_alloc);
460 }
461
462 return klass;
463}
464
465VALUE
466rb_struct_define_without_accessor_under(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc, ...)
467{
468 va_list ar;
469 VALUE members;
470
471 va_start(ar, alloc);
472 members = struct_make_members_list(ar);
473 va_end(ar);
474
475 return struct_define_without_accessor(outer, class_name, super, alloc, members);
476}
477
478VALUE
479rb_struct_define_without_accessor(const char *class_name, VALUE super, rb_alloc_func_t alloc, ...)
480{
481 va_list ar;
482 VALUE members;
483
484 va_start(ar, alloc);
485 members = struct_make_members_list(ar);
486 va_end(ar);
487
488 return struct_define_without_accessor(0, class_name, super, alloc, members);
489}
490
491VALUE
492rb_struct_define(const char *name, ...)
493{
494 va_list ar;
495 VALUE st, ary;
496
497 va_start(ar, name);
498 ary = struct_make_members_list(ar);
499 va_end(ar);
500
501 if (!name) {
502 st = anonymous_struct(rb_cStruct);
503 }
504 else {
505 st = new_struct(rb_str_new2(name), rb_cStruct);
506 rb_vm_register_global_object(st);
507 }
508 return setup_struct(st, ary);
509}
510
511VALUE
512rb_struct_define_under(VALUE outer, const char *name, ...)
513{
514 va_list ar;
515 VALUE ary;
516
517 va_start(ar, name);
518 ary = struct_make_members_list(ar);
519 va_end(ar);
520
521 return setup_struct(rb_define_class_id_under(outer, rb_intern(name), rb_cStruct), ary);
522}
523
524/*
525 * call-seq:
526 * Struct.new(*member_names, keyword_init: nil){|Struct_subclass| ... } -> Struct_subclass
527 * Struct.new(class_name, *member_names, keyword_init: nil){|Struct_subclass| ... } -> Struct_subclass
528 * Struct_subclass.new(*member_names) -> Struct_subclass_instance
529 * Struct_subclass.new(**member_names) -> Struct_subclass_instance
530 *
531 * <tt>Struct.new</tt> returns a new subclass of +Struct+. The new subclass:
532 *
533 * - May be anonymous, or may have the name given by +class_name+.
534 * - May have members as given by +member_names+.
535 * - May have initialization via ordinary arguments, or via keyword arguments
536 *
537 * The new subclass has its own method <tt>::new</tt>; thus:
538 *
539 * Foo = Struct.new('Foo', :foo, :bar) # => Struct::Foo
540 * f = Foo.new(0, 1) # => #<struct Struct::Foo foo=0, bar=1>
541 *
542 * <b>Class Name</b>
543 *
544 * With string argument +class_name+,
545 * returns a new subclass of +Struct+ named <tt>Struct::<em>class_name</em></tt>:
546 *
547 * Foo = Struct.new('Foo', :foo, :bar) # => Struct::Foo
548 * Foo.name # => "Struct::Foo"
549 * Foo.superclass # => Struct
550 *
551 * Without string argument +class_name+,
552 * returns a new anonymous subclass of +Struct+:
553 *
554 * Struct.new(:foo, :bar).name # => nil
555 *
556 * <b>Block</b>
557 *
558 * With a block given, the created subclass is yielded to the block:
559 *
560 * Customer = Struct.new('Customer', :name, :address) do |new_class|
561 * p "The new subclass is #{new_class}"
562 * def greeting
563 * "Hello #{name} at #{address}"
564 * end
565 * end # => Struct::Customer
566 * dave = Customer.new('Dave', '123 Main')
567 * dave # => #<struct Struct::Customer name="Dave", address="123 Main">
568 * dave.greeting # => "Hello Dave at 123 Main"
569 *
570 * Output, from <tt>Struct.new</tt>:
571 *
572 * "The new subclass is Struct::Customer"
573 *
574 * <b>Member Names</b>
575 *
576 * Symbol arguments +member_names+
577 * determines the members of the new subclass:
578 *
579 * Struct.new(:foo, :bar).members # => [:foo, :bar]
580 * Struct.new('Foo', :foo, :bar).members # => [:foo, :bar]
581 *
582 * The new subclass has instance methods corresponding to +member_names+:
583 *
584 * Foo = Struct.new('Foo', :foo, :bar)
585 * Foo.instance_methods(false) # => [:foo, :bar, :foo=, :bar=]
586 * f = Foo.new # => #<struct Struct::Foo foo=nil, bar=nil>
587 * f.foo # => nil
588 * f.foo = 0 # => 0
589 * f.bar # => nil
590 * f.bar = 1 # => 1
591 * f # => #<struct Struct::Foo foo=0, bar=1>
592 *
593 * <b>Singleton Methods</b>
594 *
595 * A subclass returned by Struct.new has these singleton methods:
596 *
597 * - Method <tt>::new </tt> creates an instance of the subclass:
598 *
599 * Foo.new # => #<struct Struct::Foo foo=nil, bar=nil>
600 * Foo.new(0) # => #<struct Struct::Foo foo=0, bar=nil>
601 * Foo.new(0, 1) # => #<struct Struct::Foo foo=0, bar=1>
602 * Foo.new(0, 1, 2) # Raises ArgumentError: struct size differs
603 *
604 * # Initialization with keyword arguments:
605 * Foo.new(foo: 0) # => #<struct Struct::Foo foo=0, bar=nil>
606 * Foo.new(foo: 0, bar: 1) # => #<struct Struct::Foo foo=0, bar=1>
607 * Foo.new(foo: 0, bar: 1, baz: 2)
608 * # Raises ArgumentError: unknown keywords: baz
609 *
610 * - Method <tt>:inspect</tt> returns a string representation of the subclass:
611 *
612 * Foo.inspect
613 * # => "Struct::Foo"
614 *
615 * - Method <tt>::members</tt> returns an array of the member names:
616 *
617 * Foo.members # => [:foo, :bar]
618 *
619 * <b>Keyword Argument</b>
620 *
621 * By default, the arguments for initializing an instance of the new subclass
622 * can be both positional and keyword arguments.
623 *
624 * Optional keyword argument <tt>keyword_init:</tt> allows to force only one
625 * type of arguments to be accepted:
626 *
627 * KeywordsOnly = Struct.new(:foo, :bar, keyword_init: true)
628 * KeywordsOnly.new(bar: 1, foo: 0)
629 * # => #<struct KeywordsOnly foo=0, bar=1>
630 * KeywordsOnly.new(0, 1)
631 * # Raises ArgumentError: wrong number of arguments
632 *
633 * PositionalOnly = Struct.new(:foo, :bar, keyword_init: false)
634 * PositionalOnly.new(0, 1)
635 * # => #<struct PositionalOnly foo=0, bar=1>
636 * PositionalOnly.new(bar: 1, foo: 0)
637 * # => #<struct PositionalOnly foo={foo: 1, bar: 2}, bar=nil>
638 * # Note that no error is raised, but arguments treated as one hash value
639 *
640 * # Same as not providing keyword_init:
641 * Any = Struct.new(:foo, :bar, keyword_init: nil)
642 * Any.new(foo: 1, bar: 2)
643 * # => #<struct Any foo=1, bar=2>
644 * Any.new(1, 2)
645 * # => #<struct Any foo=1, bar=2>
646 */
647
648static VALUE
649rb_struct_s_def(int argc, VALUE *argv, VALUE klass)
650{
651 VALUE name = Qnil, rest, keyword_init = Qnil;
652 long i;
653 VALUE st;
654 VALUE opt;
655
656 argc = rb_scan_args(argc, argv, "0*:", NULL, &opt);
657 if (argc >= 1 && !SYMBOL_P(argv[0])) {
658 name = argv[0];
659 --argc;
660 ++argv;
661 }
662
663 if (!NIL_P(opt)) {
664 static ID keyword_ids[1];
665
666 if (!keyword_ids[0]) {
667 keyword_ids[0] = rb_intern("keyword_init");
668 }
669 rb_get_kwargs(opt, keyword_ids, 0, 1, &keyword_init);
670 if (UNDEF_P(keyword_init)) {
671 keyword_init = Qnil;
672 }
673 else if (RTEST(keyword_init)) {
674 keyword_init = Qtrue;
675 }
676 }
677
678 rest = rb_ident_hash_new();
679 RBASIC_CLEAR_CLASS(rest);
680 for (i=0; i<argc; i++) {
681 VALUE mem = rb_to_symbol(argv[i]);
682 if (rb_is_attrset_sym(mem)) {
683 rb_raise(rb_eArgError, "invalid struct member: %"PRIsVALUE, mem);
684 }
685 if (RTEST(rb_hash_has_key(rest, mem))) {
686 rb_raise(rb_eArgError, "duplicate member: %"PRIsVALUE, mem);
687 }
688 rb_hash_aset(rest, mem, Qtrue);
689 }
690 rest = rb_hash_keys(rest);
691 RBASIC_CLEAR_CLASS(rest);
692 OBJ_FREEZE(rest);
693 if (NIL_P(name)) {
694 st = anonymous_struct(klass);
695 }
696 else {
697 st = new_struct(name, klass);
698 }
699 setup_struct(st, rest);
700 rb_ivar_set(st, id_keyword_init, keyword_init);
701 if (rb_block_given_p()) {
702 rb_mod_module_eval(0, 0, st);
703 }
704
705 return st;
706}
707
708static long
709num_members(VALUE klass)
710{
711 VALUE members;
712 members = struct_ivar_get(klass, id_members);
713 if (!RB_TYPE_P(members, T_ARRAY)) {
714 rb_raise(rb_eTypeError, "broken members");
715 }
716 return RARRAY_LEN(members);
717}
718
719/*
720 */
721
723 VALUE self;
724 VALUE unknown_keywords;
725 VALUE missing_keywords;
726 long missing_count;
727};
728
729static int rb_struct_pos(VALUE s, VALUE *name, bool name_only);
730static VALUE deconstruct_keys(VALUE s, VALUE keys, bool name_only);
731static int rb_struct_pos(VALUE s, VALUE *name, bool name_only);
732
733static int
734struct_hash_aset(VALUE key, VALUE val, struct struct_hash_set_arg *args, bool name_only)
735{
736 int i = rb_struct_pos(args->self, &key, name_only);
737 if (i < 0) {
738 if (NIL_P(args->unknown_keywords)) {
739 args->unknown_keywords = rb_ary_new();
740 }
741 rb_ary_push(args->unknown_keywords, key);
742 }
743 else {
744 rb_struct_modify(args->self);
745 RSTRUCT_SET_RAW(args->self, i, val);
746 }
747 return i;
748}
749
750static int
751struct_hash_set_i(VALUE key, VALUE val, VALUE arg)
752{
753 struct struct_hash_set_arg *args = (struct struct_hash_set_arg *)arg;
754 struct_hash_aset(key, val, args, false);
755 return ST_CONTINUE;
756}
757
758static VALUE
759rb_struct_initialize_m(int argc, const VALUE *argv, VALUE self)
760{
761 VALUE klass = rb_obj_class(self);
762 rb_struct_modify(self);
763 long n = num_members(klass);
764 if (argc == 0) {
765 rb_mem_clear((VALUE *)RSTRUCT_CONST_PTR(self), n);
766 return Qnil;
767 }
768
769 bool keyword_init = false;
770 switch (rb_struct_s_keyword_init(klass)) {
771 default:
772 if (argc > 1 || !RB_TYPE_P(argv[0], T_HASH)) {
773 rb_error_arity(argc, 0, 0);
774 }
775 keyword_init = true;
776 break;
777 case Qfalse:
778 break;
779 case Qnil:
780 if (argc > 1 || !RB_TYPE_P(argv[0], T_HASH)) {
781 break;
782 }
783 keyword_init = rb_keyword_given_p();
784 break;
785 }
786 if (keyword_init) {
787 struct struct_hash_set_arg arg = {
788 .self = self,
789 .unknown_keywords = Qnil,
790 };
791 rb_mem_clear((VALUE *)RSTRUCT_CONST_PTR(self), n);
792 rb_hash_foreach(argv[0], struct_hash_set_i, (VALUE)&arg);
793 if (UNLIKELY(!NIL_P(arg.unknown_keywords))) {
794 rb_raise(rb_eArgError, "unknown keywords: %"PRIsVALUE,
795 rb_ary_join(arg.unknown_keywords, rb_str_new2(", ")));
796 }
797 }
798 else {
799 if (n < argc) {
800 rb_raise(rb_eArgError, "struct size differs");
801 }
802 for (long i=0; i<argc; i++) {
803 RSTRUCT_SET_RAW(self, i, argv[i]);
804 }
805 if (n > argc) {
806 rb_mem_clear((VALUE *)RSTRUCT_CONST_PTR(self)+argc, n-argc);
807 }
808 }
809 return Qnil;
810}
811
812VALUE
814{
815 rb_struct_initialize_m(RARRAY_LENINT(values), RARRAY_CONST_PTR(values), self);
816 if (rb_obj_is_kind_of(self, rb_cData)) OBJ_FREEZE(self);
817 RB_GC_GUARD(values);
818 return Qnil;
819}
820
821static VALUE *
822struct_heap_alloc(VALUE st, size_t len)
823{
824 return ALLOC_N(VALUE, len);
825}
826
827STATIC_ASSERT(robject_rstruct_fields_offset, offsetof(struct RObject, as.extended) == offsetof(struct RStruct, fields_obj));
828
829static VALUE
830struct_alloc(VALUE klass)
831{
832 long n = num_members(klass);
833 size_t embedded_size = offsetof(struct RStruct, as.ary) + (sizeof(VALUE) * n);
834 if (RCLASS_MAX_IV_COUNT(klass) > 0) {
835 embedded_size += sizeof(VALUE);
836 }
837
838 VALUE flags = T_STRUCT;
839
840 const long embed_len_max = RSTRUCT_EMBED_LEN_MASK >> RSTRUCT_EMBED_LEN_SHIFT;
841
842 if (n > 0 && n <= embed_len_max && rb_gc_size_allocatable_p(embedded_size)) {
843 flags |= n << RSTRUCT_EMBED_LEN_SHIFT;
844
845 VALUE st = rb_newobj(GET_EC(), klass, flags, ROOT_SHAPE_ID | SHAPE_ID_LAYOUT_EXTENDED, true, embedded_size);
846 RSTRUCT_SET_FIELDS_OBJ(st, 0);
847 rb_mem_clear((VALUE *)RSTRUCT(st)->as.ary, n);
848
849 return st;
850 }
851 else {
852 VALUE obj = rb_newobj(GET_EC(), klass, flags, ROOT_SHAPE_ID | SHAPE_ID_LAYOUT_EXTENDED, true, sizeof(struct RStruct));
853 struct RStruct *st = RSTRUCT(obj);
854
855 st->fields_obj = 0;
856 st->as.heap.ptr = NULL;
857 st->as.heap.len = 0;
858
859 st->as.heap.ptr = struct_heap_alloc((VALUE)st, n);
860 rb_mem_clear((VALUE *)st->as.heap.ptr, n);
861 st->as.heap.len = n;
862
863 return obj;
864 }
865}
866
867VALUE
869{
870 return rb_class_new_instance(RARRAY_LENINT(values), RARRAY_CONST_PTR(values), klass);
871}
872
873VALUE
875{
876 VALUE tmpargs[16], *mem = tmpargs;
877 int size, i;
878 va_list args;
879
880 size = rb_long2int(num_members(klass));
881 if (size > numberof(tmpargs)) {
882 tmpargs[0] = rb_ary_hidden_new(size);
883 mem = RARRAY_PTR(tmpargs[0]);
884 }
885 va_start(args, klass);
886 for (i=0; i<size; i++) {
887 mem[i] = va_arg(args, VALUE);
888 }
889 va_end(args);
890
891 return rb_class_new_instance(size, mem, klass);
892}
893
894static VALUE
895struct_enum_size(VALUE s, VALUE args, VALUE eobj)
896{
897 return rb_struct_size(s);
898}
899
900/*
901 * call-seq:
902 * each {|value| ... } -> self
903 * each -> enumerator
904 *
905 * Calls the given block with the value of each member; returns +self+:
906 *
907 * Customer = Struct.new(:name, :address, :zip)
908 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
909 * joe.each {|value| p value }
910 *
911 * Output:
912 *
913 * "Joe Smith"
914 * "123 Maple, Anytown NC"
915 * 12345
916 *
917 * Returns an Enumerator if no block is given.
918 *
919 * Related: #each_pair.
920 */
921
922static VALUE
923rb_struct_each(VALUE s)
924{
925 long i;
926
927 RETURN_SIZED_ENUMERATOR(s, 0, 0, struct_enum_size);
928 for (i=0; i<RSTRUCT_LEN_RAW(s); i++) {
929 rb_yield(RSTRUCT_GET_RAW(s, i));
930 }
931 return s;
932}
933
934/*
935 * call-seq:
936 * each_pair {|(name, value)| ... } -> self
937 * each_pair -> enumerator
938 *
939 * Calls the given block with each member name/value pair; returns +self+:
940 *
941 * Customer = Struct.new(:name, :address, :zip) # => Customer
942 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
943 * joe.each_pair {|(name, value)| p "#{name} => #{value}" }
944 *
945 * Output:
946 *
947 * "name => Joe Smith"
948 * "address => 123 Maple, Anytown NC"
949 * "zip => 12345"
950 *
951 * Returns an Enumerator if no block is given.
952 *
953 * Related: #each.
954 *
955 */
956
957static VALUE
958rb_struct_each_pair(VALUE s)
959{
960 VALUE members;
961 long i;
962
963 RETURN_SIZED_ENUMERATOR(s, 0, 0, struct_enum_size);
964 members = rb_struct_members(s);
965 if (rb_block_pair_yield_optimizable()) {
966 for (i=0; i<RSTRUCT_LEN_RAW(s); i++) {
967 VALUE key = rb_ary_entry(members, i);
968 VALUE value = RSTRUCT_GET_RAW(s, i);
969 rb_yield_values(2, key, value);
970 }
971 }
972 else {
973 for (i=0; i<RSTRUCT_LEN_RAW(s); i++) {
974 VALUE key = rb_ary_entry(members, i);
975 VALUE value = RSTRUCT_GET_RAW(s, i);
976 rb_yield(rb_assoc_new(key, value));
977 }
978 }
979 return s;
980}
981
982static VALUE
983inspect_struct(VALUE s, VALUE prefix, int recur)
984{
985 VALUE cname = rb_class_path(rb_obj_class(s));
986 VALUE members;
987 VALUE str = prefix;
988 long i, len;
989 char first = RSTRING_PTR(cname)[0];
990
991 if (recur || first != '#') {
992 rb_str_cat2(str, " ");
993 rb_str_append(str, cname);
994 }
995 if (recur) {
996 return rb_str_cat2(str, ":...>");
997 }
998
999 members = rb_struct_members(s);
1000 len = RSTRUCT_LEN_RAW(s);
1001
1002 for (i=0; i<len; i++) {
1003 VALUE slot;
1004 ID id;
1005
1006 if (i > 0) {
1007 rb_str_cat2(str, ", ");
1008 }
1009 else {
1010 rb_str_cat2(str, " ");
1011 }
1012 slot = RARRAY_AREF(members, i);
1013 id = SYM2ID(slot);
1014 if (rb_is_local_id(id) || rb_is_const_id(id)) {
1015 rb_str_append(str, rb_sym2str(slot));
1016 }
1017 else {
1018 rb_str_append(str, rb_inspect(slot));
1019 }
1020 rb_str_cat2(str, "=");
1021 rb_str_append(str, rb_inspect(RSTRUCT_GET_RAW(s, i)));
1022 }
1023 rb_str_cat2(str, ">");
1024
1025 return str;
1026}
1027
1028/*
1029 * call-seq:
1030 * inspect -> string
1031 *
1032 * Returns a string representation of +self+:
1033 *
1034 * Customer = Struct.new(:name, :address, :zip) # => Customer
1035 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1036 * joe.inspect # => "#<struct Customer name=\"Joe Smith\", address=\"123 Maple, Anytown NC\", zip=12345>"
1037 *
1038 */
1039
1040static VALUE
1041rb_struct_inspect(VALUE s)
1042{
1043 return rb_exec_recursive(inspect_struct, s, rb_str_new2("#<struct"));
1044}
1045
1046/*
1047 * call-seq:
1048 * to_a -> array
1049 *
1050 * Returns the values in +self+ as an array:
1051 *
1052 * Customer = Struct.new(:name, :address, :zip)
1053 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1054 * joe.to_a # => ["Joe Smith", "123 Maple, Anytown NC", 12345]
1055 *
1056 * Related: #members.
1057 */
1058
1059static VALUE
1060rb_struct_to_a(VALUE s)
1061{
1062 return rb_ary_new4(RSTRUCT_LEN_RAW(s), RSTRUCT_CONST_PTR(s));
1063}
1064
1065/*
1066 * call-seq:
1067 * to_h -> hash
1068 * to_h {|name, value| ... } -> hash
1069 *
1070 * Returns a hash containing the name and value for each member:
1071 *
1072 * Customer = Struct.new(:name, :address, :zip)
1073 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1074 * h = joe.to_h
1075 * h # => {name: "Joe Smith", address: "123 Maple, Anytown NC", zip: 12345}
1076 *
1077 * If a block is given, it is called with each name/value pair;
1078 * the block should return a 2-element array whose elements will become
1079 * a key/value pair in the returned hash:
1080 *
1081 * h = joe.to_h{|name, value| [name.upcase, value.to_s.upcase]}
1082 * h # => {NAME: "JOE SMITH", ADDRESS: "123 MAPLE, ANYTOWN NC", ZIP: "12345"}
1083 *
1084 * Raises ArgumentError if the block returns an inappropriate value.
1085 *
1086 */
1087
1088static VALUE
1089rb_struct_to_h(VALUE s)
1090{
1091 VALUE h = rb_hash_new_with_size(RSTRUCT_LEN_RAW(s));
1092 VALUE members = rb_struct_members(s);
1093 long i;
1094 int block_given = rb_block_given_p();
1095
1096 for (i=0; i<RSTRUCT_LEN_RAW(s); i++) {
1097 VALUE k = rb_ary_entry(members, i), v = RSTRUCT_GET_RAW(s, i);
1098 if (block_given)
1099 rb_hash_set_pair(h, rb_yield_values(2, k, v));
1100 else
1101 rb_hash_aset(h, k, v);
1102 }
1103 return h;
1104}
1105
1106/*
1107 * call-seq:
1108 * deconstruct_keys(array_of_names) -> hash
1109 *
1110 * Returns a hash of the name/value pairs for the given member names.
1111 *
1112 * Customer = Struct.new(:name, :address, :zip)
1113 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1114 * h = joe.deconstruct_keys([:zip, :address])
1115 * h # => {zip: 12345, address: "123 Maple, Anytown NC"}
1116 *
1117 * Returns all names and values if +array_of_names+ is +nil+:
1118 *
1119 * h = joe.deconstruct_keys(nil)
1120 * h # => {name: "Joseph Smith, Jr.", address: "123 Maple, Anytown NC", zip: 12345}
1121 *
1122 */
1123static VALUE
1124rb_struct_deconstruct_keys(VALUE s, VALUE keys)
1125{
1126 return deconstruct_keys(s, keys, false);
1127}
1128
1129static VALUE
1130deconstruct_keys(VALUE s, VALUE keys, bool name_only)
1131{
1132 VALUE h;
1133 long i;
1134
1135 if (NIL_P(keys)) {
1136 return rb_struct_to_h(s);
1137 }
1138 if (UNLIKELY(!RB_TYPE_P(keys, T_ARRAY))) {
1139 rb_raise(rb_eTypeError,
1140 "wrong argument type %"PRIsVALUE" (expected Array or nil)",
1141 rb_obj_class(keys));
1142
1143 }
1144 if (RSTRUCT_LEN_RAW(s) < RARRAY_LEN(keys)) {
1145 return rb_hash_new_with_size(0);
1146 }
1147 h = rb_hash_new_with_size(RARRAY_LEN(keys));
1148 for (i=0; i<RARRAY_LEN(keys); i++) {
1149 VALUE key = RARRAY_AREF(keys, i);
1150 int i = rb_struct_pos(s, &key, name_only);
1151 if (i < 0) {
1152 return h;
1153 }
1154 rb_hash_aset(h, key, RSTRUCT_GET_RAW(s, i));
1155 }
1156 return h;
1157}
1158
1159/* :nodoc: */
1160VALUE
1161rb_struct_init_copy(VALUE copy, VALUE s)
1162{
1163 long i, len;
1164
1165 if (!OBJ_INIT_COPY(copy, s)) return copy;
1166 if (RSTRUCT_LEN_RAW(copy) != RSTRUCT_LEN_RAW(s)) {
1167 rb_raise(rb_eTypeError, "struct size mismatch");
1168 }
1169
1170 for (i=0, len=RSTRUCT_LEN_RAW(copy); i<len; i++) {
1171 RSTRUCT_SET_RAW(copy, i, RSTRUCT_GET_RAW(s, i));
1172 }
1173
1174 return copy;
1175}
1176
1177static int
1178rb_struct_pos(VALUE s, VALUE *name, bool name_only)
1179{
1180 long i;
1181 VALUE idx = *name;
1182
1183 if (SYMBOL_P(idx)) {
1184 return struct_member_pos(s, idx);
1185 }
1186 else if (name_only || RB_TYPE_P(idx, T_STRING)) {
1187 idx = rb_check_symbol(name);
1188 if (NIL_P(idx)) return -1;
1189 return struct_member_pos(s, idx);
1190 }
1191 else {
1192 long len;
1193 i = NUM2LONG(idx);
1194 len = RSTRUCT_LEN_RAW(s);
1195 if (i < 0) {
1196 if (i + len < 0) {
1197 *name = LONG2FIX(i);
1198 return -1;
1199 }
1200 i += len;
1201 }
1202 else if (len <= i) {
1203 *name = LONG2FIX(i);
1204 return -1;
1205 }
1206 return (int)i;
1207 }
1208}
1209
1210static void
1211invalid_struct_pos(VALUE s, VALUE idx)
1212{
1213 if (FIXNUM_P(idx)) {
1214 long i = FIX2INT(idx), len = RSTRUCT_LEN_RAW(s);
1215 if (i < 0) {
1216 rb_raise(rb_eIndexError, "offset %ld too small for struct(size:%ld)",
1217 i, len);
1218 }
1219 else {
1220 rb_raise(rb_eIndexError, "offset %ld too large for struct(size:%ld)",
1221 i, len);
1222 }
1223 }
1224 else {
1225 rb_name_err_raise("no member '%1$s' in struct", s, idx);
1226 }
1227}
1228
1229/*
1230 * call-seq:
1231 * struct[name] -> object
1232 * struct[n] -> object
1233 *
1234 * Returns a value from +self+.
1235 *
1236 * With symbol or string argument +name+ given, returns the value for the named member:
1237 *
1238 * Customer = Struct.new(:name, :address, :zip)
1239 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1240 * joe[:zip] # => 12345
1241 *
1242 * Raises NameError if +name+ is not the name of a member.
1243 *
1244 * With integer argument +n+ given, returns <tt>self.values[n]</tt>
1245 * if +n+ is in range;
1246 * see Array@Array+Indexes:
1247 *
1248 * joe[2] # => 12345
1249 * joe[-2] # => "123 Maple, Anytown NC"
1250 *
1251 * Raises IndexError if +n+ is out of range.
1252 *
1253 */
1254
1255VALUE
1257{
1258 int i = rb_struct_pos(s, &idx, false);
1259 if (i < 0) invalid_struct_pos(s, idx);
1260 return RSTRUCT_GET_RAW(s, i);
1261}
1262
1263/*
1264 * call-seq:
1265 * struct[name] = value -> value
1266 * struct[n] = value -> value
1267 *
1268 * Assigns a value to a member.
1269 *
1270 * With symbol or string argument +name+ given, assigns the given +value+
1271 * to the named member; returns +value+:
1272 *
1273 * Customer = Struct.new(:name, :address, :zip)
1274 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1275 * joe[:zip] = 54321 # => 54321
1276 * joe # => #<struct Customer name="Joe Smith", address="123 Maple, Anytown NC", zip=54321>
1277 *
1278 * Raises NameError if +name+ is not the name of a member.
1279 *
1280 * With integer argument +n+ given, assigns the given +value+
1281 * to the +n+-th member if +n+ is in range;
1282 * see Array@Array+Indexes:
1283 *
1284 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1285 * joe[2] = 54321 # => 54321
1286 * joe[-3] = 'Joseph Smith' # => "Joseph Smith"
1287 * joe # => #<struct Customer name="Joseph Smith", address="123 Maple, Anytown NC", zip=54321>
1288 *
1289 * Raises IndexError if +n+ is out of range.
1290 *
1291 */
1292
1293VALUE
1295{
1296 int i = rb_struct_pos(s, &idx, false);
1297 if (i < 0) invalid_struct_pos(s, idx);
1298 rb_struct_modify(s);
1299 RSTRUCT_SET_RAW(s, i, val);
1300 return val;
1301}
1302
1303FUNC_MINIMIZED(VALUE rb_struct_lookup(VALUE s, VALUE idx));
1304NOINLINE(static VALUE rb_struct_lookup_default(VALUE s, VALUE idx, VALUE notfound, bool name_only));
1305
1306VALUE
1307rb_struct_lookup(VALUE s, VALUE idx)
1308{
1309 return rb_struct_lookup_default(s, idx, Qnil, false);
1310}
1311
1312static VALUE
1313rb_struct_lookup_default(VALUE s, VALUE idx, VALUE notfound, bool name_only)
1314{
1315 int i = rb_struct_pos(s, &idx, name_only);
1316 if (i < 0) return notfound;
1317 return RSTRUCT_GET_RAW(s, i);
1318}
1319
1320static VALUE
1321struct_entry(VALUE s, long n)
1322{
1323 return rb_struct_aref(s, LONG2NUM(n));
1324}
1325
1326/*
1327 * call-seq:
1328 * values_at(*integers) -> array
1329 * values_at(integer_range) -> array
1330 *
1331 * Returns an array of values from +self+.
1332 *
1333 * With integer arguments +integers+ given,
1334 * returns an array containing each value given by one of +integers+:
1335 *
1336 * Customer = Struct.new(:name, :address, :zip)
1337 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1338 * joe.values_at(0, 2) # => ["Joe Smith", 12345]
1339 * joe.values_at(2, 0) # => [12345, "Joe Smith"]
1340 * joe.values_at(2, 1, 0) # => [12345, "123 Maple, Anytown NC", "Joe Smith"]
1341 * joe.values_at(0, -3) # => ["Joe Smith", "Joe Smith"]
1342 *
1343 * Raises IndexError if any of +integers+ is out of range;
1344 * see Array@Array+Indexes.
1345 *
1346 * With integer range argument +integer_range+ given,
1347 * returns an array containing each value given by the elements of the range;
1348 * fills with +nil+ values for range elements larger than the structure:
1349 *
1350 * joe.values_at(0..2)
1351 * # => ["Joe Smith", "123 Maple, Anytown NC", 12345]
1352 * joe.values_at(-3..-1)
1353 * # => ["Joe Smith", "123 Maple, Anytown NC", 12345]
1354 * joe.values_at(1..4) # => ["123 Maple, Anytown NC", 12345, nil, nil]
1355 *
1356 * Raises RangeError if any element of the range is negative and out of range;
1357 * see Array@Array+Indexes.
1358 *
1359 */
1360
1361static VALUE
1362rb_struct_values_at(int argc, VALUE *argv, VALUE s)
1363{
1364 return rb_get_values_at(s, RSTRUCT_LEN_RAW(s), argc, argv, struct_entry);
1365}
1366
1367/*
1368 * call-seq:
1369 * select {|value| ... } -> array
1370 * select -> enumerator
1371 *
1372 * With a block given, returns an array of values from +self+
1373 * for which the block returns a truthy value:
1374 *
1375 * Customer = Struct.new(:name, :address, :zip)
1376 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1377 * a = joe.select {|value| value.is_a?(String) }
1378 * a # => ["Joe Smith", "123 Maple, Anytown NC"]
1379 * a = joe.select {|value| value.is_a?(Integer) }
1380 * a # => [12345]
1381 *
1382 * With no block given, returns an Enumerator.
1383 */
1384
1385static VALUE
1386rb_struct_select(int argc, VALUE *argv, VALUE s)
1387{
1388 VALUE result;
1389 long i;
1390
1391 rb_check_arity(argc, 0, 0);
1392 RETURN_SIZED_ENUMERATOR(s, 0, 0, struct_enum_size);
1393 result = rb_ary_new();
1394 for (i = 0; i < RSTRUCT_LEN_RAW(s); i++) {
1395 if (RTEST(rb_yield(RSTRUCT_GET_RAW(s, i)))) {
1396 rb_ary_push(result, RSTRUCT_GET_RAW(s, i));
1397 }
1398 }
1399
1400 return result;
1401}
1402
1403static VALUE
1404recursive_equal(VALUE s, VALUE s2, int recur)
1405{
1406 long i, len;
1407
1408 if (recur) return Qtrue; /* Subtle! */
1409 len = RSTRUCT_LEN_RAW(s);
1410 for (i=0; i<len; i++) {
1411 if (!rb_equal(RSTRUCT_GET_RAW(s, i), RSTRUCT_GET_RAW(s2, i))) return Qfalse;
1412 }
1413 return Qtrue;
1414}
1415
1416
1417/*
1418 * call-seq:
1419 * self == other -> true or false
1420 *
1421 * Returns whether both the following are true:
1422 *
1423 * - <tt>other.class == self.class</tt>.
1424 * - For each member name +name+, <tt>other.name == self.name</tt>.
1425 *
1426 * Examples:
1427 *
1428 * Customer = Struct.new(:name, :address, :zip)
1429 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1430 * joe_jr = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1431 * joe_jr == joe # => true
1432 * joe_jr[:name] = 'Joe Smith, Jr.'
1433 * # => "Joe Smith, Jr."
1434 * joe_jr == joe # => false
1435 */
1436
1437static VALUE
1438rb_struct_equal(VALUE s, VALUE s2)
1439{
1440 if (s == s2) return Qtrue;
1441 if (!RB_TYPE_P(s2, T_STRUCT)) return Qfalse;
1442 if (rb_obj_class(s) != rb_obj_class(s2)) return Qfalse;
1443 if (RSTRUCT_LEN_RAW(s) != RSTRUCT_LEN_RAW(s2)) {
1444 rb_bug("inconsistent struct"); /* should never happen */
1445 }
1446
1447 return rb_exec_recursive_paired(recursive_equal, s, s2, s2);
1448}
1449
1450/*
1451 * call-seq:
1452 * hash -> integer
1453 *
1454 * Returns the integer hash value for +self+.
1455 *
1456 * Two structs of the same class and with the same content
1457 * will have the same hash code (and will compare using Struct#eql?):
1458 *
1459 * Customer = Struct.new(:name, :address, :zip)
1460 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1461 * joe_jr = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1462 * joe.hash == joe_jr.hash # => true
1463 * joe_jr[:name] = 'Joe Smith, Jr.'
1464 * joe.hash == joe_jr.hash # => false
1465 *
1466 * Related: Object#hash.
1467 */
1468
1469static VALUE
1470rb_struct_hash(VALUE s)
1471{
1472 long i, len;
1473 st_index_t h;
1474 VALUE n;
1475
1476 h = rb_hash_start(rb_hash(rb_obj_class(s)));
1477 len = RSTRUCT_LEN_RAW(s);
1478 for (i = 0; i < len; i++) {
1479 n = rb_hash(RSTRUCT_GET_RAW(s, i));
1480 h = rb_hash_uint(h, NUM2LONG(n));
1481 }
1482 h = rb_hash_end(h);
1483 return ST2FIX(h);
1484}
1485
1486static VALUE
1487recursive_eql(VALUE s, VALUE s2, int recur)
1488{
1489 long i, len;
1490
1491 if (recur) return Qtrue; /* Subtle! */
1492 len = RSTRUCT_LEN_RAW(s);
1493 for (i=0; i<len; i++) {
1494 if (!rb_eql(RSTRUCT_GET_RAW(s, i), RSTRUCT_GET_RAW(s2, i))) return Qfalse;
1495 }
1496 return Qtrue;
1497}
1498
1499/*
1500 * call-seq:
1501 * eql?(other) -> true or false
1502 *
1503 * Returns +true+ if and only if the following are true; otherwise returns +false+:
1504 *
1505 * - <tt>other.class == self.class</tt>.
1506 * - For each member name +name+, <tt>other.name.eql?(self.name)</tt>.
1507 *
1508 * Customer = Struct.new(:name, :address, :zip)
1509 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1510 * joe_jr = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1511 * joe_jr.eql?(joe) # => true
1512 * joe_jr[:name] = 'Joe Smith, Jr.'
1513 * joe_jr.eql?(joe) # => false
1514 *
1515 * Related: Object#==.
1516 */
1517
1518static VALUE
1519rb_struct_eql(VALUE s, VALUE s2)
1520{
1521 if (s == s2) return Qtrue;
1522 if (!RB_TYPE_P(s2, T_STRUCT)) return Qfalse;
1523 if (rb_obj_class(s) != rb_obj_class(s2)) return Qfalse;
1524 if (RSTRUCT_LEN_RAW(s) != RSTRUCT_LEN_RAW(s2)) {
1525 rb_bug("inconsistent struct"); /* should never happen */
1526 }
1527
1528 return rb_exec_recursive_paired(recursive_eql, s, s2, s2);
1529}
1530
1531/*
1532 * call-seq:
1533 * size -> integer
1534 *
1535 * Returns the number of members.
1536 *
1537 * Customer = Struct.new(:name, :address, :zip)
1538 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
1539 * joe.size #=> 3
1540 *
1541 */
1542
1543VALUE
1545{
1546 return LONG2FIX(RSTRUCT_LEN_RAW(s));
1547}
1548
1549/*
1550 * call-seq:
1551 * dig(name, *identifiers) -> object
1552 * dig(n, *identifiers) -> object
1553 *
1554 * Finds and returns an object among nested objects.
1555 * The nested objects may be instances of various classes.
1556 * See {Dig Methods}[rdoc-ref:dig_methods.rdoc].
1557 *
1558 *
1559 * Given symbol or string argument +name+,
1560 * returns the object that is specified by +name+ and +identifiers+:
1561 *
1562 * Foo = Struct.new(:a)
1563 * f = Foo.new(Foo.new({b: [1, 2, 3]}))
1564 * f.dig(:a) # => #<struct Foo a={b: [1, 2, 3]}>
1565 * f.dig(:a, :a) # => {b: [1, 2, 3]}
1566 * f.dig(:a, :a, :b) # => [1, 2, 3]
1567 * f.dig(:a, :a, :b, 0) # => 1
1568 * f.dig(:b, 0) # => nil
1569 *
1570 * Given integer argument +n+,
1571 * returns the object that is specified by +n+ and +identifiers+:
1572 *
1573 * f.dig(0) # => #<struct Foo a={b: [1, 2, 3]}>
1574 * f.dig(0, 0) # => {b: [1, 2, 3]}
1575 * f.dig(0, 0, :b) # => [1, 2, 3]
1576 * f.dig(0, 0, :b, 0) # => 1
1577 * f.dig(:b, 0) # => nil
1578 *
1579 */
1580
1581static VALUE
1582rb_struct_dig(int argc, VALUE *argv, VALUE self)
1583{
1585 self = rb_struct_lookup(self, *argv);
1586 if (!--argc) return self;
1587 ++argv;
1588 return rb_obj_dig(argc, argv, self, Qnil);
1589}
1590
1591/*
1592 * Document-class: Data
1593 *
1594 * Class \Data provides a convenient way to define simple classes
1595 * for value-alike objects.
1596 *
1597 * The simplest example of usage:
1598 *
1599 * Measure = Data.define(:amount, :unit)
1600 *
1601 * # Positional arguments constructor is provided
1602 * distance = Measure.new(100, 'km')
1603 * #=> #<data Measure amount=100, unit="km">
1604 *
1605 * # Keyword arguments constructor is provided
1606 * weight = Measure.new(amount: 50, unit: 'kg')
1607 * #=> #<data Measure amount=50, unit="kg">
1608 *
1609 * # Alternative form to construct an object:
1610 * speed = Measure[10, 'mPh']
1611 * #=> #<data Measure amount=10, unit="mPh">
1612 *
1613 * # Works with keyword arguments, too:
1614 * area = Measure[amount: 1.5, unit: 'm^2']
1615 * #=> #<data Measure amount=1.5, unit="m^2">
1616 *
1617 * # Argument accessors are provided:
1618 * distance.amount #=> 100
1619 * distance.unit #=> "km"
1620 *
1621 * Constructed object also has a reasonable definitions of #==
1622 * operator, #to_h hash conversion, and #deconstruct / #deconstruct_keys
1623 * to be used in pattern matching.
1624 *
1625 * ::define method accepts an optional block and evaluates it in
1626 * the context of the newly defined class. That allows to define
1627 * additional methods:
1628 *
1629 * Measure = Data.define(:amount, :unit) do
1630 * def <=>(other)
1631 * return unless other.is_a?(self.class) && other.unit == unit
1632 * amount <=> other.amount
1633 * end
1634 *
1635 * include Comparable
1636 * end
1637 *
1638 * Measure[3, 'm'] < Measure[5, 'm'] #=> true
1639 * Measure[3, 'm'] < Measure[5, 'kg']
1640 * # comparison of Measure with Measure failed (ArgumentError)
1641 *
1642 * Data provides no member writers, or enumerators: it is meant
1643 * to be a storage for immutable atomic values. But note that
1644 * if some of data members is of a mutable class, Data does no additional
1645 * immutability enforcement:
1646 *
1647 * Event = Data.define(:time, :weekdays)
1648 * event = Event.new('18:00', %w[Tue Wed Fri])
1649 * #=> #<data Event time="18:00", weekdays=["Tue", "Wed", "Fri"]>
1650 *
1651 * # There is no #time= or #weekdays= accessors, but changes are
1652 * # still possible:
1653 * event.weekdays << 'Sat'
1654 * event
1655 * #=> #<data Event time="18:00", weekdays=["Tue", "Wed", "Fri", "Sat"]>
1656 *
1657 * See also Struct, which is a similar concept, but has more
1658 * container-alike API, allowing to change contents of the object
1659 * and enumerate it.
1660 */
1661
1662/*
1663 * call-seq:
1664 * define(*symbols) -> class
1665 *
1666 * Defines a new \Data class.
1667 *
1668 * measure = Data.define(:amount, :unit)
1669 * #=> #<Class:0x00007f70c6868498>
1670 * measure.new(1, 'km')
1671 * #=> #<data amount=1, unit="km">
1672 *
1673 * # It you store the new class in the constant, it will
1674 * # affect #inspect and will be more natural to use:
1675 * Measure = Data.define(:amount, :unit)
1676 * #=> Measure
1677 * Measure.new(1, 'km')
1678 * #=> #<data Measure amount=1, unit="km">
1679 *
1680 *
1681 * Note that member-less \Data is acceptable and might be a useful technique
1682 * for defining several homogeneous data classes, like
1683 *
1684 * class HTTPFetcher
1685 * Response = Data.define(:body)
1686 * NotFound = Data.define
1687 * # ... implementation
1688 * end
1689 *
1690 * Now, different kinds of responses from +HTTPFetcher+ would have consistent
1691 * representation:
1692 *
1693 * #<data HTTPFetcher::Response body="<html...">
1694 * #<data HTTPFetcher::NotFound>
1695 *
1696 * And are convenient to use in pattern matching:
1697 *
1698 * case fetcher.get(url)
1699 * in HTTPFetcher::Response(body)
1700 * # process body variable
1701 * in HTTPFetcher::NotFound
1702 * # handle not found case
1703 * end
1704 */
1705
1706static VALUE
1707rb_data_s_def(int argc, VALUE *argv, VALUE klass)
1708{
1709 VALUE rest;
1710 long i;
1711 VALUE data_class;
1712
1713 rest = rb_ident_hash_new();
1714 RBASIC_CLEAR_CLASS(rest);
1715 for (i=0; i<argc; i++) {
1716 VALUE mem = rb_to_symbol(argv[i]);
1717 if (rb_is_attrset_sym(mem)) {
1718 rb_raise(rb_eArgError, "invalid data member: %"PRIsVALUE, mem);
1719 }
1720 if (RTEST(rb_hash_has_key(rest, mem))) {
1721 rb_raise(rb_eArgError, "duplicate member: %"PRIsVALUE, mem);
1722 }
1723 rb_hash_aset(rest, mem, Qtrue);
1724 }
1725 rest = rb_hash_keys(rest);
1726 RBASIC_CLEAR_CLASS(rest);
1727 OBJ_FREEZE(rest);
1728 data_class = anonymous_struct(klass);
1729 setup_data(data_class, rest);
1730 if (rb_block_given_p()) {
1731 rb_mod_module_eval(0, 0, data_class);
1732 }
1733
1734 return data_class;
1735}
1736
1737VALUE
1739{
1740 va_list ar;
1741 VALUE ary;
1742 va_start(ar, super);
1743 ary = struct_make_members_list(ar);
1744 va_end(ar);
1745 if (!super) super = rb_cData;
1746 VALUE klass = setup_data(anonymous_struct(super), ary);
1747 rb_vm_register_global_object(klass);
1748 return klass;
1749}
1750
1751static int
1752data_hash_set_i(VALUE key, VALUE val, VALUE arg)
1753{
1754 struct struct_hash_set_arg *args = (struct struct_hash_set_arg *)arg;
1755 int i = struct_hash_aset(key, val, args, true);
1756 if (i >= 0 && args->missing_count > 0) {
1757 VALUE k = RARRAY_AREF(args->missing_keywords, i);
1758 if (!NIL_P(k)) {
1759 RARRAY_ASET(args->missing_keywords, i, Qnil);
1760 args->missing_count--;
1761 }
1762 }
1763 return ST_CONTINUE;
1764}
1765
1766/*
1767 * call-seq:
1768 * DataClass::members -> array_of_symbols
1769 *
1770 * Returns an array of member names of the data class:
1771 *
1772 * Measure = Data.define(:amount, :unit)
1773 * Measure.members # => [:amount, :unit]
1774 *
1775 */
1776
1777#define rb_data_s_members_m rb_struct_s_members_m
1778
1779
1780/*
1781 * call-seq:
1782 * new(*args) -> instance
1783 * new(**kwargs) -> instance
1784 * ::[](*args) -> instance
1785 * ::[](**kwargs) -> instance
1786 *
1787 * Constructors for classes defined with ::define accept both positional and
1788 * keyword arguments.
1789 *
1790 * Measure = Data.define(:amount, :unit)
1791 *
1792 * Measure.new(1, 'km')
1793 * #=> #<data Measure amount=1, unit="km">
1794 * Measure.new(amount: 1, unit: 'km')
1795 * #=> #<data Measure amount=1, unit="km">
1796 *
1797 * # Alternative shorter initialization with []
1798 * Measure[1, 'km']
1799 * #=> #<data Measure amount=1, unit="km">
1800 * Measure[amount: 1, unit: 'km']
1801 * #=> #<data Measure amount=1, unit="km">
1802 *
1803 * All arguments are mandatory (unlike Struct), and converted to keyword arguments:
1804 *
1805 * Measure.new(amount: 1)
1806 * # in `initialize': missing keyword: :unit (ArgumentError)
1807 *
1808 * Measure.new(1)
1809 * # in `initialize': missing keyword: :unit (ArgumentError)
1810 *
1811 * Note that <tt>Measure#initialize</tt> always receives keyword arguments, and that
1812 * mandatory arguments are checked in +initialize+, not in +new+. This can be
1813 * important for redefining initialize in order to convert arguments or provide
1814 * defaults:
1815 *
1816 * Measure = Data.define(:amount, :unit)
1817 * class Measure
1818 * NONE = Data.define
1819 *
1820 * def initialize(amount:, unit: NONE.new)
1821 * super(amount: Float(amount), unit:)
1822 * end
1823 * end
1824 *
1825 * Measure.new('10', 'km') # => #<data Measure amount=10.0, unit="km">
1826 * Measure.new(10_000) # => #<data Measure amount=10000.0, unit=#<data Measure::NONE>>
1827 *
1828 */
1829
1830static VALUE
1831rb_data_initialize_m(int argc, const VALUE *argv, VALUE self)
1832{
1833 VALUE klass = rb_obj_class(self);
1834 rb_struct_modify(self);
1835 VALUE members = struct_ivar_get(klass, id_members);
1836 size_t num_members = RARRAY_LEN(members);
1837
1838 if (argc == 0) {
1839 if (num_members > 0) {
1840 rb_exc_raise(rb_keyword_error_new("missing", members));
1841 }
1842 OBJ_FREEZE(self);
1843 return Qnil;
1844 }
1845 if (argc > 1 || !RB_TYPE_P(argv[0], T_HASH)) {
1846 rb_error_arity(argc, 0, 0);
1847 }
1848
1849 VALUE missing = rb_ary_dup(members);
1850 RBASIC_CLEAR_CLASS(missing);
1851 struct struct_hash_set_arg arg = {
1852 .self = self,
1853 .unknown_keywords = Qnil,
1854 .missing_keywords = missing,
1855 .missing_count = (long)num_members,
1856 };
1857 rb_mem_clear((VALUE *)RSTRUCT_CONST_PTR(self), num_members);
1858 rb_hash_foreach(argv[0], data_hash_set_i, (VALUE)&arg);
1859 // Freeze early before potentially raising, so that we don't leave an
1860 // unfrozen copy on the heap, which could get exposed via ObjectSpace.
1861 OBJ_FREEZE(self);
1862 if (UNLIKELY(arg.missing_count > 0)) {
1863 rb_ary_compact_bang(missing);
1864 RUBY_ASSERT(RARRAY_LEN(missing) == arg.missing_count, "missing_count=%ld but %ld", arg.missing_count, RARRAY_LEN(missing));
1865 RBASIC_SET_CLASS_RAW(missing, rb_cArray);
1866 rb_exc_raise(rb_keyword_error_new("missing", missing));
1867 }
1868 VALUE unknown_keywords = arg.unknown_keywords;
1869 if (UNLIKELY(!NIL_P(unknown_keywords))) {
1870 RBASIC_SET_CLASS_RAW(unknown_keywords, rb_cArray);
1871 rb_exc_raise(rb_keyword_error_new("unknown", unknown_keywords));
1872 }
1873
1874 return Qnil;
1875}
1876
1877/* :nodoc: */
1878static VALUE
1879rb_data_init_copy(VALUE copy, VALUE s)
1880{
1881 copy = rb_struct_init_copy(copy, s);
1882 RB_OBJ_FREEZE(copy);
1883 return copy;
1884}
1885
1886/*
1887 * call-seq:
1888 * with(**kwargs) -> instance
1889 *
1890 * Returns a shallow copy of +self+ --- the instance variables of
1891 * +self+ are copied, but not the objects they reference.
1892 *
1893 * If the method is supplied any keyword arguments, the copy will
1894 * be created with the respective field values updated to use the
1895 * supplied keyword argument values. Note that it is an error to
1896 * supply a keyword that the Data class does not have as a member.
1897 *
1898 * Point = Data.define(:x, :y)
1899 *
1900 * origin = Point.new(x: 0, y: 0)
1901 *
1902 * up = origin.with(x: 1)
1903 * right = origin.with(y: 1)
1904 * up_and_right = up.with(y: 1)
1905 *
1906 * p origin # #<data Point x=0, y=0>
1907 * p up # #<data Point x=1, y=0>
1908 * p right # #<data Point x=0, y=1>
1909 * p up_and_right # #<data Point x=1, y=1>
1910 *
1911 * out = origin.with(z: 1) # ArgumentError: unknown keyword: :z
1912 * some_point = origin.with(1, 2) # ArgumentError: expected keyword arguments, got positional arguments
1913 *
1914 */
1915
1916static VALUE
1917rb_data_with(int argc, const VALUE *argv, VALUE self)
1918{
1919 VALUE kwargs;
1920 rb_scan_args(argc, argv, "0:", &kwargs);
1921 if (NIL_P(kwargs)) {
1922 return self;
1923 }
1924
1925 VALUE h = rb_struct_to_h(self);
1926 rb_hash_update_by(h, kwargs, 0);
1927 return rb_class_new_instance_kw(1, &h, rb_obj_class(self), TRUE);
1928}
1929
1930/*
1931 * call-seq:
1932 * inspect -> string
1933 * to_s -> string
1934 *
1935 * Returns a string representation of +self+:
1936 *
1937 * Measure = Data.define(:amount, :unit)
1938 *
1939 * distance = Measure[10, 'km']
1940 *
1941 * p distance # uses #inspect underneath
1942 * #<data Measure amount=10, unit="km">
1943 *
1944 * puts distance # uses #to_s underneath, same representation
1945 * #<data Measure amount=10, unit="km">
1946 *
1947 */
1948
1949static VALUE
1950rb_data_inspect(VALUE s)
1951{
1952 return rb_exec_recursive(inspect_struct, s, rb_str_new2("#<data"));
1953}
1954
1955/*
1956 * call-seq:
1957 * self == other -> true or false
1958 *
1959 * Returns whether +other+ is the same class as +self+, and all members are
1960 * equal.
1961 *
1962 * Examples:
1963 *
1964 * Measure = Data.define(:amount, :unit)
1965 *
1966 * Measure[1, 'km'] == Measure[1, 'km'] #=> true
1967 * Measure[1, 'km'] == Measure[2, 'km'] #=> false
1968 * Measure[1, 'km'] == Measure[1, 'm'] #=> false
1969 *
1970 * Measurement = Data.define(:amount, :unit)
1971 * # Even though Measurement and Measure have the same "shape"
1972 * # their instances are never equal
1973 * Measure[1, 'km'] == Measurement[1, 'km'] #=> false
1974 */
1975
1976#define rb_data_equal rb_struct_equal
1977
1978/*
1979 * call-seq:
1980 * self.eql?(other) -> true or false
1981 *
1982 * Equality check that is used when two items of data are keys of a Hash.
1983 *
1984 * The subtle difference with #== is that members are also compared with their
1985 * #eql? method, which might be important in some cases:
1986 *
1987 * Measure = Data.define(:amount, :unit)
1988 *
1989 * Measure[1, 'km'] == Measure[1.0, 'km'] #=> true, they are equal as values
1990 * # ...but...
1991 * Measure[1, 'km'].eql? Measure[1.0, 'km'] #=> false, they represent different hash keys
1992 *
1993 * See also Object#eql? for further explanations of the method usage.
1994 */
1995
1996#define rb_data_eql rb_struct_eql
1997
1998/*
1999 * call-seq:
2000 * hash -> integer
2001 *
2002 * Redefines Object#hash (used to distinguish objects as Hash keys) so that
2003 * data objects of the same class with same content would have the same +hash+
2004 * value, and represented the same Hash key.
2005 *
2006 * Measure = Data.define(:amount, :unit)
2007 *
2008 * Measure[1, 'km'].hash == Measure[1, 'km'].hash #=> true
2009 * Measure[1, 'km'].hash == Measure[10, 'km'].hash #=> false
2010 * Measure[1, 'km'].hash == Measure[1, 'm'].hash #=> false
2011 * Measure[1, 'km'].hash == Measure[1.0, 'km'].hash #=> false
2012 *
2013 * # Structurally similar data class, but shouldn't be considered
2014 * # the same hash key
2015 * Measurement = Data.define(:amount, :unit)
2016 *
2017 * Measure[1, 'km'].hash == Measurement[1, 'km'].hash #=> false
2018 */
2019
2020#define rb_data_hash rb_struct_hash
2021
2022/*
2023 * call-seq:
2024 * to_h -> hash
2025 * to_h {|name, value| ... } -> hash
2026 *
2027 * Returns Hash representation of the data object.
2028 *
2029 * Measure = Data.define(:amount, :unit)
2030 * distance = Measure[10, 'km']
2031 *
2032 * distance.to_h
2033 * #=> {amount: 10, unit: "km"}
2034 *
2035 * Like Enumerable#to_h, if the block is provided, it is expected to
2036 * produce key-value pairs to construct a hash:
2037 *
2038 *
2039 * distance.to_h { |name, val| [name.to_s, val.to_s] }
2040 * #=> {"amount"=>"10", "unit"=>"km"}
2041 *
2042 * Note that there is a useful symmetry between #to_h and #initialize:
2043 *
2044 * distance2 = Measure.new(**distance.to_h)
2045 * #=> #<data Measure amount=10, unit="km">
2046 * distance2 == distance
2047 * #=> true
2048 */
2049
2050#define rb_data_to_h rb_struct_to_h
2051
2052/*
2053 * call-seq:
2054 * members -> array_of_symbols
2055 *
2056 * Returns the member names from +self+ as an array:
2057 *
2058 * Measure = Data.define(:amount, :unit)
2059 * distance = Measure[10, 'km']
2060 *
2061 * distance.members #=> [:amount, :unit]
2062 *
2063 */
2064
2065#define rb_data_members_m rb_struct_members_m
2066
2067/*
2068 * call-seq:
2069 * deconstruct -> array
2070 *
2071 * Returns the values in +self+ as an array, to use in pattern matching:
2072 *
2073 * Measure = Data.define(:amount, :unit)
2074 *
2075 * distance = Measure[10, 'km']
2076 * distance.deconstruct #=> [10, "km"]
2077 *
2078 * # usage
2079 * case distance
2080 * in n, 'km' # calls #deconstruct underneath
2081 * puts "It is #{n} kilometers away"
2082 * else
2083 * puts "Don't know how to handle it"
2084 * end
2085 * # prints "It is 10 kilometers away"
2086 *
2087 * Or, with checking the class, too:
2088 *
2089 * case distance
2090 * in Measure(n, 'km')
2091 * puts "It is #{n} kilometers away"
2092 * # ...
2093 * end
2094 */
2095
2096#define rb_data_deconstruct rb_struct_to_a
2097
2098/*
2099 * call-seq:
2100 * deconstruct_keys(array_of_names_or_nil) -> hash
2101 *
2102 * Returns a hash of the name/value pairs, to use in pattern matching.
2103 *
2104 * Measure = Data.define(:amount, :unit)
2105 *
2106 * distance = Measure[10, 'km']
2107 * distance.deconstruct_keys(nil) #=> {amount: 10, unit: "km"}
2108 * distance.deconstruct_keys([:amount]) #=> {amount: 10}
2109 *
2110 * # usage
2111 * case distance
2112 * in amount:, unit: 'km' # calls #deconstruct_keys underneath
2113 * puts "It is #{amount} kilometers away"
2114 * else
2115 * puts "Don't know how to handle it"
2116 * end
2117 * # prints "It is 10 kilometers away"
2118 *
2119 * Or, with checking the class, too:
2120 *
2121 * case distance
2122 * in Measure(amount:, unit: 'km')
2123 * puts "It is #{amount} kilometers away"
2124 * # ...
2125 * end
2126 */
2127
2128static VALUE
2129rb_data_deconstruct_keys(VALUE s, VALUE keys)
2130{
2131 return deconstruct_keys(s, keys, true);
2132}
2133
2134/*
2135 * Document-class: Struct
2136 *
2137 * Class \Struct provides a convenient way to create a simple class
2138 * that can store and fetch values.
2139 *
2140 * This example creates a subclass of +Struct+, <tt>Struct::Customer</tt>;
2141 * the first argument, a string, is the name of the subclass;
2142 * the other arguments, symbols, determine the _members_ of the new subclass.
2143 *
2144 * Customer = Struct.new('Customer', :name, :address, :zip)
2145 * Customer.name # => "Struct::Customer"
2146 * Customer.class # => Class
2147 * Customer.superclass # => Struct
2148 *
2149 * Corresponding to each member are two methods, a writer and a reader,
2150 * that store and fetch values:
2151 *
2152 * methods = Customer.instance_methods false
2153 * methods # => [:zip, :address=, :zip=, :address, :name, :name=]
2154 *
2155 * An instance of the subclass may be created,
2156 * and its members assigned values, via method <tt>::new</tt>:
2157 *
2158 * joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
2159 * joe # => #<struct Struct::Customer name="Joe Smith", address="123 Maple, Anytown NC", zip=12345>
2160 *
2161 * The member values may be managed thus:
2162 *
2163 * joe.name # => "Joe Smith"
2164 * joe.name = 'Joseph Smith'
2165 * joe.name # => "Joseph Smith"
2166 *
2167 * And thus; note that member name may be expressed as either a string or a symbol:
2168 *
2169 * joe[:name] # => "Joseph Smith"
2170 * joe[:name] = 'Joseph Smith, Jr.'
2171 * joe['name'] # => "Joseph Smith, Jr."
2172 *
2173 * See Struct::new.
2174 *
2175 * == What's Here
2176 *
2177 * First, what's elsewhere. Class \Struct:
2178 *
2179 * - Inherits from {class Object}[rdoc-ref:Object@Whats+Here].
2180 * - Includes {module Enumerable}[rdoc-ref:Enumerable@Whats+Here],
2181 * which provides dozens of additional methods.
2182 *
2183 * See also Data, which is a somewhat similar, but stricter concept for defining immutable
2184 * value objects.
2185 *
2186 * Here, class \Struct provides methods that are useful for:
2187 *
2188 * - {Creating a Struct Subclass}[rdoc-ref:Struct@Methods+for+Creating+a+Struct+Subclass]
2189 * - {Querying}[rdoc-ref:Struct@Methods+for+Querying]
2190 * - {Comparing}[rdoc-ref:Struct@Methods+for+Comparing]
2191 * - {Fetching}[rdoc-ref:Struct@Methods+for+Fetching]
2192 * - {Assigning}[rdoc-ref:Struct@Methods+for+Assigning]
2193 * - {Iterating}[rdoc-ref:Struct@Methods+for+Iterating]
2194 * - {Converting}[rdoc-ref:Struct@Methods+for+Converting]
2195 *
2196 * === Methods for Creating a Struct Subclass
2197 *
2198 * - ::new: Returns a new subclass of \Struct.
2199 *
2200 * === Methods for Querying
2201 *
2202 * - #hash: Returns the integer hash code.
2203 * - #size (aliased as #length): Returns the number of members.
2204 *
2205 * === Methods for Comparing
2206 *
2207 * - #==: Returns whether a given object is equal to +self+, using <tt>==</tt>
2208 * to compare member values.
2209 * - #eql?: Returns whether a given object is equal to +self+,
2210 * using <tt>eql?</tt> to compare member values.
2211 *
2212 * === Methods for Fetching
2213 *
2214 * - #[]: Returns the value associated with a given member name.
2215 * - #to_a (aliased as #values, #deconstruct): Returns the member values in +self+ as an array.
2216 * - #deconstruct_keys: Returns a hash of the name/value pairs
2217 * for given member names.
2218 * - #dig: Returns the object in nested objects that is specified
2219 * by a given member name and additional arguments.
2220 * - #members: Returns an array of the member names.
2221 * - #select (aliased as #filter): Returns an array of member values from +self+,
2222 * as selected by the given block.
2223 * - #values_at: Returns an array containing values for given member names.
2224 *
2225 * === Methods for Assigning
2226 *
2227 * - #[]=: Assigns a given value to a given member name.
2228 *
2229 * === Methods for Iterating
2230 *
2231 * - #each: Calls a given block with each member name.
2232 * - #each_pair: Calls a given block with each member name/value pair.
2233 *
2234 * === Methods for Converting
2235 *
2236 * - #inspect (aliased as #to_s): Returns a string representation of +self+.
2237 * - #to_h: Returns a hash of the member name/value pairs in +self+.
2238 *
2239 */
2240void
2241InitVM_Struct(void)
2242{
2243 rb_cStruct = rb_define_class("Struct", rb_cObject);
2245
2247 rb_define_singleton_method(rb_cStruct, "new", rb_struct_s_def, -1);
2248#if 0 /* for RDoc */
2249 rb_define_singleton_method(rb_cStruct, "keyword_init?", rb_struct_s_keyword_init_p, 0);
2250 rb_define_singleton_method(rb_cStruct, "members", rb_struct_s_members_m, 0);
2251#endif
2252
2253 rb_define_method(rb_cStruct, "initialize", rb_struct_initialize_m, -1);
2254 rb_define_method(rb_cStruct, "initialize_copy", rb_struct_init_copy, 1);
2255
2256 rb_define_method(rb_cStruct, "==", rb_struct_equal, 1);
2257 rb_define_method(rb_cStruct, "eql?", rb_struct_eql, 1);
2258 rb_define_method(rb_cStruct, "hash", rb_struct_hash, 0);
2259
2260 rb_define_method(rb_cStruct, "inspect", rb_struct_inspect, 0);
2261 rb_define_alias(rb_cStruct, "to_s", "inspect");
2262 rb_define_method(rb_cStruct, "to_a", rb_struct_to_a, 0);
2263 rb_define_method(rb_cStruct, "to_h", rb_struct_to_h, 0);
2264 rb_define_method(rb_cStruct, "values", rb_struct_to_a, 0);
2265 rb_define_method(rb_cStruct, "size", rb_struct_size, 0);
2266 rb_define_method(rb_cStruct, "length", rb_struct_size, 0);
2267
2268 rb_define_method(rb_cStruct, "each", rb_struct_each, 0);
2269 rb_define_method(rb_cStruct, "each_pair", rb_struct_each_pair, 0);
2270 rb_define_method(rb_cStruct, "[]", rb_struct_aref, 1);
2271 rb_define_method(rb_cStruct, "[]=", rb_struct_aset, 2);
2272 rb_define_method(rb_cStruct, "select", rb_struct_select, -1);
2273 rb_define_method(rb_cStruct, "filter", rb_struct_select, -1);
2274 rb_define_method(rb_cStruct, "values_at", rb_struct_values_at, -1);
2275
2276 rb_define_method(rb_cStruct, "members", rb_struct_members_m, 0);
2277 rb_define_method(rb_cStruct, "dig", rb_struct_dig, -1);
2278
2279 rb_define_method(rb_cStruct, "deconstruct", rb_struct_to_a, 0);
2280 rb_define_method(rb_cStruct, "deconstruct_keys", rb_struct_deconstruct_keys, 1);
2281
2282 rb_cData = rb_define_class("Data", rb_cObject);
2283
2284 rb_undef_method(CLASS_OF(rb_cData), "new");
2285 rb_undef_alloc_func(rb_cData);
2286 rb_define_singleton_method(rb_cData, "define", rb_data_s_def, -1);
2287
2288#if 0 /* for RDoc */
2289 rb_define_singleton_method(rb_cData, "members", rb_data_s_members_m, 0);
2290#endif
2291
2292 rb_define_method(rb_cData, "initialize", rb_data_initialize_m, -1);
2293 rb_define_method(rb_cData, "initialize_copy", rb_data_init_copy, 1);
2294
2295 rb_define_method(rb_cData, "==", rb_data_equal, 1);
2296 rb_define_method(rb_cData, "eql?", rb_data_eql, 1);
2297 rb_define_method(rb_cData, "hash", rb_data_hash, 0);
2298
2299 rb_define_method(rb_cData, "inspect", rb_data_inspect, 0);
2300 rb_define_alias(rb_cData, "to_s", "inspect");
2301 rb_define_method(rb_cData, "to_h", rb_data_to_h, 0);
2302
2303 rb_define_method(rb_cData, "members", rb_data_members_m, 0);
2304
2305 rb_define_method(rb_cData, "deconstruct", rb_data_deconstruct, 0);
2306 rb_define_method(rb_cData, "deconstruct_keys", rb_data_deconstruct_keys, 1);
2307
2308 rb_define_method(rb_cData, "with", rb_data_with, -1);
2309}
2310
2311#undef rb_intern
2312void
2313Init_Struct(void)
2314{
2315 id_members = rb_intern("__members__");
2316 id_back_members = rb_intern("__members_back__");
2317 id_keyword_init = rb_intern("__keyword_init__");
2318
2319 InitVM(Struct);
2320}
#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.
#define RB_OBJ_FREEZE
Just another name of rb_obj_freeze_inline.
Definition fl_type.h:91
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
Definition class.c:1608
VALUE rb_class_new(VALUE super)
Creates a new, anonymous class.
Definition class.c:789
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
Definition class.c:2854
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:1476
VALUE rb_class_inherited(VALUE super, VALUE klass)
Calls Class::inherited.
Definition class.c:1400
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
Definition class.c:2897
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
Definition class.c:2707
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:3187
int rb_keyword_given_p(void)
Determines if the current method is given a keyword argument.
Definition eval.c:1042
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition eval.c:1029
int rb_get_kwargs(VALUE keyword_hash, const ID *table, int required, int optional, VALUE *values)
Keyword argument deconstructor.
Definition class.c:2976
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1676
#define OBJ_INIT_COPY(obj, orig)
Old name of RB_OBJ_INIT_COPY.
Definition object.h:41
#define T_STRING
Old name of RUBY_T_STRING.
Definition value_type.h:78
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define OBJ_FROZEN
Old name of RB_OBJ_FROZEN.
Definition fl_type.h:133
#define rb_str_cat2
Old name of rb_str_cat_cstr.
Definition string.h:1684
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define T_STRUCT
Old name of RUBY_T_STRUCT.
Definition value_type.h:79
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
Definition fl_type.h:131
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
Definition assume.h:29
#define SYM2ID
Old name of RB_SYM2ID.
Definition symbol.h:45
#define FIX2UINT
Old name of RB_FIX2UINT.
Definition int.h:42
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:205
#define rb_ary_new4
Old name of rb_ary_new_from_values.
Definition array.h:659
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define FIX2INT
Old name of RB_FIX2INT.
Definition int.h:41
#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 LONG2NUM
Old name of RB_LONG2NUM.
Definition long.h:50
#define Qtrue
Old name of RUBY_Qtrue.
#define ST2FIX
Old name of RB_ST2FIX.
Definition st_data_t.h:33
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
Definition value_type.h:56
#define NIL_P
Old name of RB_NIL_P.
#define T_CLASS
Old name of RUBY_T_CLASS.
Definition value_type.h:58
#define NUM2LONG
Old name of RB_NUM2LONG.
Definition long.h:51
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#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:672
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1431
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
Definition error.c:468
VALUE rb_eIndexError
IndexError exception.
Definition error.c:1433
VALUE rb_class_superclass(VALUE klass)
Queries the parent of the given class.
Definition object.c:2295
VALUE rb_cArray
Array class.
VALUE rb_cObject
Object class.
Definition object.c:58
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
Definition object.c:2280
VALUE rb_class_new_instance_kw(int argc, const VALUE *argv, VALUE klass, int kw_splat)
Identical to rb_class_new_instance(), except you can specify how to handle the last element of the gi...
Definition object.c:2268
VALUE rb_mEnumerable
Enumerable module.
Definition enum.c:27
VALUE rb_cStruct
Struct class.
Definition struct.c:33
VALUE rb_class_new_instance_pass_kw(int argc, const VALUE *argv, VALUE klass)
Identical to rb_class_new_instance(), except it passes the passed keywords if any to the #initialize ...
Definition object.c:2257
int rb_eql(VALUE lhs, VALUE rhs)
Checks for equality of the passed objects, in terms of Object#eql?.
Definition object.c:151
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
Definition object.c:232
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
Definition object.c:657
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
Definition object.c:138
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
Definition object.c:894
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_ary_dup(VALUE ary)
Duplicates an array.
VALUE rb_get_values_at(VALUE obj, long olen, int argc, const VALUE *argv, VALUE(*func)(VALUE obj, long oidx))
This was a generalisation of Array#values_at, Struct#values_at, and MatchData#values_at.
VALUE rb_ary_new(void)
Allocates a new, empty array.
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_ary_entry(VALUE ary, long off)
Queries an element of an array.
VALUE rb_assoc_new(VALUE car, VALUE cdr)
Identical to rb_ary_new_from_values(), except it expects exactly two parameters.
void rb_mem_clear(VALUE *buf, long len)
Fills the memory region with a series of RUBY_Qnil.
VALUE rb_ary_join(VALUE ary, VALUE sep)
Recursively stringises the elements of the passed array, flattens that result, then joins the sequenc...
void rb_ary_store(VALUE ary, long key, VALUE val)
Destructively stores the passed value to the passed array's passed index.
#define RETURN_SIZED_ENUMERATOR(obj, argc, argv, size_fn)
This roughly resembles return enum_for(__callee__) unless block_given?.
Definition enumerator.h:208
#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
int rb_is_const_id(ID id)
Classifies the given ID, then sees if it is a constant.
Definition symbol.c:1233
int rb_is_local_id(ID id)
Classifies the given ID, then sees if it is a local variable.
Definition symbol.c:1263
#define rb_hash_uint(h, i)
Just another name of st_hash_uint.
Definition string.h:943
#define rb_hash_end(h)
Just another name of st_hash_end.
Definition string.h:946
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:3880
st_index_t rb_hash_start(st_index_t i)
Starts a series of hashing.
Definition random.c:1714
#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:1657
VALUE rb_struct_define_without_accessor_under(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc,...)
Identical to rb_struct_define_without_accessor(), except it defines the class under the specified nam...
Definition struct.c:466
VALUE rb_struct_define_under(VALUE space, const char *name,...)
Identical to rb_struct_define(), except it defines the class under the specified namespace instead of...
Definition struct.c:512
VALUE rb_struct_new(VALUE klass,...)
Creates an instance of the given struct.
Definition struct.c:874
VALUE rb_struct_initialize(VALUE self, VALUE values)
Mass-assigns a struct's fields.
Definition struct.c:813
VALUE rb_struct_define_without_accessor(const char *name, VALUE super, rb_alloc_func_t func,...)
Identical to rb_struct_define(), except it does not define accessor methods.
Definition struct.c:479
VALUE rb_struct_define(const char *name,...)
Defines a struct class.
Definition struct.c:492
VALUE rb_struct_alloc(VALUE klass, VALUE values)
Identical to rb_struct_new(), except it takes the field values as a Ruby array.
Definition struct.c:868
VALUE rb_data_define(VALUE super,...)
Defines an anonymous data class.
Definition struct.c:1738
VALUE rb_struct_alloc_noinit(VALUE klass)
Allocates an instance of the given class.
Definition struct.c:412
VALUE rb_struct_s_members(VALUE klass)
Queries the list of the names of the fields of the given struct class.
Definition struct.c:68
VALUE rb_struct_members(VALUE self)
Queries the list of the names of the fields of the class of the given struct object.
Definition struct.c:82
VALUE rb_struct_getmember(VALUE self, ID key)
Identical to rb_struct_aref(), except it takes ID instead of VALUE.
Definition struct.c:233
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_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
Definition variable.c:2059
VALUE rb_mod_remove_const(VALUE space, VALUE name)
Resembles Module#remove_const.
Definition variable.c:3513
VALUE rb_class_name(VALUE obj)
Queries the name of the given object's class.
Definition variable.c:514
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:3746
VALUE rb_class_path(VALUE mod)
Identical to rb_mod_name(), except it returns #<Class: ...> style inspection for anonymous modules.
Definition variable.c:394
VALUE(* rb_alloc_func_t)(VALUE klass)
This is the type of functions that ruby calls when trying to allocate an object.
Definition vm.h:219
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
Definition vm_method.c:1799
VALUE rb_mod_module_eval(int argc, const VALUE *argv, VALUE mod)
Identical to rb_obj_instance_eval(), except it evaluates within the context of module.
Definition vm_eval.c:2479
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
VALUE rb_check_symbol(volatile VALUE *namep)
Identical to rb_check_id(), except it returns an instance of rb_cSymbol instead.
Definition symbol.c:1346
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:1147
VALUE rb_to_symbol(VALUE name)
Identical to rb_intern_str(), except it generates a dynamic symbol if necessary.
Definition string.c:13271
ID rb_to_id(VALUE str)
Identical to rb_intern_str(), except it tries to convert the parameter object to an instance of rb_cS...
Definition string.c:13261
int off
Offset inside of ptr.
Definition io.h:5
int len
Length of the buffer.
Definition io.h:8
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:1401
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1378
#define rb_long2int
Just another name of rb_long2int_inline.
Definition long.h:62
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
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:50
static int RARRAY_LENINT(VALUE ary)
Identical to rb_array_len(), except it differs for the return type.
Definition rarray.h:280
static void RARRAY_ASET(VALUE ary, long i, VALUE v)
Assigns an object in an array.
Definition rarray.h:385
static VALUE * RARRAY_PTR(VALUE ary)
Wild use of a C pointer.
Definition rarray.h:365
#define RARRAY_AREF(a, i)
Definition rarray.h:402
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
Definition rarray.h:51
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
VALUE rb_str_to_str(VALUE obj)
Identical to rb_check_string_type(), except it raises exceptions in case of conversion failures.
Definition string.c:1798
VALUE rb_struct_aset(VALUE st, VALUE k, VALUE v)
Resembles Struct#[]=.
Definition struct.c:1294
VALUE rb_struct_size(VALUE st)
Returns the number of struct members.
Definition struct.c:1544
VALUE rb_struct_aref(VALUE st, VALUE k)
Resembles Struct#[].
Definition struct.c:1256
#define InitVM(ext)
This macro is for internal use.
Definition ruby.h:231
#define RB_PASS_KEYWORDS
Pass keywords, final argument must be a hash of keywords.
Definition scan_args.h:72
#define RTEST
This is an old name of RB_TEST.
Ruby's ordinal objects.
Definition robject.h:56
VALUE extended
When an object slot is too small or too complex to store instance variables inline,...
Definition robject.h:78
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 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