2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-08-03 07:58:59 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/api/electron_api_power_monitor.h"
|
2013-08-03 07:58:59 +00:00
|
|
|
|
|
|
|
#include "base/power_monitor/power_monitor.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "base/power_monitor/power_monitor_device_source.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "gin/handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
2020-03-24 16:03:29 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
namespace gin {
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <>
|
2018-03-14 05:42:08 +00:00
|
|
|
struct Converter<ui::IdleState> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const ui::IdleState& in) {
|
|
|
|
switch (in) {
|
|
|
|
case ui::IDLE_STATE_ACTIVE:
|
2019-10-25 13:03:28 +00:00
|
|
|
return StringToV8(isolate, "active");
|
2018-03-14 05:42:08 +00:00
|
|
|
case ui::IDLE_STATE_IDLE:
|
2019-10-25 13:03:28 +00:00
|
|
|
return StringToV8(isolate, "idle");
|
2018-03-14 05:42:08 +00:00
|
|
|
case ui::IDLE_STATE_LOCKED:
|
2019-10-25 13:03:28 +00:00
|
|
|
return StringToV8(isolate, "locked");
|
2018-03-14 05:42:08 +00:00
|
|
|
case ui::IDLE_STATE_UNKNOWN:
|
|
|
|
default:
|
2019-10-25 13:03:28 +00:00
|
|
|
return StringToV8(isolate, "unknown");
|
2018-03-14 05:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-10-25 13:03:28 +00:00
|
|
|
|
|
|
|
} // namespace gin
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-08-03 07:58:59 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2020-03-24 16:03:29 +00:00
|
|
|
gin::WrapperInfo PowerMonitor::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
PowerMonitor::PowerMonitor(v8::Isolate* isolate) {
|
2020-08-12 18:33:58 +00:00
|
|
|
#if defined(OS_MAC)
|
2019-04-30 00:40:39 +00:00
|
|
|
Browser::Get()->SetShutdownHandler(base::BindRepeating(
|
|
|
|
&PowerMonitor::ShouldShutdown, base::Unretained(this)));
|
2018-02-05 06:49:43 +00:00
|
|
|
#endif
|
2020-03-24 16:03:29 +00:00
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
base::PowerMonitor::AddObserver(this);
|
2020-03-24 16:03:29 +00:00
|
|
|
|
2020-08-12 18:33:58 +00:00
|
|
|
#if defined(OS_MAC) || defined(OS_WIN)
|
2018-04-30 16:04:27 +00:00
|
|
|
InitPlatformSpecificMonitors();
|
|
|
|
#endif
|
2013-08-03 07:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PowerMonitor::~PowerMonitor() {
|
2019-07-03 01:22:09 +00:00
|
|
|
base::PowerMonitor::RemoveObserver(this);
|
2013-08-03 07:58:59 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 06:49:43 +00:00
|
|
|
bool PowerMonitor::ShouldShutdown() {
|
2018-02-05 07:13:35 +00:00
|
|
|
return !Emit("shutdown");
|
2018-02-05 06:49:43 +00:00
|
|
|
}
|
|
|
|
|
2013-08-03 07:58:59 +00:00
|
|
|
void PowerMonitor::OnPowerStateChange(bool on_battery_power) {
|
|
|
|
if (on_battery_power)
|
|
|
|
Emit("on-battery");
|
|
|
|
else
|
|
|
|
Emit("on-ac");
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerMonitor::OnSuspend() {
|
|
|
|
Emit("suspend");
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerMonitor::OnResume() {
|
|
|
|
Emit("resume");
|
|
|
|
}
|
|
|
|
|
2020-03-24 16:03:29 +00:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
void PowerMonitor::SetListeningForShutdown(bool is_listening) {
|
|
|
|
if (is_listening) {
|
|
|
|
// unretained is OK because we own power_observer_linux_
|
|
|
|
power_observer_linux_.SetShutdownHandler(base::BindRepeating(
|
|
|
|
&PowerMonitor::ShouldShutdown, base::Unretained(this)));
|
2018-03-14 05:42:08 +00:00
|
|
|
} else {
|
2020-03-24 16:03:29 +00:00
|
|
|
power_observer_linux_.SetShutdownHandler(base::RepeatingCallback<bool()>());
|
2018-03-14 05:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-24 16:03:29 +00:00
|
|
|
#endif
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2013-08-03 07:58:59 +00:00
|
|
|
// static
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> PowerMonitor::Create(v8::Isolate* isolate) {
|
2020-03-24 16:03:29 +00:00
|
|
|
CHECK(Browser::Get()->is_ready());
|
|
|
|
auto* pm = new PowerMonitor(isolate);
|
|
|
|
auto handle = gin::CreateHandle(isolate, pm).ToV8();
|
|
|
|
pm->Pin(isolate);
|
|
|
|
return handle;
|
2016-04-25 01:17:54 +00:00
|
|
|
}
|
|
|
|
|
2020-03-24 16:03:29 +00:00
|
|
|
gin::ObjectTemplateBuilder PowerMonitor::GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
auto builder =
|
|
|
|
gin_helper::EventEmitterMixin<PowerMonitor>::GetObjectTemplateBuilder(
|
|
|
|
isolate);
|
2018-03-14 05:42:08 +00:00
|
|
|
#if defined(OS_LINUX)
|
2020-03-24 16:03:29 +00:00
|
|
|
builder.SetMethod("setListeningForShutdown",
|
|
|
|
&PowerMonitor::SetListeningForShutdown);
|
2018-02-05 06:28:58 +00:00
|
|
|
#endif
|
2020-03-24 16:03:29 +00:00
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* PowerMonitor::GetTypeName() {
|
|
|
|
return "PowerMonitor";
|
2013-08-03 07:58:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:13:17 +00:00
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-04-17 09:13:17 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
using electron::api::PowerMonitor;
|
2016-08-02 11:38:35 +00:00
|
|
|
|
2020-03-24 16:03:29 +00:00
|
|
|
ui::IdleState GetSystemIdleState(v8::Isolate* isolate, int idle_threshold) {
|
|
|
|
if (idle_threshold > 0) {
|
|
|
|
return ui::CalculateIdleState(idle_threshold);
|
|
|
|
} else {
|
|
|
|
isolate->ThrowException(v8::Exception::TypeError(gin::StringToV8(
|
|
|
|
isolate, "Invalid idle threshold, must be greater than 0")));
|
|
|
|
return ui::IDLE_STATE_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetSystemIdleTime() {
|
|
|
|
return ui::CalculateIdleTime();
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2014-06-29 12:48:44 +00:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2020-03-24 16:03:29 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
|
|
|
dict.SetMethod("createPowerMonitor",
|
|
|
|
base::BindRepeating(&PowerMonitor::Create));
|
|
|
|
dict.SetMethod("getSystemIdleState",
|
|
|
|
base::BindRepeating(&GetSystemIdleState));
|
|
|
|
dict.SetMethod("getSystemIdleTime", base::BindRepeating(&GetSystemIdleTime));
|
2013-08-03 07:58:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:13:17 +00:00
|
|
|
} // namespace
|
2013-08-03 07:58:59 +00:00
|
|
|
|
2020-02-14 11:25:39 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_power_monitor, Initialize)
|