2012-05-02 19:15:11 -04:00
|
|
|
#include "rr.h"
|
|
|
|
|
|
|
|
namespace rr {
|
2012-05-03 18:21:25 -04:00
|
|
|
|
|
|
|
VALUE String::Class;
|
|
|
|
|
|
|
|
void String::Init() {
|
|
|
|
rb_gc_register_address(&Class);
|
|
|
|
Class = ClassBuilder("String").
|
|
|
|
defineSingletonMethod("New", &New).
|
|
|
|
defineMethod("Utf8Value", &Utf8Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE String::New(VALUE StringClass, VALUE string) {
|
|
|
|
v8::HandleScope h;
|
|
|
|
return String::ToRuby(v8::String::New(RSTRING_PTR(string), (int)RSTRING_LEN(string)));
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE String::Utf8Value(VALUE self) {
|
|
|
|
v8::HandleScope h;
|
|
|
|
String str(self);
|
|
|
|
return rb_str_new(*v8::String::Utf8Value(str), str->Utf8Length());
|
2012-05-02 19:15:11 -04:00
|
|
|
}
|
|
|
|
|
2012-05-03 03:24:15 -04:00
|
|
|
VALUE String::ToRuby(v8::Handle<v8::String> string) {
|
2012-05-03 14:01:10 -04:00
|
|
|
return String::create(string, String::Class);
|
2012-05-03 03:24:15 -04:00
|
|
|
}
|
|
|
|
|
2012-05-03 14:01:10 -04:00
|
|
|
String::operator v8::Handle<v8::Value>() {
|
|
|
|
return this->GetHandle();
|
|
|
|
}
|
|
|
|
|
2012-05-03 17:34:51 -04:00
|
|
|
} //namespace rr
|