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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/permissions/bluetooth_chooser_controller.h"
#include "base/check_op.h"
#include "base/notreached.h"
#include "base/ranges/algorithm.h"
#include "base/strings/utf_string_conversions.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"
namespace permissions {
BluetoothChooserController::BluetoothChooserController(
content::RenderFrameHost* owner,
const content::BluetoothChooser::EventHandler& event_handler,
std::u16string title)
: ChooserController(title), event_handler_(event_handler) {}
BluetoothChooserController::~BluetoothChooserController() {
if (event_handler_) {
event_handler_.Run(content::BluetoothChooserEvent::CANCELLED,
std::string());
}
}
bool BluetoothChooserController::ShouldShowIconBeforeText() const {
return true;
}
bool BluetoothChooserController::ShouldShowReScanButton() const {
return true;
}
std::u16string BluetoothChooserController::GetNoOptionsText() const {
return l10n_util::GetStringUTF16(
IDS_BLUETOOTH_DEVICE_CHOOSER_NO_DEVICES_FOUND_PROMPT);
}
std::u16string BluetoothChooserController::GetOkButtonLabel() const {
return l10n_util::GetStringUTF16(
IDS_BLUETOOTH_DEVICE_CHOOSER_PAIR_BUTTON_TEXT);
}
std::pair<std::u16string, std::u16string>
BluetoothChooserController::GetThrobberLabelAndTooltip() const {
return {
l10n_util::GetStringUTF16(IDS_BLUETOOTH_DEVICE_CHOOSER_SCANNING_LABEL),
l10n_util::GetStringUTF16(
IDS_BLUETOOTH_DEVICE_CHOOSER_SCANNING_LABEL_TOOLTIP)};
}
size_t BluetoothChooserController::NumOptions() const {
return devices_.size();
}
int BluetoothChooserController::GetSignalStrengthLevel(size_t index) const {
return devices_[index].signal_strength_level;
}
bool BluetoothChooserController::IsConnected(size_t index) const {
return devices_[index].is_connected;
}
bool BluetoothChooserController::IsPaired(size_t index) const {
return devices_[index].is_paired;
}
std::u16string BluetoothChooserController::GetOption(size_t index) const {
DCHECK_LT(index, devices_.size());
const std::string& device_id = devices_[index].id;
const auto& device_name_it = device_id_to_name_map_.find(device_id);
DCHECK(device_name_it != device_id_to_name_map_.end());
const auto& it = device_name_counts_.find(device_name_it->second);
DCHECK(it != device_name_counts_.end());
return it->second == 1
? device_name_it->second
: l10n_util::GetStringFUTF16(
IDS_DEVICE_CHOOSER_DEVICE_NAME_WITH_ID,
device_name_it->second, base::UTF8ToUTF16(device_id));
}
void BluetoothChooserController::RefreshOptions() {
if (event_handler_.is_null())
return;
ClearAllDevices();
event_handler_.Run(content::BluetoothChooserEvent::RESCAN, std::string());
}
void BluetoothChooserController::Select(const std::vector<size_t>& indices) {
DCHECK_EQ(1u, indices.size());
size_t index = indices[0];
if (event_handler_.is_null()) {
return;
}
DCHECK_LT(index, devices_.size());
event_handler_.Run(content::BluetoothChooserEvent::SELECTED,
devices_[index].id);
event_handler_.Reset();
}
void BluetoothChooserController::Cancel() {
if (event_handler_.is_null())
return;
event_handler_.Run(content::BluetoothChooserEvent::CANCELLED, std::string());
event_handler_.Reset();
}
void BluetoothChooserController::Close() {
if (event_handler_.is_null())
return;
event_handler_.Run(content::BluetoothChooserEvent::CANCELLED, std::string());
event_handler_.Reset();
}
void BluetoothChooserController::OnAdapterPresenceChanged(
content::BluetoothChooser::AdapterPresence presence) {
ClearAllDevices();
switch (presence) {
case content::BluetoothChooser::AdapterPresence::ABSENT:
NOTREACHED();
break;
case content::BluetoothChooser::AdapterPresence::POWERED_OFF:
if (view()) {
view()->OnAdapterEnabledChanged(
false /* Bluetooth adapter is turned off */);
}
break;
case content::BluetoothChooser::AdapterPresence::POWERED_ON:
if (view()) {
view()->OnAdapterEnabledChanged(
true /* Bluetooth adapter is turned on */);
}
break;
case content::BluetoothChooser::AdapterPresence::UNAUTHORIZED:
if (view()) {
view()->OnAdapterAuthorizationChanged(/*authorized=*/false);
}
break;
}
}
void BluetoothChooserController::OnDiscoveryStateChanged(
content::BluetoothChooser::DiscoveryState state) {
switch (state) {
case content::BluetoothChooser::DiscoveryState::DISCOVERING:
if (view()) {
view()->OnRefreshStateChanged(
true /* Refreshing options is in progress */);
}
break;
case content::BluetoothChooser::DiscoveryState::IDLE:
case content::BluetoothChooser::DiscoveryState::FAILED_TO_START:
if (view()) {
view()->OnRefreshStateChanged(
false /* Refreshing options is complete */);
}
break;
}
}
void BluetoothChooserController::AddOrUpdateDevice(
const std::string& device_id,
bool should_update_name,
const std::u16string& device_name,
bool is_gatt_connected,
bool is_paired,
int signal_strength_level) {
auto name_it = device_id_to_name_map_.find(device_id);
if (name_it != device_id_to_name_map_.end()) {
if (should_update_name) {
std::u16string previous_device_name = name_it->second;
name_it->second = device_name;
const auto& it = device_name_counts_.find(previous_device_name);
DCHECK(it != device_name_counts_.end());
DCHECK_GT(it->second, 0);
if (--(it->second) == 0)
device_name_counts_.erase(it);
++device_name_counts_[device_name];
}
auto device_it =
base::ranges::find(devices_, device_id, &BluetoothDeviceInfo::id);
DCHECK(device_it != devices_.end());
// When Bluetooth device scanning stops, the |signal_strength_level|
// is -1, and in this case, should still use the previously stored
// signal strength level value.
if (signal_strength_level != -1)
device_it->signal_strength_level = signal_strength_level;
device_it->is_connected = is_gatt_connected;
device_it->is_paired = is_paired;
if (view())
view()->OnOptionUpdated(device_it - devices_.begin());
return;
}
devices_.push_back(
{device_id, signal_strength_level, is_gatt_connected, is_paired});
device_id_to_name_map_.insert({device_id, device_name});
++device_name_counts_[device_name];
if (view())
view()->OnOptionAdded(devices_.size() - 1);
}
void BluetoothChooserController::RemoveDevice(const std::string& device_id) {
const auto& name_it = device_id_to_name_map_.find(device_id);
if (name_it == device_id_to_name_map_.end())
return;
auto device_it =
base::ranges::find(devices_, device_id, &BluetoothDeviceInfo::id);
if (device_it != devices_.end()) {
size_t index = device_it - devices_.begin();
devices_.erase(device_it);
const auto& it = device_name_counts_.find(name_it->second);
DCHECK(it != device_name_counts_.end());
DCHECK_GT(it->second, 0);
if (--(it->second) == 0)
device_name_counts_.erase(it);
device_id_to_name_map_.erase(name_it);
if (view())
view()->OnOptionRemoved(index);
}
}
void BluetoothChooserController::ResetEventHandler() {
event_handler_.Reset();
}
base::WeakPtr<BluetoothChooserController>
BluetoothChooserController::GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
void BluetoothChooserController::ClearAllDevices() {
devices_.clear();
device_id_to_name_map_.clear();
device_name_counts_.clear();
}
} // namespace permissions
|