/* * Copyright 2021 HIMSA II K/S - www.himsa.com. * Represented by EHIMA - www.ehima.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "btm_api_mock.h" #include "types/raw_address.h" static bluetooth::manager::MockBtmInterface* btm_interface = nullptr; void bluetooth::manager::SetMockBtmInterface( MockBtmInterface* mock_btm_interface) { btm_interface = mock_btm_interface; } bool BTM_GetSecurityFlagsByTransport(const RawAddress& bd_addr, uint8_t* p_sec_flags, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->GetSecurityFlagsByTransport(bd_addr, p_sec_flags, transport); } bool BTM_IsLinkKeyKnown(const RawAddress& bd_addr, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->IsLinkKeyKnown(bd_addr, transport); } bool BTM_IsEncrypted(const RawAddress& bd_addr, tBT_TRANSPORT transport) { return btm_interface->BTM_IsEncrypted(bd_addr, transport); } tBTM_STATUS BTM_SetEncryption(const RawAddress& bd_addr, tBT_TRANSPORT transport, tBTM_SEC_CALLBACK* p_callback, void* p_ref_data, tBTM_BLE_SEC_ACT sec_act) { return btm_interface->SetEncryption(bd_addr, transport, p_callback, p_ref_data, sec_act); } bool BTM_IsPhy2mSupported(const RawAddress& remote_bda, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->IsPhy2mSupported(remote_bda, transport); } uint8_t BTM_GetPeerSCA(const RawAddress& remote_bda, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->GetPeerSCA(remote_bda, transport); } void BTM_BleSetPhy(const RawAddress& bd_addr, uint8_t tx_phys, uint8_t rx_phys, uint16_t phy_options) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; btm_interface->BleSetPhy(bd_addr, tx_phys, rx_phys, phy_options); } bool BTM_SecIsSecurityPending(const RawAddress& bd_addr) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->SecIsSecurityPending(bd_addr); } tBTM_SEC_DEV_REC* btm_find_dev(const RawAddress& bd_addr) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->FindDevice(bd_addr); } void BTM_RequestPeerSCA(RawAddress const& bd_addr, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; btm_interface->RequestPeerSCA(bd_addr, transport); } uint16_t BTM_GetHCIConnHandle(RawAddress const& bd_addr, tBT_TRANSPORT transport) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->GetHCIConnHandle(bd_addr, transport); } void acl_disconnect_from_handle(uint16_t handle, tHCI_STATUS reason, std::string comment) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->AclDisconnectFromHandle(handle, reason); } void btm_configure_data_path(uint8_t direction, uint8_t path_id, std::vector vendor_config) { LOG_ASSERT(btm_interface) << "Mock btm interface not set!"; return btm_interface->ConfigureDataPath(direction, path_id, vendor_config); }