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_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | |
9 | 10 |
10 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
12 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/common/extensions/api/bluetooth.h" | 14 #include "chrome/common/extensions/api/bluetooth.h" |
14 #include "device/bluetooth/bluetooth_adapter.h" | 15 #include "device/bluetooth/bluetooth_adapter.h" |
15 #include "device/bluetooth/bluetooth_socket.h" | 16 #include "device/bluetooth/bluetooth_socket.h" |
16 | 17 |
17 namespace extensions { | 18 namespace extensions { |
18 | 19 |
19 class ExtensionBluetoothEventRouter | 20 class ExtensionBluetoothEventRouter |
20 : public device::BluetoothAdapter::Observer { | 21 : public device::BluetoothAdapter::Observer { |
21 public: | 22 public: |
22 explicit ExtensionBluetoothEventRouter(Profile* profile); | 23 explicit ExtensionBluetoothEventRouter(Profile* profile); |
23 virtual ~ExtensionBluetoothEventRouter(); | 24 virtual ~ExtensionBluetoothEventRouter(); |
24 | 25 |
25 // adapter() will return NULL if the bluetooth adapter is not supported in the | 26 // adapter() will return NULL if the bluetooth adapter is not supported in the |
26 // current platform. | 27 // current platform. |
27 const device::BluetoothAdapter* adapter() const { | 28 scoped_refptr<const device::BluetoothAdapter> adapter(); |
28 return adapter_.get(); | |
29 } | |
30 | 29 |
31 // GetMutableAdapter will return NULL if the bluetooth adapter is not | 30 // GetMutableAdapter will return NULL if the bluetooth adapter is not |
32 // supported in the current platform. | 31 // supported in the current platform. |
33 device::BluetoothAdapter* GetMutableAdapter() { | 32 scoped_refptr<device::BluetoothAdapter> GetMutableAdapter(); |
34 return adapter_.get(); | 33 |
35 } | 34 // Initializes |adapter_| when a bluetooth event listener is added. |
bryeung
2012/11/08 19:24:02
Please describe when this should be called, not it
youngki
2012/11/09 05:12:52
Done.
| |
35 void OnEventListenerAdded(const std::string& event_name); | |
36 | |
37 // Releases |adapter_| when a bluetooth event listener is removed. | |
bryeung
2012/11/08 19:24:02
same as above
youngki
2012/11/09 05:12:52
Done.
| |
38 void OnEventListenerRemoved(const std::string& event_name); | |
36 | 39 |
37 // Register the BluetoothSocket |socket| for use by the extensions system. | 40 // Register the BluetoothSocket |socket| for use by the extensions system. |
38 // This class will hold onto the socket for its lifetime, or until | 41 // This class will hold onto the socket for its lifetime, or until |
39 // ReleaseSocket is called for the socket. Returns an id for the socket. | 42 // ReleaseSocket is called for the socket. Returns an id for the socket. |
40 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket); | 43 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket); |
41 | 44 |
42 // Release the BluetoothSocket corresponding to |id|. Returns true if | 45 // Release the BluetoothSocket corresponding to |id|. Returns true if |
43 // the socket was found and released, false otherwise. | 46 // the socket was found and released, false otherwise. |
44 bool ReleaseSocket(int id); | 47 bool ReleaseSocket(int id); |
45 | 48 |
(...skipping 20 matching lines...) Expand all Loading... | |
66 bool has_power) OVERRIDE; | 69 bool has_power) OVERRIDE; |
67 virtual void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter, | 70 virtual void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter, |
68 bool discovering) OVERRIDE; | 71 bool discovering) OVERRIDE; |
69 virtual void DeviceAdded(device::BluetoothAdapter* adapter, | 72 virtual void DeviceAdded(device::BluetoothAdapter* adapter, |
70 device::BluetoothDevice* device) OVERRIDE; | 73 device::BluetoothDevice* device) OVERRIDE; |
71 | 74 |
72 // Exposed for testing. | 75 // Exposed for testing. |
73 void SetAdapterForTest(device::BluetoothAdapter* adapter) { | 76 void SetAdapterForTest(device::BluetoothAdapter* adapter) { |
74 adapter_ = adapter; | 77 adapter_ = adapter; |
75 } | 78 } |
79 | |
80 protected: | |
81 virtual scoped_refptr<device::BluetoothAdapter> GetDefaultAdapter() const; | |
82 | |
76 private: | 83 private: |
84 static bool IsBluetoothEvent(const std::string& event_name); | |
85 | |
86 bool IsAdapterNeeded() const; | |
87 | |
88 void InitializeAdapter(); | |
89 void ReleaseAdapter(); | |
90 | |
77 void DispatchBooleanValueEvent(const char* event_name, bool value); | 91 void DispatchBooleanValueEvent(const char* event_name, bool value); |
78 | 92 |
79 bool send_discovery_events_; | 93 bool send_discovery_events_; |
80 bool responsible_for_discovery_; | 94 bool responsible_for_discovery_; |
81 | 95 |
82 Profile* profile_; | 96 Profile* profile_; |
83 scoped_refptr<device::BluetoothAdapter> adapter_; | 97 scoped_refptr<device::BluetoothAdapter> adapter_; |
84 | 98 |
99 int num_event_listeners_; | |
100 | |
85 // The next id to use for referring to a BluetoothSocket. We avoid using | 101 // The next id to use for referring to a BluetoothSocket. We avoid using |
86 // the fd of the socket because we don't want to leak that information to | 102 // the fd of the socket because we don't want to leak that information to |
87 // the extension javascript. | 103 // the extension javascript. |
88 int next_socket_id_; | 104 int next_socket_id_; |
89 | 105 |
90 typedef std::map<int, scoped_refptr<device::BluetoothSocket> > SocketMap; | 106 typedef std::map<int, scoped_refptr<device::BluetoothSocket> > SocketMap; |
91 SocketMap socket_map_; | 107 SocketMap socket_map_; |
92 | 108 |
93 typedef ScopedVector<extensions::api::bluetooth::Device> | 109 typedef ScopedVector<extensions::api::bluetooth::Device> |
94 DeviceList; | 110 DeviceList; |
95 DeviceList discovered_devices_; | 111 DeviceList discovered_devices_; |
96 | 112 |
97 DISALLOW_COPY_AND_ASSIGN(ExtensionBluetoothEventRouter); | 113 DISALLOW_COPY_AND_ASSIGN(ExtensionBluetoothEventRouter); |
98 }; | 114 }; |
99 | 115 |
100 } // namespace extensions | 116 } // namespace extensions |
101 | 117 |
102 #endif // CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ | 118 #endif // CHROME_BROWSER_EXTENSIONS_BLUETOOTH_EVENT_ROUTER_H_ |
OLD | NEW |