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, uint8_t lmp_ver, 34 uint16_t lmp_subver, uint16_t manufacturer_id, 35 std::vector<uint8_t> bqr_raw_data) = 0; 36 }; 37 38 class BluetoothQualityReportInterface { 39 public: 40 virtual ~BluetoothQualityReportInterface() = default; 41 42 /** Register the bluetooth keystore callbacks */ 43 virtual void init(BluetoothQualityReportCallbacks* callbacks) = 0; 44 45 /** Event for BQR delivery to app level. */ 46 virtual void bqr_delivery_event(const RawAddress& bd_addr, const uint8_t* bqr_raw_data, 47 uint32_t bqr_raw_data_len) = 0; 48 }; 49 50 } // namespace bqr 51 } // namespace bluetooth 52