2009-12-13 14:44:28 -05:00
|
|
|
#include <ruby.h>
|
|
|
|
#include <v8.h>
|
2009-12-09 19:40:31 -05:00
|
|
|
#include "v8_ref.h"
|
2009-12-18 02:48:06 -05:00
|
|
|
#include "v8_func.h"
|
2009-12-09 19:40:31 -05:00
|
|
|
#include "v8_template.h"
|
2009-12-13 14:44:28 -05:00
|
|
|
#include "converters.h"
|
2010-01-09 10:43:08 -05:00
|
|
|
#include "callbacks.h"
|
2009-12-09 19:40:31 -05:00
|
|
|
|
|
|
|
using namespace v8;
|
|
|
|
|
2009-12-11 12:11:05 -05:00
|
|
|
VALUE v8_Template_Set(VALUE self, VALUE name, VALUE value) {
|
2009-12-09 19:40:31 -05:00
|
|
|
HandleScope handles;
|
2009-12-13 10:08:55 -05:00
|
|
|
Local<Template> tmpl = V8_Ref_Get<Template>(self);
|
|
|
|
Local<Data> data = V8_Ref_Get<Data>(value);
|
2009-12-09 19:40:31 -05:00
|
|
|
tmpl->Set(RSTRING(name)->ptr, data);
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2009-12-11 12:11:05 -05:00
|
|
|
VALUE v8_ObjectTemplate_New(VALUE clazz) {
|
2009-12-09 19:40:31 -05:00
|
|
|
HandleScope handles;
|
2009-12-11 12:11:05 -05:00
|
|
|
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;
|
2010-01-09 10:43:08 -05:00
|
|
|
Local<FunctionTemplate> t = FunctionTemplate::New(RacerRubyInvocationCallback, External::Wrap((void *)code));
|
2009-12-13 10:08:55 -05:00
|
|
|
return V8_Ref_Create(self,t,code);
|
2009-12-09 19:40:31 -05:00
|
|
|
}
|
|
|
|
|
2009-12-18 02:48:06 -05:00
|
|
|
VALUE v8_FunctionTemplate_GetFunction(VALUE self) {
|
|
|
|
HandleScope handles;
|
|
|
|
Local<FunctionTemplate> t = V8_Ref_Get<FunctionTemplate>(self);
|
|
|
|
return V8_Wrap_Function(t->GetFunction());
|
|
|
|
}
|
|
|
|
|