mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include "rr.h"
|
|
#include "v8_external.h"
|
|
|
|
#include "v8_handle.h"
|
|
#include "v8_value.h"
|
|
using namespace v8;
|
|
|
|
namespace {
|
|
VALUE ExternalClass;
|
|
VALUE references;
|
|
|
|
VALUE New(VALUE self, VALUE value) {
|
|
HandleScope scope;
|
|
return rr_v8_handle_new(self, External::New((void*)value));
|
|
}
|
|
VALUE Unwrap(VALUE self, VALUE value) {
|
|
HandleScope scope;
|
|
if (rb_obj_is_kind_of(value, self)) {
|
|
return (VALUE)External::Unwrap(rr_v8_handle<External>(self));
|
|
} else {
|
|
rb_raise(rb_eArgError, "cannot unwrap %s. It is not a kind of %s", RSTRING_PTR(rb_class_name(rb_class_of(value))), RSTRING_PTR(rb_class_name(self)));
|
|
return Qnil;
|
|
}
|
|
}
|
|
VALUE _Value(VALUE self) {
|
|
HandleScope scope;
|
|
return (VALUE)rr_v8_handle<External>(self)->Value();
|
|
}
|
|
}
|
|
|
|
void rr_init_v8_external() {
|
|
ExternalClass = rr_define_class("External", rr_v8_value_class());
|
|
rr_define_singleton_method(ExternalClass, "New", New, 1);
|
|
rr_define_singleton_method(ExternalClass, "Unwrap", Unwrap, 1);
|
|
rr_define_method(ExternalClass, "Value", _Value, 0);
|
|
}
|
|
|
|
VALUE rr_reflect_v8_external(Handle<Value> external) {
|
|
return rr_v8_handle_new(ExternalClass, external);
|
|
}
|