Remove IDWeakMap

This commit is contained in:
Cheng Zhao 2016-05-11 15:51:22 +09:00
parent ea93553225
commit c708ae8eb5
5 changed files with 12 additions and 67 deletions

View file

@ -5,7 +5,7 @@
#ifndef ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
#define ATOM_COMMON_API_ATOM_API_ID_WEAK_MAP_H_
#include "atom/common/id_weak_map.h"
#include "atom/common/key_weak_map.h"
#include "native_mate/object_template_builder.h"
#include "native_mate/handle.h"
@ -31,7 +31,7 @@ class IDWeakMap : public mate::Wrappable<IDWeakMap> {
bool Has(int32_t id);
void Remove(int32_t id);
atom::IDWeakMap id_weak_map_;
atom::KeyWeakMap<int32_t> id_weak_map_;
DISALLOW_COPY_AND_ASSIGN(IDWeakMap);
};

View file

@ -1,25 +0,0 @@
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/common/id_weak_map.h"
namespace atom {
IDWeakMap::IDWeakMap() : next_id_(0) {
}
IDWeakMap::~IDWeakMap() {
}
int32_t IDWeakMap::Add(v8::Isolate* isolate, v8::Local<v8::Object> object) {
int32_t id = GetNextID();
Set(isolate, id, object);
return id;
}
int32_t IDWeakMap::GetNextID() {
return ++next_id_;
}
} // namespace atom

View file

@ -1,33 +0,0 @@
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_COMMON_ID_WEAK_MAP_H_
#define ATOM_COMMON_ID_WEAK_MAP_H_
#include "atom/common/key_weak_map.h"
namespace atom {
// Provides key increments service in addition to KeyWeakMap.
class IDWeakMap : public KeyWeakMap<int32_t> {
public:
IDWeakMap();
~IDWeakMap() override;
// Adds |object| to WeakMap and returns its allocated |id|.
int32_t Add(v8::Isolate* isolate, v8::Local<v8::Object> object);
private:
// Returns next available ID.
int32_t GetNextID();
// ID of next stored object.
int32_t next_id_;
DISALLOW_COPY_AND_ASSIGN(IDWeakMap);
};
} // namespace atom
#endif // ATOM_COMMON_ID_WEAK_MAP_H_