electron/atom/common/api/atom_api_id_weak_map.cc

108 lines
2.8 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-04-25 13:46:04 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/common/api/atom_api_id_weak_map.h"
2013-04-25 13:46:04 +00:00
#include <algorithm>
2014-03-16 01:37:04 +00:00
#include "base/logging.h"
#include "native_mate/constructor.h"
#include "native_mate/object_template_builder.h"
#include "atom/common/node_includes.h"
2014-04-16 03:58:48 +00:00
2013-04-25 13:46:04 +00:00
namespace atom {
namespace api {
IDWeakMap::IDWeakMap()
: next_id_(0) {
2013-04-25 13:46:04 +00:00
}
IDWeakMap::~IDWeakMap() {
}
int32_t IDWeakMap::Add(v8::Isolate* isolate, v8::Handle<v8::Object> object) {
int32_t key = GetNextID();
object->SetHiddenValue(mate::StringToV8(isolate, "IDWeakMapKey"),
mate::Converter<int32_t>::ToV8(isolate, key));
2013-04-25 13:46:04 +00:00
map_[key] = new mate::RefCountedPersistent<v8::Object>(isolate, object);
map_[key]->SetWeak(this, WeakCallback);
return key;
2013-04-25 13:46:04 +00:00
}
v8::Handle<v8::Value> IDWeakMap::Get(v8::Isolate* isolate, int32_t key) {
if (!Has(key)) {
node::ThrowError("Invalid key");
return v8::Undefined(isolate);
}
2013-04-25 13:46:04 +00:00
return map_[key]->NewHandle();
2013-04-25 13:46:04 +00:00
}
bool IDWeakMap::Has(int32_t key) const {
return map_.find(key) != map_.end();
2013-04-25 13:46:04 +00:00
}
std::vector<int32_t> IDWeakMap::Keys() const {
std::vector<int32_t> keys;
keys.reserve(map_.size());
for (auto it = map_.begin(); it != map_.end(); ++it)
keys.push_back(it->first);
return keys;
}
void IDWeakMap::Remove(int32_t key) {
if (Has(key))
map_.erase(key);
else
LOG(WARNING) << "Object with key " << key << " is being GCed for twice.";
}
2013-04-25 13:46:04 +00:00
int IDWeakMap::GetNextID() {
return ++next_id_;
2013-04-25 13:46:04 +00:00
}
2014-04-16 03:58:48 +00:00
// static
void IDWeakMap::BuildPrototype(v8::Isolate* isolate,
v8::Handle<v8::ObjectTemplate> prototype) {
mate::ObjectTemplateBuilder(isolate, prototype)
.SetMethod("add", &IDWeakMap::Add)
.SetMethod("get", &IDWeakMap::Get)
.SetMethod("has", &IDWeakMap::Has)
.SetMethod("keys", &IDWeakMap::Keys)
.SetMethod("remove", &IDWeakMap::Remove);
}
2014-04-16 03:58:48 +00:00
// static
void IDWeakMap::WeakCallback(
const v8::WeakCallbackData<v8::Object, IDWeakMap>& data) {
int32_t key = data.GetValue()->GetHiddenValue(
mate::StringToV8(data.GetIsolate(), "IDWeakMapKey"))->Int32Value();
data.GetParameter()->Remove(key);
2013-04-25 13:46:04 +00:00
}
} // namespace api
} // namespace atom
2014-04-16 03:58:48 +00:00
namespace {
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
v8::Handle<v8::Context> context, void* priv) {
2014-04-16 03:58:48 +00:00
using atom::api::IDWeakMap;
v8::Isolate* isolate = context->GetIsolate();
2014-04-16 03:58:48 +00:00
v8::Local<v8::Function> constructor = mate::CreateConstructor<IDWeakMap>(
isolate,
"IDWeakMap",
base::Bind(&mate::NewOperatorFactory<IDWeakMap>));
exports->Set(mate::StringToV8(isolate, "IDWeakMap"), constructor);
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_id_weak_map, Initialize)