// Copyright (C) 2020 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. #pragma once #include // clang-format off #include PATH(android/hardware/audio/FILE_VERSION/IDevice.h) // clang-format on #include #include namespace audio_proxy { namespace service { using ::android::sp; using ::android::hardware::hidl_array; using ::android::hardware::hidl_bitfield; using ::android::hardware::hidl_death_recipient; using ::android::hardware::hidl_memory; using ::android::hardware::hidl_string; using ::android::hardware::hidl_vec; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::hardware::audio::common::CPP_VERSION::AudioConfig; using ::android::hardware::audio::common::CPP_VERSION::AudioPatchHandle; using ::android::hardware::audio::common::CPP_VERSION::AudioPort; using ::android::hardware::audio::common::CPP_VERSION::AudioPortConfig; using ::android::hardware::audio::common::CPP_VERSION::AudioPortHandle; using ::android::hardware::audio::common::CPP_VERSION::DeviceAddress; using ::android::hardware::audio::common::CPP_VERSION::SinkMetadata; using ::android::hardware::audio::common::CPP_VERSION::SourceMetadata; using ::android::hardware::audio::CPP_VERSION::IDevice; using ::android::hardware::audio::CPP_VERSION::ParameterValue; using ::android::hardware::audio::CPP_VERSION::Result; #if MAJOR_VERSION >= 7 using ::android::hardware::audio::CPP_VERSION::AudioInOutFlag; #else using ::android::hardware::audio::common::CPP_VERSION::AudioInputFlag; using ::android::hardware::audio::common::CPP_VERSION::AudioOutputFlag; #endif class BusStreamProvider; struct ServiceConfig; #if MAJOR_VERSION == 7 && MINOR_VERSION == 1 class DeviceImpl : public android::hardware::audio::V7_1::IDevice { #else class DeviceImpl : public IDevice { #endif public: DeviceImpl(BusStreamProvider& busStreamProvider, const ServiceConfig& config); // Methods from ::android::hardware::audio::V5_0::IDevice follow. Return initCheck() override; Return setMasterVolume(float volume) override; Return getMasterVolume(getMasterVolume_cb _hidl_cb) override; Return setMicMute(bool mute) override; Return getMicMute(getMicMute_cb _hidl_cb) override; Return setMasterMute(bool mute) override; Return getMasterMute(getMasterMute_cb _hidl_cb) override; Return getInputBufferSize(const AudioConfig& config, getInputBufferSize_cb _hidl_cb) override; #if MAJOR_VERSION >= 7 Return openOutputStream(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, const hidl_vec& flags, const SourceMetadata& sourceMetadata, openOutputStream_cb _hidl_cb) override; Return openInputStream(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, const hidl_vec& flags, const SinkMetadata& sinkMetadata, openInputStream_cb _hidl_cb) override; #else Return openOutputStream(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, hidl_bitfield flags, const SourceMetadata& sourceMetadata, openOutputStream_cb _hidl_cb) override; Return openInputStream(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, hidl_bitfield flags, const SinkMetadata& sinkMetadata, openInputStream_cb _hidl_cb) override; #endif Return supportsAudioPatches() override; Return createAudioPatch(const hidl_vec& sources, const hidl_vec& sinks, createAudioPatch_cb _hidl_cb) override; Return releaseAudioPatch(AudioPatchHandle patch) override; Return getAudioPort(const AudioPort& port, getAudioPort_cb _hidl_cb) override; Return setAudioPortConfig(const AudioPortConfig& config) override; Return getHwAvSync(getHwAvSync_cb _hidl_cb) override; Return setScreenState(bool turnedOn) override; Return getParameters(const hidl_vec& context, const hidl_vec& keys, getParameters_cb _hidl_cb) override; Return setParameters( const hidl_vec& context, const hidl_vec& parameters) override; Return getMicrophones(getMicrophones_cb _hidl_cb) override; Return setConnectedState(const DeviceAddress& address, bool connected) override; #if MAJOR_VERSION >= 6 Return updateAudioPatch(AudioPatchHandle previousPatch, const hidl_vec& sources, const hidl_vec& sinks, updateAudioPatch_cb _hidl_cb) override; Return close() override; Return addDeviceEffect(AudioPortHandle device, uint64_t effectId) override; Return removeDeviceEffect(AudioPortHandle device, uint64_t effectId) override; #endif #if MAJOR_VERSION == 7 && MINOR_VERSION == 1 Return openOutputStream_7_1(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, const hidl_vec& flags, const SourceMetadata& sourceMetadata, openOutputStream_7_1_cb _hidl_cb) override; Return setConnectedState_7_1(const AudioPort& devicePort, bool connected) override; #endif private: #if MAJOR_VERSION >= 7 template Return openOutputStreamImpl(int32_t ioHandle, const DeviceAddress& device, const AudioConfig& config, const hidl_vec& flags, const SourceMetadata& sourceMetadata, CallbackType _hidl_cb); #endif BusStreamProvider& mBusStreamProvider; const ServiceConfig& mServiceConfig; std::set mAudioPatchHandles; }; } // namespace service } // namespace audio_proxy