Ruby 3.4.5p51 (2025-07-16 revision 20cda200d3ce092571d0b5d342dadca69636cb0f)
|
#include "ruby/internal/config.h"
#include "ruby/internal/attr/noalias.h"
#include "ruby/internal/attr/nonnull.h"
#include "ruby/internal/attr/pure.h"
#include "ruby/internal/cast.h"
#include "ruby/internal/constant_p.h"
#include "ruby/internal/dllexport.h"
#include "ruby/internal/has/builtin.h"
#include "ruby/internal/value.h"
Go to the source code of this file.
Macros | |
#define | RB_ID2SYM rb_id2sym |
Just another name of rb_id2sym. | |
#define | RB_SYM2ID rb_sym2id |
Just another name of rb_sym2id. | |
#define | ID2SYM RB_ID2SYM |
Old name of RB_ID2SYM. | |
#define | SYM2ID RB_SYM2ID |
Old name of RB_SYM2ID. | |
#define | CONST_ID_CACHE RUBY_CONST_ID_CACHE |
Old name of RUBY_CONST_ID_CACHE. | |
#define | CONST_ID RUBY_CONST_ID |
Old name of RUBY_CONST_ID. | |
#define | RUBY_CONST_ID_CACHE(result, str) |
Old implementation detail of rb_intern(). | |
#define | RUBY_CONST_ID(var, str) |
Old implementation detail of rb_intern(). |
Functions | |
ID | rb_sym2id (VALUE obj) |
Converts an instance of rb_cSymbol into an ID. | |
VALUE | rb_id2sym (ID id) |
Allocates an instance of rb_cSymbol that has the given id. | |
ID | rb_intern (const char *name) |
Finds or creates a symbol of the given name. | |
ID | rb_intern2 (const char *name, long len) |
Identical to rb_intern(), except it additionally takes the length of the string. | |
ID | rb_intern_str (VALUE str) |
Identical to rb_intern(), except it takes an instance of rb_cString. | |
const char * | rb_id2name (ID id) |
Retrieves the name mapped to the given id. | |
ID | rb_check_id (volatile VALUE *namep) |
Detects if the given name is already interned or not. | |
ID | rb_to_id (VALUE str) |
VALUE | rb_id2str (ID id) |
Identical to rb_id2name(), except it returns a frozen Ruby String instead of a C String. | |
VALUE | rb_sym2str (VALUE symbol) |
Obtain a frozen string representation of a symbol (not including the leading colon). | |
VALUE | rb_to_symbol (VALUE name) |
Identical to rb_intern_str(), except it generates a dynamic symbol if necessary. | |
VALUE | rb_check_symbol (volatile VALUE *namep) |
Identical to rb_check_id(), except it returns an instance of rb_cSymbol instead. | |
static ID | rb_intern_const (const char *str) |
This is a "tiny optimisation" over rb_intern(). |
Defines rb_intern.
Definition in file symbol.h.
#define RUBY_CONST_ID | ( | var, | |
str ) |
Old implementation detail of rb_intern().
#define RUBY_CONST_ID_CACHE | ( | result, | |
str ) |
Old implementation detail of rb_intern().
Detects if the given name is already interned or not.
It first tries to convert the argument to an instance of rb_cString if it is neither an instance of rb_cString nor rb_cSymbol. The conversion result is written back to the variable. Then queries if that name was already interned before. If found it returns such id, otherwise zero.
We eventually introduced this API to avoid inadvertent symbol pin-down. Before, there was no way to know if an ID was already interned or not without actually creating one (== leaking memory). By using this API you can avoid such situations:
[in,out] | namep | A pointer to a name to query. |
rb_eTypeError | Can't convert `*namep` into rb_cString. |
rb_eEncodingError | Given string is non-ASCII. |
0 | No such id ever existed in the history. |
otherwise | The id that represents the given name. |
Definition at line 1118 of file symbol.c.
Referenced by rb_f_untrace_var().
Identical to rb_check_id(), except it returns an instance of rb_cSymbol instead.
[in,out] | namep | A pointer to a name to query. |
rb_eTypeError | Can't convert `*namep` into rb_cString. |
rb_eEncodingError | Given string is non-ASCII. |
RUBY_Qnil | No such id ever existed in the history. |
otherwise | The id that represents the given name. |
const char * rb_id2name | ( | ID | id | ) |
Retrieves the name mapped to the given id.
[in] | id | An id to query. |
NULL | Unknown id. |
otherwise | A name that the id represents. |
Identical to rb_id2name(), except it returns a frozen Ruby String instead of a C String.
[in] | id | An id to query. |
RUBY_Qfalse | No such id ever existed in the history. |
otherwise | An instance of rb_cString with the name of id. |
Allocates an instance of rb_cSymbol that has the given id.
[in] | id | An id. |
RUBY_Qfalse | No such id ever existed in the history. |
Otherwise | An allocated rb_cSymbol instance. |
ID rb_intern | ( | const char * | name | ) |
Finds or creates a symbol of the given name.
[in] | name | The name of the id. |
rb_eRuntimeError | Too many symbols. |
ID rb_intern2 | ( | const char * | name, |
long | len ) |
Identical to rb_intern(), except it additionally takes the length of the string.
This way you can have a symbol that contains NUL characters.
[in] | name | The name of the id. |
[in] | len | Length of name. |
rb_eRuntimeError | Too many symbols. |
Definition at line 817 of file symbol.c.
Referenced by rb_intern_const().
|
inlinestatic |
This is a "tiny optimisation" over rb_intern().
If you pass a string literal, and if your C compiler can special-case strlen of such literal to strength-reduce into an integer constant expression, then this inline function can precalc a part of conversion.
[in] | str | The name of the id. |
rb_eRuntimeError | Too many symbols. |
Definition at line 284 of file symbol.h.
Referenced by Init_class_hierarchy(), rb_intern_const(), and ruby_init_loadpath().
Identical to rb_intern(), except it takes an instance of rb_cString.
[in] | str | The name of the id. |
rb_eTypeError | Can't convert `str` into rb_cString. |
rb_eRuntimeError | Too many symbols. |
Converts an instance of rb_cSymbol into an ID.
[in] | obj | An instance of rb_cSymbol. |
rb_eTypeError | `obj` is not an instance of rb_cSymbol. |
Definition at line 918 of file symbol.c.
Referenced by rb_id_attrset(), and rb_intern3().
Obtain a frozen string representation of a symbol (not including the leading colon).
Done without any object allocations.
[in] | symbol | A rb_cSymbol instance to query. |
Definition at line 971 of file symbol.c.
Referenced by rb_enc_get_index(), rb_gc_latest_gc_info(), rb_gc_stat(), rb_str_format(), and rb_sym_to_s().
Definition at line 12472 of file string.c.
Referenced by rb_f_trace_var().
Identical to rb_intern_str(), except it generates a dynamic symbol if necessary.
[in] | name | The name of the id. |
rb_eTypeError | Can't convert `name` into rb_cString. |
rb_eRuntimeError | Too many symbols. |