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

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: Created 5 years, 10 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, 23 base::WeakPtr<BluetoothAdapterChromeOS> adapter,
24 const device::BluetoothUUID& uuid, 24 const device::BluetoothUUID& uuid,
25 const BluetoothProfileManagerClient::Options& options, 25 const BluetoothProfileManagerClient::Options& options,
26 const base::Closure& success_callback, 26 const base::Closure& success_callback,
27 const BluetoothProfileManagerClient::ErrorCallback& error_callback) { 27 const BluetoothProfileManagerClient::ErrorCallback& error_callback) {
28 DCHECK(adapter); 28 DCHECK(adapter);
29 29
30 BluetoothAdapterProfileChromeOS* profile = 30 BluetoothAdapterProfileChromeOS* profile =
31 new BluetoothAdapterProfileChromeOS(adapter, uuid); 31 new BluetoothAdapterProfileChromeOS(adapter, uuid);
32 32
33 VLOG(1) << "Registering profile: " << profile->object_path().value(); 33 VLOG(1) << "Registering profile: " << profile->object_path().value();
34 DBusThreadManager::Get()->GetBluetoothProfileManagerClient()->RegisterProfile( 34 DBusThreadManager::Get()->GetBluetoothProfileManagerClient()->RegisterProfile(
35 profile->object_path(), uuid.canonical_value(), options, success_callback, 35 profile->object_path(), uuid.canonical_value(), options, success_callback,
36 error_callback); 36 error_callback);
37 37
38 return profile; 38 return profile;
39 } 39 }
40 40
41 BluetoothAdapterProfileChromeOS::BluetoothAdapterProfileChromeOS( 41 BluetoothAdapterProfileChromeOS::BluetoothAdapterProfileChromeOS(
42 BluetoothAdapterChromeOS* adapter, 42 base::WeakPtr<BluetoothAdapterChromeOS> adapter,
43 const device::BluetoothUUID& uuid) 43 const device::BluetoothUUID& uuid)
44 : uuid_(uuid), adapter_(adapter), weak_ptr_factory_(this) { 44 : uuid_(uuid), adapter_(adapter), weak_ptr_factory_(this) {
45 std::string uuid_path; 45 std::string uuid_path;
46 base::ReplaceChars(uuid.canonical_value(), ":-", "_", &uuid_path); 46 base::ReplaceChars(uuid.canonical_value(), ":-", "_", &uuid_path);
47 object_path_ = 47 object_path_ =
48 dbus::ObjectPath("/org/chromium/bluetooth_profile/" + uuid_path); 48 dbus::ObjectPath("/org/chromium/bluetooth_profile/" + uuid_path);
49 49
50 dbus::Bus* system_bus = DBusThreadManager::Get()->GetSystemBus(); 50 dbus::Bus* system_bus = DBusThreadManager::Get()->GetSystemBus();
51 profile_.reset( 51 profile_.reset(
52 BluetoothProfileServiceProvider::Create(system_bus, object_path_, this)); 52 BluetoothProfileServiceProvider::Create(system_bus, object_path_, this));
53 DCHECK(profile_.get()); 53 DCHECK(profile_.get());
54 } 54 }
55 55
56 BluetoothAdapterProfileChromeOS::~BluetoothAdapterProfileChromeOS() { 56 BluetoothAdapterProfileChromeOS::~BluetoothAdapterProfileChromeOS() {
57 adapter_->RemoveProfile(uuid_);
Ilya Sherman 2015/02/19 20:37:58 Using a weak pointer doesn't prevent this line fro
57 profile_.reset(); 58 profile_.reset();
Ilya Sherman 2015/02/19 20:37:58 This line should not be necessary in the destructo
Marie Janssen 2015/02/20 22:53:46 After refactoring the ownership, these aren't need
58 } 59 }
59 60
60 bool BluetoothAdapterProfileChromeOS::SetDelegate( 61 bool BluetoothAdapterProfileChromeOS::SetDelegate(
61 const dbus::ObjectPath& device_path, 62 const dbus::ObjectPath& device_path,
62 BluetoothProfileServiceProvider::Delegate* delegate) { 63 BluetoothProfileServiceProvider::Delegate* delegate) {
63 DCHECK(delegate); 64 DCHECK(delegate);
64 VLOG(1) << "SetDelegate: " << object_path_.value() << " dev " 65 VLOG(1) << "SetDelegate: " << object_path_.value() << " dev "
65 << device_path.value(); 66 << device_path.value();
66 67
67 if (delegates_.find(device_path.value()) != delegates_.end()) { 68 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. 157 // Cancel() should only go to a delegate accepting connections.
157 if (delegates_.find("") == delegates_.end()) { 158 if (delegates_.find("") == delegates_.end()) {
158 VLOG(1) << object_path_.value() << ": Cancel with no delegate!"; 159 VLOG(1) << object_path_.value() << ": Cancel with no delegate!";
159 return; 160 return;
160 } 161 }
161 162
162 delegates_[""]->Cancel(); 163 delegates_[""]->Cancel();
163 } 164 }
164 165
165 } // namespace chromeos 166 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698