1 /*
2  * Copyright 2023 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 #pragma once
18 
19 #include <stdint.h>
20 
21 #include <vector>
22 
23 #include "types/raw_address.h"
24 
25 namespace bluetooth {
26 namespace bqr {
27 
28 class BluetoothQualityReportCallbacks {
29  public:
30   virtual ~BluetoothQualityReportCallbacks() = default;
31 
32   /** Callback for BQR delivery to app level. */
33   virtual void bqr_delivery_callback(const RawAddress remote_bd_addr,
34                                      uint8_t lmp_ver, uint16_t lmp_subver,
35                                      uint16_t manufacturer_id,
36                                      std::vector<uint8_t> bqr_raw_data) = 0;
37 };
38 
39 class BluetoothQualityReportInterface {
40  public:
41   virtual ~BluetoothQualityReportInterface() = default;
42 
43   /** Register the bluetooth keystore callbacks */
44   virtual void init(BluetoothQualityReportCallbacks* callbacks) = 0;
45 
46   /** Event for BQR delivery to app level. */
47   virtual void bqr_delivery_event(const RawAddress& bd_addr,
48                                   const uint8_t* bqr_raw_data,
49                                   uint32_t bqr_raw_data_len) = 0;
50 };
51 
52 }  // namespace bqr
53 }  // namespace bluetooth
54