mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
json/parser: typed data
* ext/json/parser/parser.rl (JSON_Parser_type): turn into typed data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bdfc2e2942
commit
1e46f02394
3 changed files with 41 additions and 10 deletions
|
@ -2100,8 +2100,9 @@ static JSON_Parser *JSON_allocate(void)
|
|||
return json;
|
||||
}
|
||||
|
||||
static void JSON_mark(JSON_Parser *json)
|
||||
static void JSON_mark(void *ptr)
|
||||
{
|
||||
JSON_Parser *json = ptr;
|
||||
rb_gc_mark_maybe(json->Vsource);
|
||||
rb_gc_mark_maybe(json->create_id);
|
||||
rb_gc_mark_maybe(json->object_class);
|
||||
|
@ -2109,16 +2110,30 @@ static void JSON_mark(JSON_Parser *json)
|
|||
rb_gc_mark_maybe(json->match_string);
|
||||
}
|
||||
|
||||
static void JSON_free(JSON_Parser *json)
|
||||
static void JSON_free(void *ptr)
|
||||
{
|
||||
JSON_Parser *json = ptr;
|
||||
fbuffer_free(json->fbuffer);
|
||||
ruby_xfree(json);
|
||||
}
|
||||
|
||||
static size_t JSON_memsize(const void *ptr)
|
||||
{
|
||||
const JSON_Parser *json = ptr;
|
||||
return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
|
||||
}
|
||||
|
||||
static const rb_data_type_t JSON_Parser_type = {
|
||||
"JSON/Parser",
|
||||
{JSON_mark, JSON_free, JSON_memsize,},
|
||||
NULL, NULL,
|
||||
RUBY_TYPED_FREE_IMMEDIATELY,
|
||||
};
|
||||
|
||||
static VALUE cJSON_parser_s_allocate(VALUE klass)
|
||||
{
|
||||
JSON_Parser *json = JSON_allocate();
|
||||
return Data_Wrap_Struct(klass, JSON_mark, JSON_free, json);
|
||||
return TypedData_Wrap_Struct(klass, &JSON_Parser_type, json);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue