mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00
ruby.h: deprecate plain Data
* include/ruby/ruby.h (rb_data_object_alloc_deprecated): deprecate Data_Make_Struct and Data_Wrap_Struct. [EXPERIMENTAL] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2a8989d71c
commit
bb10a21346
5 changed files with 64 additions and 11 deletions
|
@ -1,23 +1,38 @@
|
|||
#include <ruby.h>
|
||||
|
||||
static size_t
|
||||
usr_size(const void *ptr)
|
||||
{
|
||||
return sizeof(int);
|
||||
}
|
||||
|
||||
static const rb_data_type_t usrmarshal_type = {
|
||||
"UsrMarshal",
|
||||
{0, RUBY_DEFAULT_FREE, usr_size,},
|
||||
NULL, NULL,
|
||||
RUBY_TYPED_FREE_IMMEDIATELY|RUBY_TYPED_WB_PROTECTED,
|
||||
};
|
||||
|
||||
static VALUE
|
||||
usr_alloc(VALUE klass)
|
||||
{
|
||||
int *p;
|
||||
return Data_Make_Struct(klass, int, 0, RUBY_DEFAULT_FREE, p);
|
||||
return TypedData_Make_Struct(klass, int, &usrmarshal_type, p);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
usr_init(VALUE self, VALUE val)
|
||||
{
|
||||
*(int *)DATA_PTR(self) = NUM2INT(val);
|
||||
int *ptr = Check_TypedStruct(self, &usrmarshal_type);
|
||||
*ptr = NUM2INT(val);
|
||||
return self;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
usr_value(VALUE self)
|
||||
{
|
||||
int val = *(int *)DATA_PTR(self);
|
||||
int *ptr = Check_TypedStruct(self, &usrmarshal_type);
|
||||
int val = *ptr;
|
||||
return INT2NUM(val);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue