Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/memory/ref_counted.h" | |
| 15 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "chrome/browser/chromeos/bluetooth/bluetooth_adapter.h" | |
| 16 #include "chromeos/dbus/bluetooth_adapter_client.h" | 16 #include "chromeos/dbus/bluetooth_adapter_client.h" |
| 17 #include "chromeos/dbus/bluetooth_device_client.h" | 17 #include "chromeos/dbus/bluetooth_device_client.h" |
| 18 #include "chromeos/dbus/bluetooth_manager_client.h" | 18 #include "chromeos/dbus/bluetooth_manager_client.h" |
| 19 #include "chromeos/dbus/bluetooth_out_of_band_client.h" | 19 #include "chromeos/dbus/bluetooth_out_of_band_client.h" |
|
keybuk
2012/09/18 18:53:44
as commented in previous patch set, with the expli
youngki
2012/09/19 01:13:55
Removed.
| |
| 20 #include "dbus/object_path.h" | 20 #include "dbus/object_path.h" |
| 21 | 21 |
| 22 namespace chromeos { | 22 namespace chromeos { |
| 23 | 23 |
| 24 class BluetoothDevice; | 24 class BluetoothDeviceChromeOs; |
| 25 | 25 |
| 26 // The BluetoothAdapter class represents a local Bluetooth adapter which | 26 struct BluetoothOutOfBandPairingData; |
| 27 // may be used to interact with remote Bluetooth devices. As well as | 27 |
| 28 // providing support for determining whether an adapter is present, and | 28 // The BluetoothAdapterChromeOs class is an implementation of BluetoothAdapter |
| 29 // whether the radio is powered, this class also provides support for | 29 // for Chrome OS platform. |
| 30 // obtaining the list of remote devices known to the adapter, discovering | 30 class BluetoothAdapterChromeOs : public BluetoothAdapter, |
| 31 // new devices, and providing notification of updates to device information. | 31 public BluetoothManagerClient::Observer, |
| 32 // | 32 public BluetoothAdapterClient::Observer, |
| 33 // The class may be instantiated for either a specific adapter, or for the | 33 public BluetoothDeviceClient::Observer { |
| 34 // generic "default adapter" which may change depending on availability. | |
| 35 class BluetoothAdapter : public base::RefCounted<BluetoothAdapter>, | |
| 36 public BluetoothManagerClient::Observer, | |
| 37 public BluetoothAdapterClient::Observer, | |
| 38 public BluetoothDeviceClient::Observer { | |
| 39 public: | 34 public: |
| 40 // Interface for observing changes from bluetooth adapters. | 35 // BluetoothAdapter override |
| 41 class Observer { | 36 virtual void AddObserver(BluetoothAdapter::Observer* observer) OVERRIDE; |
| 42 public: | 37 virtual void RemoveObserver(BluetoothAdapter::Observer* observer) OVERRIDE; |
| 43 virtual ~Observer() {} | |
| 44 | 38 |
| 45 // Called when the presence of the adapter |adapter| changes, when | 39 // BluetoothAdapter override |
| 46 // |present| is true the adapter is now present, false means the adapter | 40 virtual const std::string& address() const OVERRIDE; |
| 47 // has been removed from the system. | |
| 48 virtual void AdapterPresentChanged(BluetoothAdapter* adapter, | |
| 49 bool present) {} | |
| 50 | 41 |
| 51 // Called when the radio power state of the adapter |adapter| changes, | 42 // BluetoothAdapter override |
| 52 // when |powered| is true the adapter radio is powered, false means the | 43 virtual const std::string& name() const OVERRIDE; |
| 53 // adapter radio is off. | |
| 54 virtual void AdapterPoweredChanged(BluetoothAdapter* adapter, | |
| 55 bool powered) {} | |
| 56 | 44 |
| 57 // Called when the discovering state of the adapter |adapter| changes, | 45 // BluetoothAdapter override |
| 58 // when |discovering| is true the adapter is seeking new devices, false | 46 virtual bool IsPresent() const OVERRIDE; |
| 59 // means it is not. Note that device discovery involves both states when | |
| 60 // the adapter is seeking new devices and states when it is not because | |
| 61 // it is interrogating the devices it found. | |
| 62 virtual void AdapterDiscoveringChanged(BluetoothAdapter* adapter, | |
| 63 bool discovering) {} | |
| 64 | 47 |
| 65 // Called when a new device |device| is added to the adapter |adapter|, | 48 // BluetoothAdapter override |
| 66 // either because it has been discovered or a connection made. |device| | 49 virtual bool IsPowered() const OVERRIDE; |
| 67 // should not be cached, instead copy its address. | |
| 68 virtual void DeviceAdded(BluetoothAdapter* adapter, | |
| 69 BluetoothDevice* device) {} | |
| 70 | 50 |
| 71 // Called when properties of the device |device| known to the adapter | 51 // BluetoothAdapter override |
| 72 // |adapter| change. |device| should not be cached, instead copy its | 52 virtual void SetPowered(bool powered, |
| 73 // address. | 53 const base::Closure& callback, |
| 74 virtual void DeviceChanged(BluetoothAdapter* adapter, | 54 const ErrorCallback& error_callback) OVERRIDE; |
| 75 BluetoothDevice* device) {} | |
| 76 | 55 |
| 77 // Called when the device |device| is removed from the adapter |adapter|, | 56 // BluetoothAdapter override |
| 78 // either as a result of a discovered device being lost between discovering | 57 virtual bool IsDiscovering() const OVERRIDE; |
| 79 // phases or pairing information deleted. |device| should not be cached. | |
| 80 virtual void DeviceRemoved(BluetoothAdapter* adapter, | |
| 81 BluetoothDevice* device) {} | |
| 82 }; | |
| 83 | 58 |
| 84 // Adds and removes observers for events on this bluetooth adapter, | 59 // BluetoothAdapter override |
| 85 // if monitoring multiple adapters check the |adapter| parameter of | |
| 86 // observer methods to determine which adapter is issuing the event. | |
| 87 void AddObserver(Observer* observer); | |
| 88 void RemoveObserver(Observer* observer); | |
| 89 | |
| 90 // The ErrorCallback is used for methods that can fail in which case it | |
| 91 // is called, in the success case the callback is simply not called. | |
| 92 typedef base::Callback<void()> ErrorCallback; | |
| 93 | |
| 94 // The BluetoothOutOfBandPairingDataCallback is used to return | |
| 95 // BluetoothOutOfBandPairingData to the caller. | |
| 96 typedef base::Callback<void(const BluetoothOutOfBandPairingData& data)> | |
| 97 BluetoothOutOfBandPairingDataCallback; | |
| 98 | |
| 99 // The address of this adapter. The address format is "XX:XX:XX:XX:XX:XX", | |
| 100 // where each XX is a hexadecimal number. | |
| 101 const std::string& address() const { return address_; } | |
| 102 | |
| 103 // The name of the adapter. | |
| 104 const std::string& name() const { return name_; } | |
| 105 | |
| 106 // Indicates whether the adapter is actually present on the system, for | |
| 107 // the default adapter this indicates whether any adapter is present. An | |
| 108 // adapter is only considered present if the address has been obtained. | |
| 109 virtual bool IsPresent() const; | |
| 110 | |
| 111 // Indicates whether the adapter radio is powered. | |
| 112 virtual bool IsPowered() const; | |
| 113 | |
| 114 // Requests a change to the adapter radio power, setting |powered| to true | |
| 115 // will turn on the radio and false will turn it off. On success, callback | |
| 116 // will be called. On failure, |error_callback| will be called. | |
| 117 void SetPowered(bool powered, | |
| 118 const base::Closure& callback, | |
| 119 const ErrorCallback& error_callback); | |
| 120 | |
| 121 // Indicates whether the adapter is currently discovering new devices, | |
| 122 // note that a typical discovery process has phases of this being true | |
| 123 // followed by phases of being false when the adapter interrogates the | |
| 124 // devices found. | |
| 125 virtual bool IsDiscovering() const; | |
| 126 | |
| 127 // Requests that the adapter either begin discovering new devices when | |
| 128 // |discovering| is true, or cease any discovery when false. On success, | |
| 129 // callback will be called. On failure, |error_callback| will be called. | |
| 130 virtual void SetDiscovering(bool discovering, | 60 virtual void SetDiscovering(bool discovering, |
| 131 const base::Closure& callback, | 61 const base::Closure& callback, |
| 132 const ErrorCallback& error_callback); | 62 const ErrorCallback& error_callback) OVERRIDE; |
| 133 | 63 |
| 134 // Requests the list of devices from the adapter, all are returned | 64 // BluetoothAdapter override |
| 135 // including those currently connected and those paired. Use the | 65 virtual DeviceList GetDevices() OVERRIDE; |
| 136 // returned device pointers to determine which they are. | 66 virtual ConstDeviceList GetDevices() const OVERRIDE; |
| 137 typedef std::vector<BluetoothDevice*> DeviceList; | |
| 138 virtual DeviceList GetDevices(); | |
| 139 typedef std::vector<const BluetoothDevice*> ConstDeviceList; | |
| 140 virtual ConstDeviceList GetDevices() const; | |
| 141 | 67 |
| 142 // Returns a pointer to the device with the given address |address| or | 68 // BluetoothAdapter override |
| 143 // NULL if no such device is known. | 69 virtual BluetoothDevice* GetDevice(const std::string& address) OVERRIDE; |
| 144 virtual BluetoothDevice* GetDevice(const std::string& address); | 70 virtual const BluetoothDevice* GetDevice( |
| 145 virtual const BluetoothDevice* GetDevice(const std::string& address) const; | 71 const std::string& address) const OVERRIDE; |
| 146 | 72 |
| 147 // Requests the local Out Of Band pairing data. | 73 // BluetoothAdapter override |
| 148 virtual void ReadLocalOutOfBandPairingData( | 74 virtual void ReadLocalOutOfBandPairingData( |
| 149 const BluetoothOutOfBandPairingDataCallback& callback, | 75 const BluetoothOutOfBandPairingDataCallback& callback, |
| 150 const ErrorCallback& error_callback); | 76 const ErrorCallback& error_callback) OVERRIDE; |
| 151 | |
| 152 // Returns the shared instance for the default adapter, whichever that may | |
| 153 // be at the time. Use IsPresent() and the AdapterPresentChanged() observer | |
| 154 // method to determine whether an adapter is actually available or not. | |
| 155 static scoped_refptr<BluetoothAdapter> DefaultAdapter(); | |
| 156 | |
| 157 // Creates an instance for a specific adapter named by |address|, which | |
| 158 // may be the bluetooth address of the adapter or a device name such as | |
| 159 // "hci0". | |
| 160 static BluetoothAdapter* Create(const std::string& address); | |
| 161 | 77 |
| 162 private: | 78 private: |
|
bryeung
2012/09/18 19:18:39
friends aren't inherited: you need
friend class b
youngki
2012/09/19 01:13:55
As long as we only use ref_counted pointer for Blu
bryeung
2012/09/19 13:27:16
Okay, makes sense.
| |
| 163 friend class base::RefCounted<BluetoothAdapter>; | 79 friend class BluetoothAdapterFactory; |
| 164 friend class BluetoothDevice; | 80 friend class BluetoothDeviceChromeOs; |
| 165 friend class MockBluetoothAdapter; | 81 friend class MockBluetoothAdapter; |
| 166 | 82 |
| 167 BluetoothAdapter(); | 83 BluetoothAdapterChromeOs(); |
| 168 virtual ~BluetoothAdapter(); | 84 virtual ~BluetoothAdapterChromeOs(); |
| 169 | 85 |
| 170 // Obtains the default adapter object path from the Bluetooth Daemon | 86 // Obtains the default adapter object path from the Bluetooth Daemon |
| 171 // and tracks future changes to it. | 87 // and tracks future changes to it. |
| 172 void TrackDefaultAdapter(); | 88 void TrackDefaultAdapter(); |
| 173 | 89 |
| 174 // Obtains the object paht for the adapter named by |address| from the | 90 // Obtains the object paht for the adapter named by |address| from the |
| 175 // Bluetooth Daemon. | 91 // Bluetooth Daemon. |
| 176 void FindAdapter(const std::string& address); | 92 void FindAdapter(const std::string& address); |
| 177 | 93 |
| 178 // Called by dbus:: in response to the method call sent by both | 94 // Called by dbus:: in response to the method call sent by both |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 319 // Name of the adapter. | 235 // Name of the adapter. |
| 320 std::string name_; | 236 std::string name_; |
| 321 | 237 |
| 322 // Tracked adapter state, cached locally so we only send change notifications | 238 // Tracked adapter state, cached locally so we only send change notifications |
| 323 // to observers on a genuine change. | 239 // to observers on a genuine change. |
| 324 bool powered_; | 240 bool powered_; |
| 325 bool discovering_; | 241 bool discovering_; |
| 326 | 242 |
| 327 // Devices paired with, connected to, discovered by, or visible to the | 243 // Devices paired with, connected to, discovered by, or visible to the |
| 328 // adapter. The key is the Bluetooth address of the device and the value | 244 // adapter. The key is the Bluetooth address of the device and the value |
| 329 // is the BluetoothDevice object whose lifetime is managed by the adapter | 245 // is the BluetoothDeviceChromeOs object whose lifetime is managed by the |
| 330 // instance. | 246 // adapter instance. |
| 331 typedef std::map<const std::string, BluetoothDevice*> DevicesMap; | 247 typedef std::map<const std::string, BluetoothDeviceChromeOs*> DevicesMap; |
| 332 DevicesMap devices_; | 248 DevicesMap devices_; |
| 333 | 249 |
| 334 // Note: This should remain the last member so it'll be destroyed and | 250 // Note: This should remain the last member so it'll be destroyed and |
| 335 // invalidate its weak pointers before any other members are destroyed. | 251 // invalidate its weak pointers before any other members are destroyed. |
| 336 base::WeakPtrFactory<BluetoothAdapter> weak_ptr_factory_; | 252 base::WeakPtrFactory<BluetoothAdapterChromeOs> weak_ptr_factory_; |
| 337 | 253 |
| 338 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapter); | 254 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterChromeOs); |
| 339 }; | 255 }; |
| 340 | 256 |
| 341 } // namespace chromeos | 257 } // namespace chromeos |
| 342 | 258 |
| 343 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_H_ | 259 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_ADAPTER_CHROMEOS_H_ |
| OLD | NEW |