mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
include/ruby/internal/core/rbasic.h: add doxygen
Must not be a bad idea to improve documents. [ci skip]
This commit is contained in:
parent
9c4aa94a19
commit
a2b8f61cba
Notes:
git
2021-09-10 20:01:40 +09:00
2 changed files with 79 additions and 27 deletions
|
@ -31,22 +31,60 @@
|
||||||
#include "ruby/internal/value.h"
|
#include "ruby/internal/value.h"
|
||||||
#include "ruby/assert.h"
|
#include "ruby/assert.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convenient casting macro.
|
||||||
|
*
|
||||||
|
* @param obj Arbitrary Ruby object.
|
||||||
|
* @return The passed object casted to ::RBasic.
|
||||||
|
*/
|
||||||
#define RBASIC(obj) RBIMPL_CAST((struct RBasic *)(obj))
|
#define RBASIC(obj) RBIMPL_CAST((struct RBasic *)(obj))
|
||||||
#define RBASIC_CLASS RBASIC_CLASS
|
|
||||||
#define RVALUE_EMBED_LEN_MAX RVALUE_EMBED_LEN_MAX
|
|
||||||
|
|
||||||
/** @cond INTERNAL_MACRO */
|
/** @cond INTERNAL_MACRO */
|
||||||
|
#define RBASIC_CLASS RBASIC_CLASS
|
||||||
|
#define RBIMPL_RVALUE_EMBED_LEN_MAX 3
|
||||||
|
#define RVALUE_EMBED_LEN_MAX RVALUE_EMBED_LEN_MAX
|
||||||
#define RBIMPL_EMBED_LEN_MAX_OF(T) \
|
#define RBIMPL_EMBED_LEN_MAX_OF(T) \
|
||||||
RBIMPL_CAST((int)(sizeof(VALUE[RBIMPL_RVALUE_EMBED_LEN_MAX]) / (sizeof(T))))
|
RBIMPL_CAST((int)(sizeof(VALUE[RBIMPL_RVALUE_EMBED_LEN_MAX]) / (sizeof(T))))
|
||||||
/** @endcond */
|
/** @endcond */
|
||||||
|
|
||||||
#define RBIMPL_RVALUE_EMBED_LEN_MAX 3
|
/**
|
||||||
enum ruby_rvalue_flags { RVALUE_EMBED_LEN_MAX = RBIMPL_RVALUE_EMBED_LEN_MAX };
|
* This is an enum because GDB wants it (rather than a macro). People need not
|
||||||
|
* bother.
|
||||||
|
*/
|
||||||
|
enum ruby_rvalue_flags {
|
||||||
|
/** Max possible number of objects that can be embedded. */
|
||||||
|
RVALUE_EMBED_LEN_MAX = RBIMPL_RVALUE_EMBED_LEN_MAX
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruby's object's, base components. Every single ruby objects have them in
|
||||||
|
* common.
|
||||||
|
*/
|
||||||
struct
|
struct
|
||||||
RUBY_ALIGNAS(SIZEOF_VALUE)
|
RUBY_ALIGNAS(SIZEOF_VALUE)
|
||||||
RBasic {
|
RBasic {
|
||||||
VALUE flags; /**< @see enum ::ruby_fl_type. */
|
|
||||||
|
/**
|
||||||
|
* Per-object flags. Each ruby objects have their own characteristics
|
||||||
|
* apart from their classes. For instance whether an object is frozen or
|
||||||
|
* not is not controlled by its class. This is where such properties are
|
||||||
|
* stored.
|
||||||
|
*
|
||||||
|
* @see enum ::ruby_fl_type
|
||||||
|
*
|
||||||
|
* @note This is ::VALUE rather than an enum for alignment purpose. Back
|
||||||
|
* in the 1990s there were no such thing like `_Alignas` in C.
|
||||||
|
*/
|
||||||
|
VALUE flags;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class of an object. Every object has its class. Also, everything is an
|
||||||
|
* object in Ruby. This means classes are also objects. Classes have
|
||||||
|
* their own classes, classes of classes have their classes, too ... and
|
||||||
|
* it recursively continues forever.
|
||||||
|
*
|
||||||
|
* Also note the `const` qualifier. In ruby an object cannot "change" its
|
||||||
|
* class.
|
||||||
|
*/
|
||||||
const VALUE klass;
|
const VALUE klass;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -70,12 +108,46 @@ RBasic {
|
||||||
};
|
};
|
||||||
|
|
||||||
RBIMPL_SYMBOL_EXPORT_BEGIN()
|
RBIMPL_SYMBOL_EXPORT_BEGIN()
|
||||||
|
/**
|
||||||
|
* Make the object invisible from Ruby code.
|
||||||
|
*
|
||||||
|
* It is useful to let Ruby's GC manage your internal data structure -- The
|
||||||
|
* object keeps being managed by GC, but `ObjectSpace.each_object` never yields
|
||||||
|
* the object.
|
||||||
|
*
|
||||||
|
* Note that the object also lose a way to call a method on it.
|
||||||
|
*
|
||||||
|
* @param[out] obj A Ruby object.
|
||||||
|
* @return The passed object.
|
||||||
|
* @post The object is destructively modified to be invisible.
|
||||||
|
* @see rb_obj_reveal
|
||||||
|
*/
|
||||||
VALUE rb_obj_hide(VALUE obj);
|
VALUE rb_obj_hide(VALUE obj);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make a hidden object visible again.
|
||||||
|
*
|
||||||
|
* It is the caller's responsibility to pass the right `klass` which `obj`
|
||||||
|
* originally used to belong to.
|
||||||
|
*
|
||||||
|
* @param[out] obj A Ruby object.
|
||||||
|
* @param[in] klass Class of `obj`.
|
||||||
|
* @return Passed `obj`.
|
||||||
|
* @pre `obj` was previously hidden.
|
||||||
|
* @post `obj`'s class is `klass`.
|
||||||
|
* @see rb_obj_hide
|
||||||
|
*/
|
||||||
VALUE rb_obj_reveal(VALUE obj, VALUE klass); /* do not use this API to change klass information */
|
VALUE rb_obj_reveal(VALUE obj, VALUE klass); /* do not use this API to change klass information */
|
||||||
RBIMPL_SYMBOL_EXPORT_END()
|
RBIMPL_SYMBOL_EXPORT_END()
|
||||||
|
|
||||||
RBIMPL_ATTR_PURE_UNLESS_DEBUG()
|
RBIMPL_ATTR_PURE_UNLESS_DEBUG()
|
||||||
RBIMPL_ATTR_ARTIFICIAL()
|
RBIMPL_ATTR_ARTIFICIAL()
|
||||||
|
/**
|
||||||
|
* Queries the class of an object.
|
||||||
|
*
|
||||||
|
* @param[in] obj An object.
|
||||||
|
* @return Its class.
|
||||||
|
*/
|
||||||
static inline VALUE
|
static inline VALUE
|
||||||
RBASIC_CLASS(VALUE obj)
|
RBASIC_CLASS(VALUE obj)
|
||||||
{
|
{
|
||||||
|
|
20
object.c
20
object.c
|
@ -77,18 +77,6 @@ static VALUE rb_cFalseClass_to_s;
|
||||||
|
|
||||||
/*! \endcond */
|
/*! \endcond */
|
||||||
|
|
||||||
/*!
|
|
||||||
* Make the object invisible from Ruby code.
|
|
||||||
*
|
|
||||||
* It is useful to let Ruby's GC manage your internal data structure --
|
|
||||||
* The object keeps being managed by GC, but \c ObjectSpace.each_object
|
|
||||||
* never yields the object.
|
|
||||||
*
|
|
||||||
* Note that the object also lose a way to call a method on it.
|
|
||||||
*
|
|
||||||
* \param[in] obj a Ruby object
|
|
||||||
* \sa rb_obj_reveal
|
|
||||||
*/
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_obj_hide(VALUE obj)
|
rb_obj_hide(VALUE obj)
|
||||||
{
|
{
|
||||||
|
@ -98,14 +86,6 @@ rb_obj_hide(VALUE obj)
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
|
||||||
* Make a hidden object visible again.
|
|
||||||
*
|
|
||||||
* It is the caller's responsibility to pass the right \a klass
|
|
||||||
* which \a obj originally used to belong to.
|
|
||||||
*
|
|
||||||
* \sa rb_obj_hide
|
|
||||||
*/
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_obj_reveal(VALUE obj, VALUE klass)
|
rb_obj_reveal(VALUE obj, VALUE klass)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue