Make the JS IDWeakMap a thin wrapper of C++ IDWeakMap
This commit is contained in:
parent
cd93b9412c
commit
d02413de00
4 changed files with 16 additions and 53 deletions
|
@ -4,9 +4,6 @@
|
||||||
|
|
||||||
#include "atom/common/api/atom_api_id_weak_map.h"
|
#include "atom/common/api/atom_api_id_weak_map.h"
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
#include "base/logging.h"
|
|
||||||
#include "native_mate/constructor.h"
|
#include "native_mate/constructor.h"
|
||||||
#include "native_mate/object_template_builder.h"
|
#include "native_mate/object_template_builder.h"
|
||||||
|
|
||||||
|
@ -16,53 +13,37 @@ namespace atom {
|
||||||
|
|
||||||
namespace api {
|
namespace api {
|
||||||
|
|
||||||
IDWeakMap::IDWeakMap()
|
IDWeakMap::IDWeakMap() {
|
||||||
: next_id_(0) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IDWeakMap::~IDWeakMap() {
|
IDWeakMap::~IDWeakMap() {
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t IDWeakMap::Add(v8::Isolate* isolate, v8::Local<v8::Object> object) {
|
int32_t IDWeakMap::Add(v8::Isolate* isolate, v8::Local<v8::Object> object) {
|
||||||
int32_t key = GetNextID();
|
return map_.Add(isolate, object);
|
||||||
object->SetHiddenValue(mate::StringToV8(isolate, "IDWeakMapKey"),
|
|
||||||
mate::Converter<int32_t>::ToV8(isolate, key));
|
|
||||||
|
|
||||||
map_[key] = new mate::RefCountedPersistent<v8::Object>(isolate, object);
|
|
||||||
map_[key]->SetWeak(this, WeakCallback);
|
|
||||||
return key;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
v8::Local<v8::Value> IDWeakMap::Get(v8::Isolate* isolate, int32_t key) {
|
v8::Local<v8::Value> IDWeakMap::Get(v8::Isolate* isolate, int32_t key) {
|
||||||
if (!Has(key)) {
|
v8::MaybeLocal<v8::Object> result = map_.Get(isolate, key);
|
||||||
node::ThrowError(isolate, "Invalid key");
|
if (result.IsEmpty()) {
|
||||||
|
isolate->ThrowException(v8::Exception::Error(
|
||||||
|
mate::StringToV8(isolate, "Invalid key")));
|
||||||
return v8::Undefined(isolate);
|
return v8::Undefined(isolate);
|
||||||
|
} else {
|
||||||
|
return result.ToLocalChecked();
|
||||||
}
|
}
|
||||||
|
|
||||||
return map_[key]->NewHandle();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IDWeakMap::Has(int32_t key) const {
|
bool IDWeakMap::Has(int32_t key) const {
|
||||||
return map_.find(key) != map_.end();
|
return map_.Has(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<int32_t> IDWeakMap::Keys() const {
|
std::vector<int32_t> IDWeakMap::Keys() const {
|
||||||
std::vector<int32_t> keys;
|
return map_.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) {
|
void IDWeakMap::Remove(int32_t key) {
|
||||||
if (Has(key))
|
map_.Remove(key);
|
||||||
map_.erase(key);
|
|
||||||
else
|
|
||||||
LOG(WARNING) << "Object with key " << key << " is being GCed for twice.";
|
|
||||||
}
|
|
||||||
|
|
||||||
int IDWeakMap::GetNextID() {
|
|
||||||
return ++next_id_;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
@ -76,14 +57,6 @@ void IDWeakMap::BuildPrototype(v8::Isolate* isolate,
|
||||||
.SetMethod("remove", &IDWeakMap::Remove);
|
.SetMethod("remove", &IDWeakMap::Remove);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace api
|
} // namespace api
|
||||||
|
|
||||||
} // namespace atom
|
} // namespace atom
|
||||||
|
@ -99,7 +72,7 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
||||||
isolate,
|
isolate,
|
||||||
"IDWeakMap",
|
"IDWeakMap",
|
||||||
base::Bind(&mate::NewOperatorFactory<IDWeakMap>));
|
base::Bind(&mate::NewOperatorFactory<IDWeakMap>));
|
||||||
exports->Set(mate::StringToV8(isolate, "IDWeakMap"), constructor);
|
exports->Set(mate::StringToSymbol(isolate, "IDWeakMap"), constructor);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
|
@ -6,11 +6,9 @@
|
||||||
#ifndef ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
|
#ifndef ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
|
||||||
#define ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
|
#define ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
|
||||||
|
|
||||||
#include <map>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "base/basictypes.h"
|
#include "atom/common/id_weak_map.h"
|
||||||
#include "native_mate/scoped_persistent.h"
|
|
||||||
#include "native_mate/wrappable.h"
|
#include "native_mate/wrappable.h"
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
@ -33,16 +31,8 @@ class IDWeakMap : public mate::Wrappable {
|
||||||
bool Has(int32_t key) const;
|
bool Has(int32_t key) const;
|
||||||
std::vector<int32_t> Keys() const;
|
std::vector<int32_t> Keys() const;
|
||||||
void Remove(int32_t key);
|
void Remove(int32_t key);
|
||||||
int GetNextID();
|
|
||||||
|
|
||||||
static void WeakCallback(
|
atom::IDWeakMap map_;
|
||||||
const v8::WeakCallbackData<v8::Object, IDWeakMap>& data);
|
|
||||||
|
|
||||||
int32_t next_id_;
|
|
||||||
|
|
||||||
typedef scoped_refptr<mate::RefCountedPersistent<v8::Object> >
|
|
||||||
RefCountedV8Object;
|
|
||||||
std::map<int32_t, RefCountedV8Object> map_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(IDWeakMap);
|
DISALLOW_COPY_AND_ASSIGN(IDWeakMap);
|
||||||
};
|
};
|
||||||
|
|
|
@ -55,7 +55,7 @@ void IDWeakMap::Remove(int32_t id) {
|
||||||
map_.erase(iter);
|
map_.erase(iter);
|
||||||
}
|
}
|
||||||
|
|
||||||
int IDWeakMap::GetNextID() {
|
int32_t IDWeakMap::GetNextID() {
|
||||||
return ++next_id_;
|
return ++next_id_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ class IDWeakMap {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Returns next available ID.
|
// Returns next available ID.
|
||||||
int GetNextID();
|
int32_t GetNextID();
|
||||||
|
|
||||||
static void WeakCallback(
|
static void WeakCallback(
|
||||||
const v8::WeakCallbackData<v8::Object, IDWeakMap>& data);
|
const v8::WeakCallbackData<v8::Object, IDWeakMap>& data);
|
||||||
|
|
Loading…
Reference in a new issue