OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ | |
6 #define CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ | |
7 | |
8 #include <stdint.h> | |
9 | |
10 #include <map> | |
11 #include <string> | |
12 #include <vector> | |
13 | |
14 #include "base/basictypes.h" | |
15 #include "base/callback.h" | |
16 #include "base/memory/scoped_ptr.h" | |
17 #include "chromeos/chromeos_export.h" | |
18 #include "dbus/bus.h" | |
19 #include "dbus/file_descriptor.h" | |
20 #include "dbus/object_path.h" | |
21 | |
22 namespace chromeos { | |
23 | |
24 // BluetoothAdvertisementServiceProvider is used to provide a D-Bus object that | |
25 // the Bluetooth daemon can communicate with to advertise data. | |
26 class CHROMEOS_EXPORT BluetoothLEAdvertisementServiceProvider { | |
27 public: | |
28 using UUIDList = std::vector<std::string>; | |
29 using ManufacturerData = std::map<uint16_t, std::vector<uint8_t>>; | |
30 using ServiceData = std::map<std::string, std::vector<uint8_t>>; | |
31 | |
32 // Type of advertisement. | |
33 enum AdvertisementType { | |
34 ADVERTISEMENT_TYPE_BROADCAST, | |
35 ADVERTISEMENT_TYPE_PERIPHERAL | |
36 }; | |
37 | |
38 // Interface for reacting to advertisement changes. | |
39 class Delegate { | |
40 public: | |
41 virtual ~Delegate() {} | |
42 | |
43 // This method will be called when the advertisement is unregistered from | |
44 // the Bluetooth daemon, generally at shutdown or at the applications' | |
45 // request. It may be used to perform cleanup tasks. This corresponds to | |
Marie Janssen
2015/04/14 16:47:24
This happens at shutdown or when the adapter disap
rkc
2015/04/14 17:54:32
Done.
| |
46 // the org.bluez.LEAdvertisement1.Release method and is renamed to avoid a | |
47 // conflict with base::Refcounted<T>. | |
48 virtual void Released() = 0; | |
49 }; | |
50 | |
51 virtual ~BluetoothLEAdvertisementServiceProvider(); | |
52 | |
53 // Creates the instance where |bus| is the D-Bus bus connection to export | |
54 // the object onto, |object_path| is the object path that it should have | |
55 // and |delegate| is the object to which all method calls will be passed | |
56 // and responses generated from. | |
57 static BluetoothLEAdvertisementServiceProvider* Create( | |
58 dbus::Bus* bus, | |
59 const dbus::ObjectPath& object_path, | |
60 Delegate* delegate, | |
61 AdvertisementType type, | |
62 scoped_ptr<UUIDList> service_uuids, | |
63 scoped_ptr<ManufacturerData> manufacturer_data, | |
64 scoped_ptr<UUIDList> solicit_uuids, | |
65 scoped_ptr<ServiceData> service_data); | |
66 | |
67 protected: | |
68 BluetoothLEAdvertisementServiceProvider(); | |
69 | |
70 private: | |
71 DISALLOW_COPY_AND_ASSIGN(BluetoothLEAdvertisementServiceProvider); | |
72 }; | |
73 | |
74 } // namespace chromeos | |
75 | |
76 #endif // CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ | |
OLD | NEW |