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

44 lines
1.3 KiB
C++
Raw Normal View History

2015-07-06 00:36:25 -05:00
#include "rr.h"
#include "external.h"
namespace rr {
void External::Init() {
ClassBuilder("External").
defineSingletonMethod("New", &New).
defineMethod("Value", &Value).
store(&Class);
}
VALUE External::New(VALUE self, VALUE r_isolate, VALUE object) {
Isolate isolate(r_isolate);
2015-07-06 01:19:59 -05:00
// as long as this external is alive within JavaScript, it should not be
// garbage collected by Ruby.
2015-07-06 00:36:25 -05:00
isolate.retainObject(object);
Locker lock(isolate);
2015-07-06 01:19:59 -05:00
// create the external.
2015-07-06 00:36:25 -05:00
Container* container = new Container(object);
v8::Local<v8::External> external(v8::External::New(isolate, (void*)container));
2015-07-06 01:19:59 -05:00
// next, we create a weak reference to this external so that we can be
// notified when V8 is done with it. At that point, we can let Ruby know
// that this external is done with it.
2015-07-06 00:36:25 -05:00
v8::Global<v8::External>* global(new v8::Global<v8::External>(isolate, external));
global->SetWeak<Container>(container, &release, v8::WeakCallbackType::kParameter);
2015-07-06 01:19:59 -05:00
container->global = global;
2015-07-06 00:36:25 -05:00
return External(isolate, external);
}
VALUE External::Value(VALUE self) {
External external(self);
Locker lock(external);
Container* container((Container*)external->Value());
return container->object;
}
}