mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#include <ruby.h>
|
|
#include <v8.h>
|
|
#include "v8_ref.h"
|
|
#include "v8_func.h"
|
|
#include "v8_template.h"
|
|
#include "converters.h"
|
|
|
|
using namespace v8;
|
|
|
|
Handle<Value> RubyInvocationCallback(const Arguments& args) {
|
|
VALUE code = (VALUE)External::Unwrap(args.Data());
|
|
if (NIL_P(code)) {
|
|
return Null();
|
|
} else {
|
|
VALUE* arguments = new VALUE[args.Length()];
|
|
for(int c=0;c<args.Length(); ++c) {
|
|
Handle<Value> val = args[c];
|
|
arguments[c] = V82RB(val);
|
|
}
|
|
|
|
VALUE result = rb_funcall2(code, rb_intern("call"), args.Length(), arguments);
|
|
delete [] arguments;
|
|
|
|
Handle<Value> convertedResult = RB2V8(result);
|
|
return convertedResult ;
|
|
}
|
|
}
|
|
|
|
VALUE v8_Template_Set(VALUE self, VALUE name, VALUE value) {
|
|
HandleScope handles;
|
|
Local<Template> tmpl = V8_Ref_Get<Template>(self);
|
|
Local<Data> data = V8_Ref_Get<Data>(value);
|
|
tmpl->Set(RSTRING(name)->ptr, data);
|
|
return Qnil;
|
|
}
|
|
|
|
VALUE v8_ObjectTemplate_New(VALUE clazz) {
|
|
HandleScope handles;
|
|
return V8_Ref_Create(clazz, ObjectTemplate::New());
|
|
}
|
|
|
|
VALUE v8_FunctionTemplate_New(int argc, VALUE *argv, VALUE self) {
|
|
VALUE code;
|
|
rb_scan_args(argc, argv, "00&", &code);
|
|
HandleScope handles;
|
|
Local<FunctionTemplate> t = FunctionTemplate::New(RubyInvocationCallback, External::Wrap((void *)code));
|
|
return V8_Ref_Create(self,t,code);
|
|
}
|
|
|
|
VALUE v8_FunctionTemplate_GetFunction(VALUE self) {
|
|
HandleScope handles;
|
|
Local<FunctionTemplate> t = V8_Ref_Get<FunctionTemplate>(self);
|
|
return V8_Wrap_Function(t->GetFunction());
|
|
}
|
|
|