electron/atom/browser/api/atom_api_power_save_blocker.cc

138 lines
4.3 KiB
C++
Raw Normal View History

2015-06-21 12:57:42 +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.
#include "atom/browser/api/atom_api_power_save_blocker.h"
#include <string>
#include "base/task_scheduler/post_task.h"
#include "base/threading/thread_task_runner_handle.h"
2015-06-21 12:57:42 +00:00
#include "native_mate/dictionary.h"
2016-09-06 08:24:37 +00:00
#include "atom/common/node_includes.h"
2015-06-21 12:57:42 +00:00
namespace mate {
2018-04-18 01:55:30 +00:00
template <>
struct Converter<device::mojom::WakeLockType> {
2015-06-21 12:57:42 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
device::mojom::WakeLockType* out) {
std::string type;
2015-06-21 12:57:42 +00:00
if (!ConvertFromV8(isolate, val, &type))
return false;
if (type == "prevent-app-suspension")
*out = device::mojom::WakeLockType::kPreventAppSuspension;
else if (type == "prevent-display-sleep")
*out = device::mojom::WakeLockType::kPreventDisplaySleep;
else
return false;
2015-06-21 12:57:42 +00:00
return true;
}
};
} // namespace mate
namespace atom {
namespace api {
2016-04-25 01:17:54 +00:00
PowerSaveBlocker::PowerSaveBlocker(v8::Isolate* isolate)
: current_blocker_type_(
device::mojom::WakeLockType::kPreventAppSuspension) {
2016-04-25 01:17:54 +00:00
Init(isolate);
2015-06-21 12:57:42 +00:00
}
2018-04-18 01:55:30 +00:00
PowerSaveBlocker::~PowerSaveBlocker() {}
2015-06-21 12:57:42 +00:00
2015-06-22 02:23:58 +00:00
void PowerSaveBlocker::UpdatePowerSaveBlocker() {
if (power_save_blocker_types_.empty()) {
power_save_blocker_.reset();
return;
}
// |WakeLockType::kPreventAppSuspension| keeps system active, but allows
2015-06-22 02:23:58 +00:00
// screen to be turned off.
// |WakeLockType::kPreventDisplaySleep| keeps system and screen active, has a
// higher precedence level than |WakeLockType::kPreventAppSuspension|.
2015-06-22 02:23:58 +00:00
//
// Only the highest-precedence blocker type takes effect.
device::mojom::WakeLockType new_blocker_type =
device::mojom::WakeLockType::kPreventAppSuspension;
2015-06-22 02:23:58 +00:00
for (const auto& element : power_save_blocker_types_) {
if (element.second ==
device::mojom::WakeLockType::kPreventDisplaySleep) {
2015-06-22 02:23:58 +00:00
new_blocker_type =
device::mojom::WakeLockType::kPreventDisplaySleep;
2015-06-22 02:23:58 +00:00
break;
}
}
if (!power_save_blocker_ || new_blocker_type != current_blocker_type_) {
auto new_blocker = std::make_unique<device::PowerSaveBlocker>(
new_blocker_type, device::mojom::WakeLockReason::kOther,
ATOM_PRODUCT_NAME, base::ThreadTaskRunnerHandle::Get(),
// This task runner may be used by some device service
// implementation bits to interface with dbus client code, which in
// turn imposes some subtle thread affinity on the clients. We
// therefore require a single-thread runner.
base::CreateSingleThreadTaskRunnerWithTraits(
{base::MayBlock(), base::TaskPriority::BACKGROUND}));
2015-06-22 02:23:58 +00:00
power_save_blocker_.swap(new_blocker);
current_blocker_type_ = new_blocker_type;
}
}
int PowerSaveBlocker::Start(device::mojom::WakeLockType type) {
2015-06-22 02:23:58 +00:00
static int count = 0;
power_save_blocker_types_[count] = type;
UpdatePowerSaveBlocker();
return count++;
2015-06-21 12:57:42 +00:00
}
2015-06-22 02:23:58 +00:00
bool PowerSaveBlocker::Stop(int id) {
bool success = power_save_blocker_types_.erase(id) > 0;
UpdatePowerSaveBlocker();
return success;
2015-06-21 12:57:42 +00:00
}
2015-06-22 02:23:58 +00:00
bool PowerSaveBlocker::IsStarted(int id) {
return power_save_blocker_types_.find(id) != power_save_blocker_types_.end();
2015-06-21 12:57:42 +00:00
}
2016-04-25 01:17:54 +00:00
// static
mate::Handle<PowerSaveBlocker> PowerSaveBlocker::Create(v8::Isolate* isolate) {
2016-04-25 01:40:19 +00:00
return mate::CreateHandle(isolate, new PowerSaveBlocker(isolate));
2015-06-21 12:57:42 +00:00
}
// static
2016-04-25 01:17:54 +00:00
void PowerSaveBlocker::BuildPrototype(
2018-04-18 01:55:30 +00:00
v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype) {
2016-08-02 10:28:12 +00:00
prototype->SetClassName(mate::StringToV8(isolate, "PowerSaveBlocker"));
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
2016-04-25 01:17:54 +00:00
.SetMethod("start", &PowerSaveBlocker::Start)
.SetMethod("stop", &PowerSaveBlocker::Stop)
.SetMethod("isStarted", &PowerSaveBlocker::IsStarted);
2015-06-21 12:57:42 +00:00
}
} // namespace api
} // namespace atom
namespace {
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) {
2015-06-21 12:57:42 +00:00
v8::Isolate* isolate = context->GetIsolate();
mate::Dictionary dict(isolate, exports);
dict.Set("powerSaveBlocker", atom::api::PowerSaveBlocker::Create(isolate));
}
} // namespace
NODE_BUILTIN_MODULE_CONTEXT_AWARE(atom_browser_power_save_blocker, Initialize);