* Copyright (c) 2021 Huawei Device Co., Ltd.
* 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 <hdf_log.h>
#include "audio_adapter_info_common.h"
#include "audio_internal.h"
#include "audio_bluetooth_manager.h"
#include "fast_audio_render.h"
#include "bluetooth_def.h"
#include "bluetooth_host.h"
namespace OHOS::HDI::Audio_Bluetooth {
int32_t AudioManagerGetAllAdapters(struct AudioManager *manager,
struct AudioAdapterDescriptor **descs,
int *size)
{
int32_t ret;
HDF_LOGD("%s", __func__);
if (manager == NULL || descs == NULL || size == NULL) {
return AUDIO_HAL_ERR_INVALID_PARAM;
}
ret = AudioAdaptersForUser(descs, size);
if (ret < 0) {
HDF_LOGE("AudioAdaptersForUser FAIL!");
return AUDIO_HAL_ERR_NOTREADY;
}
return AUDIO_HAL_SUCCESS;
}
bool SetupBluetoothInterface(struct AudioHwAdapter *hwAdapter, const struct AudioAdapterDescriptor *desc)
{
#ifndef A2DP_HDI_SERVICE
OHOS::Bluetooth::GetProxy();
OHOS::Bluetooth::RegisterObserver();
return true;
#else
bool ret = false;
if (strcmp(desc->adapterName, "bt_a2dp_fast") == 0) {
HDF_LOGI("%{public}s, fast set up", __func__);
ret = OHOS::Bluetooth::FastSetUp();
} else if (strcmp(desc->adapterName, "bt_hdap") == 0) {
HDF_LOGI("%{public}s, hdap set up", __func__);
ret = OHOS::Bluetooth::SetUpCapture();
} else if (strcmp(desc->adapterName, "bt_hearing_aid") == 0) {
HDF_LOGI("%{public}s, hearing aid set up", __func__);
ret = OHOS::Bluetooth::SetUpHearingAid();
} else {
HDF_LOGI("%{public}s, normal set up", __func__);
ret = OHOS::Bluetooth::SetUp();
}
return ret;
#endif
}
int32_t AudioManagerLoadAdapter(struct AudioManager *manager, const struct AudioAdapterDescriptor *desc,
struct AudioAdapter **adapter)
{
HDF_LOGD("%{public}s", __func__);
if (manager == NULL || desc == NULL || desc->adapterName == NULL || desc->ports == NULL || adapter == NULL) {
return AUDIO_HAL_ERR_INVALID_PARAM;
}
HDF_LOGI("%{public}s: adapter name %{public}s", __func__, desc->adapterName);
if (AudioAdapterExist(desc->adapterName)) {
HDF_LOGE("%{public}s: not supported this adapter %{public}s", __func__, desc->adapterName);
return AUDIO_HAL_ERR_INTERNAL;
}
struct AudioHwAdapter *hwAdapter = reinterpret_cast<struct AudioHwAdapter *>(calloc(1, sizeof(*hwAdapter)));
if (hwAdapter == NULL) {
HDF_LOGE("%{public}s: calloc AudioHwAdapter failed", __func__);
return AUDIO_HAL_ERR_MALLOC_FAIL;
}
hwAdapter->common.InitAllPorts = AudioAdapterInitAllPorts;
hwAdapter->common.CreateRender = AudioAdapterCreateRender;
hwAdapter->common.DestroyRender = AudioAdapterDestroyRender;
hwAdapter->common.CreateCapture = AudioAdapterCreateCapture;
hwAdapter->common.DestroyCapture = AudioAdapterDestroyCapture;
hwAdapter->common.GetPortCapability = AudioAdapterGetPortCapability;
hwAdapter->common.SetPassthroughMode = AudioAdapterSetPassthroughMode;
hwAdapter->common.GetPassthroughMode = AudioAdapterGetPassthroughMode;
hwAdapter->common.SetExtraParams = AudioAdapterSetExtraParams;
hwAdapter->common.GetExtraParams = AudioAdapterGetExtraParams;
*adapter = &hwAdapter->common;
hwAdapter->adapterDescriptor = *desc;
hwAdapter->adapterMgrRenderFlag = 0;
hwAdapter->adapterMgrCaptureFlag = 0;
HDF_LOGI("%{public}s call bluetooth RegisterObserver interface", __func__);
if (!SetupBluetoothInterface(hwAdapter, desc)) {
return AUDIO_HAL_ERR_INTERNAL;
}
return AUDIO_HAL_SUCCESS;
}
void AudioManagerUnloadAdapter(struct AudioManager *manager, struct AudioAdapter *adapter)
{
struct AudioHwAdapter *hwAdapter = reinterpret_cast<struct AudioHwAdapter *>(adapter);
if (manager == NULL || hwAdapter == NULL) {
return;
}
#ifdef A2DP_HDI_SERVICE
bool isFastAdapter = (strcmp(hwAdapter->adapterDescriptor.adapterName, "bt_a2dp_fast") == 0);
bool isHdapAdapter = (strcmp(hwAdapter->adapterDescriptor.adapterName, "bt_hdap") == 0);
bool isHearingAidAdapter = (strcmp(hwAdapter->adapterDescriptor.adapterName, "bt_hearing_aid") == 0);
#endif
if (hwAdapter->portCapabilitys != NULL) {
int32_t portNum = hwAdapter->adapterDescriptor.portNum;
int32_t i = 0;
while (i < portNum) {
if (&hwAdapter->portCapabilitys[i] != NULL) {
AudioMemFree((void **)&hwAdapter->portCapabilitys[i].capability.subPorts);
}
i++;
}
AudioMemFree(reinterpret_cast<void **>(&hwAdapter->portCapabilitys));
}
AudioMemFree(reinterpret_cast<void **>(&adapter));
HDF_LOGI("%s call bluetooth DeRegisterObserver interface", __func__);
#ifndef A2DP_HDI_SERVICE
OHOS::Bluetooth::DeRegisterObserver();
OHOS::Bluetooth::BluetoothHost::GetDefaultHost().Close();
#else
if (isFastAdapter) {
OHOS::Bluetooth::FastTearDown();
} else if (isHdapAdapter) {
OHOS::Bluetooth::TearDownCapture();
} else if (isHearingAidAdapter) {
OHOS::Bluetooth::TearDownHearingAid();
} else {
OHOS::Bluetooth::TearDown();
}
OHOS::Bluetooth::UnBlockStart();
#endif
}
static struct AudioManager g_audioManagerFuncs = {
.GetAllAdapters = AudioManagerGetAllAdapters,
.LoadAdapter = AudioManagerLoadAdapter,
.UnloadAdapter = AudioManagerUnloadAdapter,
};
struct AudioManager *GetAudioManagerFuncs(void)
{
return &g_audioManagerFuncs;
}
}