forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluetooth_devices_observer.cc
56 lines (44 loc) · 1.78 KB
/
bluetooth_devices_observer.cc
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
// Copyright 2018 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 "ash/bluetooth_devices_observer.h"
#include "base/bind.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
namespace ash {
BluetoothDevicesObserver::BluetoothDevicesObserver(
const DeviceChangedCallback& device_changed_callback)
: device_changed_callback_(device_changed_callback), weak_factory_(this) {
device::BluetoothAdapterFactory::GetAdapter(
base::Bind(&BluetoothDevicesObserver::InitializeOnAdapterReady,
weak_factory_.GetWeakPtr()));
}
BluetoothDevicesObserver::~BluetoothDevicesObserver() {
if (bluetooth_adapter_)
bluetooth_adapter_->RemoveObserver(this);
}
void BluetoothDevicesObserver::DeviceChanged(device::BluetoothAdapter* adapter,
device::BluetoothDevice* device) {
device_changed_callback_.Run(device);
}
void BluetoothDevicesObserver::InitializeOnAdapterReady(
scoped_refptr<device::BluetoothAdapter> adapter) {
bluetooth_adapter_ = std::move(adapter);
bluetooth_adapter_->AddObserver(this);
}
bool BluetoothDevicesObserver::IsConnectedBluetoothDevice(
const ui::InputDevice& input_device) const {
if (!bluetooth_adapter_ || !bluetooth_adapter_->IsPowered())
return false;
// Since there is no map from an InputDevice to a BluetoothDevice. We just
// comparing their vendor id and product id to guess a match.
for (auto* device : bluetooth_adapter_->GetDevices()) {
if (!device->IsConnected())
continue;
if (device->GetVendorID() == input_device.vendor_id &&
device->GetProductID() == input_device.product_id) {
return true;
}
}
return false;
}
} // namespace ash