| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMEOS_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ |
| 6 #define CHROMEOS_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chromeos/chromeos_export.h" | 11 #include "chromeos/chromeos_export.h" |
| 12 #include "chromeos/dbus/dbus_client.h" | |
| 13 #include "dbus/object_path.h" | 12 #include "dbus/object_path.h" |
| 14 #include "dbus/property.h" | 13 #include "dbus/property.h" |
| 14 #include "device/bluetooth/dbus/bluez_dbus_client.h" |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace bluez { |
| 17 | 17 |
| 18 // BluetoothGattServiceClient is used to communicate with remote GATT service | 18 // BluetoothGattServiceClient is used to communicate with remote GATT service |
| 19 // objects exposed by the Bluetooth daemon. | 19 // objects exposed by the Bluetooth daemon. |
| 20 class CHROMEOS_EXPORT BluetoothGattServiceClient : public DBusClient { | 20 class CHROMEOS_EXPORT BluetoothGattServiceClient : public BluezDBusClient { |
| 21 public: | 21 public: |
| 22 // Structure of properties associated with GATT services. | 22 // Structure of properties associated with GATT services. |
| 23 struct Properties : public dbus::PropertySet { | 23 struct Properties : public dbus::PropertySet { |
| 24 // The 128-bit service UUID. [read-only] | 24 // The 128-bit service UUID. [read-only] |
| 25 dbus::Property<std::string> uuid; | 25 dbus::Property<std::string> uuid; |
| 26 | 26 |
| 27 // Object path of the Bluetooth device that the GATT service belongs to. | 27 // Object path of the Bluetooth device that the GATT service belongs to. |
| 28 dbus::Property<dbus::ObjectPath> device; | 28 dbus::Property<dbus::ObjectPath> device; |
| 29 | 29 |
| 30 // Whether or not this service is a primary service. | 30 // Whether or not this service is a primary service. |
| 31 dbus::Property<bool> primary; | 31 dbus::Property<bool> primary; |
| 32 | 32 |
| 33 // Array of object paths representing the characteristics of this service. | 33 // Array of object paths representing the characteristics of this service. |
| 34 // [read-only] | 34 // [read-only] |
| 35 dbus::Property<std::vector<dbus::ObjectPath> > characteristics; | 35 dbus::Property<std::vector<dbus::ObjectPath>> characteristics; |
| 36 | 36 |
| 37 // Array of object paths representing the included services of this service. | 37 // Array of object paths representing the included services of this service. |
| 38 // [read-only] | 38 // [read-only] |
| 39 dbus::Property<std::vector<dbus::ObjectPath> > includes; | 39 dbus::Property<std::vector<dbus::ObjectPath>> includes; |
| 40 | 40 |
| 41 Properties(dbus::ObjectProxy* object_proxy, | 41 Properties(dbus::ObjectProxy* object_proxy, |
| 42 const std::string& interface_name, | 42 const std::string& interface_name, |
| 43 const PropertyChangedCallback& callback); | 43 const PropertyChangedCallback& callback); |
| 44 ~Properties() override; | 44 ~Properties() override; |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 // Interface for observing changes from a remote GATT service. | 47 // Interface for observing changes from a remote GATT service. |
| 48 class Observer { | 48 class Observer { |
| 49 public: | 49 public: |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // Creates the instance. | 81 // Creates the instance. |
| 82 static BluetoothGattServiceClient* Create(); | 82 static BluetoothGattServiceClient* Create(); |
| 83 | 83 |
| 84 protected: | 84 protected: |
| 85 BluetoothGattServiceClient(); | 85 BluetoothGattServiceClient(); |
| 86 | 86 |
| 87 private: | 87 private: |
| 88 DISALLOW_COPY_AND_ASSIGN(BluetoothGattServiceClient); | 88 DISALLOW_COPY_AND_ASSIGN(BluetoothGattServiceClient); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace chromeos | 91 } // namespace bluez |
| 92 | 92 |
| 93 #endif // CHROMEOS_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ | 93 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_GATT_SERVICE_CLIENT_H_ |
| OLD | NEW |