electron/native_mate/wrappable.cc

75 lines
2 KiB
C++
Raw Normal View History

2014-04-15 03:04:36 +00:00
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE.chromium file.
#include "native_mate/wrappable.h"
#include "base/logging.h"
2014-05-27 00:47:06 +00:00
#include "native_mate/dictionary.h"
2014-04-15 03:04:36 +00:00
#include "native_mate/object_template_builder.h"
namespace mate {
2014-04-16 03:58:17 +00:00
Wrappable::Wrappable() {
2014-04-15 03:04:36 +00:00
}
2014-04-16 03:58:17 +00:00
Wrappable::~Wrappable() {
2014-04-15 03:04:36 +00:00
MATE_PERSISTENT_RESET(wrapper_);
}
2014-04-16 03:58:17 +00:00
void Wrappable::Wrap(v8::Isolate* isolate, v8::Handle<v8::Object> wrapper) {
if (!wrapper_.IsEmpty())
return;
MATE_SET_INTERNAL_FIELD_POINTER(wrapper, 0, this);
MATE_PERSISTENT_ASSIGN(v8::Object, isolate, wrapper_, wrapper);
MATE_PERSISTENT_SET_WEAK(wrapper_, this, WeakCallback);
2014-05-27 00:47:06 +00:00
// Call object._init if we have one.
v8::Handle<v8::Function> init;
if (Dictionary(isolate, wrapper).Get("_init", &init))
init->Call(wrapper, 0, NULL);
}
2014-04-16 03:58:17 +00:00
// static
void Wrappable::BuildPrototype(v8::Isolate* isolate,
v8::Handle<v8::ObjectTemplate> prototype) {
}
ObjectTemplateBuilder Wrappable::GetObjectTemplateBuilder(
2014-04-15 03:04:36 +00:00
v8::Isolate* isolate) {
return ObjectTemplateBuilder(isolate);
}
// static
2014-04-16 03:58:17 +00:00
MATE_WEAK_CALLBACK(Wrappable::WeakCallback, v8::Object, Wrappable) {
MATE_WEAK_CALLBACK_INIT(Wrappable);
2014-04-15 03:04:36 +00:00
delete self;
}
2014-04-16 03:58:17 +00:00
v8::Handle<v8::Object> Wrappable::GetWrapper(v8::Isolate* isolate) {
if (!wrapper_.IsEmpty())
2014-04-15 03:04:36 +00:00
return MATE_PERSISTENT_TO_LOCAL(v8::Object, isolate, wrapper_);
v8::Local<v8::ObjectTemplate> templ =
GetObjectTemplateBuilder(isolate).Build();
CHECK(!templ.IsEmpty());
CHECK_EQ(1, templ->InternalFieldCount());
v8::Handle<v8::Object> wrapper = templ->NewInstance();
Wrap(isolate, wrapper);
2014-04-15 03:04:36 +00:00
return wrapper;
}
namespace internal {
void* FromV8Impl(v8::Isolate* isolate, v8::Handle<v8::Value> val) {
if (!val->IsObject())
return NULL;
v8::Handle<v8::Object> obj = v8::Handle<v8::Object>::Cast(val);
return MATE_GET_INTERNAL_FIELD_POINTER(obj, 0);
}
} // namespace internal
} // namespace mate