2015-06-24 06:36:05 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_helper/trackable_object.h"
|
2015-06-24 06:36:05 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
#include "base/bind.h"
|
2015-06-24 06:49:08 +00:00
|
|
|
#include "base/supports_user_data.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/atom_browser_main_parts.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_helper/locker.h"
|
2015-06-24 06:49:08 +00:00
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
namespace gin_helper {
|
2015-06-24 06:36:05 +00:00
|
|
|
|
2015-06-24 06:49:08 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char* kTrackedObjectKey = "TrackedObjectKey";
|
|
|
|
|
|
|
|
class IDUserData : public base::SupportsUserData::Data {
|
|
|
|
public:
|
|
|
|
explicit IDUserData(int32_t id) : id_(id) {}
|
|
|
|
|
|
|
|
operator int32_t() const { return id_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int32_t id_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(IDUserData);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
TrackableObjectBase::TrackableObjectBase() : weak_factory_(this) {
|
2019-10-25 13:03:28 +00:00
|
|
|
// TODO(zcbenz): Make TrackedObject work in renderer process.
|
2019-10-31 07:56:00 +00:00
|
|
|
DCHECK(gin_helper::Locker::IsBrowserProcess())
|
2019-10-25 13:03:28 +00:00
|
|
|
<< "This class only works for browser process";
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::AtomBrowserMainParts::Get()->RegisterDestructionCallback(
|
2018-03-30 13:24:55 +00:00
|
|
|
GetDestroyClosure());
|
2015-06-24 06:36:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
TrackableObjectBase::~TrackableObjectBase() = default;
|
2015-06-24 06:36:05 +00:00
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
base::OnceClosure TrackableObjectBase::GetDestroyClosure() {
|
|
|
|
return base::BindOnce(&TrackableObjectBase::Destroy,
|
|
|
|
weak_factory_.GetWeakPtr());
|
2015-12-03 07:38:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackableObjectBase::Destroy() {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
void TrackableObjectBase::AttachAsUserData(base::SupportsUserData* wrapped) {
|
2017-10-03 04:42:35 +00:00
|
|
|
wrapped->SetUserData(kTrackedObjectKey,
|
2018-04-18 01:55:30 +00:00
|
|
|
std::make_unique<IDUserData>(weak_map_id_));
|
2015-06-24 06:49:08 +00:00
|
|
|
}
|
|
|
|
|
2015-06-24 09:58:12 +00:00
|
|
|
// static
|
2017-10-03 04:42:35 +00:00
|
|
|
int32_t TrackableObjectBase::GetIDFromWrappedClass(
|
|
|
|
base::SupportsUserData* wrapped) {
|
|
|
|
if (wrapped) {
|
2018-05-21 22:18:38 +00:00
|
|
|
auto* id =
|
|
|
|
static_cast<IDUserData*>(wrapped->GetUserData(kTrackedObjectKey));
|
2017-10-03 04:42:35 +00:00
|
|
|
if (id)
|
|
|
|
return *id;
|
|
|
|
}
|
|
|
|
return 0;
|
2015-06-24 09:58:12 +00:00
|
|
|
}
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
} // namespace gin_helper
|