mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
38b69b6014
Now the function can be called when `mrb->jmp` is not set.
85 lines
1.4 KiB
C
85 lines
1.4 KiB
C
/*
|
|
** print.c - Kernel.#p
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#include <mruby.h>
|
|
#include <mruby/string.h>
|
|
#include <mruby/variable.h>
|
|
#include <mruby/error.h>
|
|
#include <mruby/presym.h>
|
|
#include <string.h>
|
|
|
|
#ifndef MRB_NO_STDIO
|
|
static void
|
|
printcstr(const char *str, size_t len, FILE *stream)
|
|
{
|
|
if (str) {
|
|
fwrite(str, len, 1, stream);
|
|
putc('\n', stream);
|
|
}
|
|
}
|
|
|
|
static void
|
|
printstr(mrb_value obj, FILE *stream)
|
|
{
|
|
if (mrb_string_p(obj)) {
|
|
printcstr(RSTRING_PTR(obj), RSTRING_LEN(obj), stream);
|
|
}
|
|
}
|
|
|
|
void
|
|
mrb_core_init_printabort(void)
|
|
{
|
|
static const char *str = "Failed mruby core initialization";
|
|
printcstr(str, strlen(str), stdout);
|
|
}
|
|
|
|
MRB_API void
|
|
mrb_p(mrb_state *mrb, mrb_value obj)
|
|
{
|
|
if (mrb_type(obj) == MRB_TT_EXCEPTION && mrb_obj_ptr(obj) == mrb->nomem_err) {
|
|
static const char *str = "Out of memory";
|
|
printcstr(str, strlen(str), stdout);
|
|
}
|
|
else {
|
|
printstr(mrb_inspect(mrb, obj), stdout);
|
|
}
|
|
}
|
|
|
|
|
|
MRB_API void
|
|
mrb_show_version(mrb_state *mrb)
|
|
{
|
|
printstr(mrb_const_get(mrb, mrb_obj_value(mrb->object_class), MRB_SYM(MRUBY_DESCRIPTION)), stdout);
|
|
}
|
|
|
|
MRB_API void
|
|
mrb_show_copyright(mrb_state *mrb)
|
|
{
|
|
printstr(mrb_const_get(mrb, mrb_obj_value(mrb->object_class), MRB_SYM(MRUBY_COPYRIGHT)), stdout);
|
|
}
|
|
|
|
#else
|
|
void
|
|
mrb_core_init_printabort(void)
|
|
{
|
|
}
|
|
|
|
MRB_API void
|
|
mrb_p(mrb_state *mrb, mrb_value obj)
|
|
{
|
|
}
|
|
|
|
MRB_API void
|
|
mrb_show_version(mrb_state *mrb)
|
|
{
|
|
}
|
|
|
|
MRB_API void
|
|
mrb_show_copyright(mrb_state *mrb)
|
|
{
|
|
}
|
|
#endif
|