blob: 172d8fe0a775e5db379846a36de468eec63e125e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/arc/power/arc_power_bridge.h"
#include <algorithm>
#include <utility>
#include "base/logging.h"
#include "chromeos/dbus/power_policy_controller.h"
#include "components/arc/arc_service_manager.h"
namespace arc {
ArcPowerBridge::ArcPowerBridge(ArcBridgeService* arc_bridge_service)
: arc_bridge_service_(arc_bridge_service), binding_(this) {
arc_bridge_service->AddObserver(this);
if (arc_bridge_service->power_instance())
OnPowerInstanceReady();
}
ArcPowerBridge::~ArcPowerBridge() {
arc_bridge_service_->RemoveObserver(this);
ReleaseAllDisplayWakeLocks();
}
void ArcPowerBridge::OnStateChanged(ArcBridgeService::State state) {
if (state == ArcBridgeService::State::STOPPING)
ReleaseAllDisplayWakeLocks();
}
void ArcPowerBridge::OnPowerInstanceReady() {
PowerInstance* power_instance = arc_bridge_service_->power_instance();
if (!power_instance) {
LOG(ERROR) << "OnPowerInstanceReady called, but no power instance found";
return;
}
PowerHostPtr host;
binding_.Bind(mojo::GetProxy(&host));
power_instance->Init(std::move(host));
}
void ArcPowerBridge::OnAcquireDisplayWakeLock(
DisplayWakeLockType type) {
if (!chromeos::PowerPolicyController::IsInitialized()) {
LOG(WARNING) << "PowerPolicyController is not available";
return;
}
chromeos::PowerPolicyController* controller =
chromeos::PowerPolicyController::Get();
int wake_lock_id = -1;
switch (type) {
case DisplayWakeLockType::BRIGHT:
wake_lock_id = controller->AddScreenWakeLock(
chromeos::PowerPolicyController::REASON_OTHER, "ARC");
break;
case DisplayWakeLockType::DIM:
wake_lock_id = controller->AddDimWakeLock(
chromeos::PowerPolicyController::REASON_OTHER, "ARC");
break;
default:
LOG(WARNING) << "Tried to take invalid wake lock type "
<< static_cast<int>(type);
return;
}
wake_locks_.insert(std::make_pair(type, wake_lock_id));
}
void ArcPowerBridge::OnReleaseDisplayWakeLock(
DisplayWakeLockType type) {
if (!chromeos::PowerPolicyController::IsInitialized()) {
LOG(WARNING) << "PowerPolicyController is not available";
return;
}
chromeos::PowerPolicyController* controller =
chromeos::PowerPolicyController::Get();
// From the perspective of the PowerPolicyController, all wake locks
// of a given type are equivalent, so it doesn't matter which one
// we pass to the controller here.
auto it = wake_locks_.find(type);
if (it == wake_locks_.end()) {
LOG(WARNING) << "Tried to release wake lock of type "
<< static_cast<int>(type) << " when none were taken";
return;
}
controller->RemoveWakeLock(it->second);
wake_locks_.erase(it);
}
void ArcPowerBridge::ReleaseAllDisplayWakeLocks() {
if (!chromeos::PowerPolicyController::IsInitialized()) {
LOG(WARNING) << "PowerPolicyController is not available";
return;
}
chromeos::PowerPolicyController* controller =
chromeos::PowerPolicyController::Get();
for (const auto& it : wake_locks_) {
controller->RemoveWakeLock(it.second);
}
wake_locks_.clear();
}
} // namespace arc
|