Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 17 | #define LOG_TAG "AudioPolicyClientImpl" |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 |
| 19 | |
Eric Laurent | df3dc7e | 2014-07-27 18:39:40 -0700 | [diff] [blame] | 20 | #include <soundtrigger/SoundTrigger.h> |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 21 | #include <utils/Log.h> |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 22 | #include "AudioPolicyService.h" |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 23 | |
| 24 | namespace android { |
| 25 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 26 | /* implementation of the client interface from the policy manager */ |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 27 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 28 | audio_module_handle_t AudioPolicyService::AudioPolicyClient::loadHwModule(const char *name) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 29 | { |
| 30 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 31 | if (af == 0) { |
| 32 | ALOGW("%s: could not get AudioFlinger", __func__); |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | return af->loadHwModule(name); |
| 37 | } |
| 38 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 39 | status_t AudioPolicyService::AudioPolicyClient::openOutput(audio_module_handle_t module, |
| 40 | audio_io_handle_t *output, |
| 41 | audio_config_t *config, |
| 42 | audio_devices_t *devices, |
| 43 | const String8& address, |
| 44 | uint32_t *latencyMs, |
| 45 | audio_output_flags_t flags) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 46 | { |
| 47 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 48 | if (af == 0) { |
| 49 | ALOGW("%s: could not get AudioFlinger", __func__); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 50 | return PERMISSION_DENIED; |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 51 | } |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 52 | return af->openOutput(module, output, config, devices, address, latencyMs, flags); |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 53 | } |
| 54 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 55 | audio_io_handle_t AudioPolicyService::AudioPolicyClient::openDuplicateOutput( |
| 56 | audio_io_handle_t output1, |
| 57 | audio_io_handle_t output2) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 58 | { |
| 59 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 60 | if (af == 0) { |
| 61 | ALOGW("%s: could not get AudioFlinger", __func__); |
| 62 | return 0; |
| 63 | } |
| 64 | return af->openDuplicateOutput(output1, output2); |
| 65 | } |
| 66 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 67 | status_t AudioPolicyService::AudioPolicyClient::closeOutput(audio_io_handle_t output) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 68 | { |
| 69 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 70 | if (af == 0) { |
| 71 | return PERMISSION_DENIED; |
| 72 | } |
| 73 | |
| 74 | return af->closeOutput(output); |
| 75 | } |
| 76 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 77 | status_t AudioPolicyService::AudioPolicyClient::suspendOutput(audio_io_handle_t output) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 78 | { |
| 79 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 80 | if (af == 0) { |
| 81 | ALOGW("%s: could not get AudioFlinger", __func__); |
| 82 | return PERMISSION_DENIED; |
| 83 | } |
| 84 | |
| 85 | return af->suspendOutput(output); |
| 86 | } |
| 87 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 88 | status_t AudioPolicyService::AudioPolicyClient::restoreOutput(audio_io_handle_t output) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 89 | { |
| 90 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 91 | if (af == 0) { |
| 92 | ALOGW("%s: could not get AudioFlinger", __func__); |
| 93 | return PERMISSION_DENIED; |
| 94 | } |
| 95 | |
| 96 | return af->restoreOutput(output); |
| 97 | } |
| 98 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 99 | status_t AudioPolicyService::AudioPolicyClient::openInput(audio_module_handle_t module, |
| 100 | audio_io_handle_t *input, |
| 101 | audio_config_t *config, |
| 102 | audio_devices_t *device, |
| 103 | const String8& address, |
| 104 | audio_source_t source, |
| 105 | audio_input_flags_t flags) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 106 | { |
| 107 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 108 | if (af == 0) { |
| 109 | ALOGW("%s: could not get AudioFlinger", __func__); |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 110 | return PERMISSION_DENIED; |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 111 | } |
| 112 | |
Eric Laurent | cf2c021 | 2014-07-25 16:20:43 -0700 | [diff] [blame] | 113 | return af->openInput(module, input, config, device, address, source, flags); |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 114 | } |
| 115 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 116 | status_t AudioPolicyService::AudioPolicyClient::closeInput(audio_io_handle_t input) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 117 | { |
| 118 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 119 | if (af == 0) { |
| 120 | return PERMISSION_DENIED; |
| 121 | } |
| 122 | |
| 123 | return af->closeInput(input); |
| 124 | } |
| 125 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 126 | status_t AudioPolicyService::AudioPolicyClient::setStreamVolume(audio_stream_type_t stream, |
| 127 | float volume, audio_io_handle_t output, |
| 128 | int delay_ms) |
| 129 | { |
| 130 | return mAudioPolicyService->setStreamVolume(stream, volume, output, |
| 131 | delay_ms); |
| 132 | } |
| 133 | |
| 134 | status_t AudioPolicyService::AudioPolicyClient::invalidateStream(audio_stream_type_t stream) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 135 | { |
| 136 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 137 | if (af == 0) { |
| 138 | return PERMISSION_DENIED; |
| 139 | } |
| 140 | |
| 141 | return af->invalidateStream(stream); |
| 142 | } |
| 143 | |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 144 | void AudioPolicyService::AudioPolicyClient::setParameters(audio_io_handle_t io_handle, |
| 145 | const String8& keyValuePairs, |
| 146 | int delay_ms) |
| 147 | { |
| 148 | mAudioPolicyService->setParameters(io_handle, keyValuePairs.string(), delay_ms); |
| 149 | } |
| 150 | |
| 151 | String8 AudioPolicyService::AudioPolicyClient::getParameters(audio_io_handle_t io_handle, |
| 152 | const String8& keys) |
| 153 | { |
| 154 | String8 result = AudioSystem::getParameters(io_handle, keys); |
| 155 | return result; |
| 156 | } |
| 157 | |
| 158 | status_t AudioPolicyService::AudioPolicyClient::startTone(audio_policy_tone_t tone, |
| 159 | audio_stream_type_t stream) |
| 160 | { |
| 161 | return mAudioPolicyService->startTone(tone, stream); |
| 162 | } |
| 163 | |
| 164 | status_t AudioPolicyService::AudioPolicyClient::stopTone() |
| 165 | { |
| 166 | return mAudioPolicyService->stopTone(); |
| 167 | } |
| 168 | |
| 169 | status_t AudioPolicyService::AudioPolicyClient::setVoiceVolume(float volume, int delay_ms) |
| 170 | { |
| 171 | return mAudioPolicyService->setVoiceVolume(volume, delay_ms); |
| 172 | } |
| 173 | |
Glenn Kasten | d848eb4 | 2016-03-08 13:42:11 -0800 | [diff] [blame^] | 174 | status_t AudioPolicyService::AudioPolicyClient::moveEffects(audio_session_t session, |
Eric Laurent | dce54a1 | 2014-03-10 12:19:46 -0700 | [diff] [blame] | 175 | audio_io_handle_t src_output, |
| 176 | audio_io_handle_t dst_output) |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 177 | { |
| 178 | sp<IAudioFlinger> af = AudioSystem::get_audio_flinger(); |
| 179 | if (af == 0) { |
| 180 | return PERMISSION_DENIED; |
| 181 | } |
| 182 | |
| 183 | return af->moveEffects(session, src_output, dst_output); |
| 184 | } |
| 185 | |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 186 | status_t AudioPolicyService::AudioPolicyClient::createAudioPatch(const struct audio_patch *patch, |
| 187 | audio_patch_handle_t *handle, |
| 188 | int delayMs) |
| 189 | { |
| 190 | return mAudioPolicyService->clientCreateAudioPatch(patch, handle, delayMs); |
| 191 | } |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 192 | |
Eric Laurent | 951f455 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 193 | status_t AudioPolicyService::AudioPolicyClient::releaseAudioPatch(audio_patch_handle_t handle, |
| 194 | int delayMs) |
| 195 | { |
| 196 | return mAudioPolicyService->clientReleaseAudioPatch(handle, delayMs); |
| 197 | } |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 198 | |
Eric Laurent | e1715a4 | 2014-05-20 11:30:42 -0700 | [diff] [blame] | 199 | status_t AudioPolicyService::AudioPolicyClient::setAudioPortConfig( |
| 200 | const struct audio_port_config *config, |
| 201 | int delayMs) |
| 202 | { |
| 203 | return mAudioPolicyService->clientSetAudioPortConfig(config, delayMs); |
| 204 | } |
| 205 | |
Eric Laurent | b52c152 | 2014-05-20 11:27:36 -0700 | [diff] [blame] | 206 | void AudioPolicyService::AudioPolicyClient::onAudioPortListUpdate() |
| 207 | { |
| 208 | mAudioPolicyService->onAudioPortListUpdate(); |
| 209 | } |
| 210 | |
| 211 | void AudioPolicyService::AudioPolicyClient::onAudioPatchListUpdate() |
| 212 | { |
| 213 | mAudioPolicyService->onAudioPatchListUpdate(); |
| 214 | } |
| 215 | |
Jean-Michel Trivi | de80105 | 2015-04-14 19:10:14 -0700 | [diff] [blame] | 216 | void AudioPolicyService::AudioPolicyClient::onDynamicPolicyMixStateUpdate( |
| 217 | String8 regId, int32_t state) |
| 218 | { |
| 219 | mAudioPolicyService->onDynamicPolicyMixStateUpdate(regId, state); |
| 220 | } |
| 221 | |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 222 | void AudioPolicyService::AudioPolicyClient::onRecordingConfigurationUpdate( |
Jean-Michel Trivi | 7281aa9 | 2016-02-17 15:33:40 -0800 | [diff] [blame] | 223 | int event, audio_session_t session, audio_source_t source, |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 224 | const audio_config_base_t *clientConfig, const audio_config_base_t *deviceConfig, |
| 225 | audio_patch_handle_t patchHandle) |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 226 | { |
Jean-Michel Trivi | 7281aa9 | 2016-02-17 15:33:40 -0800 | [diff] [blame] | 227 | mAudioPolicyService->onRecordingConfigurationUpdate(event, session, source, |
Jean-Michel Trivi | 8c7cf3b | 2016-02-25 17:08:24 -0800 | [diff] [blame] | 228 | clientConfig, deviceConfig, patchHandle); |
Jean-Michel Trivi | 2f4fe9f | 2015-12-04 16:20:59 -0800 | [diff] [blame] | 229 | } |
| 230 | |
Glenn Kasten | eeecb98 | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 231 | audio_unique_id_t AudioPolicyService::AudioPolicyClient::newAudioUniqueId(audio_unique_id_use_t use) |
Eric Laurent | de3f839 | 2014-07-27 18:38:22 -0700 | [diff] [blame] | 232 | { |
Glenn Kasten | eeecb98 | 2016-02-26 10:44:04 -0800 | [diff] [blame] | 233 | return AudioSystem::newAudioUniqueId(use); |
Eric Laurent | de3f839 | 2014-07-27 18:38:22 -0700 | [diff] [blame] | 234 | } |
| 235 | |
Eric Laurent | 2d388ec | 2014-03-07 13:25:54 -0800 | [diff] [blame] | 236 | }; // namespace android |