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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/atom_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-09-06 05:52:54 +00:00
|
|
|
#include "gin/dictionary.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"
|
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 {
|
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
PowerMonitor::PowerMonitor(v8::Isolate* isolate) {
|
2018-02-05 06:49:43 +00:00
|
|
|
#if defined(OS_LINUX)
|
2019-04-30 00:40:39 +00:00
|
|
|
SetShutdownHandler(base::BindRepeating(&PowerMonitor::ShouldShutdown,
|
|
|
|
base::Unretained(this)));
|
2018-02-05 07:13:35 +00:00
|
|
|
#elif defined(OS_MACOSX)
|
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
|
2019-07-03 01:22:09 +00:00
|
|
|
base::PowerMonitor::AddObserver(this);
|
2016-04-25 01:17:54 +00:00
|
|
|
Init(isolate);
|
2018-04-30 16:04:27 +00:00
|
|
|
#if defined(OS_MACOSX) || defined(OS_WIN)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
void PowerMonitor::BlockShutdown() {
|
|
|
|
PowerObserverLinux::BlockShutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PowerMonitor::UnblockShutdown() {
|
|
|
|
PowerObserverLinux::UnblockShutdown();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2019-02-27 20:54:01 +00:00
|
|
|
ui::IdleState PowerMonitor::GetSystemIdleState(v8::Isolate* isolate,
|
|
|
|
int idle_threshold) {
|
2018-03-14 05:42:08 +00:00
|
|
|
if (idle_threshold > 0) {
|
2019-01-22 11:13:22 +00:00
|
|
|
return ui::CalculateIdleState(idle_threshold);
|
2018-03-14 05:42:08 +00:00
|
|
|
} else {
|
2019-10-25 13:03:28 +00:00
|
|
|
isolate->ThrowException(v8::Exception::TypeError(gin::StringToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
isolate, "Invalid idle threshold, must be greater than 0")));
|
2019-01-22 11:13:22 +00:00
|
|
|
return ui::IDLE_STATE_UNKNOWN;
|
2018-03-14 05:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-27 20:54:01 +00:00
|
|
|
int PowerMonitor::GetSystemIdleTime() {
|
2019-01-22 11:13:22 +00:00
|
|
|
return ui::CalculateIdleTime();
|
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) {
|
2015-04-15 11:20:25 +00:00
|
|
|
if (!Browser::Get()->is_ready()) {
|
2019-04-30 00:46:08 +00:00
|
|
|
isolate->ThrowException(v8::Exception::Error(
|
2019-10-25 13:03:28 +00:00
|
|
|
gin::StringToV8(isolate,
|
|
|
|
"The 'powerMonitor' module can't be used before the "
|
|
|
|
"app 'ready' event")));
|
2015-04-15 11:20:25 +00:00
|
|
|
return v8::Null(isolate);
|
|
|
|
}
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
return gin::CreateHandle(isolate, new PowerMonitor(isolate)).ToV8();
|
2016-04-25 01:17:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2018-04-18 01:55:30 +00:00
|
|
|
void PowerMonitor::BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2019-10-25 13:03:28 +00:00
|
|
|
prototype->SetClassName(gin::StringToV8(isolate, "PowerMonitor"));
|
2019-09-04 02:14:16 +00:00
|
|
|
gin_helper::Destroyable::MakeDestroyable(isolate, prototype);
|
2019-10-25 13:03:28 +00:00
|
|
|
gin_helper::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2018-03-14 05:42:08 +00:00
|
|
|
#if defined(OS_LINUX)
|
2018-04-18 01:55:30 +00:00
|
|
|
.SetMethod("blockShutdown", &PowerMonitor::BlockShutdown)
|
|
|
|
.SetMethod("unblockShutdown", &PowerMonitor::UnblockShutdown)
|
2018-02-05 06:28:58 +00:00
|
|
|
#endif
|
2019-02-27 20:54:01 +00:00
|
|
|
.SetMethod("getSystemIdleState", &PowerMonitor::GetSystemIdleState)
|
|
|
|
.SetMethod("getSystemIdleTime", &PowerMonitor::GetSystemIdleTime);
|
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
|
|
|
|
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();
|
2019-09-06 05:52:54 +00:00
|
|
|
gin::Dictionary dict(isolate, exports);
|
|
|
|
dict.Set("createPowerMonitor", base::BindRepeating(&PowerMonitor::Create));
|
2019-01-09 19:17:05 +00:00
|
|
|
dict.Set("PowerMonitor", PowerMonitor::GetConstructor(isolate)
|
|
|
|
->GetFunction(context)
|
|
|
|
.ToLocalChecked());
|
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
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_power_monitor, Initialize)
|