// Copyright (c) 2013 GitHub, Inc. All rights reserved.
-// Copyright (c) 2012 Intel Corp. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "atom/common/v8/native_type_conversions.h"
#include "atom/common/v8/node_common.h"
#include "base/logging.h"
+#include "native_mate/constructor.h"
+#include "native_mate/function_template.h"
+#include "native_mate/object_template_builder.h"
namespace atom {
IDWeakMap::~IDWeakMap() {
}
-bool IDWeakMap::Has(int key) const {
- return map_.find(key) != map_.end();
-}
-
-void IDWeakMap::Erase(int key) {
- if (Has(key))
- map_.erase(key);
- else
- LOG(WARNING) << "Object with key " << key << " is being GCed for twice.";
-}
-
-int IDWeakMap::GetNextID() {
- return ++next_id_;
-}
-
// static
void IDWeakMap::WeakCallback(v8::Isolate* isolate,
v8::Persistent<v8::Object>* value,
IDWeakMap* self) {
v8::HandleScope handle_scope(isolate);
v8::Local<v8::Object> local = v8::Local<v8::Object>::New(isolate, *value);
- self->Erase(
+ self->Remove(
FromV8Value(local->GetHiddenValue(v8::String::New("IDWeakMapKey"))));
}
-// static
-void IDWeakMap::New(const v8::FunctionCallbackInfo<v8::Value>& args) {
- (new IDWeakMap)->Wrap(args.This());
-}
-
-// static
-void IDWeakMap::Add(const v8::FunctionCallbackInfo<v8::Value>& args) {
- if (!args[0]->IsObject())
- return node::ThrowTypeError("Bad argument");
-
- IDWeakMap* self = Unwrap<IDWeakMap>(args.This());
-
- int key = self->GetNextID();
- v8::Local<v8::Object> v8_value = args[0]->ToObject();
- v8_value->SetHiddenValue(v8::String::New("IDWeakMapKey"), ToV8Value(key));
+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));
- self->map_[key] = new RefCountedPersistent<v8::Object>(v8_value);
- self->map_[key]->MakeWeak(self, WeakCallback);
-
- args.GetReturnValue().Set(key);
+ map_[key] = new RefCountedPersistent<v8::Object>(object);
+ map_[key]->MakeWeak(this, WeakCallback);
+ return key;
}
-// static
-void IDWeakMap::Get(const v8::FunctionCallbackInfo<v8::Value>& args) {
- int key;
- if (!FromV8Arguments(args, &key))
- return node::ThrowTypeError("Bad argument");
-
- IDWeakMap* self = Unwrap<IDWeakMap>(args.This());
- if (!self->Has(key))
- return node::ThrowError("Invalid key");
+v8::Handle<v8::Value> IDWeakMap::Get(int32_t key) {
+ if (!Has(key)) {
+ node::ThrowError("Invalid key");
+ return v8::Undefined();
+ }
- args.GetReturnValue().Set(self->map_[key]->NewHandle());
+ return map_[key]->NewHandle();
}
-// static
-void IDWeakMap::Has(const v8::FunctionCallbackInfo<v8::Value>& args) {
- int key;
- if (!FromV8Arguments(args, &key))
- return node::ThrowTypeError("Bad argument");
-
- IDWeakMap* self = Unwrap<IDWeakMap>(args.This());
- args.GetReturnValue().Set(self->Has(key));
+bool IDWeakMap::Has(int32_t key) const {
+ return map_.find(key) != map_.end();
}
-// static
-void IDWeakMap::Keys(const v8::FunctionCallbackInfo<v8::Value>& args) {
- IDWeakMap* self = Unwrap<IDWeakMap>(args.This());
-
- v8::Local<v8::Array> keys = v8::Array::New(self->map_.size());
-
- int i = 0;
- for (auto el = self->map_.begin(); el != self->map_.end(); ++el) {
- keys->Set(i, ToV8Value(el->first));
- ++i;
- }
-
- args.GetReturnValue().Set(keys);
+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;
}
-// static
-void IDWeakMap::Remove(const v8::FunctionCallbackInfo<v8::Value>& args) {
- int key;
- if (!FromV8Arguments(args, &key))
- return node::ThrowTypeError("Bad argument");
-
- IDWeakMap* self = Unwrap<IDWeakMap>(args.This());
- if (!self->Has(key))
- return node::ThrowError("Invalid key");
+void IDWeakMap::Remove(int32_t key) {
+ if (Has(key))
+ map_.erase(key);
+ else
+ LOG(WARNING) << "Object with key " << key << " is being GCed for twice.";
+}
- self->Erase(key);
+int IDWeakMap::GetNextID() {
+ return ++next_id_;
}
-// static
-void IDWeakMap::Initialize(v8::Handle<v8::Object> target) {
- v8::Local<v8::FunctionTemplate> t = v8::FunctionTemplate::New(New);
- t->InstanceTemplate()->SetInternalFieldCount(1);
- t->SetClassName(v8::String::NewSymbol("IDWeakMap"));
-
- NODE_SET_PROTOTYPE_METHOD(t, "add", Add);
- NODE_SET_PROTOTYPE_METHOD(t, "get", Get);
- NODE_SET_PROTOTYPE_METHOD(t, "has", Has);
- NODE_SET_PROTOTYPE_METHOD(t, "keys", Keys);
- NODE_SET_PROTOTYPE_METHOD(t, "remove", Remove);
-
- target->Set(v8::String::NewSymbol("IDWeakMap"), t->GetFunction());
+void IDWeakMap::Initialize(v8::Handle<v8::Object> exports) {
+ v8::Local<v8::FunctionTemplate> constructor = mate::CreateConstructor(
+ v8::Isolate::GetCurrent(),
+ "IDWeakMap",
+ base::Bind(&mate::NewOperatorFactory<IDWeakMap>));
+
+ mate::ObjectTemplateBuilder builder(
+ v8::Isolate::GetCurrent(), constructor->PrototypeTemplate());
+ builder.SetMethod("add", &IDWeakMap::Add)
+ .SetMethod("get", &IDWeakMap::Get)
+ .SetMethod("has", &IDWeakMap::Has)
+ .SetMethod("keys", &IDWeakMap::Keys)
+ .SetMethod("remove", &IDWeakMap::Remove);
+
+ exports->Set(v8::String::NewSymbol("IDWeakMap"), constructor->GetFunction());
}
} // namespace api
#define ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
#include <map>
+#include <vector>
#include "atom/common/v8/scoped_persistent.h"
#include "base/basictypes.h"
-#include "vendor/node/src/node_object_wrap.h"
+#include "native_mate/wrappable.h"
namespace atom {
namespace api {
// Like ES6's WeakMap, but the key is Integer and the value is Weak Pointer.
-class IDWeakMap : public node::ObjectWrap {
+class IDWeakMap : public mate::Wrappable<IDWeakMap> {
public:
- static void Initialize(v8::Handle<v8::Object> target);
+ IDWeakMap();
+
+ static void Initialize(v8::Handle<v8::Object> exports);
private:
- IDWeakMap();
virtual ~IDWeakMap();
- bool Has(int key) const;
- void Erase(int key);
- int GetNextID();
-
static void WeakCallback(v8::Isolate* isolate,
v8::Persistent<v8::Object>* value,
IDWeakMap* self);
- static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void Add(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void Get(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void Has(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void Keys(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void Remove(const v8::FunctionCallbackInfo<v8::Value>& args);
+ int32_t Add(v8::Isolate* isolate, v8::Handle<v8::Object> object);
+ v8::Handle<v8::Value> Get(int32_t key);
+ bool Has(int32_t key) const;
+ std::vector<int32_t> Keys() const;
+ void Remove(int32_t key);
+ int GetNextID();
- int next_id_;
- std::map<int, RefCountedV8Object> map_;
+ int32_t next_id_;
+ std::map<int32_t, RefCountedV8Object> map_;
DISALLOW_COPY_AND_ASSIGN(IDWeakMap);
};