Module: JSON::Ext::Generator::GeneratorMethods::String
- Defined in:
- ext/json/ext/generator/generator.c,
ext/json/ext/generator/generator.c
Overview
:nodoc:
Defined Under Namespace
Modules: Extend
Class Method Summary collapse
-
.included(modul) ⇒ Object
Extends modul with the String::Extend module.
Instance Method Summary collapse
-
#to_json(*) ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a JSON string encoded with UTF16 big endian characters as u????.
-
#to_json_raw(*args) ⇒ Object
This method creates a JSON text from the result of a call to to_json_raw_object of this String.
-
#to_json_raw_object ⇒ Object
This method creates a raw object hash, that can be nested into other data structures and will be generated as a raw string.
Class Method Details
.included(modul) ⇒ Object
Extends modul with the String::Extend module.
529 530 531 532 533 |
# File 'ext/json/ext/generator/generator.c', line 529
static VALUE mString_included_s(VALUE self, VALUE modul) {
VALUE result = rb_funcall(modul, i_extend, 1, mString_Extend);
rb_call_super(1, &modul);
return result;
}
|
Instance Method Details
#to_json(*) ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a JSON string encoded with UTF16 big endian characters as u????.
542 543 544 545 546 547 |
# File 'ext/json/ext/generator/generator.c', line 542
static VALUE mString_to_json(int argc, VALUE *argv, VALUE self)
{
rb_check_arity(argc, 0, 1);
VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
return cState_partial_generate(Vstate, self, generate_json_string);
}
|
#to_json_raw(*args) ⇒ Object
This method creates a JSON text from the result of a call to to_json_raw_object of this String.
573 574 575 576 577 578 |
# File 'ext/json/ext/generator/generator.c', line 573
static VALUE mString_to_json_raw(int argc, VALUE *argv, VALUE self)
{
VALUE obj = mString_to_json_raw_object(self);
Check_Type(obj, T_HASH);
return mHash_to_json(argc, argv, obj);
}
|
#to_json_raw_object ⇒ Object
This method creates a raw object hash, that can be nested into other data structures and will be generated as a raw string. This method should be used, if you want to convert raw strings to JSON instead of UTF-8 strings, e. g. binary data.
557 558 559 560 561 562 563 564 565 |
# File 'ext/json/ext/generator/generator.c', line 557
static VALUE mString_to_json_raw_object(VALUE self)
{
VALUE ary;
VALUE result = rb_hash_new();
rb_hash_aset(result, rb_funcall(mJSON, i_create_id, 0), rb_class_name(rb_obj_class(self)));
ary = rb_funcall(self, i_unpack, 1, rb_str_new2("C*"));
rb_hash_aset(result, rb_utf8_str_new_lit("raw"), ary);
return result;
}
|