Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
src, test: fix up ObjectWrap, make test-addons
Browse files Browse the repository at this point in the history
V8 was upgraded from 3.22 to 3.24 in commit 1c7bf24.  Upgrade source
files in test/addons/ and automatically generated tests from
doc/api/addons.markdown to the new V8 API.

This coincidentally fixes a bug in src/node_object_wrap.h where it was
still using the old V8 weak persistent handle interface, which is gone
in 3.24.
  • Loading branch information
bnoordhuis authored and indutny committed Mar 13, 2014
1 parent d0ff900 commit 1f17f88
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 22 deletions.
22 changes: 11 additions & 11 deletions doc/api/addons.markdown
Expand Up @@ -160,8 +160,8 @@ function calls and return a result. This is the main and only needed source
return;
}

Local<Number> num = Number::New(args[0]->NumberValue() +
args[1]->NumberValue());
double value = args[0]->NumberValue() + args[1]->NumberValue();
Local<Number> num = Number::New(isolate, value);

args.GetReturnValue().Set(num);
}
Expand Down Expand Up @@ -197,7 +197,7 @@ there. Here's `addon.cc`:
Local<Function> cb = Local<Function>::Cast(args[0]);
const unsigned argc = 1;
Local<Value> argv[argc] = { String::NewFromUtf8(isolate, "hello world") };
cb->Call(Context::GetCurrent()->Global(), argc, argv);
cb->Call(isolate->GetCurrentContext()->Global(), argc, argv);
}

void Init(Handle<Object> exports, Handle<Object> module) {
Expand Down Expand Up @@ -236,7 +236,7 @@ the string passed to `createObject()`:
Isolate* isolate = Isolate::GetCurrent();
HandleScope scope(isolate);

Local<Object> obj = Object::New();
Local<Object> obj = Object::New(isolate);
obj->Set(String::NewFromUtf8(isolate, "msg"), args[0]->ToString());

args.GetReturnValue().Set(obj);
Expand Down Expand Up @@ -278,7 +278,7 @@ wraps a C++ function:
Isolate* isolate = Isolate::GetCurrent();
HandleScope scope(isolate);

Local<FunctionTemplate> tpl = FunctionTemplate::New(MyFunction);
Local<FunctionTemplate> tpl = FunctionTemplate::New(isolate, MyFunction);
Local<Function> fn = tpl->GetFunction();

// omit this to make it anonymous
Expand Down Expand Up @@ -366,7 +366,7 @@ prototype:
Isolate* isolate = Isolate::GetCurrent();

// Prepare constructor template
Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
Local<FunctionTemplate> tpl = FunctionTemplate::New(isolate, New);
tpl->SetClassName(String::NewFromUtf8(isolate, "MyObject"));
tpl->InstanceTemplate()->SetInternalFieldCount(1);

Expand Down Expand Up @@ -404,7 +404,7 @@ prototype:
MyObject* obj = ObjectWrap::Unwrap<MyObject>(args.This());
obj->value_ += 1;

args.GetReturnValue().Set(Number::New(obj->value_));
args.GetReturnValue().Set(Number::New(isolate, obj->value_));
}

Test it with:
Expand Down Expand Up @@ -494,7 +494,7 @@ The implementation is similar to the above in `myobject.cc`:
void MyObject::Init() {
Isolate* isolate = Isolate::GetCurrent();
// Prepare constructor template
Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
Local<FunctionTemplate> tpl = FunctionTemplate::New(isolate, New);
tpl->SetClassName(String::NewFromUtf8(isolate, "MyObject"));
tpl->InstanceTemplate()->SetInternalFieldCount(1);

Expand Down Expand Up @@ -542,7 +542,7 @@ The implementation is similar to the above in `myobject.cc`:
MyObject* obj = ObjectWrap::Unwrap<MyObject>(args.This());
obj->value_ += 1;

args.GetReturnValue().Set(Number::New(obj->value_));
args.GetReturnValue().Set(Number::New(isolate, obj->value_));
}

Test it with:
Expand Down Expand Up @@ -591,7 +591,7 @@ In the following `addon.cc` we introduce a function `add()` that can take on two
args[1]->ToObject());

double sum = obj1->value() + obj2->value();
args.GetReturnValue().Set(Number::New(sum));
args.GetReturnValue().Set(Number::New(isolate, sum));
}

void InitAll(Handle<Object> exports) {
Expand Down Expand Up @@ -650,7 +650,7 @@ The implementation of `myobject.cc` is similar as before:
Isolate* isolate = Isolate::GetCurrent();

// Prepare constructor template
Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
Local<FunctionTemplate> tpl = FunctionTemplate::New(isolate, New);
tpl->SetClassName(String::NewFromUtf8(isolate, "MyObject"));
tpl->InstanceTemplate()->SetInternalFieldCount(1);

Expand Down
15 changes: 9 additions & 6 deletions src/node_object_wrap.h
Expand Up @@ -82,7 +82,7 @@ class ObjectWrap {


inline void MakeWeak(void) {
persistent().MakeWeak(this, WeakCallback);
persistent().SetWeak(this, WeakCallback);
persistent().MarkIndependent();
}

Expand Down Expand Up @@ -116,13 +116,16 @@ class ObjectWrap {
int refs_; // ro

private:
static void WeakCallback(v8::Isolate* isolate,
v8::Persistent<v8::Object>* pobj,
ObjectWrap* wrap) {
static void WeakCallback(
const v8::WeakCallbackData<v8::Object, ObjectWrap>& data) {
v8::Isolate* isolate = data.GetIsolate();
v8::HandleScope scope(isolate);
ObjectWrap* wrap = data.GetParameter();
assert(wrap->refs_ == 0);
assert(*pobj == wrap->persistent());
assert((*pobj).IsNearDeath());
assert(wrap->handle_.IsNearDeath());
assert(
data.GetValue() == v8::Local<v8::Object>::New(isolate, wrap->handle_));
wrap->handle_.Reset();
delete wrap;
}

Expand Down
9 changes: 6 additions & 3 deletions test/addons/async-hello-world/binding.cc
Expand Up @@ -24,15 +24,18 @@ void AfterAsync(uv_work_t* r) {
HandleScope scope(isolate);
async_req* req = reinterpret_cast<async_req*>(r->data);

Handle<Value> argv[2] = { Null(), Integer::New(req->output) };
Handle<Value> argv[2] = {
Null(isolate),
Integer::New(isolate, req->output)
};

TryCatch try_catch;

Local<Function> callback = Local<Function>::New(isolate, req->callback);
callback->Call(Context::GetCurrent()->Global(), 2, argv);
callback->Call(isolate->GetCurrentContext()->Global(), 2, argv);

// cleanup
req->callback.Dispose();
req->callback.Reset();
delete req;

if (try_catch.HasCaught()) {
Expand Down
6 changes: 4 additions & 2 deletions test/addons/at-exit/binding.cc
Expand Up @@ -16,9 +16,11 @@ static int at_exit_cb1_called = 0;
static int at_exit_cb2_called = 0;

static void at_exit_cb1(void* arg) {
HandleScope scope(Isolate::GetCurrent());
// FIXME(bnoordhuis) Isolate::GetCurrent() is on its way out.
Isolate* isolate = Isolate::GetCurrent();
HandleScope handle_scope(isolate);
assert(arg == 0);
Local<Object> obj = Object::New();
Local<Object> obj = Object::New(isolate);
assert(!obj.IsEmpty()); // assert VM is still alive
assert(obj->IsObject());
at_exit_cb1_called++;
Expand Down

0 comments on commit 1f17f88

Please sign in to comment.