/* * 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 "bta_gatt_api_mock.h" #include #include "types/bluetooth/uuid.h" #include "types/raw_address.h" using namespace bluetooth; static gatt::MockBtaGattInterface* gatt_interface = nullptr; static gatt::MockBtaGattServerInterface* gatt_server_interface = nullptr; void gatt::SetMockBtaGattInterface(MockBtaGattInterface* mock_bta_gatt_interface) { gatt_interface = mock_bta_gatt_interface; } void BTA_GATTC_AppRegister(const std::string& name, tBTA_GATTC_CBACK* p_client_cb, BtaAppRegisterCallback cb, bool eatt_support) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->AppRegister(name, p_client_cb, cb, eatt_support); } void BTA_GATTC_AppDeregister(tGATT_IF client_if) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->AppDeregister(client_if); } void BTA_GATTC_Open(tGATT_IF client_if, const RawAddress& remote_bda, tBTM_BLE_CONN_TYPE connection_type, bool opportunistic) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->Open(client_if, remote_bda, connection_type, opportunistic); } void BTA_GATTC_CancelOpen(tGATT_IF client_if, const RawAddress& remote_bda, bool is_direct) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->CancelOpen(client_if, remote_bda, is_direct); } void BTA_GATTC_Close(uint16_t conn_id) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->Close(conn_id); } void BTA_GATTC_ServiceSearchRequest(uint16_t conn_id, bluetooth::Uuid p_srvc_uuid) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->ServiceSearchRequest(conn_id, &p_srvc_uuid); } void BTA_GATTC_ServiceSearchAllRequest(uint16_t conn_id) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->ServiceSearchRequest(conn_id, nullptr); } void BTA_GATTC_SendIndConfirm(uint16_t conn_id, uint16_t cid) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->SendIndConfirm(conn_id, cid); } const std::list* BTA_GATTC_GetServices(uint16_t conn_id) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); return gatt_interface->GetServices(conn_id); } const gatt::Characteristic* BTA_GATTC_GetCharacteristic(uint16_t conn_id, uint16_t handle) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); return gatt_interface->GetCharacteristic(conn_id, handle); } const gatt::Service* BTA_GATTC_GetOwningService(uint16_t conn_id, uint16_t handle) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); return gatt_interface->GetOwningService(conn_id, handle); } void BTA_GATTC_ReadCharacteristic(tCONN_ID conn_id, uint16_t handle, tGATT_AUTH_REQ auth_req, GATT_READ_OP_CB callback, void* cb_data) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->ReadCharacteristic(conn_id, handle, auth_req, callback, cb_data); } void BTA_GATTC_WriteCharValue(tCONN_ID conn_id, uint16_t handle, tGATT_WRITE_TYPE write_type, std::vector value, tGATT_AUTH_REQ auth_req, GATT_WRITE_OP_CB callback, void* cb_data) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->WriteCharValue(conn_id, handle, write_type, value, auth_req, callback, cb_data); } void BTA_GATTC_WriteCharDescr(tCONN_ID conn_id, uint16_t handle, std::vector value, tGATT_AUTH_REQ auth_req, GATT_WRITE_OP_CB callback, void* cb_data) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->WriteCharDescr(conn_id, handle, value, auth_req, callback, cb_data); } tGATT_STATUS BTA_GATTC_RegisterForNotifications(tGATT_IF client_if, const RawAddress& remote_bda, uint16_t handle) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); return gatt_interface->RegisterForNotifications(client_if, remote_bda, handle); } tGATT_STATUS BTA_GATTC_DeregisterForNotifications(tGATT_IF client_if, const RawAddress& remote_bda, uint16_t handle) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); return gatt_interface->DeregisterForNotifications(client_if, remote_bda, handle); } void BTA_GATTC_ConfigureMTU(tCONN_ID conn_id, uint16_t mtu) { log::assert_that(gatt_interface != nullptr, "Mock GATT interface not set!"); gatt_interface->ConfigureMTU(conn_id, mtu); } void BTA_GATTS_Disable(void) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->Disable(); } void BTA_GATTS_AppDeregister(tGATT_IF server_if) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->AppDeregister(server_if); } void BTA_GATTS_AppRegister(const bluetooth::Uuid& app_uuid, tBTA_GATTS_CBACK* p_cback, bool eatt_support) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->AppRegister(app_uuid, p_cback, eatt_support); } void BTA_GATTS_CancelOpen(tGATT_IF server_if, const RawAddress& remote_bda, bool is_direct) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->CancelOpen(server_if, remote_bda, is_direct); } void BTA_GATTS_Close(uint16_t conn_id) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->Close(conn_id); } void BTA_GATTS_AddService(tGATT_IF server_if, std::vector service, BTA_GATTS_AddServiceCb cb) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->AddService(server_if, service, cb); } void BTA_GATTS_DeleteService(uint16_t service_id) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->DeleteService(service_id); } void BTA_GATTS_HandleValueIndication(uint16_t conn_id, uint16_t attr_id, std::vector value, bool need_confirm) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->HandleValueIndication(conn_id, attr_id, value, need_confirm); } void BTA_GATTS_Open(tGATT_IF server_if, const RawAddress& remote_bda, tBLE_ADDR_TYPE addr_type, bool is_direct, tBT_TRANSPORT transport) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->Open(server_if, remote_bda, addr_type, is_direct, transport); } void BTA_GATTS_SendRsp(uint16_t conn_id, uint32_t trans_id, tGATT_STATUS status, tGATTS_RSP* p_msg) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->SendRsp(conn_id, trans_id, status, p_msg); } void BTA_GATTS_StopService(uint16_t service_id) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->StopService(service_id); } void BTA_GATTS_InitBonded(void) { log::assert_that(gatt_server_interface != nullptr, "Mock GATT server interface not set!"); gatt_server_interface->InitBonded(); } void gatt::SetMockBtaGattServerInterface( MockBtaGattServerInterface* mock_bta_gatt_server_interface) { gatt_server_interface = mock_bta_gatt_server_interface; }