2016-04-26 07:10:27 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-09-18 16:52:06 +00:00
|
|
|
#ifndef SHELL_COMMON_API_REMOTE_REMOTE_OBJECT_FREER_H_
|
|
|
|
#define SHELL_COMMON_API_REMOTE_REMOTE_OBJECT_FREER_H_
|
2016-04-26 07:10:27 +00:00
|
|
|
|
2019-04-16 20:08:11 +00:00
|
|
|
#include <map>
|
2018-07-10 08:15:40 +00:00
|
|
|
#include <string>
|
|
|
|
|
2019-09-18 16:52:06 +00:00
|
|
|
#include "shell/common/api/remote/object_life_monitor.h"
|
2016-04-26 07:10:27 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-04-26 07:10:27 +00:00
|
|
|
|
|
|
|
class RemoteObjectFreer : public ObjectLifeMonitor {
|
|
|
|
public:
|
2018-04-18 01:44:10 +00:00
|
|
|
static void BindTo(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> target,
|
2018-07-10 08:15:40 +00:00
|
|
|
const std::string& context_id,
|
2018-04-18 01:44:10 +00:00
|
|
|
int object_id);
|
2019-04-16 20:08:11 +00:00
|
|
|
static void AddRef(const std::string& context_id, int object_id);
|
2016-04-26 07:10:27 +00:00
|
|
|
|
|
|
|
protected:
|
2018-04-18 01:44:10 +00:00
|
|
|
RemoteObjectFreer(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> target,
|
2018-07-10 08:15:40 +00:00
|
|
|
const std::string& context_id,
|
2018-04-18 01:44:10 +00:00
|
|
|
int object_id);
|
2016-04-26 07:10:27 +00:00
|
|
|
~RemoteObjectFreer() override;
|
|
|
|
|
|
|
|
void RunDestructor() override;
|
|
|
|
|
2019-04-16 20:08:11 +00:00
|
|
|
// { context_id => { object_id => ref_count }}
|
|
|
|
static std::map<std::string, std::map<int, int>> ref_mapper_;
|
|
|
|
|
2016-04-26 07:10:27 +00:00
|
|
|
private:
|
2018-07-10 08:15:40 +00:00
|
|
|
std::string context_id_;
|
2016-04-26 07:10:27 +00:00
|
|
|
int object_id_;
|
2016-08-12 14:26:13 +00:00
|
|
|
int routing_id_;
|
2016-04-26 07:10:27 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(RemoteObjectFreer);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2016-04-26 07:10:27 +00:00
|
|
|
|
2019-09-18 16:52:06 +00:00
|
|
|
#endif // SHELL_COMMON_API_REMOTE_REMOTE_OBJECT_FREER_H_
|