mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:09:42 +00:00
Upcoming implementations of the streams of the primary module will need to change the underlying stream type depending on the current connected device. The stream context must persist, thus its life time must be bound to the IStreamIn/Out implementation. Move the StreamContext instance under ownership of StreamIn/Out. Add StreamCommonImpl::onClose so that the owner of the context may know when it is safe to reset it. Re-arrange the order of the arguments when creating a stream so that the context always comes first. Bug: 264712385 Test: atest VtsHalAudioCoreTargetTest Change-Id: Iaf13d4bc3a53cbfc27264d3abd1f6c417ece3941
126 lines
5.2 KiB
C++
126 lines
5.2 KiB
C++
/*
|
|
* Copyright (C) 2023 The Android Open Source Project
|
|
*
|
|
* 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 <limits>
|
|
|
|
#define LOG_TAG "AHAL_StreamUsb"
|
|
#include <android-base/logging.h>
|
|
|
|
#include <Utils.h>
|
|
#include <error/expected_utils.h>
|
|
|
|
#include "UsbAlsaMixerControl.h"
|
|
#include "core-impl/StreamUsb.h"
|
|
|
|
using aidl::android::hardware::audio::common::getChannelCount;
|
|
using aidl::android::hardware::audio::common::SinkMetadata;
|
|
using aidl::android::hardware::audio::common::SourceMetadata;
|
|
using aidl::android::media::audio::common::AudioDevice;
|
|
using aidl::android::media::audio::common::AudioOffloadInfo;
|
|
using aidl::android::media::audio::common::MicrophoneDynamicInfo;
|
|
using aidl::android::media::audio::common::MicrophoneInfo;
|
|
|
|
namespace aidl::android::hardware::audio::core {
|
|
|
|
StreamUsb::StreamUsb(const StreamContext& context, const Metadata& metadata)
|
|
: StreamAlsa(context, metadata, 1 /*readWriteRetries*/) {}
|
|
|
|
ndk::ScopedAStatus StreamUsb::setConnectedDevices(
|
|
const std::vector<AudioDevice>& connectedDevices) {
|
|
if (mIsInput && connectedDevices.size() > 1) {
|
|
LOG(ERROR) << __func__ << ": wrong device size(" << connectedDevices.size()
|
|
<< ") for input stream";
|
|
return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION);
|
|
}
|
|
std::vector<alsa::DeviceProfile> connectedDeviceProfiles;
|
|
for (const auto& connectedDevice : connectedDevices) {
|
|
auto profile = alsa::getDeviceProfile(connectedDevice, mIsInput);
|
|
if (!profile.has_value()) {
|
|
LOG(ERROR) << __func__
|
|
<< ": unsupported device address=" << connectedDevice.address.toString();
|
|
return ndk::ScopedAStatus::fromExceptionCode(EX_ILLEGAL_ARGUMENT);
|
|
}
|
|
connectedDeviceProfiles.push_back(*profile);
|
|
}
|
|
RETURN_STATUS_IF_ERROR(setConnectedDevices(connectedDevices));
|
|
std::lock_guard guard(mLock);
|
|
mConnectedDeviceProfiles = std::move(connectedDeviceProfiles);
|
|
mConnectedDevicesUpdated.store(true, std::memory_order_release);
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
::android::status_t StreamUsb::transfer(void* buffer, size_t frameCount, size_t* actualFrameCount,
|
|
int32_t* latencyMs) {
|
|
if (mConnectedDevicesUpdated.load(std::memory_order_acquire)) {
|
|
// 'setConnectedDevices' was called. I/O will be restarted.
|
|
*actualFrameCount = 0;
|
|
*latencyMs = StreamDescriptor::LATENCY_UNKNOWN;
|
|
return ::android::OK;
|
|
}
|
|
return StreamAlsa::transfer(buffer, frameCount, actualFrameCount, latencyMs);
|
|
}
|
|
|
|
std::vector<alsa::DeviceProfile> StreamUsb::getDeviceProfiles() {
|
|
std::vector<alsa::DeviceProfile> connectedDevices;
|
|
{
|
|
std::lock_guard guard(mLock);
|
|
connectedDevices = mConnectedDeviceProfiles;
|
|
mConnectedDevicesUpdated.store(false, std::memory_order_release);
|
|
}
|
|
return connectedDevices;
|
|
}
|
|
|
|
StreamInUsb::StreamInUsb(StreamContext&& context, const SinkMetadata& sinkMetadata,
|
|
const std::vector<MicrophoneInfo>& microphones)
|
|
: StreamIn(std::move(context), microphones), StreamUsb(StreamIn::mContext, sinkMetadata) {}
|
|
|
|
ndk::ScopedAStatus StreamInUsb::getActiveMicrophones(
|
|
std::vector<MicrophoneDynamicInfo>* _aidl_return __unused) {
|
|
LOG(DEBUG) << __func__ << ": not supported";
|
|
return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION);
|
|
}
|
|
|
|
StreamOutUsb::StreamOutUsb(StreamContext&& context, const SourceMetadata& sourceMetadata,
|
|
const std::optional<AudioOffloadInfo>& offloadInfo)
|
|
: StreamOut(std::move(context), offloadInfo),
|
|
StreamUsb(StreamOut::mContext, sourceMetadata),
|
|
mChannelCount(getChannelCount(getContext().getChannelLayout())) {}
|
|
|
|
ndk::ScopedAStatus StreamOutUsb::getHwVolume(std::vector<float>* _aidl_return) {
|
|
*_aidl_return = mHwVolumes;
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
ndk::ScopedAStatus StreamOutUsb::setHwVolume(const std::vector<float>& in_channelVolumes) {
|
|
// Avoid using mConnectedDeviceProfiles because it requires a lock.
|
|
for (const auto& device : getConnectedDevices()) {
|
|
if (auto deviceProfile = alsa::getDeviceProfile(device, mIsInput);
|
|
deviceProfile.has_value()) {
|
|
if (auto result = usb::UsbAlsaMixerControl::getInstance().setVolumes(
|
|
deviceProfile->card, in_channelVolumes);
|
|
!result.isOk()) {
|
|
LOG(ERROR) << __func__
|
|
<< ": failed to set volume for device address=" << *deviceProfile;
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
mHwVolumes = in_channelVolumes;
|
|
return ndk::ScopedAStatus::ok();
|
|
}
|
|
|
|
} // namespace aidl::android::hardware::audio::core
|