(34098b669c0cbc024cd08e686891f1dfe0a10aaf)
Defines rb_intern.
More...
Go to the source code of this file.
Defines rb_intern.
- Author
- Ruby developers ruby-.nosp@m.core.nosp@m.@ruby.nosp@m.-lan.nosp@m.g.org
- Copyright
- This file is a part of the programming language Ruby. Permission is hereby granted, to either redistribute and/or modify this file, provided that the conditions mentioned in the file COPYING are met. Consult the file for details.
- Warning
- Symbols prefixed with either
RBIMPL
or rbimpl
are implementation details. Don't take them as canon. They could rapidly appear then vanish. The name (path) of this header file is also an implementation detail. Do not expect it to persist at the place it is now. Developers are free to move it anywhere anytime at will.
- Note
- To ruby-core: remember that this header can be possibly recursively included from extension libraries written in C++. Do not expect for instance
__VA_ARGS__
is always available. We assume C99 for ruby itself but we don't assume languages of extension libraries. They could be written in C++98.
Definition in file symbol.h.
◆ RB_ID2SYM
◆ RB_SYM2ID
◆ RUBY_CONST_ID
#define RUBY_CONST_ID |
( |
|
var, |
|
|
|
str |
|
) |
| |
Value: do { \
(var) = rbimpl_intern_const(&rbimpl_id, (str)); \
} while (0)
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Old implementation detail of rb_intern().
- Deprecated:
- Does anyone use it? Preserved for backward compat.
Definition at line 322 of file symbol.h.
◆ RUBY_CONST_ID_CACHE
#define RUBY_CONST_ID_CACHE |
( |
|
result, |
|
|
|
str |
|
) |
| |
Value: { \
static ID rb_intern_id_cache; \
rbimpl_intern_const(&rb_intern_id_cache, (str)); \
result rb_intern_id_cache; \
}
Old implementation detail of rb_intern().
- Deprecated:
- Does anyone use it? Preserved for backward compat.
Definition at line 311 of file symbol.h.
◆ rb_check_id()
ID rb_check_id |
( |
volatile VALUE * |
namep | ) |
|
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:
bool does_interning_this_leak_memory(
VALUE obj)
{
auto tmp = obj;
return false;
}
else {
return true;
}
}
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
uintptr_t VALUE
Type that represents a Ruby object.
- Parameters
-
[in,out] | namep | A pointer to a name to query. |
- Precondition
- The object referred by
*namep
must either be an instance of rb_cSymbol, or an instance of rb_cString, or responds to #to_str
method.
- Exceptions
-
rb_eTypeError | Can't convert `*namep` into rb_cString. |
rb_eEncodingError | Given string is non-ASCII. |
- Return values
-
0 | No such id ever existed in the history. |
otherwise | The id that represents the given name. |
- Postcondition
- The object that
*namep
points to is a converted result object, which is always an instance of either rb_cSymbol or rb_cString.
- See also
- https://bugs.ruby-lang.org/issues/5072
Definition at line 1133 of file symbol.c.
Referenced by rb_f_untrace_var().
◆ rb_check_symbol()
Identical to rb_check_id(), except it returns an instance of rb_cSymbol instead.
- Parameters
-
[in,out] | namep | A pointer to a name to query. |
- Precondition
- The object referred by
*namep
must either be an instance of rb_cSymbol, or an instance of rb_cString, or responds to #to_str
method.
- Exceptions
-
rb_eTypeError | Can't convert `*namep` into rb_cString. |
rb_eEncodingError | Given string is non-ASCII. |
- Return values
-
RUBY_Qnil | No such id ever existed in the history. |
otherwise | The id that represents the given name. |
- Postcondition
- The object that
*namep
points to is a converted result object, which is always an instance of either rb_cSymbol or rb_cString.
- See also
- https://bugs.ruby-lang.org/issues/5072
Definition at line 1190 of file symbol.c.
◆ rb_id2name()
const char * rb_id2name |
( |
ID |
id | ) |
|
Retrieves the name mapped to the given id.
- Parameters
-
- Return values
-
NULL | Unknown id. |
otherwise | A name that the id represents. |
- Note
- The return value is managed by the interpreter. Don't pass it to free().
-
The underlying name can contain internal NUL bytes, so the return value might be a truncated representation due to the nature of C strings.
-
This C string is backed by an underlying Ruby string. The Ruby string may move during GC compaction which would make this C string point to invalid memory. Do not use the return value of this function after a potential GC entry point.
Definition at line 1008 of file symbol.c.
◆ rb_id2str()
Identical to rb_id2name(), except it returns a frozen Ruby String instead of a C String.
- Parameters
-
- Return values
-
RUBY_Qfalse | No such id ever existed in the history. |
otherwise | An instance of rb_cString with the name of id. |
Definition at line 1002 of file symbol.c.
◆ rb_id2sym()
Allocates an instance of rb_cSymbol that has the given id.
- Parameters
-
- Return values
-
RUBY_Qfalse | No such id ever existed in the history. |
Otherwise | An allocated rb_cSymbol instance. |
Definition at line 967 of file symbol.c.
◆ rb_intern()
ID rb_intern |
( |
const char * |
name | ) |
|
Finds or creates a symbol of the given name.
- Parameters
-
[in] | name | The name of the id. |
- Exceptions
-
rb_eRuntimeError | Too many symbols. |
- Returns
- A (possibly new) id whose value is the given name.
- Note
- These days Ruby internally has two kinds of symbols (static / dynamic). Symbols created using this function would become a static one; i.e. would never be garbage collected. It is up to you to avoid memory leaks. Think twice before using it.
Definition at line 839 of file symbol.c.
◆ rb_intern2()
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.
- Parameters
-
[in] | name | The name of the id. |
[in] | len | Length of name . |
- Exceptions
-
rb_eRuntimeError | Too many symbols. |
- Returns
- A (possibly new) id whose value is the given name.
- Note
- These days Ruby internally has two kinds of symbols (static/dynamic). Symbols created using this function would become static ones; i.e. would never be garbage collected. It is up to you to avoid memory leaks. Think twice before using it.
Definition at line 832 of file symbol.c.
◆ rb_intern_const()
static ID rb_intern_const |
( |
const char * |
str | ) |
|
|
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.
- Note
- This function also works happily for non-constant strings. Why bother then? Just apply liberally to everything.
-
But rb_intern() could be faster on compilers with statement expressions, because they can cache the created ID.
- Parameters
-
[in] | str | The name of the id. |
- Exceptions
-
rb_eRuntimeError | Too many symbols. |
- Returns
- A (possibly new) id whose value is the given str.
- Note
- These days Ruby internally has two kinds of symbols (static / dynamic). Symbols created using this function would become a static one; i.e. would never be garbage collected. It is up to you to avoid memory leaks. Think twice before using it.
Definition at line 284 of file symbol.h.
Referenced by Init_class_hierarchy(), and ruby_init_loadpath().
◆ rb_intern_str()
Identical to rb_intern(), except it takes an instance of rb_cString.
- Parameters
-
[in] | str | The name of the id. |
- Precondition
str
must either be an instance of rb_cSymbol, or an instance of rb_cString, or responds to #to_str
method.
- Exceptions
-
rb_eTypeError | Can't convert `str` into rb_cString. |
rb_eRuntimeError | Too many symbols. |
- Returns
- A (possibly new) id whose value is the given str.
- Note
- These days Ruby internally has two kinds of symbols (static/dynamic). Symbols created using this function would become static ones; i.e. would never be garbage collected. It is up to you to avoid memory leaks. Think twice before using it.
Definition at line 845 of file symbol.c.
◆ rb_sym2id()
◆ rb_sym2str()
◆ rb_to_id()
◆ rb_to_symbol()
Identical to rb_intern_str(), except it generates a dynamic symbol if necessary.
- Parameters
-
[in] | name | The name of the id. |
- Precondition
name
must either be an instance of rb_cSymbol, or an instance of rb_cString, or responds to #to_str
method.
- Exceptions
-
rb_eTypeError | Can't convert `name` into rb_cString. |
rb_eRuntimeError | Too many symbols. |
- Returns
- A (possibly new) id whose value is the given name.
- Note
- These days Ruby internally has two kinds of symbols (static/dynamic). Symbols created using this function would become dynamic ones; i.e. would be garbage collected. It could be safer for you to use it than alternatives, when applicable.
Definition at line 12489 of file string.c.