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

Unified Diff: device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.h

Issue 2084463002: BlueZ + DBus implementations of create/remove service record functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 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_service_attribute_value_bluez.h
diff --git a/device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.h b/device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.h
new file mode 100644
index 0000000000000000000000000000000000000000..e391cfe99377aeefb56295bc6761aa4f984cb397
--- /dev/null
+++ b/device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.h
@@ -0,0 +1,57 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_SERVICE_ATTRIBUTE_VALUE_BLUEZ_H_
+#define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_SERVICE_ATTRIBUTE_VALUE_BLUEZ_H_
+
+#include <cstddef>
+#include <memory>
+#include <vector>
+
+#include "base/values.h"
+#include "device/bluetooth/bluetooth_export.h"
+
+namespace bluez {
+
+// This class contains a Bluetooth service attribute. A service attribute is
+// defined by the following fields,
+// type: This is the type of the attribute. Along with being any of the
+// fixed types, an attribute can also be of type sequence, which means
+// that it contains an array of other attributes.
+// size: This is the size of the attribute. This can be variable for each type.
+// For example, a UUID can have the sizes, 2, 4 or 16 bytes.
+// value: This is the raw value of the attribute. For example, for a UUID, it
+// will be the string representation of the UUID. For a sequence, it
+// will be an array of other attributes.
+class DEVICE_BLUETOOTH_EXPORT BluetoothServiceAttributeValueBlueZ {
+ public:
+ enum Type { NULLTYPE, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
+
+ using Sequence = std::vector<BluetoothServiceAttributeValueBlueZ>;
+
+ BluetoothServiceAttributeValueBlueZ(Type type,
+ size_t size,
+ std::unique_ptr<base::Value> value);
+ BluetoothServiceAttributeValueBlueZ(std::unique_ptr<Sequence> sequence);
+ BluetoothServiceAttributeValueBlueZ(
+ const BluetoothServiceAttributeValueBlueZ& attribute);
+ BluetoothServiceAttributeValueBlueZ operator=(
+ const BluetoothServiceAttributeValueBlueZ& attribute);
+ ~BluetoothServiceAttributeValueBlueZ();
+
+ Type type() const { return type_; }
+ size_t size() const { return size_; }
+ const Sequence& sequence() const { return *sequence_.get(); }
+ const base::Value& value() const { return *value_.get(); }
+
+ private:
+ Type type_;
+ size_t size_;
+ std::unique_ptr<base::Value> value_;
+ std::unique_ptr<Sequence> sequence_;
+};
+
+} // namespace bluez
+
+#endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_SERVICE_ATTRIBUTE_VALUE_BLUEZ_H_
« no previous file with comments | « device/bluetooth/bluez/bluetooth_adapter_bluez.cc ('k') | device/bluetooth/bluez/bluetooth_service_attribute_value_bluez.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698