Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(685)

Side by Side Diff: device/bluetooth/bluetooth_adapter_profile_chromeos.cc

Issue 935383003: Fix BluetoothAdapterProfileChromeOS lifecycle management (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments, fix simultaneous useprofile Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "device/bluetooth/bluetooth_adapter_profile_chromeos.h" 5 #include "device/bluetooth/bluetooth_adapter_profile_chromeos.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "chromeos/dbus/bluetooth_profile_service_provider.h" 12 #include "chromeos/dbus/bluetooth_profile_service_provider.h"
13 #include "chromeos/dbus/dbus_thread_manager.h" 13 #include "chromeos/dbus/dbus_thread_manager.h"
14 #include "dbus/bus.h" 14 #include "dbus/bus.h"
15 #include "dbus/object_path.h" 15 #include "dbus/object_path.h"
16 #include "device/bluetooth/bluetooth_adapter_chromeos.h" 16 #include "device/bluetooth/bluetooth_adapter_chromeos.h"
17 #include "device/bluetooth/bluetooth_uuid.h" 17 #include "device/bluetooth/bluetooth_uuid.h"
18 18
19 namespace chromeos { 19 namespace chromeos {
20 20
21 // static 21 // static
22 BluetoothAdapterProfileChromeOS* BluetoothAdapterProfileChromeOS::Register( 22 BluetoothAdapterProfileChromeOS* BluetoothAdapterProfileChromeOS::Register(
23 BluetoothAdapterChromeOS* adapter,
24 const device::BluetoothUUID& uuid, 23 const device::BluetoothUUID& uuid,
25 const BluetoothProfileManagerClient::Options& options, 24 const BluetoothProfileManagerClient::Options& options,
26 const base::Closure& success_callback, 25 const BluetoothAdapterChromeOS::ProfileRegisteredCallback& success_callback,
27 const BluetoothProfileManagerClient::ErrorCallback& error_callback) { 26 const BluetoothProfileManagerClient::ErrorCallback& error_callback) {
28 DCHECK(adapter);
29
30 BluetoothAdapterProfileChromeOS* profile = 27 BluetoothAdapterProfileChromeOS* profile =
31 new BluetoothAdapterProfileChromeOS(adapter, uuid); 28 new BluetoothAdapterProfileChromeOS(uuid);
32 29
33 VLOG(1) << "Registering profile: " << profile->object_path().value(); 30 VLOG(1) << "Registering profile: " << profile->object_path().value();
34 DBusThreadManager::Get()->GetBluetoothProfileManagerClient()->RegisterProfile( 31 DBusThreadManager::Get()->GetBluetoothProfileManagerClient()->RegisterProfile(
35 profile->object_path(), uuid.canonical_value(), options, success_callback, 32 profile->object_path(), uuid.canonical_value(), options,
36 error_callback); 33 base::Bind(success_callback, profile), error_callback);
armansito 2015/02/27 21:04:57 I think it would be better formatting to put each
Marie Janssen 2015/02/27 22:56:06 Done.
37 34
38 return profile; 35 return profile;
39 } 36 }
40 37
41 BluetoothAdapterProfileChromeOS::BluetoothAdapterProfileChromeOS( 38 BluetoothAdapterProfileChromeOS::BluetoothAdapterProfileChromeOS(
42 BluetoothAdapterChromeOS* adapter,
43 const device::BluetoothUUID& uuid) 39 const device::BluetoothUUID& uuid)
44 : uuid_(uuid), adapter_(adapter), weak_ptr_factory_(this) { 40 : uuid_(uuid), weak_ptr_factory_(this) {
45 std::string uuid_path; 41 std::string uuid_path;
46 base::ReplaceChars(uuid.canonical_value(), ":-", "_", &uuid_path); 42 base::ReplaceChars(uuid.canonical_value(), ":-", "_", &uuid_path);
47 object_path_ = 43 object_path_ =
48 dbus::ObjectPath("/org/chromium/bluetooth_profile/" + uuid_path); 44 dbus::ObjectPath("/org/chromium/bluetooth_profile/" + uuid_path);
49 45
50 dbus::Bus* system_bus = DBusThreadManager::Get()->GetSystemBus(); 46 dbus::Bus* system_bus = DBusThreadManager::Get()->GetSystemBus();
51 profile_.reset( 47 profile_.reset(
52 BluetoothProfileServiceProvider::Create(system_bus, object_path_, this)); 48 BluetoothProfileServiceProvider::Create(system_bus, object_path_, this));
53 DCHECK(profile_.get()); 49 DCHECK(profile_.get());
54 } 50 }
55 51
56 BluetoothAdapterProfileChromeOS::~BluetoothAdapterProfileChromeOS() { 52 BluetoothAdapterProfileChromeOS::~BluetoothAdapterProfileChromeOS() {
57 profile_.reset();
58 } 53 }
59 54
60 bool BluetoothAdapterProfileChromeOS::SetDelegate( 55 bool BluetoothAdapterProfileChromeOS::SetDelegate(
61 const dbus::ObjectPath& device_path, 56 const dbus::ObjectPath& device_path,
62 BluetoothProfileServiceProvider::Delegate* delegate) { 57 BluetoothProfileServiceProvider::Delegate* delegate) {
63 DCHECK(delegate); 58 DCHECK(delegate);
64 VLOG(1) << "SetDelegate: " << object_path_.value() << " dev " 59 VLOG(1) << "SetDelegate: " << object_path_.value() << " dev "
65 << device_path.value(); 60 << device_path.value();
66 61
67 if (delegates_.find(device_path.value()) != delegates_.end()) { 62 if (delegates_.find(device_path.value()) != delegates_.end()) {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // Cancel() should only go to a delegate accepting connections. 151 // Cancel() should only go to a delegate accepting connections.
157 if (delegates_.find("") == delegates_.end()) { 152 if (delegates_.find("") == delegates_.end()) {
158 VLOG(1) << object_path_.value() << ": Cancel with no delegate!"; 153 VLOG(1) << object_path_.value() << ": Cancel with no delegate!";
159 return; 154 return;
160 } 155 }
161 156
162 delegates_[""]->Cancel(); 157 delegates_[""]->Cancel();
163 } 158 }
164 159
165 } // namespace chromeos 160 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698