2011-01-24 17:00:55 -05:00
|
|
|
#include "ruby.h"
|
2013-07-11 07:17:59 -04:00
|
|
|
#include "ruby/encoding.h"
|
2011-01-24 17:00:55 -05:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
bug_str_cstr_term(VALUE str)
|
|
|
|
{
|
|
|
|
long len;
|
|
|
|
char *s;
|
2013-07-11 07:17:59 -04:00
|
|
|
int c;
|
|
|
|
rb_encoding *enc;
|
|
|
|
|
2011-01-24 17:00:55 -05:00
|
|
|
rb_str_modify(str);
|
|
|
|
len = RSTRING_LEN(str);
|
|
|
|
RSTRING_PTR(str)[len] = 'x';
|
|
|
|
s = StringValueCStr(str);
|
|
|
|
rb_gc();
|
2013-07-11 07:17:59 -04:00
|
|
|
enc = rb_enc_get(str);
|
|
|
|
c = rb_enc_codepoint(&s[len], &s[len+rb_enc_mbminlen(enc)], enc);
|
|
|
|
return INT2NUM(c);
|
2011-01-24 17:00:55 -05:00
|
|
|
}
|
|
|
|
|
2014-11-04 20:54:22 -05:00
|
|
|
static VALUE
|
|
|
|
bug_str_cstr_term_char(VALUE str)
|
|
|
|
{
|
|
|
|
long len;
|
|
|
|
char *s;
|
|
|
|
int c;
|
|
|
|
rb_encoding *enc = rb_enc_get(str);
|
|
|
|
|
|
|
|
RSTRING_GETMEM(str, s, len);
|
2015-01-25 21:00:43 -05:00
|
|
|
s += len;
|
|
|
|
len = rb_enc_mbminlen(enc);
|
|
|
|
c = rb_enc_precise_mbclen(s, s + len, enc);
|
|
|
|
if (!MBCLEN_CHARFOUND_P(c)) {
|
|
|
|
c = (unsigned char)*s;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = rb_enc_mbc_to_codepoint(s, s + len, enc);
|
2015-01-26 23:09:04 -05:00
|
|
|
if (!c) return Qnil;
|
2015-01-25 21:00:43 -05:00
|
|
|
}
|
2015-01-26 23:09:04 -05:00
|
|
|
return rb_enc_uint_chr((unsigned int)c, enc);
|
2014-11-04 20:54:22 -05:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:00:56 -05:00
|
|
|
static VALUE
|
|
|
|
bug_str_s_cstr_term_char(VALUE self, VALUE str)
|
|
|
|
{
|
|
|
|
Check_Type(str, T_STRING);
|
|
|
|
return bug_str_cstr_term_char(str);
|
|
|
|
}
|
|
|
|
|
2011-01-24 17:00:55 -05:00
|
|
|
void
|
|
|
|
Init_cstr(VALUE klass)
|
|
|
|
{
|
|
|
|
rb_define_method(klass, "cstr_term", bug_str_cstr_term, 0);
|
2014-11-04 20:54:22 -05:00
|
|
|
rb_define_method(klass, "cstr_term_char", bug_str_cstr_term_char, 0);
|
2015-01-25 21:00:56 -05:00
|
|
|
rb_define_singleton_method(klass, "cstr_term_char", bug_str_s_cstr_term_char, 1);
|
2011-01-24 17:00:55 -05:00
|
|
|
}
|