* ext/strscan/strscan.c: use typed data with
onig_region_memsize(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9dccfb5513
commit
00e6c80221
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 15 14:48:35 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/strscan/strscan.c: use typed data with
|
||||||
|
onig_region_memsize().
|
||||||
|
|
||||||
Thu Dec 15 14:33:33 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Dec 15 14:33:33 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* error.c (rb_check_typeddata): refine error message with
|
* error.c (rb_check_typeddata): refine error message with
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
require 'mkmf'
|
require 'mkmf'
|
||||||
|
$INCFLAGS << " -I$(top_srcdir)"
|
||||||
create_makefile 'strscan'
|
create_makefile 'strscan'
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
#include "ruby/ruby.h"
|
#include "ruby/ruby.h"
|
||||||
#include "ruby/re.h"
|
#include "ruby/re.h"
|
||||||
#include "ruby/encoding.h"
|
#include "ruby/encoding.h"
|
||||||
|
#include "regint.h"
|
||||||
|
|
||||||
#define STRSCAN_VERSION "0.7.0"
|
#define STRSCAN_VERSION "0.7.0"
|
||||||
|
|
||||||
@ -51,7 +52,7 @@ struct strscanner
|
|||||||
#define EOS_P(s) ((s)->curr >= RSTRING_LEN(p->str))
|
#define EOS_P(s) ((s)->curr >= RSTRING_LEN(p->str))
|
||||||
|
|
||||||
#define GET_SCANNER(obj,var) do {\
|
#define GET_SCANNER(obj,var) do {\
|
||||||
Data_Get_Struct((obj), struct strscanner, (var));\
|
(var) = check_strscan(obj);\
|
||||||
if (NIL_P((var)->str)) rb_raise(rb_eArgError, "uninitialized StringScanner object");\
|
if (NIL_P((var)->str)) rb_raise(rb_eArgError, "uninitialized StringScanner object");\
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
@ -63,9 +64,10 @@ static VALUE infect _((VALUE str, struct strscanner *p));
|
|||||||
static VALUE extract_range _((struct strscanner *p, long beg_i, long end_i));
|
static VALUE extract_range _((struct strscanner *p, long beg_i, long end_i));
|
||||||
static VALUE extract_beg_len _((struct strscanner *p, long beg_i, long len));
|
static VALUE extract_beg_len _((struct strscanner *p, long beg_i, long len));
|
||||||
|
|
||||||
void check_strscan _((VALUE obj));
|
static struct strscanner *check_strscan _((VALUE obj));
|
||||||
static void strscan_mark _((struct strscanner *p));
|
static void strscan_mark _((void *p));
|
||||||
static void strscan_free _((struct strscanner *p));
|
static void strscan_free _((void *p));
|
||||||
|
static size_t strscan_memsize _((const void *p));
|
||||||
static VALUE strscan_s_allocate _((VALUE klass));
|
static VALUE strscan_s_allocate _((VALUE klass));
|
||||||
static VALUE strscan_initialize _((int argc, VALUE *argv, VALUE self));
|
static VALUE strscan_initialize _((int argc, VALUE *argv, VALUE self));
|
||||||
static VALUE strscan_init_copy _((VALUE vself, VALUE vorig));
|
static VALUE strscan_init_copy _((VALUE vself, VALUE vorig));
|
||||||
@ -157,18 +159,36 @@ extract_beg_len(struct strscanner *p, long beg_i, long len)
|
|||||||
======================================================================= */
|
======================================================================= */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
strscan_mark(struct strscanner *p)
|
strscan_mark(void *ptr)
|
||||||
{
|
{
|
||||||
|
struct strscanner *p = ptr;
|
||||||
rb_gc_mark(p->str);
|
rb_gc_mark(p->str);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
strscan_free(struct strscanner *p)
|
strscan_free(void *ptr)
|
||||||
{
|
{
|
||||||
|
struct strscanner *p = ptr;
|
||||||
onig_region_free(&(p->regs), 0);
|
onig_region_free(&(p->regs), 0);
|
||||||
ruby_xfree(p);
|
ruby_xfree(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static size_t
|
||||||
|
strscan_memsize(const void *ptr)
|
||||||
|
{
|
||||||
|
const struct strscanner *p = ptr;
|
||||||
|
size_t size = 0;
|
||||||
|
if (p) {
|
||||||
|
size = sizeof(*p) - sizeof(p->regs) + onig_region_memsize(&p->regs);
|
||||||
|
}
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const rb_data_type_t strscanner_type = {
|
||||||
|
"StringScanner",
|
||||||
|
{strscan_mark, strscan_free, strscan_memsize}
|
||||||
|
};
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
strscan_s_allocate(VALUE klass)
|
strscan_s_allocate(VALUE klass)
|
||||||
{
|
{
|
||||||
@ -179,7 +199,7 @@ strscan_s_allocate(VALUE klass)
|
|||||||
CLEAR_MATCH_STATUS(p);
|
CLEAR_MATCH_STATUS(p);
|
||||||
onig_region_init(&(p->regs));
|
onig_region_init(&(p->regs));
|
||||||
p->str = Qnil;
|
p->str = Qnil;
|
||||||
return Data_Wrap_Struct(klass, strscan_mark, strscan_free, p);
|
return TypedData_Wrap_Struct(klass, &strscanner_type, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -194,7 +214,7 @@ strscan_initialize(int argc, VALUE *argv, VALUE self)
|
|||||||
struct strscanner *p;
|
struct strscanner *p;
|
||||||
VALUE str, need_dup;
|
VALUE str, need_dup;
|
||||||
|
|
||||||
Data_Get_Struct(self, struct strscanner, p);
|
p = check_strscan(self);
|
||||||
rb_scan_args(argc, argv, "11", &str, &need_dup);
|
rb_scan_args(argc, argv, "11", &str, &need_dup);
|
||||||
StringValue(str);
|
StringValue(str);
|
||||||
p->str = str;
|
p->str = str;
|
||||||
@ -202,14 +222,10 @@ strscan_initialize(int argc, VALUE *argv, VALUE self)
|
|||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static struct strscanner *
|
||||||
check_strscan(VALUE obj)
|
check_strscan(VALUE obj)
|
||||||
{
|
{
|
||||||
if (TYPE(obj) != T_DATA || RDATA(obj)->dmark != (RUBY_DATA_FUNC)strscan_mark) {
|
return rb_check_typeddata(obj, &strscanner_type);
|
||||||
rb_raise(rb_eTypeError,
|
|
||||||
"wrong argument type %s (expected StringScanner)",
|
|
||||||
rb_obj_classname(obj));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -224,9 +240,8 @@ strscan_init_copy(VALUE vself, VALUE vorig)
|
|||||||
{
|
{
|
||||||
struct strscanner *self, *orig;
|
struct strscanner *self, *orig;
|
||||||
|
|
||||||
Data_Get_Struct(vself, struct strscanner, self);
|
self = check_strscan(vself);
|
||||||
check_strscan(vorig);
|
orig = check_strscan(vorig);
|
||||||
Data_Get_Struct(vorig, struct strscanner, orig);
|
|
||||||
if (self != orig) {
|
if (self != orig) {
|
||||||
self->flags = orig->flags;
|
self->flags = orig->flags;
|
||||||
self->str = orig->str;
|
self->str = orig->str;
|
||||||
@ -317,9 +332,8 @@ strscan_get_string(VALUE self)
|
|||||||
static VALUE
|
static VALUE
|
||||||
strscan_set_string(VALUE self, VALUE str)
|
strscan_set_string(VALUE self, VALUE str)
|
||||||
{
|
{
|
||||||
struct strscanner *p;
|
struct strscanner *p = check_strscan(self);
|
||||||
|
|
||||||
Data_Get_Struct(self, struct strscanner, p);
|
|
||||||
StringValue(str);
|
StringValue(str);
|
||||||
p->str = str;
|
p->str = str;
|
||||||
p->curr = 0;
|
p->curr = 0;
|
||||||
@ -1067,7 +1081,7 @@ strscan_inspect(VALUE self)
|
|||||||
long len;
|
long len;
|
||||||
VALUE a, b;
|
VALUE a, b;
|
||||||
|
|
||||||
Data_Get_Struct(self, struct strscanner, p);
|
p = check_strscan(self);
|
||||||
if (NIL_P(p->str)) {
|
if (NIL_P(p->str)) {
|
||||||
len = snprintf(buf, BUFSIZE, "#<%s (uninitialized)>",
|
len = snprintf(buf, BUFSIZE, "#<%s (uninitialized)>",
|
||||||
rb_class2name(CLASS_OF(self)));
|
rb_class2name(CLASS_OF(self)));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user