Ruby 3.2.1p31 (2023-02-08 revision 31819e82c88c6f8ecfaeb162519bfa26a14b21fd)
ruby.h
Go to the documentation of this file.
1#ifndef RUBY_RUBY_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RUBY_RUBY_H 1
15#include "ruby/internal/config.h"
16
17/* @shyouhei doesn't understand why we need <intrinsics.h> at this very
18 * beginning of the entire <ruby.h> circus. */
19#ifdef HAVE_INTRINSICS_H
20# include <intrinsics.h>
21#endif
22
23#include <stdarg.h>
24
25#include "defines.h"
26#include "ruby/internal/abi.h"
29#include "ruby/internal/core.h"
30#include "ruby/internal/ctype.h"
32#include "ruby/internal/error.h"
33#include "ruby/internal/eval.h"
34#include "ruby/internal/event.h"
36#include "ruby/internal/gc.h"
37#include "ruby/internal/glob.h"
50#include "ruby/internal/value.h"
53#include "ruby/assert.h"
55#include "ruby/backward/2/inttypes.h"
56#include "ruby/backward/2/limits.h"
57
59
60/* Module#methods, #singleton_methods and so on return Symbols */
68#define USE_SYMBOL_AS_METHOD_NAME 1
69
81
91#define FilePathValue(v) (RB_GC_GUARD(v) = rb_get_path(v))
92
99
104#define FilePathStringValue(v) ((v) = rb_get_path(v))
105
107#if defined(HAVE_BUILTIN___BUILTIN_CONSTANT_P) && defined(HAVE_STMT_AND_DECL_IN_EXPR)
108# define rb_varargs_argc_check_runtime(argc, vargc) \
109 (((argc) <= (vargc)) ? (argc) : \
110 (rb_fatal("argc(%d) exceeds actual arguments(%d)", \
111 argc, vargc), 0))
112# define rb_varargs_argc_valid_p(argc, vargc) \
113 ((argc) == 0 ? (vargc) <= 1 : /* [ruby-core:85266] [Bug #14425] */ \
114 (argc) == (vargc))
115# if defined(HAVE_BUILTIN___BUILTIN_CHOOSE_EXPR_CONSTANT_P)
116# ifdef HAVE_ATTRIBUTE_ERRORFUNC
117ERRORFUNC((" argument length doesn't match"), int rb_varargs_bad_length(int,int));
118# else
119# define rb_varargs_bad_length(argc, vargc) \
120 ((argc)/rb_varargs_argc_valid_p(argc, vargc))
121# endif
122# define rb_varargs_argc_check(argc, vargc) \
123 __builtin_choose_expr(__builtin_constant_p(argc), \
124 (rb_varargs_argc_valid_p(argc, vargc) ? (argc) : \
125 rb_varargs_bad_length(argc, vargc)), \
126 rb_varargs_argc_check_runtime(argc, vargc))
127# else
128# define rb_varargs_argc_check(argc, vargc) \
129 rb_varargs_argc_check_runtime(argc, vargc)
130# endif
131#endif
141const char *rb_class2name(VALUE klass);
142
150const char *rb_obj_classname(VALUE obj);
151
162void rb_p(VALUE obj);
163
178VALUE rb_equal(VALUE lhs, VALUE rhs);
179
191VALUE rb_require(const char *feature);
192
193#include "ruby/intern.h"
194
202#define RUBY_VM 1 /* YARV */
203
211#define HAVE_NATIVETHREAD
212
223int ruby_native_thread_p(void);
224
230#define InitVM(ext) {void InitVM_##ext(void);InitVM_##ext();}
231
233RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 3, 4)
251int ruby_snprintf(char *str, size_t n, char const *fmt, ...);
252
254RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 3, 0)
272int ruby_vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
273
275#if RBIMPL_HAS_WARNING("-Wgnu-zero-variadic-macro-arguments")
276# /* Skip it; clang -pedantic doesn't like the following */
277#elif defined(__GNUC__) && defined(HAVE_VA_ARGS_MACRO) && defined(__OPTIMIZE__)
278# define rb_yield_values(argc, ...) \
279__extension__({ \
280 const int rb_yield_values_argc = (argc); \
281 const VALUE rb_yield_values_args[] = {__VA_ARGS__}; \
282 const int rb_yield_values_nargs = \
283 (int)(sizeof(rb_yield_values_args) / sizeof(VALUE)); \
284 rb_yield_values2( \
285 rb_varargs_argc_check(rb_yield_values_argc, rb_yield_values_nargs), \
286 rb_yield_values_nargs ? rb_yield_values_args : NULL); \
287 })
288
289# define rb_funcall(recv, mid, argc, ...) \
290__extension__({ \
291 const int rb_funcall_argc = (argc); \
292 const VALUE rb_funcall_args[] = {__VA_ARGS__}; \
293 const int rb_funcall_nargs = \
294 (int)(sizeof(rb_funcall_args) / sizeof(VALUE)); \
295 rb_funcallv(recv, mid, \
296 rb_varargs_argc_check(rb_funcall_argc, rb_funcall_nargs), \
297 rb_funcall_nargs ? rb_funcall_args : NULL); \
298 })
299#endif
302#ifndef RUBY_DONT_SUBST
303#include "ruby/subst.h"
304#endif
305
306#if !defined RUBY_EXPORT && !defined RUBY_NO_OLD_COMPATIBILITY
307# include "ruby/backward.h"
308#endif
309
311
312#endif /* RUBY_RUBY_H */
Function overloads to issue warnings around ANYARGS.
Conversion between C's arithmetic types and Ruby's numeric types.
Defines ASSUME / RB_LIKELY / UNREACHABLE.
Core data structures, definitions and manipulations.
Our own, locale independent, character handling routines.
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition: dllexport.h:106
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition: dllexport.h:97
Debugging and tracing APIs.
Defines enum ruby_fl_type.
#define RBIMPL_ATTR_FORMAT(x, y, z)
Wraps (or simulates) __attribute__((format))
Definition: format.h:29
Declares rb_glob().
Ruby-level global variables / constants, visible from C.
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
Definition: object.c:122
Defines RBIMPL_HAS_WARNING.
Declares rb_raise().
Declares rb_eval_string().
Registering values to the GC.
Creation and modification of Ruby methods.
Defines rb_intern.
Declares rb_define_variable().
Interpreter embedding APIs.
Block related APIs.
Memory management stuff.
Creation and modification of Ruby modules.
Defines NEWOBJ.
#define RBIMPL_ATTR_NONNULL(list)
Wraps (or simulates) __attribute__((nonnull))
Definition: nonnull.h:30
RGENGC write-barrier APIs.
VALUE rb_get_path(VALUE obj)
Converts an object to a path.
Definition: file.c:247
const char * rb_class2name(VALUE klass)
Queries the name of the passed class.
Definition: variable.c:313
VALUE rb_require(const char *feature)
Identical to rb_require_string(), except it takes C's string instead of Ruby's.
Definition: load.c:1306
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
Definition: variable.c:322
void rb_p(VALUE obj)
Inspects an object.
Definition: io.c:8968
int ruby_vsnprintf(char *str, size_t n, char const *fmt, va_list ap)
Identical to ruby_snprintf(), except it takes a va_list.
Definition: sprintf.c:1018
VALUE rb_get_path_no_checksafe(VALUE)
Definition: file.c:241
int ruby_native_thread_p(void)
Queries if the thread which calls this function is a ruby's thread.
Definition: thread.c:5411
int ruby_snprintf(char *str, size_t n, char const *fmt,...)
Our own locale-insensitive version of snprintf(3).
Definition: sprintf.c:1045
Compile-time static implementation of rb_scan_args().
Defines enum ruby_special_consts.
Defines old _.
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition: value.h:40
Defines enum ruby_value_type.