electron/atom/browser/api/atom_api_power_monitor.cc

151 lines
4.2 KiB
C++
Raw Normal View History

// 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.
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_power_monitor.h"
2013-08-03 07:58:59 +00:00
#include "atom/browser/browser.h"
#include "atom/common/native_mate_converters/callback.h"
#include "atom/common/node_includes.h"
2013-08-03 07:58:59 +00:00
#include "base/power_monitor/power_monitor.h"
#include "base/power_monitor/power_monitor_device_source.h"
2014-04-17 09:13:17 +00:00
#include "native_mate/dictionary.h"
namespace mate {
2018-04-18 01:55:30 +00:00
template <>
struct Converter<ui::IdleState> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const ui::IdleState& in) {
switch (in) {
case ui::IDLE_STATE_ACTIVE:
return mate::StringToV8(isolate, "active");
case ui::IDLE_STATE_IDLE:
return mate::StringToV8(isolate, "idle");
case ui::IDLE_STATE_LOCKED:
return mate::StringToV8(isolate, "locked");
case ui::IDLE_STATE_UNKNOWN:
default:
return mate::StringToV8(isolate, "unknown");
}
}
};
} // namespace mate
2013-08-03 07:58:59 +00:00
namespace atom {
namespace api {
2016-04-25 01:17:54 +00:00
PowerMonitor::PowerMonitor(v8::Isolate* isolate) {
#if defined(OS_LINUX)
2018-04-18 01:55:30 +00:00
SetShutdownHandler(
base::Bind(&PowerMonitor::ShouldShutdown, base::Unretained(this)));
2018-02-05 07:13:35 +00:00
#elif defined(OS_MACOSX)
2018-04-18 01:55:30 +00:00
Browser::Get()->SetShutdownHandler(
base::Bind(&PowerMonitor::ShouldShutdown, base::Unretained(this)));
#endif
2013-08-03 07:58:59 +00:00
base::PowerMonitor::Get()->AddObserver(this);
2016-04-25 01:17:54 +00:00
Init(isolate);
#if defined(OS_MACOSX) || defined(OS_WIN)
InitPlatformSpecificMonitors();
#endif
2013-08-03 07:58:59 +00:00
}
PowerMonitor::~PowerMonitor() {
base::PowerMonitor::Get()->RemoveObserver(this);
}
bool PowerMonitor::ShouldShutdown() {
2018-02-05 07:13:35 +00:00
return !Emit("shutdown");
}
#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");
}
ui::IdleState PowerMonitor::GetSystemIdleState(v8::Isolate* isolate,
int idle_threshold) {
if (idle_threshold > 0) {
return ui::CalculateIdleState(idle_threshold);
} else {
2018-04-18 01:55:30 +00:00
isolate->ThrowException(v8::Exception::TypeError(mate::StringToV8(
isolate, "Invalid idle threshold, must be greater than 0")));
return ui::IDLE_STATE_UNKNOWN;
}
}
int PowerMonitor::GetSystemIdleTime() {
return ui::CalculateIdleTime();
}
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) {
if (!Browser::Get()->is_ready()) {
2015-09-07 08:12:31 +00:00
isolate->ThrowException(v8::Exception::Error(mate::StringToV8(
isolate,
2016-09-16 20:09:06 +00:00
"Cannot require \"powerMonitor\" module before app is ready")));
return v8::Null(isolate);
}
2016-04-25 01:40:19 +00:00
return mate::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) {
2016-08-02 10:28:12 +00:00
prototype->SetClassName(mate::StringToV8(isolate, "PowerMonitor"));
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
2018-04-18 01:55:30 +00:00
.MakeDestroyable()
#if defined(OS_LINUX)
2018-04-18 01:55:30 +00:00
.SetMethod("blockShutdown", &PowerMonitor::BlockShutdown)
.SetMethod("unblockShutdown", &PowerMonitor::UnblockShutdown)
#endif
.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
} // namespace atom
namespace {
2016-08-02 11:38:35 +00:00
using atom::api::PowerMonitor;
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) {
v8::Isolate* isolate = context->GetIsolate();
2014-04-17 09:13:17 +00:00
mate::Dictionary dict(isolate, exports);
dict.Set("powerMonitor", PowerMonitor::Create(isolate));
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
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_power_monitor, Initialize)