1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/rr.cpp

190 lines
4.7 KiB
C++
Raw Normal View History

2010-05-08 12:58:43 -05:00
#include "rr.h"
2011-04-11 09:34:25 -05:00
#include "v8_context.h"
#include "v8_handle.h"
2010-05-11 12:41:07 -05:00
#include "v8_value.h"
2011-04-11 09:34:25 -05:00
#include "v8_object.h"
#include "v8_function.h"
2010-05-17 14:39:29 +03:00
#include "v8_array.h"
2011-04-11 09:34:25 -05:00
#include "v8_string.h"
#include "v8_date.h"
2011-04-11 09:34:25 -05:00
#include "v8_message.h"
2010-06-08 12:48:13 +03:00
#include "v8_external.h"
#include "v8_exception.h"
2010-05-11 12:41:07 -05:00
using namespace v8;
2010-05-08 12:58:43 -05:00
VALUE rr_define_class(const char *name, VALUE superclass) {
2010-05-08 12:58:43 -05:00
VALUE V8 = rb_define_module("V8");
VALUE V8_C = rb_define_module_under(V8, "C");
VALUE klass = rb_define_class_under(V8_C, name, superclass);
rb_funcall(klass, rb_intern("private_class_method"), 1, rb_str_new2("new"));
return klass;
}
VALUE rr_define_module(const char *name) {
VALUE V8 = rb_define_module("V8");
VALUE V8_C = rb_define_module_under(V8, "C");
return rb_define_module_under(V8_C, name);
}
2010-05-22 09:15:00 +03:00
VALUE rr_define_const(const char *name, VALUE value) {
VALUE V8 = rb_define_module("V8");
VALUE V8_C = rb_define_module_under(V8, "C");
rb_define_const(V8_C, name, value);
return value;
}
VALUE rr_const_get(const char *name) {
VALUE V8 = rb_define_module("V8");
VALUE V8_C = rb_define_module_under(V8, "C");
return rb_const_get(V8_C, rb_intern(name));
}
VALUE rr_define_finalizer(VALUE object, void* finalizer, VALUE data) {
VALUE finalizer_proc = rb_proc_new((VALUE (*)(...))finalizer, data);
rb_iv_set(finalizer_proc, "data", data);
VALUE ospace = rb_const_get(rb_cObject, rb_intern("ObjectSpace"));
rb_funcall(ospace, rb_intern("define_finalizer"), 2, object, finalizer_proc);
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Value> value) {
2010-05-22 09:15:00 +03:00
if (value.IsEmpty()) {
return rr_v8_value_empty();
2010-05-22 09:15:00 +03:00
}
2010-06-08 12:48:13 +03:00
if (value->IsUndefined() || value->IsNull()) {
2010-05-12 17:30:53 -05:00
return Qnil;
}
2010-06-08 12:48:13 +03:00
if (value->IsExternal()) {
return rr_reflect_v8_external(value);
}
2010-05-12 17:30:53 -05:00
if (value->IsUint32()) {
return UINT2NUM(value->Uint32Value());
}
if (value->IsInt32()) {
return INT2FIX(value->Int32Value());
}
if (value->IsBoolean()) {
return value->BooleanValue() ? Qtrue : Qfalse;
2010-05-12 17:30:53 -05:00
}
if (value->IsNumber()) {
return rb_float_new(value->NumberValue());
}
if (value->IsString()) {
return rr_reflect_v8_string(value);
}
if (value->IsFunction()) {
return rr_reflect_v8_function(value);
}
if (value->IsArray()) {
return rr_reflect_v8_array(value);
}
if (value->IsDate()) {
return rr_reflect_v8_date(value);
}
2010-05-12 17:30:53 -05:00
if (value->IsObject()) {
return rr_reflect_v8_object(value);
}
return rr_wrap_v8_value(value);
2010-05-11 12:41:07 -05:00
}
VALUE rr_v82rb(Handle<Message> value) {
return rr_reflect_v8_message(value);
}
VALUE rr_v82rb(Handle<StackTrace> value) {
return rr_reflect_v8_stacktrace(value);
}
VALUE rr_v82rb(Handle<StackFrame> value) {
return rr_reflect_v8_stackframe(value);
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Boolean> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Number> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<String> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Object> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
VALUE rr_v82rb(Handle<Array> value) {
return rr_v82rb((Handle<Value>)value);
}
2010-05-13 16:53:09 -05:00
VALUE rr_v82rb(v8::Handle<v8::Function> value) {
return rr_v82rb((Handle<Value>)value);
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Integer> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Uint32> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(Handle<Int32> value) {
return rr_v82rb((Handle<Value>)value);
2010-05-11 12:41:07 -05:00
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(bool value) {
2010-05-11 12:41:07 -05:00
return value ? Qtrue : Qfalse;
}
2010-05-12 17:30:53 -05:00
VALUE rr_v82rb(double value) {
return rb_float_new(value);
}
VALUE rr_v82rb(int64_t value) {
2010-08-24 11:36:37 -05:00
return LONG2NUM(value);
2010-05-12 17:30:53 -05:00
}
VALUE rr_v82rb(uint32_t value) {
return UINT2NUM(value);
}
VALUE rr_v82rb(int32_t value) {
return INT2FIX(value);
}
2010-05-11 12:41:07 -05:00
2010-05-13 16:53:09 -05:00
Handle<Value> rr_rb2v8(VALUE value) {
switch (TYPE(value)) {
case T_FIXNUM:
// TODO: use this conversion if value will fit in 32 bits.
// return Integer::New(FIX2LONG(value));
2010-05-13 16:53:09 -05:00
case T_FLOAT:
return Number::New(NUM2DBL(value));
case T_STRING:
return String::New(RSTRING_PTR(value), RSTRING_LEN(value));
case T_NIL:
return Null();
case T_TRUE:
return True();
case T_FALSE:
return False();
case T_DATA:
return rr_v8_handle<Value>(value);
case T_OBJECT:
case T_CLASS:
case T_ICLASS:
case T_MODULE:
case T_REGEXP:
case T_MATCH:
case T_ARRAY:
case T_HASH:
case T_STRUCT:
case T_BIGNUM:
case T_FILE:
case T_SYMBOL:
// case T_BLKTAG: (not in 1.9)
case T_UNDEF:
// case T_VARMAP: (not in 1.9)
// case T_SCOPE: (not in 1.9)
case T_NODE:
default:
2010-06-18 14:44:44 +03:00
rb_warn("unknown conversion to V8 for: %s", RSTRING_PTR(rb_inspect(value)));
return String::New("Undefined Conversion");
2010-05-13 16:53:09 -05:00
}
2010-06-18 14:44:44 +03:00
2010-05-13 16:53:09 -05:00
return Undefined();
}
2010-05-12 17:30:53 -05:00
// VALUE rr_v82rb(v8::ScriptData *data) {
2010-05-11 12:41:07 -05:00
// return rr_thunk(rr_wrap_script_data(data));
// }