• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2016 The Android Open Source Project
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 
17 #ifndef android_hardware_bluetooth_V1_0_BluetoothHci_H_
18 #define android_hardware_bluetooth_V1_0_BluetoothHci_H_
19 
20 #include <android/hardware/bluetooth/1.0/IBluetoothHci.h>
21 
22 #include <hidl/MQDescriptor.h>
23 
24 namespace android {
25 namespace hardware {
26 namespace bluetooth {
27 namespace V1_0 {
28 namespace dragon {
29 
30 using ::android::hardware::Return;
31 using ::android::hardware::hidl_vec;
32 
33 class BluetoothDeathRecipient;
34 
35 class BluetoothHci : public IBluetoothHci {
36  public:
37   BluetoothHci();
38   Return<void> initialize(
39       const ::android::sp<IBluetoothHciCallbacks>& cb) override;
40   Return<void> sendHciCommand(const hidl_vec<uint8_t>& packet) override;
41   Return<void> sendAclData(const hidl_vec<uint8_t>& data) override;
42   Return<void> sendScoData(const hidl_vec<uint8_t>& data) override;
43   Return<void> close() override;
44 
45  private:
46   void sendDataToController(const uint8_t type, const hidl_vec<uint8_t>& data);
47   ::android::sp<BluetoothDeathRecipient> death_recipient_;
48   std::function<void(sp<BluetoothDeathRecipient>&)> unlink_cb_;
49 };
50 
51 extern "C" IBluetoothHci* HIDL_FETCH_IBluetoothHci(const char* name);
52 
53 }  // namespace dragon
54 }  // namespace V1_0
55 }  // namespace bluetooth
56 }  // namespace hardware
57 }  // namespace android
58 
59 #endif  // android_hardware_bluetooth_V1_0_BluetoothHci_H_
60