2013-08-03 07:58:59 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
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 "base/power_monitor/power_monitor.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "base/power_monitor/power_monitor_device_source.h"
|
2014-04-17 09:13:17 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-08-03 07:58:59 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-04-17 09:13:17 +00:00
|
|
|
PowerMonitor::PowerMonitor() {
|
2013-08-03 07:58:59 +00:00
|
|
|
base::PowerMonitor::Get()->AddObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
PowerMonitor::~PowerMonitor() {
|
|
|
|
base::PowerMonitor::Get()->RemoveObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2014-04-17 09:13:17 +00:00
|
|
|
mate::Handle<PowerMonitor> PowerMonitor::Create(v8::Isolate* isolate) {
|
|
|
|
return CreateHandle(isolate, new PowerMonitor);
|
2013-08-03 07:58:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 09:13:17 +00:00
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void Initialize(v8::Handle<v8::Object> exports) {
|
2013-12-11 07:48:19 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
base::PowerMonitorDeviceSource::AllocateSystemIOPorts();
|
|
|
|
#endif
|
2013-08-03 07:58:59 +00:00
|
|
|
|
2014-04-17 09:13:17 +00:00
|
|
|
using atom::api::PowerMonitor;
|
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
mate::Handle<PowerMonitor> power_monitor = PowerMonitor::Create(isolate);
|
|
|
|
mate::Dictionary dict(isolate, exports);
|
|
|
|
dict.Set("powerMonitor", power_monitor);
|
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
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
NODE_MODULE_X(atom_browser_power_monitor, Initialize, NULL, NM_F_BUILTIN)
|