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

159 lines
3.9 KiB
C++
Raw Normal View History

#include "ruby_data.h"
#include "v8_data.h"
#include "generic_data.h"
2009-10-07 23:35:39 -04:00
#include <stdio.h>
typedef struct v8_context {
2009-10-08 23:27:41 -04:00
v8_context() : context(v8::Context::New()) {}
~v8_context() {
context.Dispose();
}
v8::Persistent<v8::Context> context;
} v8_context;
2009-10-07 23:35:39 -04:00
extern "C" {
void Init_v8();
2009-10-01 22:17:06 -04:00
}
2009-10-08 23:27:41 -04:00
VALUE v8_allocate(VALUE clazz);
void v8_mark(v8_context *s);
void v8_free(v8_context *s);
2009-10-01 22:17:06 -04:00
VALUE eval(VALUE self, VALUE javascript);
2009-10-07 23:35:39 -04:00
VALUE rb_mModule;
VALUE rb_cV8;
extern "C" {
void Init_v8() {
rb_mModule = rb_define_module("V8");
rb_cV8 = rb_define_class_under(rb_mModule, "Context", rb_cObject);
rb_define_alloc_func(rb_cV8, v8_allocate);
rb_define_method(rb_cV8, "eval", (VALUE(*)(...)) eval, 1);
}
}
2009-10-07 23:35:39 -04:00
VALUE v8_allocate(VALUE clazz) {
v8_context *s = new v8_context;
return Data_Wrap_Struct(clazz, v8_mark, v8_free, s);
}
2009-10-07 23:35:39 -04:00
void v8_mark(v8_context *s) {
// marked for gc?
}
2009-10-07 23:35:39 -04:00
void v8_free(v8_context *s) {
delete s;
}
2009-10-07 23:35:39 -04:00
VALUE eval(VALUE self, VALUE javascript) {
v8_context* s = 0;
Data_Get_Struct(self, struct v8_context, s);
v8::Context::Scope context_scope(s->context);
v8::HandleScope handle_scope;
RubyDataSource<StringDest, std::string> tostring;
const std::string text(tostring.push(javascript));
v8::Handle<v8::String> source = v8::String::New(text.c_str());
v8::Handle<v8::Script> script = v8::Script::Compile(source);
v8::Handle<v8::Value> local_result = script->Run();
V8HandleSource<RubyDest, VALUE> toValue;
return toValue.push(local_result);
}
2009-10-07 23:35:39 -04:00
2009-10-01 22:17:06 -04:00
// v8.c: In function Init_v8:
// v8.c:5: error: rb_mV8 undeclared (first use in this function)
// v8.c:5: error: (Each undeclared identifier is reported only once
// v8.c:5: error: for each function it appears in.)
// make: *** [v8.o] Error 1
// #include "glue.h"
//
// VALUE rb_mV8;
// VALUE rb_cContext;
//
//
// VALUE rv8_Context__dealloc(VALUE self) {
// printf("dealloc\n");
// void * context;
// Data_Get_Struct(self, void, context);
// return Qnil;
// }
//
// VALUE rv8_Context__alloc() {
// printf("alloc\n");
// void * context = cpp_v8_Context__new();
// VALUE instance = Data_Wrap_Struct(rb_cContext, -1, rv8_Context__dealloc, context);
// rb_obj_init(instance);
// return instance;
// }
//
// VALUE rv8_Context_pooh(VALUE self) {
// int * i;
// Data_Get_Struct(self, int , i);
// return INT2NUM(*i);
// }
//
// void Init_v8() {
// rb_mV8 = rb_define_module("V8");
// rb_cContext = rb_define_class_under(rb_mV8, "Context", rb_cObject);
// rb_define_alloc_func(rb_cContext, rv8_Context__alloc);
// }
// #include <v8.h>
// #include <stdio.h>
//
//
// using namespace v8;
//
// extern "C" {
// #include "ruby.h"
//
// VALUE rv8;
// VALUE rv8_Context;
//
// VALUE rv8_Context_new(...);
// VALUE rv8_Context_enter(VALUE self);
//
// VALUE rv8_Context__alloc(VALUE klass);
// void rv8_Context_free(VALUE robj);
//
// void Init_rchassis() {
// rv8 = rb_define_module("V8");
// rv8_Context = rb_define_class_under(rv8, "Context", rb_cObject);
// rb_define_alloc_func(rv8_Context, rv8_Context__alloc);
// rb_define_method(rv8_Context, "enter", rv8_Context_enter, 0);
// }
//
// VALUE rv8_Context__alloc(VALUE klass) {
// Persistent<Context> context = Context::New();
// VALUE robj = Data_Wrap_Struct(rv8_Context, -1, rv8_Context_free, &context);
// return robj;
// }
//
// VALUE rv8_Context_enter(VALUE self) {
//
// }
//
// void rv8_Context_free(VALUE robj) {
// Persistent<Context> * context;
// printf("Let my people go!");
// Data_Get_Struct(robj, Persistent<Context> , context);
// printf("Get my people!");
// context->Dispose();
// }
//
// // VALUE rv8_Context_open(...) {
// // HandleScope scopes;
// // Persistent<Context> context = Context::New();
// // Context::Scope scope(context);
// // VALUE result = rb_yield(Qnil);
// // context.Dispose();
// // return result;
// // }
2009-10-07 23:35:39 -04:00
// }