mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Use the same technique developed for the simpler libaudiohal to
factorize the audio HAL impl.
Generated with script:
set -euo pipefail
cd hardware/interfaces/audio
# Make 2.0 and 4.0 files mostly identical by removing all 2.0, V4.0...
# and replacing it by CPP_VERSION and FILE_VERSION
# This allow both implementation to be mostly identical, except for code difference
# Also remove IncludeGuard.h as it will be included from compiler flag
# Also update license to 2018
find -name *.cpp -o -name *h |
grep -v -e service.cpp |
xargs sed -Ei \
-e 's/(#.*)V[42]_0_(.*_H_?)$/\1\2/' \
-e 's/(LOG_TAG.*)[24]_0/\1/' \
-e '/#ifndef AUDIO_HAL_VERSION/,/#endif/d' \
-e '/^#.*def.*AUDIO_HAL_VERSION\b/d' \
-e's/V[42]_0/CPP_VERSION/' \
-e 's/(#include ).(android.*)[24].0(.*).$/\1PATH(\2FILE_VERSION\3)/' \
-e 's|(#include) .(.*)[24].0/(default/.*).$|\1 "\2\3"|' \
-e 's/\bAUDIO_HAL_VERSION\b/CPP_VERSION/' \
-e '/IncludeGuard.h/d' \
-e 's/(Copyright .C. 201)./\18/'
# set MAJOR_VERSION instead of having a different macro for each version
# this allow to do preprocessor arithmetic (eg: MAJOR_VERSION >= 4)
for v in 2 4; do
find -ipath '*/'$v'.0/*/Android.bp' |
xargs sed -i -e '/cflags:/,/^$/d' -e '/vndk/{:a;/}/!{N;ba};d}' -e '$i\
cflags: [\
"-DMAJOR_VERSION='$v'",\
"-DMINOR_VERSION=0",\
"-include common/all-versions/VersionMacro.h",\
]'; done
# replace# ifdef VERSION_X by #if MAJOR_VERSION == X
find -path *all-versions/*.h |
xargs sed -Ei -e 's/def.*AUDIO_HAL_VERSION_([24])_0.*/ MAJOR_VERSION == \1/' \
-e 'T;s/ +/ /'
# copy all-versions impl in each version impl
find -path '*/[24].0/*.[hc]*' |
grep -ve all-versions -e test |
xargs -P99 -n4 sed -i -Ee '/include <.*all-versions.default/!b' \
-e 's#.*<#find -path */#' -e 's/>$/|xargs tail -n +16/' -e e
# remove all-versions impl
rm -r {core,effect}/all-versions/
# merge version impl into a single all-version
for dir in core/*.0/vts/functional/*.0/ ;do
dest=$(echo $dir | sed 's#/..0/#/all-versions/#')
mkdir -p $dest
mv -T $dir $dest
done
find -mindepth 3 -path '*/2.0/*' -a \( -name '*cpp' -o -name '*h' \) |
grep -v 'all-versions' |
sed -E 'h;s/2/4/g;H;s/4.0/all-versions/;s/4.0//;H;g;s/\n/ /g;'|
xargs -P99 -L1 sh -c '
set -euo pipefail
mkdir -p $(dirname $2);
diff --old-group-format="#if MAJOR_VERSION == 2
%<#endif
" \
--new-group-format="#if MAJOR_VERSION == 4
%>#endif
" $0 $1 > $2 || true;
rm $0 $1'
# merge the X.0 Android.bp & OWNERS in the all-versions
for dir in common effect core; do
for sub in default vts/functional; do
test -f $dir/2.0/$sub/Android.bp || continue
awk 1 $dir/*.0/$sub/Android.bp >> $dir/all-versions/$sub/Android.bp
# delete licenses except for the first one and add whitelines
sed -i -e '/^}$/{N;/^}\n$/!s/\n/&\n/}' $dir/all-versions/$sub/Android.bp
sed -i -e '1,17b;/^\/\//,/^$/{d}' $dir/all-versions/$sub/Android.bp
done
for sub in default vts; do
test -d $dir/2.0/$sub || continue
test -f $dir/2.0/$sub/OWNERS &&
awk 1 $dir/*.0/$sub/OWNERS | sort -u > $dir/all-versions/$sub/OWNERS ||
true
rm -r $dir/*.0/$sub
done
done
# delete all-versions-impl dependencies
find -name 'Android.bp' | xargs sed -i -e '/all-versions-impl/d'
# cleanup unused files
rm common/all-versions/default/include/common/all-versions/default/HidlUtils*
rm common/all-versions/util/include/common/all-versions/IncludeGuard.h
find -depth -type d -empty -delete
# Clamp consecutive number of empty lines to 2
find -name *.cpp -o -name *h | xargs sed -Ei ':a;/^\n*$/{N;ba};s/\n\n+/\n\n/'
# transform #endif\n#if to #elif
find -name *.cpp -o -name *h | xargs sed -i '/^#endif/{N;s/.*\n#if/#elif/}'
# remove leftover include guard in cpp
find -name *.cpp |xargs sed -Ei '/^#.*_H_?$/d'
# apply clang-format
find -name *cpp -o -name *h |
xargs ../../../prebuilts/clang/host/linux-x86/clang-stable/bin/clang-format --style file -i
# clang format breaks PATH(a/b) to PATH(a / b), remove the space surrounding /
find -name *cpp -o -name *h | xargs sed -i "/#include PATH/s# / #/#g"
Test: compile
Bug: 118203066
Change-Id: I3692a444307afc5f71064fe0b9e6b8af3c9ff1dd
Signed-off-by: Kevin Rocard <krocard@google.com>
332 lines
11 KiB
C++
332 lines
11 KiB
C++
/*
|
|
* Copyright (C) 2018 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.
|
|
*/
|
|
|
|
#define LOG_TAG "StreamHAL"
|
|
|
|
#include "core/default/Stream.h"
|
|
#include "common/all-versions/default/EffectMap.h"
|
|
#include "core/default/Conversions.h"
|
|
#include "core/default/Util.h"
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <android/log.h>
|
|
#include <hardware/audio.h>
|
|
#include <hardware/audio_effect.h>
|
|
#include <media/TypeConverter.h>
|
|
#include <utils/SortedVector.h>
|
|
#include <utils/Vector.h>
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace audio {
|
|
namespace CPP_VERSION {
|
|
namespace implementation {
|
|
|
|
Stream::Stream(audio_stream_t* stream) : mStream(stream) {}
|
|
|
|
Stream::~Stream() {
|
|
mStream = nullptr;
|
|
}
|
|
|
|
// static
|
|
Result Stream::analyzeStatus(const char* funcName, int status) {
|
|
return util::analyzeStatus("stream", funcName, status);
|
|
}
|
|
|
|
// static
|
|
Result Stream::analyzeStatus(const char* funcName, int status,
|
|
const std::vector<int>& ignoreErrors) {
|
|
return util::analyzeStatus("stream", funcName, status, ignoreErrors);
|
|
}
|
|
|
|
char* Stream::halGetParameters(const char* keys) {
|
|
return mStream->get_parameters(mStream, keys);
|
|
}
|
|
|
|
int Stream::halSetParameters(const char* keysAndValues) {
|
|
return mStream->set_parameters(mStream, keysAndValues);
|
|
}
|
|
|
|
// Methods from ::android::hardware::audio::CPP_VERSION::IStream follow.
|
|
Return<uint64_t> Stream::getFrameSize() {
|
|
// Needs to be implemented by interface subclasses. But can't be declared as pure virtual,
|
|
// since interface subclasses implementation do not inherit from this class.
|
|
LOG_ALWAYS_FATAL("Stream::getFrameSize is pure abstract");
|
|
return uint64_t{};
|
|
}
|
|
|
|
Return<uint64_t> Stream::getFrameCount() {
|
|
int halFrameCount;
|
|
Result retval = getParam(AudioParameter::keyFrameCount, &halFrameCount);
|
|
return retval == Result::OK ? halFrameCount : 0;
|
|
}
|
|
|
|
Return<uint64_t> Stream::getBufferSize() {
|
|
return mStream->get_buffer_size(mStream);
|
|
}
|
|
|
|
Return<uint32_t> Stream::getSampleRate() {
|
|
return mStream->get_sample_rate(mStream);
|
|
}
|
|
|
|
#if MAJOR_VERSION == 2
|
|
Return<void> Stream::getSupportedSampleRates(getSupportedSampleRates_cb _hidl_cb) {
|
|
return getSupportedSampleRates(getFormat(), _hidl_cb);
|
|
}
|
|
Return<void> Stream::getSupportedChannelMasks(getSupportedChannelMasks_cb _hidl_cb) {
|
|
return getSupportedChannelMasks(getFormat(), _hidl_cb);
|
|
}
|
|
#endif
|
|
|
|
Return<void> Stream::getSupportedSampleRates(AudioFormat format,
|
|
getSupportedSampleRates_cb _hidl_cb) {
|
|
AudioParameter context;
|
|
context.addInt(String8(AUDIO_PARAMETER_STREAM_FORMAT), int(format));
|
|
String8 halListValue;
|
|
Result result =
|
|
getParam(AudioParameter::keyStreamSupportedSamplingRates, &halListValue, context);
|
|
hidl_vec<uint32_t> sampleRates;
|
|
SortedVector<uint32_t> halSampleRates;
|
|
if (result == Result::OK) {
|
|
halSampleRates =
|
|
samplingRatesFromString(halListValue.string(), AudioParameter::valueListSeparator);
|
|
sampleRates.setToExternal(halSampleRates.editArray(), halSampleRates.size());
|
|
// Legacy get_parameter does not return a status_t, thus can not advertise of failure.
|
|
// Note that this method must succeed (non empty list) if the format is supported.
|
|
if (sampleRates.size() == 0) {
|
|
result = Result::NOT_SUPPORTED;
|
|
}
|
|
}
|
|
#if MAJOR_VERSION == 2
|
|
_hidl_cb(sampleRates);
|
|
#elif MAJOR_VERSION == 4
|
|
_hidl_cb(result, sampleRates);
|
|
#endif
|
|
return Void();
|
|
}
|
|
|
|
Return<void> Stream::getSupportedChannelMasks(AudioFormat format,
|
|
getSupportedChannelMasks_cb _hidl_cb) {
|
|
AudioParameter context;
|
|
context.addInt(String8(AUDIO_PARAMETER_STREAM_FORMAT), int(format));
|
|
String8 halListValue;
|
|
Result result = getParam(AudioParameter::keyStreamSupportedChannels, &halListValue, context);
|
|
hidl_vec<AudioChannelBitfield> channelMasks;
|
|
SortedVector<audio_channel_mask_t> halChannelMasks;
|
|
if (result == Result::OK) {
|
|
halChannelMasks =
|
|
channelMasksFromString(halListValue.string(), AudioParameter::valueListSeparator);
|
|
channelMasks.resize(halChannelMasks.size());
|
|
for (size_t i = 0; i < halChannelMasks.size(); ++i) {
|
|
channelMasks[i] = AudioChannelBitfield(halChannelMasks[i]);
|
|
}
|
|
// Legacy get_parameter does not return a status_t, thus can not advertise of failure.
|
|
// Note that this method must succeed (non empty list) if the format is supported.
|
|
if (channelMasks.size() == 0) {
|
|
result = Result::NOT_SUPPORTED;
|
|
}
|
|
}
|
|
#if MAJOR_VERSION == 2
|
|
_hidl_cb(channelMasks);
|
|
#elif MAJOR_VERSION == 4
|
|
_hidl_cb(result, channelMasks);
|
|
#endif
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::setSampleRate(uint32_t sampleRateHz) {
|
|
return setParam(AudioParameter::keySamplingRate, static_cast<int>(sampleRateHz));
|
|
}
|
|
|
|
Return<AudioChannelBitfield> Stream::getChannelMask() {
|
|
return AudioChannelBitfield(mStream->get_channels(mStream));
|
|
}
|
|
|
|
Return<Result> Stream::setChannelMask(AudioChannelBitfield mask) {
|
|
return setParam(AudioParameter::keyChannels, static_cast<int>(mask));
|
|
}
|
|
|
|
Return<AudioFormat> Stream::getFormat() {
|
|
return AudioFormat(mStream->get_format(mStream));
|
|
}
|
|
|
|
Return<void> Stream::getSupportedFormats(getSupportedFormats_cb _hidl_cb) {
|
|
String8 halListValue;
|
|
Result result = getParam(AudioParameter::keyStreamSupportedFormats, &halListValue);
|
|
hidl_vec<AudioFormat> formats;
|
|
Vector<audio_format_t> halFormats;
|
|
if (result == Result::OK) {
|
|
halFormats = formatsFromString(halListValue.string(), AudioParameter::valueListSeparator);
|
|
formats.resize(halFormats.size());
|
|
for (size_t i = 0; i < halFormats.size(); ++i) {
|
|
formats[i] = AudioFormat(halFormats[i]);
|
|
}
|
|
}
|
|
_hidl_cb(formats);
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::setFormat(AudioFormat format) {
|
|
return setParam(AudioParameter::keyFormat, static_cast<int>(format));
|
|
}
|
|
|
|
Return<void> Stream::getAudioProperties(getAudioProperties_cb _hidl_cb) {
|
|
uint32_t halSampleRate = mStream->get_sample_rate(mStream);
|
|
audio_channel_mask_t halMask = mStream->get_channels(mStream);
|
|
audio_format_t halFormat = mStream->get_format(mStream);
|
|
_hidl_cb(halSampleRate, AudioChannelBitfield(halMask), AudioFormat(halFormat));
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::addEffect(uint64_t effectId) {
|
|
effect_handle_t halEffect = EffectMap::getInstance().get(effectId);
|
|
if (halEffect != NULL) {
|
|
return analyzeStatus("add_audio_effect", mStream->add_audio_effect(mStream, halEffect));
|
|
} else {
|
|
ALOGW("Invalid effect ID passed from client: %" PRIu64, effectId);
|
|
return Result::INVALID_ARGUMENTS;
|
|
}
|
|
}
|
|
|
|
Return<Result> Stream::removeEffect(uint64_t effectId) {
|
|
effect_handle_t halEffect = EffectMap::getInstance().get(effectId);
|
|
if (halEffect != NULL) {
|
|
return analyzeStatus("remove_audio_effect",
|
|
mStream->remove_audio_effect(mStream, halEffect));
|
|
} else {
|
|
ALOGW("Invalid effect ID passed from client: %" PRIu64, effectId);
|
|
return Result::INVALID_ARGUMENTS;
|
|
}
|
|
}
|
|
|
|
Return<Result> Stream::standby() {
|
|
return analyzeStatus("standby", mStream->standby(mStream));
|
|
}
|
|
|
|
Return<Result> Stream::setHwAvSync(uint32_t hwAvSync) {
|
|
return setParam(AudioParameter::keyStreamHwAvSync, static_cast<int>(hwAvSync));
|
|
}
|
|
|
|
#if MAJOR_VERSION == 2
|
|
Return<AudioDevice> Stream::getDevice() {
|
|
int device = 0;
|
|
Result retval = getParam(AudioParameter::keyRouting, &device);
|
|
return retval == Result::OK ? static_cast<AudioDevice>(device) : AudioDevice::NONE;
|
|
}
|
|
|
|
Return<Result> Stream::setDevice(const DeviceAddress& address) {
|
|
return setParam(AudioParameter::keyRouting, address);
|
|
}
|
|
|
|
Return<void> Stream::getParameters(const hidl_vec<hidl_string>& keys, getParameters_cb _hidl_cb) {
|
|
getParametersImpl({} /* context */, keys, _hidl_cb);
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::setParameters(const hidl_vec<ParameterValue>& parameters) {
|
|
return setParametersImpl({} /* context */, parameters);
|
|
}
|
|
|
|
Return<Result> Stream::setConnectedState(const DeviceAddress& address, bool connected) {
|
|
return setParam(
|
|
connected ? AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect,
|
|
address);
|
|
}
|
|
#elif MAJOR_VERSION == 4
|
|
Return<void> Stream::getDevices(getDevices_cb _hidl_cb) {
|
|
int device = 0;
|
|
Result retval = getParam(AudioParameter::keyRouting, &device);
|
|
hidl_vec<DeviceAddress> devices;
|
|
if (retval == Result::OK) {
|
|
devices.resize(1);
|
|
devices[0].device = static_cast<AudioDevice>(device);
|
|
}
|
|
_hidl_cb(retval, devices);
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::setDevices(const hidl_vec<DeviceAddress>& devices) {
|
|
// FIXME: can the legacy API set multiple device with address ?
|
|
if (devices.size() > 1) {
|
|
return Result::NOT_SUPPORTED;
|
|
}
|
|
DeviceAddress address;
|
|
if (devices.size() == 1) {
|
|
address = devices[0];
|
|
} else {
|
|
address.device = AudioDevice::NONE;
|
|
}
|
|
return setParam(AudioParameter::keyRouting, address);
|
|
}
|
|
Return<void> Stream::getParameters(const hidl_vec<ParameterValue>& context,
|
|
const hidl_vec<hidl_string>& keys, getParameters_cb _hidl_cb) {
|
|
getParametersImpl(context, keys, _hidl_cb);
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::setParameters(const hidl_vec<ParameterValue>& context,
|
|
const hidl_vec<ParameterValue>& parameters) {
|
|
return setParametersImpl(context, parameters);
|
|
}
|
|
#endif
|
|
|
|
Return<Result> Stream::start() {
|
|
return Result::NOT_SUPPORTED;
|
|
}
|
|
|
|
Return<Result> Stream::stop() {
|
|
return Result::NOT_SUPPORTED;
|
|
}
|
|
|
|
Return<void> Stream::createMmapBuffer(int32_t minSizeFrames __unused,
|
|
createMmapBuffer_cb _hidl_cb) {
|
|
Result retval(Result::NOT_SUPPORTED);
|
|
MmapBufferInfo info;
|
|
_hidl_cb(retval, info);
|
|
return Void();
|
|
}
|
|
|
|
Return<void> Stream::getMmapPosition(getMmapPosition_cb _hidl_cb) {
|
|
Result retval(Result::NOT_SUPPORTED);
|
|
MmapPosition position;
|
|
_hidl_cb(retval, position);
|
|
return Void();
|
|
}
|
|
|
|
Return<Result> Stream::close() {
|
|
return Result::NOT_SUPPORTED;
|
|
}
|
|
|
|
Return<void> Stream::debug(const hidl_handle& fd, const hidl_vec<hidl_string>& /* options */) {
|
|
if (fd.getNativeHandle() != nullptr && fd->numFds == 1) {
|
|
analyzeStatus("dump", mStream->dump(mStream, fd->data[0]));
|
|
}
|
|
return Void();
|
|
}
|
|
|
|
#if MAJOR_VERSION == 2
|
|
Return<void> Stream::debugDump(const hidl_handle& fd) {
|
|
return debug(fd, {} /* options */);
|
|
}
|
|
#endif
|
|
|
|
} // namespace implementation
|
|
} // namespace CPP_VERSION
|
|
} // namespace audio
|
|
} // namespace hardware
|
|
} // namespace android
|