6#include "eval_intern.h"
8#include "internal/box.h"
9#include "internal/dir.h"
10#include "internal/error.h"
11#include "internal/eval.h"
12#include "internal/file.h"
13#include "internal/hash.h"
14#include "internal/load.h"
15#include "internal/ruby_parser.h"
16#include "internal/thread.h"
17#include "internal/variable.h"
23#include "ractor_core.h"
26#define IS_RBEXT(e) (strcmp((e), ".rb") == 0)
27#define IS_SOEXT(e) (strcmp((e), ".so") == 0 || strcmp((e), ".o") == 0)
28#define IS_DLEXT(e) (strcmp((e), DLEXT) == 0)
35static const char *
const loadable_ext[] = {
40static const char *
const ruby_ext[] = {
58rb_construct_expanded_load_path(
rb_box_t *box,
enum expand_type
type,
int *has_relative,
int *has_non_cache)
60 VALUE load_path = box->load_path;
61 VALUE expanded_load_path = box->expanded_load_path;
68 VALUE path, as_str, expanded_path;
69 int is_string, non_cache;
73 non_cache = !is_string ? 1 : 0;
74 as_str = rb_get_path_check_to_string(path);
75 as_cstr = RSTRING_PTR(as_str);
78 if ((
type == EXPAND_RELATIVE &&
79 rb_is_absolute_path(as_cstr)) ||
80 (
type == EXPAND_HOME &&
81 (!as_cstr[0] || as_cstr[0] !=
'~')) ||
82 (
type == EXPAND_NON_CACHE)) {
88 if (!*has_relative && !rb_is_absolute_path(as_cstr))
90 if (!*has_non_cache && non_cache)
95 as_str = rb_get_path_check_convert(as_str);
96 expanded_path = rb_check_realpath(
Qnil, as_str, NULL);
97 if (
NIL_P(expanded_path)) expanded_path = as_str;
101 box->expanded_load_path = ary;
102 snapshot = box->load_path_snapshot;
103 load_path = box->load_path;
108get_expanded_load_path(
rb_box_t *box)
112 const VALUE load_path_snapshot = box->load_path_snapshot;
113 const VALUE load_path = box->load_path;
117 int has_relative = 0, has_non_cache = 0;
118 rb_construct_expanded_load_path(box, EXPAND_ALL, &has_relative, &has_non_cache);
120 box->load_path_check_cache = rb_dir_getwd_ospath();
122 else if (has_non_cache) {
124 box->load_path_check_cache = non_cache;
127 box->load_path_check_cache = 0;
130 else if ((check_cache = box->load_path_check_cache) == non_cache) {
131 int has_relative = 1, has_non_cache = 1;
133 rb_construct_expanded_load_path(box, EXPAND_NON_CACHE,
134 &has_relative, &has_non_cache);
136 else if (check_cache) {
137 int has_relative = 1, has_non_cache = 1;
138 VALUE cwd = rb_dir_getwd_ospath();
142 box->load_path_check_cache = cwd;
143 rb_construct_expanded_load_path(box, EXPAND_RELATIVE,
144 &has_relative, &has_non_cache);
148 rb_construct_expanded_load_path(box, EXPAND_HOME,
149 &has_relative, &has_non_cache);
152 return box->expanded_load_path;
156rb_get_expanded_load_path(
void)
158 return get_expanded_load_path((
rb_box_t *)rb_loading_box());
162load_path_getter(
ID _x,
VALUE * _y)
164 return rb_loading_box()->load_path;
168get_LOADED_FEATURES(
ID _x,
VALUE *_y)
170 return rb_loading_box()->loaded_features;
174reset_loaded_features_snapshot(
const rb_box_t *box)
176 VALUE snapshot = box->loaded_features_snapshot;
177 VALUE loaded_features = box->loaded_features;
182get_loaded_features_index_raw(
const rb_box_t *box)
184 return box->loaded_features_index;
188feature_key(
const char *str,
size_t len)
190 return st_hash(str,
len, 0xfea7009e);
194is_rbext_path(
VALUE feature_path)
196 long len = RSTRING_LEN(feature_path);
198 if (
len <= rbext_len)
return false;
199 return IS_RBEXT(RSTRING_PTR(feature_path) +
len - rbext_len);
202typedef rb_darray(
long) feature_indexes_t;
204struct features_index_add_single_args {
211features_index_add_single_callback(st_data_t *key, st_data_t *value, st_data_t raw_args,
int existing)
213 struct features_index_add_single_args *args = (
struct features_index_add_single_args *)raw_args;
215 VALUE offset = args->offset;
219 VALUE this_feature_index = *value;
222 VALUE loaded_features = box->loaded_features;
225 feature_indexes_t feature_indexes;
226 rb_darray_make(&feature_indexes, 2);
227 int top = (rb && !is_rbext_path(this_feature_path)) ? 1 : 0;
228 rb_darray_set(feature_indexes, top^0,
FIX2LONG(this_feature_index));
229 rb_darray_set(feature_indexes, top^1,
FIX2LONG(offset));
235 *value = (st_data_t)feature_indexes;
238 feature_indexes_t feature_indexes = (feature_indexes_t)this_feature_index;
242 VALUE loaded_features = box->loaded_features;
243 for (
size_t i = 0; i < rb_darray_size(feature_indexes); ++i) {
244 long idx = rb_darray_get(feature_indexes, i);
247 if (!is_rbext_path(this_feature_path)) {
254 rb_darray_append(&feature_indexes,
FIX2LONG(offset));
256 *value = (st_data_t)feature_indexes;
259 long *ptr = rb_darray_data_ptr(feature_indexes);
260 long len = rb_darray_size(feature_indexes);
261 MEMMOVE(ptr + pos + 1, ptr + pos,
long,
len - pos - 1);
274features_index_add_single(
const rb_box_t *box,
const char* str,
size_t len,
VALUE offset,
bool rb)
277 st_data_t short_feature_key;
280 short_feature_key = feature_key(str,
len);
282 features_index = get_loaded_features_index_raw(box);
284 struct features_index_add_single_args args = {
290 st_update(features_index, short_feature_key, features_index_add_single_callback, (st_data_t)&args);
306 const char *feature_str, *feature_end, *ext, *p;
310 feature_end = feature_str + RSTRING_LEN(feature);
312 for (ext = feature_end; ext > feature_str; ext--)
313 if (*ext ==
'.' || *ext ==
'/')
322 p = ext ? ext : feature_end;
325 while (p >= feature_str && *p !=
'/')
330 features_index_add_single(box, p + 1, feature_end - p - 1, offset,
false);
332 features_index_add_single(box, p + 1, ext - p - 1, offset, rb);
335 features_index_add_single(box, feature_str, feature_end - feature_str, offset,
false);
337 features_index_add_single(box, feature_str, ext - feature_str, offset, rb);
342loaded_features_index_clear_i(st_data_t key, st_data_t val, st_data_t arg)
346 rb_darray_free((
void *)obj);
352get_loaded_features_index(
const rb_box_t *box)
355 VALUE features = box->loaded_features;
356 const VALUE snapshot = box->loaded_features_snapshot;
361 st_foreach(box->loaded_features_index, loaded_features_index_clear_i, 0);
363 VALUE realpaths = box->loaded_features_realpaths;
364 VALUE realpath_map = box->loaded_features_realpath_map;
365 VALUE previous_realpath_map = rb_hash_dup(realpath_map);
366 rb_hash_clear(realpaths);
367 rb_hash_clear(realpath_map);
377 as_str = rb_fstring(as_str);
380 features_index_add(box, as_str,
INT2FIX(i));
386 reset_loaded_features_snapshot(box);
388 features = box->loaded_features_snapshot;
390 for (i = 0; i < j; i++) {
392 VALUE realpath = rb_hash_aref(previous_realpath_map, as_str);
393 if (
NIL_P(realpath)) {
394 realpath = rb_check_realpath(
Qnil, as_str, NULL);
395 if (
NIL_P(realpath)) realpath = as_str;
396 realpath = rb_fstring(realpath);
398 rb_hash_aset(realpaths, realpath,
Qtrue);
399 rb_hash_aset(realpath_map, as_str, realpath);
402 return box->loaded_features_index;
417loaded_feature_path(
const char *name,
long vlen,
const char *feature,
long len,
424 if (vlen <
len+1)
return 0;
425 if (strchr(feature,
'.') && !strncmp(name+(vlen-
len), feature,
len)) {
429 for (e = name + vlen; name != e && *e !=
'.' && *e !=
'/'; --e);
432 strncmp(e-
len, feature,
len))
434 plen = e - name -
len;
436 if (plen > 0 && name[plen-1] !=
'/') {
439 if (
type ==
's' ? !IS_DLEXT(&name[plen+
len]) :
440 type ==
'r' ? !IS_RBEXT(&name[plen+
len]) :
447 if (plen > 0) --plen;
451 long n = RSTRING_LEN(p);
453 if (n != plen)
continue;
454 if (n && strncmp(name, s, n))
continue;
469loaded_feature_path_i(st_data_t v, st_data_t b, st_data_t f)
471 const char *s = (
const char *)v;
473 VALUE p = loaded_feature_path(s, strlen(s), fp->name, fp->len,
474 fp->type, fp->load_path);
475 if (!p)
return ST_CONTINUE;
487rb_feature_p(
const rb_box_t *box,
const char *feature,
const char *ext,
int rb,
int expanded,
const char **fn)
489 VALUE features, this_feature_index =
Qnil, v, p, load_path = 0;
491 long i,
len, elen, n;
492 st_table *loading_tbl, *features_index;
500 len = strlen(feature) - elen;
501 type = rb ?
'r' :
's';
504 len = strlen(feature);
508 features = box->loaded_features;
509 features_index = get_loaded_features_index(box);
511 key = feature_key(feature, strlen(feature));
538 if (st_lookup(features_index, key, &data) && !
NIL_P(this_feature_index = (
VALUE)data)) {
539 for (
size_t i = 0; ; i++) {
543 index =
FIX2LONG(this_feature_index);
546 feature_indexes_t feature_indexes = (feature_indexes_t)this_feature_index;
547 if (i >= rb_darray_size(feature_indexes))
break;
548 index = rb_darray_get(feature_indexes, i);
554 if ((n = RSTRING_LEN(v)) <
len)
continue;
555 if (strncmp(f, feature,
len) != 0) {
556 if (expanded)
continue;
557 if (!load_path) load_path = get_expanded_load_path((
rb_box_t *)box);
558 if (!(p = loaded_feature_path(f, n, feature,
len,
type, load_path)))
561 f += RSTRING_LEN(p) + 1;
563 if (!*(e = f +
len)) {
567 if (*e !=
'.')
continue;
568 if ((!rb || !ext) && (IS_SOEXT(e) || IS_DLEXT(e))) {
571 if ((rb || !ext) && (IS_RBEXT(e))) {
577 loading_tbl = box->loading_table;
579 if (!expanded && !rb_is_absolute_path(feature)) {
584 fs.load_path = load_path ? load_path : get_expanded_load_path((
rb_box_t *)box);
586 st_foreach(loading_tbl, loaded_feature_path_i, (st_data_t)&fs);
587 if ((f = fs.result) != 0) {
592 if (st_get_key(loading_tbl, (st_data_t)feature, &data)) {
593 if (fn) *fn = (
const char*)data;
599 static const char so_ext[][4] = {
603 if (ext && *ext)
return 0;
605 buf = RSTRING_PTR(bufstr);
607 for (i = 0; (e = loadable_ext[i]) != 0; i++) {
608 strlcpy(buf +
len, e, DLEXT_MAXLEN + 1);
609 if (st_get_key(loading_tbl, (st_data_t)buf, &data)) {
610 rb_str_resize(bufstr, 0);
611 if (fn) *fn = (
const char*)data;
612 return i ?
's' :
'r';
615 for (i = 0; i < numberof(so_ext); i++) {
616 strlcpy(buf +
len, so_ext[i], DLEXT_MAXLEN + 1);
617 if (st_get_key(loading_tbl, (st_data_t)buf, &data)) {
618 rb_str_resize(bufstr, 0);
619 if (fn) *fn = (
const char*)data;
623 rb_str_resize(bufstr, 0);
628 if (!ext)
return 'u';
629 return !IS_RBEXT(ext) ?
's' :
'r';
639feature_provided(
rb_box_t *box,
const char *feature,
const char **loading)
641 const char *ext = strrchr(feature,
'.');
644 if (*feature ==
'.' &&
645 (feature[1] ==
'/' || strncmp(feature+1,
"./", 2) == 0)) {
646 fullpath = rb_file_expand_path_fast(rb_get_path(
rb_str_new2(feature)),
Qnil);
647 feature = RSTRING_PTR(fullpath);
649 if (ext && !strchr(ext,
'/')) {
651 if (rb_feature_p(box, feature, ext, TRUE, FALSE, loading))
return TRUE;
654 else if (IS_SOEXT(ext) || IS_DLEXT(ext)) {
655 if (rb_feature_p(box, feature, ext, FALSE, FALSE, loading))
return TRUE;
659 if (rb_feature_p(box, feature, 0, TRUE, FALSE, loading))
669 return feature_provided(box, feature, loading);
677 features = box->loaded_features;
680 "$LOADED_FEATURES is frozen; cannot append feature");
682 feature = rb_fstring(feature);
684 get_loaded_features_index(box);
691 reset_loaded_features_snapshot(box);
701 rb_provide_feature(rb_current_box(), rb_fstring_cstr(feature));
704NORETURN(
static void load_failed(
VALUE));
707realpath_internal_cached(
VALUE hash,
VALUE path)
709 VALUE ret = rb_hash_aref(hash, path);
714 VALUE realpath = rb_realpath_internal(
Qnil, path, 1);
715 rb_hash_aset(hash, rb_fstring(path), rb_fstring(realpath));
722 const rb_box_t *box = rb_loading_box();
723 const rb_iseq_t *iseq = rb_iseq_load_iseq(fname);
727 VALUE v = rb_vm_push_frame_fname(ec, fname);
729 VALUE realpath_map = box->loaded_features_realpath_map;
731 if (rb_ruby_prism_p()) {
734 result.
node.coverage_enabled = 1;
736 VALUE error = pm_load_parse_file(&result, fname, NULL);
740 iseq = pm_iseq_new_top(&result.
node, rb_fstring_lit(
"<top (required)>"), fname, realpath_internal_cached(realpath_map, fname), NULL, &error_state);
742 pm_parse_result_free(&result);
746 rb_jump_tag(error_state);
752 pm_parse_result_free(&result);
759 VALUE parser = rb_parser_new();
760 rb_parser_set_context(parser, NULL, FALSE);
761 ast_value = rb_parser_load_file(parser, fname);
762 ast = rb_ruby_ast_data_get(ast_value);
764 iseq = rb_iseq_new_top(ast_value, rb_fstring_lit(
"<top (required)>"),
765 fname, realpath_internal_cached(realpath_map, fname), NULL);
772 rb_exec_event_hook_script_compiled(ec, iseq,
Qnil);
774 rb_iseq_eval(iseq, box);
777static inline enum ruby_tag_type
780 enum ruby_tag_type state;
783 volatile VALUE wrapper = th->top_wrapper;
784 volatile VALUE self = th->top_self;
792 if (BOX_OBJ_P(load_wrapper)) {
793 box = rb_get_box_t(load_wrapper);
794 if (!box->top_self) {
797 th->top_self = box->top_self;
802 th->top_wrapper = load_wrapper;
806 state = EC_EXEC_TAG();
807 if (state == TAG_NONE) {
808 load_iseq_eval(ec, fname);
817 th->top_wrapper = wrapper;
825 rb_vm_jump_tag_but_local_jump(state);
828 if (!
NIL_P(ec->errinfo)) {
838 const rb_box_t *box = rb_loading_box();
839 enum ruby_tag_type state = TAG_NONE;
844 state = load_wrapping(ec, fname, wrap);
846 else if (BOX_OPTIONAL_P(box)) {
847 box_value = box->box_object;
848 state = load_wrapping(ec, fname, box_value);
851 load_iseq_eval(ec, fname);
853 raise_load_if_failed(ec, state);
860 if (!tmp) load_failed(fname);
861 rb_load_internal(tmp, RBOOL(wrap));
867 enum ruby_tag_type state;
869 EC_PUSH_TAG(GET_EC());
870 if ((state = EC_EXEC_TAG()) == TAG_NONE) {
875 if (state != TAG_NONE) *pstate = state;
879load_entrypoint_internal(
VALUE fname,
VALUE wrap)
881 VALUE path, orig_fname;
883 orig_fname = rb_get_path_check_to_string(fname);
884 fname = rb_str_encode_ospath(orig_fname);
885 RUBY_DTRACE_HOOK(LOAD_ENTRY, RSTRING_PTR(orig_fname));
887 path = rb_find_file(fname);
889 if (!rb_file_load_ok(RSTRING_PTR(fname)))
890 load_failed(orig_fname);
893 rb_load_internal(path, wrap);
895 RUBY_DTRACE_HOOK(LOAD_RETURN, RSTRING_PTR(orig_fname));
901rb_load_entrypoint(
VALUE args)
905 rb_bug(
"invalid arguments: %ld",
RARRAY_LEN(args));
909 return load_entrypoint_internal(fname, wrap);
947 return load_entrypoint_internal(fname, wrap);
951load_lock(
const rb_box_t *box,
const char *ftptr,
bool warn)
954 st_table *loading_tbl = box->loading_table;
956 if (!st_lookup(loading_tbl, (st_data_t)ftptr, &data)) {
959 data = (st_data_t)rb_thread_shield_new();
960 st_insert(loading_tbl, (st_data_t)ftptr, data);
961 return (
char *)ftptr;
964 if (warn && rb_thread_shield_owned((
VALUE)data)) {
965 VALUE warning = rb_warning_string(
"loading in progress, circular require considered harmful - %s", ftptr);
969 switch (rb_thread_shield_wait((
VALUE)data)) {
974 return (
char *)ftptr;
978release_thread_shield(st_data_t *key, st_data_t *value, st_data_t done,
int existing)
981 if (!existing)
return ST_STOP;
983 rb_thread_shield_destroy(thread_shield);
987 else if (rb_thread_shield_release(thread_shield)) {
996load_unlock(
const rb_box_t *box,
const char *ftptr,
int done)
999 st_data_t key = (st_data_t)ftptr;
1000 st_table *loading_tbl = box->loading_table;
1002 st_update(loading_tbl, key, release_thread_shield, done);
1006static VALUE rb_require_string_internal(
VALUE fname,
bool resurrect);
1052rb_require_relative_entrypoint(
VALUE fname)
1054 VALUE base = rb_current_realfilepath();
1058 base = rb_file_dirname(base);
1059 return rb_require_string_internal(rb_file_absolute_path(fname, base),
false);
1074 return rb_require_relative_entrypoint(fname);
1077typedef int (*feature_func)(
const rb_box_t *box,
const char *feature,
const char *ext,
int rb,
int expanded,
const char **fn);
1080search_required(
const rb_box_t *box,
VALUE fname,
volatile VALUE *path, feature_func rb_feature_p)
1085 const char *loading;
1088 ext = strrchr(ftptr = RSTRING_PTR(fname),
'.');
1089 if (ext && !strchr(ext,
'/')) {
1090 if (IS_RBEXT(ext)) {
1091 if (rb_feature_p(box, ftptr, ext, TRUE, FALSE, &loading)) {
1095 if ((tmp = rb_find_file(fname)) != 0) {
1096 ext = strrchr(ftptr = RSTRING_PTR(tmp),
'.');
1097 if (!rb_feature_p(box, ftptr, ext, TRUE, TRUE, &loading) || loading)
1103 else if (IS_SOEXT(ext)) {
1104 if (rb_feature_p(box, ftptr, ext, FALSE, FALSE, &loading)) {
1111 if ((tmp = rb_find_file(tmp)) != 0) {
1112 ext = strrchr(ftptr = RSTRING_PTR(tmp),
'.');
1113 if (!rb_feature_p(box, ftptr, ext, FALSE, TRUE, &loading) || loading)
1118 else if (IS_DLEXT(ext)) {
1119 if (rb_feature_p(box, ftptr, ext, FALSE, FALSE, &loading)) {
1123 if ((tmp = rb_find_file(fname)) != 0) {
1124 ext = strrchr(ftptr = RSTRING_PTR(tmp),
'.');
1125 if (!rb_feature_p(box, ftptr, ext, FALSE, TRUE, &loading) || loading)
1131 else if ((ft = rb_feature_p(box, ftptr, 0, FALSE, FALSE, &loading)) ==
'r') {
1136 const unsigned int type = rb_find_file_ext(&tmp, ft ==
's' ? ruby_ext : loadable_ext);
1140 if (!ft &&
type != loadable_ext_rb) {
1142 if (vm->static_ext_inits) {
1143 VALUE lookup_name = tmp;
1151 ftptr = RSTRING_PTR(lookup_name);
1152 if (st_lookup(vm->static_ext_inits, (st_data_t)ftptr, NULL)) {
1163 goto feature_present;
1164 ftptr = RSTRING_PTR(tmp);
1165 return rb_feature_p(box, ftptr, 0, FALSE, TRUE, 0);
1169 goto feature_present;
1172 case loadable_ext_rb:
1173 ext = strrchr(ftptr = RSTRING_PTR(tmp),
'.');
1174 if (rb_feature_p(box, ftptr, ext,
type == loadable_ext_rb, TRUE, &loading) && !loading)
1178 return type > loadable_ext_rb ?
's' :
'r';
1186load_failed(
VALUE fname)
1188 rb_load_fail(fname,
"cannot load such file");
1194 VALUE loaded = path;
1195 const rb_box_t *box = rb_loading_box();
1197 if (BOX_USER_P(box)) {
1198 loaded = rb_box_local_extension(box->box_object, fname, path, &cleanup);
1200 rb_scope_visibility_set(METHOD_VISI_PUBLIC);
1201 void *handle = dln_load_feature(RSTRING_PTR(loaded), RSTRING_PTR(fname));
1203 rb_box_cleanup_local_extension(cleanup);
1207 return (
VALUE)handle;
1211run_static_ext_init(
VALUE vm_ptr,
VALUE feature_value)
1214 const char *feature = RSTRING_PTR(feature_value);
1215 st_data_t key = (st_data_t)feature;
1216 st_data_t init_func;
1218 if (vm->static_ext_inits && st_delete(vm->static_ext_inits, &key, &init_func)) {
1219 ((void (*)(void))init_func)();
1226no_feature_p(
const rb_box_t *box,
const char *feature,
const char *ext,
int rb,
int expanded,
const char **fn)
1233rb_resolve_feature_path(
VALUE klass,
VALUE fname)
1238 const rb_box_t *box = rb_loading_box();
1240 fname = rb_get_path(fname);
1241 path = rb_str_encode_ospath(fname);
1242 found = search_required(box, path, &path, no_feature_p);
1246 sym =
ID2SYM(rb_intern(
"rb"));
1249 sym =
ID2SYM(rb_intern(
"so"));
1255 return rb_ary_new_from_args(2, sym, path);
1261 *prev = th->ext_config;
1268 th->ext_config = *prev;
1274 GET_THREAD()->ext_config.ractor_safe = flag;
1287 volatile int result = -1;
1289 const rb_box_t *box = rb_loading_box();
1290 volatile const struct {
1291 VALUE wrapper, self, errinfo;
1295 th->top_wrapper, th->top_self, ec->errinfo,
1298 enum ruby_tag_type state;
1299 char *
volatile ftptr = 0;
1301 volatile VALUE saved_path;
1302 volatile VALUE realpath = 0;
1303 VALUE realpaths = box->loaded_features_realpaths;
1304 VALUE realpath_map = box->loaded_features_realpath_map;
1305 volatile bool reset_ext_config =
false;
1308 path = rb_str_encode_ospath(fname);
1309 RUBY_DTRACE_HOOK(REQUIRE_ENTRY, RSTRING_PTR(fname));
1314 th->top_wrapper = 0;
1315 if ((state = EC_EXEC_TAG()) == TAG_NONE) {
1319 RUBY_DTRACE_HOOK(FIND_REQUIRE_ENTRY, RSTRING_PTR(fname));
1320 found = search_required(box, path, &saved_path, rb_feature_p);
1321 RUBY_DTRACE_HOOK(FIND_REQUIRE_RETURN, RSTRING_PTR(fname));
1325 if (!path || !(ftptr = load_lock(box, RSTRING_PTR(path), warn))) {
1329 result = TAG_RETURN;
1331 else if (found ==
's' &&
RTEST(rb_vm_call_cfunc_in_box(
Qnil, run_static_ext_init, (
VALUE)th->vm, path, path, box))) {
1332 result = TAG_RETURN;
1334 else if (
RTEST(rb_hash_aref(realpaths,
1335 realpath = realpath_internal_cached(realpath_map, path)))) {
1341 load_iseq_eval(saved.ec, path);
1345 reset_ext_config =
true;
1346 ext_config_push(th, &prev_ext_config);
1347 handle = rb_vm_call_cfunc_in_box(box->top_self, load_ext, path, fname, path, box);
1348 rb_hash_aset(box->ruby_dln_libmap, path, PTR2NUM(handle));
1351 result = TAG_RETURN;
1360 th2->top_self = saved.self;
1361 th2->top_wrapper = saved.wrapper;
1362 if (reset_ext_config) ext_config_pop(th2, &prev_ext_config);
1365 if (ftptr) load_unlock(box, RSTRING_PTR(path), !state);
1368 if (state == TAG_FATAL || state == TAG_THROW) {
1369 EC_JUMP_TAG(ec, state);
1371 else if (exception) {
1374 VALUE exc = rb_vm_make_jump_tag_but_local_jump(state,
Qundef);
1375 if (!
NIL_P(exc)) ec->errinfo = exc;
1378 else if (state == TAG_RETURN) {
1385 if (!
NIL_P(ec->errinfo)) {
1386 if (!exception)
return TAG_RAISE;
1390 if (result == TAG_RETURN) {
1391 rb_provide_feature(box, path);
1392 VALUE real = realpath;
1394 real = rb_fstring(real);
1395 rb_hash_aset(realpaths, real,
Qtrue);
1398 ec->errinfo = saved.errinfo;
1400 RUBY_DTRACE_HOOK(REQUIRE_RETURN, RSTRING_PTR(fname));
1406rb_require_internal_silent(
VALUE fname)
1408 if (!rb_ractor_main_p()) {
1409 return NUM2INT(rb_ractor_require(fname,
true));
1413 return require_internal(ec, fname, 1,
false);
1417rb_require_internal(
VALUE fname)
1424ruby_require_internal(
const char *fname,
unsigned int len)
1426 struct RString fake = {RBASIC_INIT};
1427 VALUE str = rb_setup_fake_str(&fake, fname,
len, 0);
1430 rb_set_errinfo(
Qnil);
1431 return result == TAG_RETURN ? 1 : result ? -1 : 0;
1437 return rb_require_string_internal(
FilePathValue(fname),
false);
1441rb_require_string_internal(
VALUE fname,
bool resurrect)
1446 if (!rb_ractor_main_p()) {
1448 return rb_ractor_require(fname,
false);
1453 if (result > TAG_RETURN) {
1454 EC_JUMP_TAG(ec, result);
1461 return RBOOL(result);
1468 struct RString fake = {RBASIC_INIT};
1469 VALUE str = rb_setup_fake_str(&fake, fname, strlen(fname), 0);
1470 return rb_require_string_internal(str,
true);
1474register_init_ext(st_data_t *key, st_data_t *value, st_data_t init,
int existing)
1476 const char *name = (
char *)*key;
1479 rb_warn(
"%s is already registered", name);
1482 *value = (st_data_t)init;
1491ruby_init_ext(
const char *name,
void (*init)(
void))
1495 const rb_box_t *box = rb_loading_box();
1497 if (feature_provided((
rb_box_t *)box, name, 0))
1500 inits_table = vm->static_ext_inits;
1502 inits_table = st_init_strtable();
1503 vm->static_ext_inits = inits_table;
1505 st_update(inits_table, (st_data_t)name, register_init_ext, (st_data_t)init);
1535 rb_autoload_str(mod,
id, file);
1566rb_mod_autoload_p(
int argc,
VALUE *argv,
VALUE mod)
1569 VALUE sym = argv[0];
1575 return rb_autoload_at_p(mod,
id, recur);
1601 rb_raise(
rb_eTypeError,
"Can not set autoload on singleton class");
1603 return rb_mod_autoload(klass, sym, file);
1630rb_f_autoload_p(
int argc,
VALUE *argv,
VALUE obj)
1633 VALUE klass = rb_vm_cbase();
1637 return rb_mod_autoload_p(argc, argv, klass);
1648 const rb_box_t *box = rb_loading_box();
1650 resolved = rb_resolve_feature_path((
VALUE)NULL, fname_str);
1651 if (
NIL_P(resolved)) {
1652 ext = strrchr(fname,
'.');
1653 if (!ext || !IS_SOEXT(ext)) {
1656 if (rb_feature_p(box, fname, 0, FALSE, FALSE, 0)) {
1657 return dln_symbol(NULL, symbol);
1665 handle = rb_hash_lookup(box->ruby_dln_libmap, path);
1666 if (
NIL_P(handle)) {
1669 return dln_symbol(NUM2PTR(handle), symbol);
1675 static const char var_load_path[] =
"$:";
1676 ID id_load_path = rb_intern2(var_load_path,
sizeof(var_load_path)-1);
1679 rb_gvar_box_ready(var_load_path);
1684 rb_gvar_box_ready(
"$\"");
1686 rb_gvar_box_ready(
"$LOADED_FEATURES");
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_global_function(mid, func, arity)
Defines rb_mKernel #mid.
void rb_extend_object(VALUE obj, VALUE module)
Extend the object with the module.
VALUE rb_module_new(void)
Creates a new, anonymous module.
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.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define T_STRING
Old name of RUBY_T_STRING.
#define xfree
Old name of ruby_xfree.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define OBJ_FROZEN
Old name of RB_OBJ_FROZEN.
#define rb_str_cat2
Old name of rb_str_cat_cstr.
#define ID2SYM
Old name of RB_ID2SYM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
#define T_FIXNUM
Old name of RUBY_T_FIXNUM.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define Qtrue
Old name of RUBY_Qtrue.
#define NUM2INT
Old name of RB_NUM2INT.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
#define NIL_P
Old name of RB_NIL_P.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
void rb_loaderror(const char *fmt,...)
Raises an instance of rb_eLoadError.
void rb_warning(const char *fmt,...)
Issues a warning.
VALUE rb_cModule
Module class.
VALUE rb_class_real(VALUE klass)
Finds a "real" class.
VALUE rb_obj_clone(VALUE obj)
Produces a shallow copy of the given object.
VALUE rb_ary_shared_with_p(VALUE lhs, VALUE rhs)
Queries if the passed two arrays share the same backend storage.
VALUE rb_ary_resurrect(VALUE ary)
I guess there is no use case of this function in extension libraries, but this is a routine identical...
VALUE rb_ary_replace(VALUE copy, VALUE orig)
Replaces the contents of the former object with the contents of the latter.
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_clear(VALUE ary)
Destructively removes everything form an array.
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_ary_freeze(VALUE obj)
Freeze an array, preventing further modifications.
VALUE rb_ary_entry(VALUE ary, long off)
Queries an element of an array.
void rb_ary_store(VALUE ary, long key, VALUE val)
Destructively stores the passed value to the passed array's passed index.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
void rb_provide(const char *feature)
Declares that the given feature is already provided by someone else.
VALUE rb_f_require(VALUE self, VALUE feature)
Identical to rb_require_string(), except it ignores the first argument for no reason.
void rb_ext_ractor_safe(bool flag)
Asserts that the extension library that calls this function is aware of Ractor.
VALUE rb_require_string(VALUE feature)
Finds and loads the given feature, if absent.
int rb_feature_provided(const char *feature, const char **loading)
Identical to rb_provided(), except it additionally returns the "canonical" name of the loaded feature...
void rb_load_protect(VALUE path, int wrap, int *state)
Identical to rb_load(), except it avoids potential global escapes.
int rb_provided(const char *feature)
Queries if the given feature has already been loaded into the execution context.
void rb_load(VALUE path, int wrap)
Loads and executes the Ruby program in the given file.
void * rb_ext_resolve_symbol(const char *feature, const char *symbol)
Resolves and returns a symbol of a function in the native extension specified by the feature and symb...
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
VALUE rb_str_tmp_new(long len)
Allocates a "temporary" string.
VALUE rb_str_subseq(VALUE str, long beg, long len)
Identical to rb_str_substr(), except the numbers are interpreted as byte offsets instead of character...
VALUE rb_str_dup(VALUE str)
Duplicates a string.
VALUE rb_str_resurrect(VALUE str)
Like rb_str_dup(), but always create an instance of rb_cString regardless of the given object's class...
VALUE rb_filesystem_str_new_cstr(const char *ptr)
Identical to rb_filesystem_str_new(), except it assumes the passed pointer is a pointer to a C string...
VALUE rb_str_equal(VALUE str1, VALUE str2)
Equality of two strings.
#define rb_strlen_lit(str)
Length of a string literal.
VALUE rb_str_freeze(VALUE str)
This is the implementation of String#freeze.
#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.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
void rb_alias_variable(ID dst, ID src)
Aliases a global variable.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
rb_gvar_setter_t rb_gvar_readonly_setter
This function just raises rb_eNameError.
int len
Length of the buffer.
char * ruby_strdup(const char *str)
This is our own version of strdup(3) that uses ruby_xmalloc() instead of system malloc (benefits our ...
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define MEMMOVE(p1, p2, type, n)
Handy macro to call memmove.
void rb_define_hooked_variable(const char *q, VALUE *w, type *e, void_type *r)
Define a function-backended global variable.
VALUE type(ANYARGS)
ANYARGS-ed function type.
void rb_define_virtual_variable(const char *q, type *w, void_type *e)
Define a function-backended global variable.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_AREF(a, i)
#define StringValue(v)
Ensures that the parameter object is a String.
#define StringValuePtr(v)
Identical to StringValue, except it returns a char*.
VALUE rb_require(const char *feature)
Identical to rb_require_string(), except it takes C's string instead of Ruby's.
#define FilePathValue(v)
Ensures that the parameter object is a path.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
int32_t line
The line within the file that the parse starts on.
pm_scope_node_t node
The resulting scope node that will hold the generated AST.
pm_options_t options
The options that will be passed to the parser.
Internal header for Ruby Box.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.