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

Unified Diff: device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc

Issue 1915803002: Bluetooth class changes for implementing local GATT attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc
diff --git a/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc b/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc
index 95d5cd50be372ed426292b54c12f3cbe759e096b..b5d952d4956d447d126f8f72efa81dd02119ab4f 100644
--- a/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc
+++ b/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.cc
@@ -7,19 +7,76 @@
#include <string>
#include "base/logging.h"
+#include "base/memory/ptr_util.h"
#include "device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.h"
+namespace device {
+
+// static
+base::WeakPtr<device::BluetoothLocalGattCharacteristic>
+BluetoothLocalGattCharacteristic::Create(
+ const device::BluetoothUUID& uuid,
+ device::BluetoothGattCharacteristic::Properties properties,
+ device::BluetoothGattCharacteristic::Permissions permissions,
+ device::BluetoothLocalGattService* service) {
+ DCHECK(service);
+ bluez::BluetoothLocalGattServiceBlueZ* service_bluez =
+ static_cast<bluez::BluetoothLocalGattServiceBlueZ*>(service);
+ bluez::BluetoothLocalGattCharacteristicBlueZ* characteristic =
+ new bluez::BluetoothLocalGattCharacteristicBlueZ(uuid, service_bluez);
+ return characteristic->weak_ptr_factory_.GetWeakPtr();
+}
+
+} // device
+
namespace bluez {
BluetoothLocalGattCharacteristicBlueZ::BluetoothLocalGattCharacteristicBlueZ(
- BluetoothLocalGattServiceBlueZ* service,
- const dbus::ObjectPath& object_path)
- : BluetoothGattCharacteristicBlueZ(object_path), weak_ptr_factory_(this) {
+ const device::BluetoothUUID& uuid,
+ BluetoothLocalGattServiceBlueZ* service)
+ : BluetoothGattCharacteristicBlueZ(
+ BluetoothLocalGattServiceBlueZ::AddGuidToObjectPath(
+ service->object_path().value() + "/characteristic")),
+ uuid_(uuid),
+ service_(service),
+ weak_ptr_factory_(this) {
VLOG(1) << "Creating local GATT characteristic with identifier: "
<< GetIdentifier();
+ service->AddCharacteristic(base::WrapUnique(this));
}
BluetoothLocalGattCharacteristicBlueZ::
~BluetoothLocalGattCharacteristicBlueZ() {}
+device::BluetoothUUID BluetoothLocalGattCharacteristicBlueZ::GetUUID() const {
+ return uuid_;
+}
+
+device::BluetoothGattCharacteristic::Properties
+BluetoothLocalGattCharacteristicBlueZ::GetProperties() const {
+ NOTIMPLEMENTED();
+ return Properties();
+}
+
+device::BluetoothGattCharacteristic::Permissions
+BluetoothLocalGattCharacteristicBlueZ::GetPermissions() const {
+ NOTIMPLEMENTED();
+ return Permissions();
+}
+
+BluetoothLocalGattServiceBlueZ*
+BluetoothLocalGattCharacteristicBlueZ::GetService() {
+ return service_;
+}
+
+void BluetoothLocalGattCharacteristicBlueZ::AddDescriptor(
+ std::unique_ptr<BluetoothLocalGattDescriptorBlueZ> descriptor) {
+ descriptors_.push_back(std::move(descriptor));
+}
+
+const std::vector<std::unique_ptr<BluetoothLocalGattDescriptorBlueZ>>&
+BluetoothLocalGattCharacteristicBlueZ::GetDescriptors() const {
+ return descriptors_;
+}
+
} // namespace bluez

Powered by Google App Engine
This is Rietveld 408576698