blob: 21452c85a3a2d2fd18e1d415527a1e22be8dfb58 [file] [log] [blame]
Mathias Agopian65ab4712010-07-14 17:59:35 -07001/*
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
17#define LOG_TAG "AudioPolicyService"
18//#define LOG_NDEBUG 0
19
Glenn Kasten153b9fe2013-07-15 11:23:36 -070020#include "Configuration.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070021#undef __STRICT_ANSI__
22#define __STDINT_LIMITS
23#define __STDC_LIMIT_MACROS
24#include <stdint.h>
25
26#include <sys/time.h>
27#include <binder/IServiceManager.h>
28#include <utils/Log.h>
29#include <cutils/properties.h>
30#include <binder/IPCThreadState.h>
31#include <utils/String16.h>
32#include <utils/threads.h>
33#include "AudioPolicyService.h"
Glenn Kasten44deb052012-02-05 18:09:08 -080034#include "ServiceUtilities.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070035#include <hardware_legacy/power.h>
Eric Laurent7c7f10b2011-06-17 21:29:58 -070036#include <media/AudioEffect.h>
37#include <media/EffectsFactoryApi.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070038
Dima Zavinfce7a472011-04-19 22:30:36 -070039#include <hardware/hardware.h>
Dima Zavin64760242011-05-11 14:15:23 -070040#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070041#include <system/audio_policy.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070042#include <hardware/audio_policy.h>
Eric Laurent7c7f10b2011-06-17 21:29:58 -070043#include <audio_effects/audio_effects_conf.h>
Glenn Kasten1ab85ec2013-05-31 09:18:43 -070044#include <media/AudioParameter.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070045
Mathias Agopian65ab4712010-07-14 17:59:35 -070046namespace android {
47
Glenn Kasten8dad0e32012-01-09 08:41:22 -080048static const char kDeadlockedString[] = "AudioPolicyService may be deadlocked\n";
49static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n";
Mathias Agopian65ab4712010-07-14 17:59:35 -070050
51static const int kDumpLockRetries = 50;
Glenn Kasten22ecc912012-01-09 08:33:38 -080052static const int kDumpLockSleepUs = 20000;
Mathias Agopian65ab4712010-07-14 17:59:35 -070053
Glenn Kasten1b8ae3d2013-07-19 10:32:41 -070054static const nsecs_t kAudioCommandTimeout = 3000000000LL; // 3 seconds
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +010055
Dima Zavinfce7a472011-04-19 22:30:36 -070056namespace {
57 extern struct audio_policy_service_ops aps_ops;
58};
59
Mathias Agopian65ab4712010-07-14 17:59:35 -070060// ----------------------------------------------------------------------------
61
62AudioPolicyService::AudioPolicyService()
Dima Zavinfce7a472011-04-19 22:30:36 -070063 : BnAudioPolicyService() , mpAudioPolicyDev(NULL) , mpAudioPolicy(NULL)
Mathias Agopian65ab4712010-07-14 17:59:35 -070064{
65 char value[PROPERTY_VALUE_MAX];
Dima Zavinfce7a472011-04-19 22:30:36 -070066 const struct hw_module_t *module;
67 int forced_val;
68 int rc;
Mathias Agopian65ab4712010-07-14 17:59:35 -070069
Eric Laurent93575202011-01-18 18:39:02 -080070 Mutex::Autolock _l(mLock);
71
Mathias Agopian65ab4712010-07-14 17:59:35 -070072 // start tone playback thread
Eric Laurentbfb1b832013-01-07 09:53:42 -080073 mTonePlaybackThread = new AudioCommandThread(String8("ApmTone"), this);
Mathias Agopian65ab4712010-07-14 17:59:35 -070074 // start audio commands thread
Eric Laurentbfb1b832013-01-07 09:53:42 -080075 mAudioCommandThread = new AudioCommandThread(String8("ApmAudio"), this);
76 // start output activity command thread
77 mOutputCommandThread = new AudioCommandThread(String8("ApmOutput"), this);
Dima Zavinfce7a472011-04-19 22:30:36 -070078 /* instantiate the audio policy manager */
79 rc = hw_get_module(AUDIO_POLICY_HARDWARE_MODULE_ID, &module);
80 if (rc)
81 return;
Mathias Agopian65ab4712010-07-14 17:59:35 -070082
Dima Zavinfce7a472011-04-19 22:30:36 -070083 rc = audio_policy_dev_open(module, &mpAudioPolicyDev);
Steve Block29357bc2012-01-06 19:20:56 +000084 ALOGE_IF(rc, "couldn't open audio policy device (%s)", strerror(-rc));
Dima Zavinfce7a472011-04-19 22:30:36 -070085 if (rc)
86 return;
Eric Laurent93575202011-01-18 18:39:02 -080087
Dima Zavinfce7a472011-04-19 22:30:36 -070088 rc = mpAudioPolicyDev->create_audio_policy(mpAudioPolicyDev, &aps_ops, this,
89 &mpAudioPolicy);
Steve Block29357bc2012-01-06 19:20:56 +000090 ALOGE_IF(rc, "couldn't create audio policy (%s)", strerror(-rc));
Dima Zavinfce7a472011-04-19 22:30:36 -070091 if (rc)
92 return;
93
94 rc = mpAudioPolicy->init_check(mpAudioPolicy);
Steve Block29357bc2012-01-06 19:20:56 +000095 ALOGE_IF(rc, "couldn't init_check the audio policy (%s)", strerror(-rc));
Dima Zavinfce7a472011-04-19 22:30:36 -070096 if (rc)
97 return;
98
Steve Blockdf64d152012-01-04 20:05:49 +000099 ALOGI("Loaded audio policy from %s (%s)", module->name, module->id);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700100
101 // load audio pre processing modules
102 if (access(AUDIO_EFFECT_VENDOR_CONFIG_FILE, R_OK) == 0) {
103 loadPreProcessorConfig(AUDIO_EFFECT_VENDOR_CONFIG_FILE);
104 } else if (access(AUDIO_EFFECT_DEFAULT_CONFIG_FILE, R_OK) == 0) {
105 loadPreProcessorConfig(AUDIO_EFFECT_DEFAULT_CONFIG_FILE);
106 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700107}
108
109AudioPolicyService::~AudioPolicyService()
110{
111 mTonePlaybackThread->exit();
112 mTonePlaybackThread.clear();
113 mAudioCommandThread->exit();
114 mAudioCommandThread.clear();
115
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700116
117 // release audio pre processing resources
118 for (size_t i = 0; i < mInputSources.size(); i++) {
Glenn Kasten9fda4b82012-02-02 14:04:37 -0800119 delete mInputSources.valueAt(i);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700120 }
121 mInputSources.clear();
122
123 for (size_t i = 0; i < mInputs.size(); i++) {
124 mInputs.valueAt(i)->mEffects.clear();
125 delete mInputs.valueAt(i);
126 }
127 mInputs.clear();
128
Glenn Kastena0d68332012-01-27 16:47:15 -0800129 if (mpAudioPolicy != NULL && mpAudioPolicyDev != NULL)
Dima Zavinfce7a472011-04-19 22:30:36 -0700130 mpAudioPolicyDev->destroy_audio_policy(mpAudioPolicyDev, mpAudioPolicy);
Glenn Kastena0d68332012-01-27 16:47:15 -0800131 if (mpAudioPolicyDev != NULL)
Dima Zavinfce7a472011-04-19 22:30:36 -0700132 audio_policy_dev_close(mpAudioPolicyDev);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700133}
134
Dima Zavinfce7a472011-04-19 22:30:36 -0700135status_t AudioPolicyService::setDeviceConnectionState(audio_devices_t device,
136 audio_policy_dev_state_t state,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700137 const char *device_address)
138{
Dima Zavinfce7a472011-04-19 22:30:36 -0700139 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700140 return NO_INIT;
141 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800142 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700143 return PERMISSION_DENIED;
144 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700145 if (!audio_is_output_device(device) && !audio_is_input_device(device)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700146 return BAD_VALUE;
147 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700148 if (state != AUDIO_POLICY_DEVICE_STATE_AVAILABLE &&
149 state != AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700150 return BAD_VALUE;
151 }
152
Glenn Kasten411e4472012-11-02 10:00:06 -0700153 ALOGV("setDeviceConnectionState()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700154 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700155 return mpAudioPolicy->set_device_connection_state(mpAudioPolicy, device,
156 state, device_address);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700157}
158
Dima Zavinfce7a472011-04-19 22:30:36 -0700159audio_policy_dev_state_t AudioPolicyService::getDeviceConnectionState(
160 audio_devices_t device,
Eric Laurentde070132010-07-13 04:45:46 -0700161 const char *device_address)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700162{
Dima Zavinfce7a472011-04-19 22:30:36 -0700163 if (mpAudioPolicy == NULL) {
164 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700165 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700166 return mpAudioPolicy->get_device_connection_state(mpAudioPolicy, device,
167 device_address);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700168}
169
Glenn Kastenf78aee72012-01-04 11:00:47 -0800170status_t AudioPolicyService::setPhoneState(audio_mode_t state)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700171{
Dima Zavinfce7a472011-04-19 22:30:36 -0700172 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700173 return NO_INIT;
174 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800175 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700176 return PERMISSION_DENIED;
177 }
Glenn Kasten930f4ca2012-01-06 16:47:31 -0800178 if (uint32_t(state) >= AUDIO_MODE_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700179 return BAD_VALUE;
180 }
181
Glenn Kasten411e4472012-11-02 10:00:06 -0700182 ALOGV("setPhoneState()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700183
184 // TODO: check if it is more appropriate to do it in platform specific policy manager
185 AudioSystem::setMode(state);
186
187 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700188 mpAudioPolicy->set_phone_state(mpAudioPolicy, state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700189 return NO_ERROR;
190}
191
Dima Zavinfce7a472011-04-19 22:30:36 -0700192status_t AudioPolicyService::setForceUse(audio_policy_force_use_t usage,
193 audio_policy_forced_cfg_t config)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700194{
Dima Zavinfce7a472011-04-19 22:30:36 -0700195 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700196 return NO_INIT;
197 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800198 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700199 return PERMISSION_DENIED;
200 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700201 if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700202 return BAD_VALUE;
203 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700204 if (config < 0 || config >= AUDIO_POLICY_FORCE_CFG_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700205 return BAD_VALUE;
206 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700207 ALOGV("setForceUse()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700208 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700209 mpAudioPolicy->set_force_use(mpAudioPolicy, usage, config);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700210 return NO_ERROR;
211}
212
Dima Zavinfce7a472011-04-19 22:30:36 -0700213audio_policy_forced_cfg_t AudioPolicyService::getForceUse(audio_policy_force_use_t usage)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700214{
Dima Zavinfce7a472011-04-19 22:30:36 -0700215 if (mpAudioPolicy == NULL) {
216 return AUDIO_POLICY_FORCE_NONE;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700217 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700218 if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) {
219 return AUDIO_POLICY_FORCE_NONE;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700220 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700221 return mpAudioPolicy->get_force_use(mpAudioPolicy, usage);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700222}
223
Dima Zavinfce7a472011-04-19 22:30:36 -0700224audio_io_handle_t AudioPolicyService::getOutput(audio_stream_type_t stream,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700225 uint32_t samplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800226 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -0700227 audio_channel_mask_t channelMask,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +0000228 audio_output_flags_t flags,
229 const audio_offload_info_t *offloadInfo)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700230{
Eric Laurent6d80b682014-10-30 14:46:18 -0700231 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
232 return 0;
233 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700234 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700235 return 0;
236 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700237 ALOGV("getOutput()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700238 Mutex::Autolock _l(mLock);
Richard Fitzgeraldad3af332013-03-25 16:54:37 +0000239 return mpAudioPolicy->get_output(mpAudioPolicy, stream, samplingRate,
240 format, channelMask, flags, offloadInfo);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700241}
242
Eric Laurentde070132010-07-13 04:45:46 -0700243status_t AudioPolicyService::startOutput(audio_io_handle_t output,
Dima Zavinfce7a472011-04-19 22:30:36 -0700244 audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700245 int session)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700246{
Eric Laurent6d80b682014-10-30 14:46:18 -0700247 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
248 return BAD_VALUE;
249 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700250 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700251 return NO_INIT;
252 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700253 ALOGV("startOutput()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700254 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700255 return mpAudioPolicy->start_output(mpAudioPolicy, output, stream, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700256}
257
Eric Laurentde070132010-07-13 04:45:46 -0700258status_t AudioPolicyService::stopOutput(audio_io_handle_t output,
Dima Zavinfce7a472011-04-19 22:30:36 -0700259 audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700260 int session)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700261{
Eric Laurent6d80b682014-10-30 14:46:18 -0700262 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
263 return BAD_VALUE;
264 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700265 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700266 return NO_INIT;
267 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700268 ALOGV("stopOutput()");
Eric Laurentbfb1b832013-01-07 09:53:42 -0800269 mOutputCommandThread->stopOutputCommand(output, stream, session);
270 return NO_ERROR;
271}
272
273status_t AudioPolicyService::doStopOutput(audio_io_handle_t output,
274 audio_stream_type_t stream,
275 int session)
276{
277 ALOGV("doStopOutput from tid %d", gettid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700278 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700279 return mpAudioPolicy->stop_output(mpAudioPolicy, output, stream, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700280}
281
282void AudioPolicyService::releaseOutput(audio_io_handle_t output)
283{
Dima Zavinfce7a472011-04-19 22:30:36 -0700284 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700285 return;
286 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700287 ALOGV("releaseOutput()");
Eric Laurentbfb1b832013-01-07 09:53:42 -0800288 mOutputCommandThread->releaseOutputCommand(output);
289}
290
291void AudioPolicyService::doReleaseOutput(audio_io_handle_t output)
292{
293 ALOGV("doReleaseOutput from tid %d", gettid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700294 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700295 mpAudioPolicy->release_output(mpAudioPolicy, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700296}
297
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800298audio_io_handle_t AudioPolicyService::getInput(audio_source_t inputSource,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700299 uint32_t samplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800300 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -0700301 audio_channel_mask_t channelMask,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700302 int audioSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700303{
Dima Zavinfce7a472011-04-19 22:30:36 -0700304 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700305 return 0;
306 }
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800307 // already checked by client, but double-check in case the client wrapper is bypassed
Eric Laurent9a54bc22013-09-09 09:08:44 -0700308 if (inputSource >= AUDIO_SOURCE_CNT && inputSource != AUDIO_SOURCE_HOTWORD) {
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800309 return 0;
310 }
Eric Laurent9a54bc22013-09-09 09:08:44 -0700311
312 if ((inputSource == AUDIO_SOURCE_HOTWORD) && !captureHotwordAllowed()) {
313 return 0;
314 }
315
Mathias Agopian65ab4712010-07-14 17:59:35 -0700316 Mutex::Autolock _l(mLock);
Glenn Kasten20010052012-06-22 13:43:51 -0700317 // the audio_in_acoustics_t parameter is ignored by get_input()
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700318 audio_io_handle_t input = mpAudioPolicy->get_input(mpAudioPolicy, inputSource, samplingRate,
Glenn Kasten8af901c2012-11-01 11:11:38 -0700319 format, channelMask, (audio_in_acoustics_t) 0);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700320
321 if (input == 0) {
322 return input;
323 }
324 // create audio pre processors according to input source
Eric Laurent9a54bc22013-09-09 09:08:44 -0700325 audio_source_t aliasSource = (inputSource == AUDIO_SOURCE_HOTWORD) ?
326 AUDIO_SOURCE_VOICE_RECOGNITION : inputSource;
327
328 ssize_t index = mInputSources.indexOfKey(aliasSource);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700329 if (index < 0) {
330 return input;
331 }
332 ssize_t idx = mInputs.indexOfKey(input);
333 InputDesc *inputDesc;
334 if (idx < 0) {
Glenn Kasten81872a22012-03-07 16:49:22 -0800335 inputDesc = new InputDesc(audioSession);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700336 mInputs.add(input, inputDesc);
337 } else {
338 inputDesc = mInputs.valueAt(idx);
339 }
340
341 Vector <EffectDesc *> effects = mInputSources.valueAt(index)->mEffects;
342 for (size_t i = 0; i < effects.size(); i++) {
343 EffectDesc *effect = effects[i];
344 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
345 status_t status = fx->initCheck();
346 if (status != NO_ERROR && status != ALREADY_EXISTS) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000347 ALOGW("Failed to create Fx %s on input %d", effect->mName, input);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700348 // fx goes out of scope and strong ref on AudioEffect is released
349 continue;
350 }
351 for (size_t j = 0; j < effect->mParams.size(); j++) {
352 fx->setParameter(effect->mParams[j]);
353 }
354 inputDesc->mEffects.add(fx);
355 }
356 setPreProcessorEnabled(inputDesc, true);
357 return input;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700358}
359
360status_t AudioPolicyService::startInput(audio_io_handle_t input)
361{
Dima Zavinfce7a472011-04-19 22:30:36 -0700362 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700363 return NO_INIT;
364 }
365 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700366
Dima Zavinfce7a472011-04-19 22:30:36 -0700367 return mpAudioPolicy->start_input(mpAudioPolicy, input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700368}
369
370status_t AudioPolicyService::stopInput(audio_io_handle_t input)
371{
Dima Zavinfce7a472011-04-19 22:30:36 -0700372 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700373 return NO_INIT;
374 }
375 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700376
Dima Zavinfce7a472011-04-19 22:30:36 -0700377 return mpAudioPolicy->stop_input(mpAudioPolicy, input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700378}
379
380void AudioPolicyService::releaseInput(audio_io_handle_t input)
381{
Dima Zavinfce7a472011-04-19 22:30:36 -0700382 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700383 return;
384 }
385 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700386 mpAudioPolicy->release_input(mpAudioPolicy, input);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700387
388 ssize_t index = mInputs.indexOfKey(input);
389 if (index < 0) {
390 return;
391 }
392 InputDesc *inputDesc = mInputs.valueAt(index);
393 setPreProcessorEnabled(inputDesc, false);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700394 delete inputDesc;
395 mInputs.removeItemsAt(index);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700396}
397
Dima Zavinfce7a472011-04-19 22:30:36 -0700398status_t AudioPolicyService::initStreamVolume(audio_stream_type_t stream,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700399 int indexMin,
400 int indexMax)
401{
Dima Zavinfce7a472011-04-19 22:30:36 -0700402 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700403 return NO_INIT;
404 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800405 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700406 return PERMISSION_DENIED;
407 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800408 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700409 return BAD_VALUE;
410 }
Eric Laurent5f121362012-06-15 14:45:03 -0700411 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700412 mpAudioPolicy->init_stream_volume(mpAudioPolicy, stream, indexMin, indexMax);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700413 return NO_ERROR;
414}
415
Eric Laurent83844cc2011-11-18 16:43:31 -0800416status_t AudioPolicyService::setStreamVolumeIndex(audio_stream_type_t stream,
417 int index,
418 audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700419{
Dima Zavinfce7a472011-04-19 22:30:36 -0700420 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700421 return NO_INIT;
422 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800423 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700424 return PERMISSION_DENIED;
425 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800426 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700427 return BAD_VALUE;
428 }
Eric Laurent5f121362012-06-15 14:45:03 -0700429 Mutex::Autolock _l(mLock);
Eric Laurent83844cc2011-11-18 16:43:31 -0800430 if (mpAudioPolicy->set_stream_volume_index_for_device) {
431 return mpAudioPolicy->set_stream_volume_index_for_device(mpAudioPolicy,
432 stream,
433 index,
434 device);
435 } else {
436 return mpAudioPolicy->set_stream_volume_index(mpAudioPolicy, stream, index);
437 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700438}
439
Eric Laurent83844cc2011-11-18 16:43:31 -0800440status_t AudioPolicyService::getStreamVolumeIndex(audio_stream_type_t stream,
441 int *index,
442 audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700443{
Dima Zavinfce7a472011-04-19 22:30:36 -0700444 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700445 return NO_INIT;
446 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800447 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700448 return BAD_VALUE;
449 }
Eric Laurent5f121362012-06-15 14:45:03 -0700450 Mutex::Autolock _l(mLock);
Eric Laurent83844cc2011-11-18 16:43:31 -0800451 if (mpAudioPolicy->get_stream_volume_index_for_device) {
452 return mpAudioPolicy->get_stream_volume_index_for_device(mpAudioPolicy,
453 stream,
454 index,
455 device);
456 } else {
457 return mpAudioPolicy->get_stream_volume_index(mpAudioPolicy, stream, index);
458 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700459}
460
Dima Zavinfce7a472011-04-19 22:30:36 -0700461uint32_t AudioPolicyService::getStrategyForStream(audio_stream_type_t stream)
Eric Laurentde070132010-07-13 04:45:46 -0700462{
Eric Laurent6d80b682014-10-30 14:46:18 -0700463 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
464 return 0;
465 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700466 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700467 return 0;
468 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700469 return mpAudioPolicy->get_strategy_for_stream(mpAudioPolicy, stream);
Eric Laurentde070132010-07-13 04:45:46 -0700470}
471
Eric Laurent63742522012-03-08 13:42:42 -0800472//audio policy: use audio_device_t appropriately
473
474audio_devices_t AudioPolicyService::getDevicesForStream(audio_stream_type_t stream)
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800475{
Eric Laurent6d80b682014-10-30 14:46:18 -0700476 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
477 return (audio_devices_t)0;
478 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700479 if (mpAudioPolicy == NULL) {
Eric Laurent63742522012-03-08 13:42:42 -0800480 return (audio_devices_t)0;
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800481 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700482 return mpAudioPolicy->get_devices_for_stream(mpAudioPolicy, stream);
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800483}
484
Glenn Kasten58e5aa32012-06-20 14:08:14 -0700485audio_io_handle_t AudioPolicyService::getOutputForEffect(const effect_descriptor_t *desc)
Eric Laurentde070132010-07-13 04:45:46 -0700486{
Dima Zavinfce7a472011-04-19 22:30:36 -0700487 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700488 return NO_INIT;
489 }
490 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700491 return mpAudioPolicy->get_output_for_effect(mpAudioPolicy, desc);
Eric Laurentde070132010-07-13 04:45:46 -0700492}
493
Glenn Kasten58e5aa32012-06-20 14:08:14 -0700494status_t AudioPolicyService::registerEffect(const effect_descriptor_t *desc,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700495 audio_io_handle_t io,
Eric Laurentde070132010-07-13 04:45:46 -0700496 uint32_t strategy,
497 int session,
498 int id)
499{
Dima Zavinfce7a472011-04-19 22:30:36 -0700500 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700501 return NO_INIT;
502 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700503 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
Eric Laurentde070132010-07-13 04:45:46 -0700504}
505
506status_t AudioPolicyService::unregisterEffect(int id)
507{
Dima Zavinfce7a472011-04-19 22:30:36 -0700508 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700509 return NO_INIT;
510 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700511 return mpAudioPolicy->unregister_effect(mpAudioPolicy, id);
Eric Laurentde070132010-07-13 04:45:46 -0700512}
513
Eric Laurentdb7c0792011-08-10 10:37:50 -0700514status_t AudioPolicyService::setEffectEnabled(int id, bool enabled)
515{
516 if (mpAudioPolicy == NULL) {
517 return NO_INIT;
518 }
519 return mpAudioPolicy->set_effect_enabled(mpAudioPolicy, id, enabled);
520}
521
Glenn Kastenfff6d712012-01-12 16:38:12 -0800522bool AudioPolicyService::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
Eric Laurenteda6c362011-02-02 09:33:30 -0800523{
Eric Laurent6d80b682014-10-30 14:46:18 -0700524 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
525 return false;
526 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700527 if (mpAudioPolicy == NULL) {
Eric Laurent6d80b682014-10-30 14:46:18 -0700528 return false;
Eric Laurenteda6c362011-02-02 09:33:30 -0800529 }
530 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700531 return mpAudioPolicy->is_stream_active(mpAudioPolicy, stream, inPastMs);
Eric Laurenteda6c362011-02-02 09:33:30 -0800532}
533
Jean-Michel Trivie336f912013-02-04 16:26:02 -0800534bool AudioPolicyService::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
535{
536 if (mpAudioPolicy == NULL) {
537 return 0;
538 }
539 Mutex::Autolock _l(mLock);
540 return mpAudioPolicy->is_stream_active_remotely(mpAudioPolicy, stream, inPastMs);
541}
542
Jean-Michel Trivie3f641f2012-10-10 12:11:16 -0700543bool AudioPolicyService::isSourceActive(audio_source_t source) const
544{
545 if (mpAudioPolicy == NULL) {
546 return false;
547 }
548 if (mpAudioPolicy->is_source_active == 0) {
549 return false;
550 }
551 Mutex::Autolock _l(mLock);
552 return mpAudioPolicy->is_source_active(mpAudioPolicy, source);
553}
554
Eric Laurent57dae992011-07-24 13:36:09 -0700555status_t AudioPolicyService::queryDefaultPreProcessing(int audioSession,
556 effect_descriptor_t *descriptors,
557 uint32_t *count)
558{
559
560 if (mpAudioPolicy == NULL) {
561 *count = 0;
562 return NO_INIT;
563 }
564 Mutex::Autolock _l(mLock);
565 status_t status = NO_ERROR;
566
567 size_t index;
568 for (index = 0; index < mInputs.size(); index++) {
569 if (mInputs.valueAt(index)->mSessionId == audioSession) {
570 break;
571 }
572 }
573 if (index == mInputs.size()) {
574 *count = 0;
575 return BAD_VALUE;
576 }
577 Vector< sp<AudioEffect> > effects = mInputs.valueAt(index)->mEffects;
578
579 for (size_t i = 0; i < effects.size(); i++) {
580 effect_descriptor_t desc = effects[i]->descriptor();
581 if (i < *count) {
Glenn Kastena189a682012-02-20 12:16:30 -0800582 descriptors[i] = desc;
Eric Laurent57dae992011-07-24 13:36:09 -0700583 }
584 }
585 if (effects.size() > *count) {
586 status = NO_MEMORY;
587 }
588 *count = effects.size();
589 return status;
590}
591
Mathias Agopian65ab4712010-07-14 17:59:35 -0700592void AudioPolicyService::binderDied(const wp<IBinder>& who) {
Glenn Kasten411e4472012-11-02 10:00:06 -0700593 ALOGW("binderDied() %p, calling pid %d", who.unsafe_get(),
Eric Laurentde070132010-07-13 04:45:46 -0700594 IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700595}
596
597static bool tryLock(Mutex& mutex)
598{
599 bool locked = false;
600 for (int i = 0; i < kDumpLockRetries; ++i) {
601 if (mutex.tryLock() == NO_ERROR) {
602 locked = true;
603 break;
604 }
Glenn Kasten22ecc912012-01-09 08:33:38 -0800605 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700606 }
607 return locked;
608}
609
610status_t AudioPolicyService::dumpInternals(int fd)
611{
612 const size_t SIZE = 256;
613 char buffer[SIZE];
614 String8 result;
615
Dima Zavinfce7a472011-04-19 22:30:36 -0700616 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpAudioPolicy);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700617 result.append(buffer);
618 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
619 result.append(buffer);
620 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
621 result.append(buffer);
622
623 write(fd, result.string(), result.size());
624 return NO_ERROR;
625}
626
627status_t AudioPolicyService::dump(int fd, const Vector<String16>& args)
628{
Glenn Kasten44deb052012-02-05 18:09:08 -0800629 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700630 dumpPermissionDenial(fd);
631 } else {
632 bool locked = tryLock(mLock);
633 if (!locked) {
634 String8 result(kDeadlockedString);
635 write(fd, result.string(), result.size());
636 }
637
638 dumpInternals(fd);
Glenn Kasten9d1f02d2012-02-08 17:47:58 -0800639 if (mAudioCommandThread != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700640 mAudioCommandThread->dump(fd);
641 }
Glenn Kasten9d1f02d2012-02-08 17:47:58 -0800642 if (mTonePlaybackThread != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700643 mTonePlaybackThread->dump(fd);
644 }
645
Dima Zavinfce7a472011-04-19 22:30:36 -0700646 if (mpAudioPolicy) {
647 mpAudioPolicy->dump(mpAudioPolicy, fd);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700648 }
649
650 if (locked) mLock.unlock();
651 }
652 return NO_ERROR;
653}
654
655status_t AudioPolicyService::dumpPermissionDenial(int fd)
656{
657 const size_t SIZE = 256;
658 char buffer[SIZE];
659 String8 result;
660 snprintf(buffer, SIZE, "Permission Denial: "
661 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
662 IPCThreadState::self()->getCallingPid(),
663 IPCThreadState::self()->getCallingUid());
664 result.append(buffer);
665 write(fd, result.string(), result.size());
666 return NO_ERROR;
667}
668
Glenn Kasten81872a22012-03-07 16:49:22 -0800669void AudioPolicyService::setPreProcessorEnabled(const InputDesc *inputDesc, bool enabled)
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700670{
Glenn Kasten81872a22012-03-07 16:49:22 -0800671 const Vector<sp<AudioEffect> > &fxVector = inputDesc->mEffects;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700672 for (size_t i = 0; i < fxVector.size(); i++) {
Glenn Kastena1117922012-01-26 10:53:32 -0800673 fxVector.itemAt(i)->setEnabled(enabled);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700674 }
675}
676
Mathias Agopian65ab4712010-07-14 17:59:35 -0700677status_t AudioPolicyService::onTransact(
678 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
679{
680 return BnAudioPolicyService::onTransact(code, data, reply, flags);
681}
682
683
Mathias Agopian65ab4712010-07-14 17:59:35 -0700684// ----------- AudioPolicyService::AudioCommandThread implementation ----------
685
Eric Laurentbfb1b832013-01-07 09:53:42 -0800686AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name,
687 const wp<AudioPolicyService>& service)
688 : Thread(false), mName(name), mService(service)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700689{
690 mpToneGenerator = NULL;
691}
692
693
694AudioPolicyService::AudioCommandThread::~AudioCommandThread()
695{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800696 if (!mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700697 release_wake_lock(mName.string());
698 }
699 mAudioCommands.clear();
Glenn Kastene9dd0172012-01-27 18:08:45 -0800700 delete mpToneGenerator;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700701}
702
703void AudioPolicyService::AudioCommandThread::onFirstRef()
704{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800705 run(mName.string(), ANDROID_PRIORITY_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700706}
707
708bool AudioPolicyService::AudioCommandThread::threadLoop()
709{
710 nsecs_t waitTime = INT64_MAX;
711
712 mLock.lock();
713 while (!exitPending())
714 {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700715 while (!mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700716 nsecs_t curTime = systemTime();
717 // commands are sorted by increasing time stamp: execute them from index 0 and up
718 if (mAudioCommands[0]->mTime <= curTime) {
719 AudioCommand *command = mAudioCommands[0];
720 mAudioCommands.removeAt(0);
721 mLastCommand = *command;
722
723 switch (command->mCommand) {
724 case START_TONE: {
725 mLock.unlock();
726 ToneData *data = (ToneData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100727 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700728 data->mType, data->mStream);
Glenn Kastene9dd0172012-01-27 18:08:45 -0800729 delete mpToneGenerator;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700730 mpToneGenerator = new ToneGenerator(data->mStream, 1.0);
731 mpToneGenerator->startTone(data->mType);
732 delete data;
733 mLock.lock();
734 }break;
735 case STOP_TONE: {
736 mLock.unlock();
Steve Block3856b092011-10-20 11:56:00 +0100737 ALOGV("AudioCommandThread() processing stop tone");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700738 if (mpToneGenerator != NULL) {
739 mpToneGenerator->stopTone();
740 delete mpToneGenerator;
741 mpToneGenerator = NULL;
742 }
743 mLock.lock();
744 }break;
745 case SET_VOLUME: {
746 VolumeData *data = (VolumeData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100747 ALOGV("AudioCommandThread() processing set volume stream %d, \
Eric Laurentde070132010-07-13 04:45:46 -0700748 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
749 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
750 data->mVolume,
751 data->mIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700752 if (command->mWaitStatus) {
753 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100754 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700755 }
756 delete data;
757 }break;
758 case SET_PARAMETERS: {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700759 ParametersData *data = (ParametersData *)command->mParam;
760 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
761 data->mKeyValuePairs.string(), data->mIO);
762 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs);
763 if (command->mWaitStatus) {
764 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100765 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700766 }
767 delete data;
768 }break;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700769 case SET_VOICE_VOLUME: {
770 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100771 ALOGV("AudioCommandThread() processing set voice volume volume %f",
Eric Laurentde070132010-07-13 04:45:46 -0700772 data->mVolume);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700773 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume);
774 if (command->mWaitStatus) {
775 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100776 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700777 }
778 delete data;
779 }break;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800780 case STOP_OUTPUT: {
781 StopOutputData *data = (StopOutputData *)command->mParam;
782 ALOGV("AudioCommandThread() processing stop output %d",
783 data->mIO);
784 sp<AudioPolicyService> svc = mService.promote();
785 if (svc == 0) {
786 break;
787 }
788 mLock.unlock();
789 svc->doStopOutput(data->mIO, data->mStream, data->mSession);
790 mLock.lock();
791 delete data;
792 }break;
793 case RELEASE_OUTPUT: {
794 ReleaseOutputData *data = (ReleaseOutputData *)command->mParam;
795 ALOGV("AudioCommandThread() processing release output %d",
796 data->mIO);
797 sp<AudioPolicyService> svc = mService.promote();
798 if (svc == 0) {
799 break;
800 }
801 mLock.unlock();
802 svc->doReleaseOutput(data->mIO);
803 mLock.lock();
804 delete data;
805 }break;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700806 default:
Steve Block5ff1dd52012-01-05 23:22:43 +0000807 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700808 }
809 delete command;
810 waitTime = INT64_MAX;
811 } else {
812 waitTime = mAudioCommands[0]->mTime - curTime;
813 break;
814 }
815 }
816 // release delayed commands wake lock
Eric Laurentbfb1b832013-01-07 09:53:42 -0800817 if (mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700818 release_wake_lock(mName.string());
819 }
Steve Block3856b092011-10-20 11:56:00 +0100820 ALOGV("AudioCommandThread() going to sleep");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700821 mWaitWorkCV.waitRelative(mLock, waitTime);
Steve Block3856b092011-10-20 11:56:00 +0100822 ALOGV("AudioCommandThread() waking up");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700823 }
824 mLock.unlock();
825 return false;
826}
827
828status_t AudioPolicyService::AudioCommandThread::dump(int fd)
829{
830 const size_t SIZE = 256;
831 char buffer[SIZE];
832 String8 result;
833
834 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
835 result.append(buffer);
836 write(fd, result.string(), result.size());
837
838 bool locked = tryLock(mLock);
839 if (!locked) {
840 String8 result2(kCmdDeadlockedString);
841 write(fd, result2.string(), result2.size());
842 }
843
844 snprintf(buffer, SIZE, "- Commands:\n");
845 result = String8(buffer);
846 result.append(" Command Time Wait pParam\n");
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800847 for (size_t i = 0; i < mAudioCommands.size(); i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700848 mAudioCommands[i]->dump(buffer, SIZE);
849 result.append(buffer);
850 }
851 result.append(" Last Command\n");
852 mLastCommand.dump(buffer, SIZE);
853 result.append(buffer);
854
855 write(fd, result.string(), result.size());
856
857 if (locked) mLock.unlock();
858
859 return NO_ERROR;
860}
861
Glenn Kasten3d2f8772012-01-27 15:25:25 -0800862void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
863 audio_stream_type_t stream)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700864{
865 AudioCommand *command = new AudioCommand();
866 command->mCommand = START_TONE;
867 ToneData *data = new ToneData();
868 data->mType = type;
869 data->mStream = stream;
870 command->mParam = (void *)data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700871 Mutex::Autolock _l(mLock);
872 insertCommand_l(command);
Steve Block3856b092011-10-20 11:56:00 +0100873 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874 mWaitWorkCV.signal();
875}
876
877void AudioPolicyService::AudioCommandThread::stopToneCommand()
878{
879 AudioCommand *command = new AudioCommand();
880 command->mCommand = STOP_TONE;
881 command->mParam = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700882 Mutex::Autolock _l(mLock);
883 insertCommand_l(command);
Steve Block3856b092011-10-20 11:56:00 +0100884 ALOGV("AudioCommandThread() adding tone stop");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700885 mWaitWorkCV.signal();
886}
887
Glenn Kastenfff6d712012-01-12 16:38:12 -0800888status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700889 float volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800890 audio_io_handle_t output,
Eric Laurentde070132010-07-13 04:45:46 -0700891 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700892{
893 status_t status = NO_ERROR;
894
895 AudioCommand *command = new AudioCommand();
896 command->mCommand = SET_VOLUME;
897 VolumeData *data = new VolumeData();
898 data->mStream = stream;
899 data->mVolume = volume;
900 data->mIO = output;
901 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700902 Mutex::Autolock _l(mLock);
903 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100904 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
Eric Laurentde070132010-07-13 04:45:46 -0700905 stream, volume, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700906 mWaitWorkCV.signal();
907 if (command->mWaitStatus) {
908 command->mCond.wait(mLock);
909 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100910 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700911 }
912 return status;
913}
914
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800915status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
Dima Zavinfce7a472011-04-19 22:30:36 -0700916 const char *keyValuePairs,
Eric Laurentde070132010-07-13 04:45:46 -0700917 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700918{
919 status_t status = NO_ERROR;
920
921 AudioCommand *command = new AudioCommand();
922 command->mCommand = SET_PARAMETERS;
923 ParametersData *data = new ParametersData();
924 data->mIO = ioHandle;
Dima Zavinfce7a472011-04-19 22:30:36 -0700925 data->mKeyValuePairs = String8(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700926 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700927 Mutex::Autolock _l(mLock);
928 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100929 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
Dima Zavinfce7a472011-04-19 22:30:36 -0700930 keyValuePairs, ioHandle, delayMs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700931 mWaitWorkCV.signal();
932 if (command->mWaitStatus) {
933 command->mCond.wait(mLock);
934 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100935 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700936 }
937 return status;
938}
939
940status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
941{
942 status_t status = NO_ERROR;
943
944 AudioCommand *command = new AudioCommand();
945 command->mCommand = SET_VOICE_VOLUME;
946 VoiceVolumeData *data = new VoiceVolumeData();
947 data->mVolume = volume;
948 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700949 Mutex::Autolock _l(mLock);
950 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100951 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700952 mWaitWorkCV.signal();
953 if (command->mWaitStatus) {
954 command->mCond.wait(mLock);
955 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100956 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700957 }
958 return status;
959}
960
Eric Laurentbfb1b832013-01-07 09:53:42 -0800961void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_io_handle_t output,
962 audio_stream_type_t stream,
963 int session)
964{
965 AudioCommand *command = new AudioCommand();
966 command->mCommand = STOP_OUTPUT;
967 StopOutputData *data = new StopOutputData();
968 data->mIO = output;
969 data->mStream = stream;
970 data->mSession = session;
971 command->mParam = (void *)data;
972 Mutex::Autolock _l(mLock);
973 insertCommand_l(command);
974 ALOGV("AudioCommandThread() adding stop output %d", output);
975 mWaitWorkCV.signal();
976}
977
978void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_io_handle_t output)
979{
980 AudioCommand *command = new AudioCommand();
981 command->mCommand = RELEASE_OUTPUT;
982 ReleaseOutputData *data = new ReleaseOutputData();
983 data->mIO = output;
984 command->mParam = (void *)data;
985 Mutex::Autolock _l(mLock);
986 insertCommand_l(command);
987 ALOGV("AudioCommandThread() adding release output %d", output);
988 mWaitWorkCV.signal();
989}
990
Mathias Agopian65ab4712010-07-14 17:59:35 -0700991// insertCommand_l() must be called with mLock held
992void AudioPolicyService::AudioCommandThread::insertCommand_l(AudioCommand *command, int delayMs)
993{
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800994 ssize_t i; // not size_t because i will count down to -1
Mathias Agopian65ab4712010-07-14 17:59:35 -0700995 Vector <AudioCommand *> removedCommands;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700996 command->mTime = systemTime() + milliseconds(delayMs);
997
998 // acquire wake lock to make sure delayed commands are processed
Eric Laurentbfb1b832013-01-07 09:53:42 -0800999 if (mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001000 acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.string());
1001 }
1002
1003 // check same pending commands with later time stamps and eliminate them
1004 for (i = mAudioCommands.size()-1; i >= 0; i--) {
1005 AudioCommand *command2 = mAudioCommands[i];
1006 // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands
1007 if (command2->mTime <= command->mTime) break;
1008 if (command2->mCommand != command->mCommand) continue;
1009
1010 switch (command->mCommand) {
1011 case SET_PARAMETERS: {
1012 ParametersData *data = (ParametersData *)command->mParam;
1013 ParametersData *data2 = (ParametersData *)command2->mParam;
1014 if (data->mIO != data2->mIO) break;
Steve Block3856b092011-10-20 11:56:00 +01001015 ALOGV("Comparing parameter command %s to new command %s",
Eric Laurentde070132010-07-13 04:45:46 -07001016 data2->mKeyValuePairs.string(), data->mKeyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001017 AudioParameter param = AudioParameter(data->mKeyValuePairs);
1018 AudioParameter param2 = AudioParameter(data2->mKeyValuePairs);
1019 for (size_t j = 0; j < param.size(); j++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001020 String8 key;
1021 String8 value;
1022 param.getAt(j, key, value);
1023 for (size_t k = 0; k < param2.size(); k++) {
1024 String8 key2;
1025 String8 value2;
1026 param2.getAt(k, key2, value2);
1027 if (key2 == key) {
1028 param2.remove(key2);
1029 ALOGV("Filtering out parameter %s", key2.string());
1030 break;
1031 }
1032 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001033 }
1034 // if all keys have been filtered out, remove the command.
1035 // otherwise, update the key value pairs
1036 if (param2.size() == 0) {
1037 removedCommands.add(command2);
1038 } else {
1039 data2->mKeyValuePairs = param2.toString();
1040 }
Eric Laurent21e54562013-09-23 12:08:05 -07001041 command->mTime = command2->mTime;
1042 // force delayMs to non 0 so that code below does not request to wait for
1043 // command status as the command is now delayed
1044 delayMs = 1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001045 } break;
1046
1047 case SET_VOLUME: {
1048 VolumeData *data = (VolumeData *)command->mParam;
1049 VolumeData *data2 = (VolumeData *)command2->mParam;
1050 if (data->mIO != data2->mIO) break;
1051 if (data->mStream != data2->mStream) break;
Steve Block3856b092011-10-20 11:56:00 +01001052 ALOGV("Filtering out volume command on output %d for stream %d",
Eric Laurentde070132010-07-13 04:45:46 -07001053 data->mIO, data->mStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001054 removedCommands.add(command2);
Eric Laurent21e54562013-09-23 12:08:05 -07001055 command->mTime = command2->mTime;
1056 // force delayMs to non 0 so that code below does not request to wait for
1057 // command status as the command is now delayed
1058 delayMs = 1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001059 } break;
1060 case START_TONE:
1061 case STOP_TONE:
1062 default:
1063 break;
1064 }
1065 }
1066
1067 // remove filtered commands
1068 for (size_t j = 0; j < removedCommands.size(); j++) {
1069 // removed commands always have time stamps greater than current command
1070 for (size_t k = i + 1; k < mAudioCommands.size(); k++) {
1071 if (mAudioCommands[k] == removedCommands[j]) {
Steve Block3856b092011-10-20 11:56:00 +01001072 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001073 mAudioCommands.removeAt(k);
1074 break;
1075 }
1076 }
1077 }
1078 removedCommands.clear();
1079
Eric Laurent21e54562013-09-23 12:08:05 -07001080 // wait for status only if delay is 0
1081 if (delayMs == 0) {
Eric Laurentcec4abb2012-07-03 12:23:02 -07001082 command->mWaitStatus = true;
1083 } else {
1084 command->mWaitStatus = false;
1085 }
Eric Laurentcec4abb2012-07-03 12:23:02 -07001086
Mathias Agopian65ab4712010-07-14 17:59:35 -07001087 // insert command at the right place according to its time stamp
Steve Block3856b092011-10-20 11:56:00 +01001088 ALOGV("inserting command: %d at index %d, num commands %d",
Eric Laurentde070132010-07-13 04:45:46 -07001089 command->mCommand, (int)i+1, mAudioCommands.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001090 mAudioCommands.insertAt(command, i + 1);
1091}
1092
1093void AudioPolicyService::AudioCommandThread::exit()
1094{
Steve Block3856b092011-10-20 11:56:00 +01001095 ALOGV("AudioCommandThread::exit");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001096 {
1097 AutoMutex _l(mLock);
1098 requestExit();
1099 mWaitWorkCV.signal();
1100 }
1101 requestExitAndWait();
1102}
1103
1104void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)
1105{
1106 snprintf(buffer, size, " %02d %06d.%03d %01u %p\n",
1107 mCommand,
1108 (int)ns2s(mTime),
1109 (int)ns2ms(mTime)%1000,
1110 mWaitStatus,
1111 mParam);
1112}
1113
Dima Zavinfce7a472011-04-19 22:30:36 -07001114/******* helpers for the service_ops callbacks defined below *********/
1115void AudioPolicyService::setParameters(audio_io_handle_t ioHandle,
1116 const char *keyValuePairs,
1117 int delayMs)
1118{
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001119 mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs,
Dima Zavinfce7a472011-04-19 22:30:36 -07001120 delayMs);
1121}
1122
1123int AudioPolicyService::setStreamVolume(audio_stream_type_t stream,
1124 float volume,
1125 audio_io_handle_t output,
1126 int delayMs)
1127{
Glenn Kastenfff6d712012-01-12 16:38:12 -08001128 return (int)mAudioCommandThread->volumeCommand(stream, volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001129 output, delayMs);
Dima Zavinfce7a472011-04-19 22:30:36 -07001130}
1131
1132int AudioPolicyService::startTone(audio_policy_tone_t tone,
1133 audio_stream_type_t stream)
1134{
1135 if (tone != AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION)
Steve Block29357bc2012-01-06 19:20:56 +00001136 ALOGE("startTone: illegal tone requested (%d)", tone);
Dima Zavinfce7a472011-04-19 22:30:36 -07001137 if (stream != AUDIO_STREAM_VOICE_CALL)
Steve Block29357bc2012-01-06 19:20:56 +00001138 ALOGE("startTone: illegal stream (%d) requested for tone %d", stream,
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001139 tone);
Dima Zavinfce7a472011-04-19 22:30:36 -07001140 mTonePlaybackThread->startToneCommand(ToneGenerator::TONE_SUP_CALL_WAITING,
1141 AUDIO_STREAM_VOICE_CALL);
1142 return 0;
1143}
1144
1145int AudioPolicyService::stopTone()
1146{
1147 mTonePlaybackThread->stopToneCommand();
1148 return 0;
1149}
1150
1151int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1152{
1153 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);
1154}
1155
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001156bool AudioPolicyService::isOffloadSupported(const audio_offload_info_t& info)
1157{
Eric Laurentbfb1b832013-01-07 09:53:42 -08001158 if (mpAudioPolicy == NULL) {
1159 ALOGV("mpAudioPolicy == NULL");
1160 return false;
1161 }
1162
1163 if (mpAudioPolicy->is_offload_supported == NULL) {
1164 ALOGV("HAL does not implement is_offload_supported");
1165 return false;
1166 }
1167
1168 return mpAudioPolicy->is_offload_supported(mpAudioPolicy, &info);
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001169}
1170
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001171// ----------------------------------------------------------------------------
1172// Audio pre-processing configuration
1173// ----------------------------------------------------------------------------
1174
Glenn Kasten8dad0e32012-01-09 08:41:22 -08001175/*static*/ const char * const AudioPolicyService::kInputSourceNames[AUDIO_SOURCE_CNT -1] = {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001176 MIC_SRC_TAG,
1177 VOICE_UL_SRC_TAG,
1178 VOICE_DL_SRC_TAG,
1179 VOICE_CALL_SRC_TAG,
1180 CAMCORDER_SRC_TAG,
1181 VOICE_REC_SRC_TAG,
1182 VOICE_COMM_SRC_TAG
1183};
1184
1185// returns the audio_source_t enum corresponding to the input source name or
1186// AUDIO_SOURCE_CNT is no match found
1187audio_source_t AudioPolicyService::inputSourceNameToEnum(const char *name)
1188{
1189 int i;
1190 for (i = AUDIO_SOURCE_MIC; i < AUDIO_SOURCE_CNT; i++) {
1191 if (strcmp(name, kInputSourceNames[i - AUDIO_SOURCE_MIC]) == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001192 ALOGV("inputSourceNameToEnum found source %s %d", name, i);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001193 break;
1194 }
1195 }
1196 return (audio_source_t)i;
1197}
1198
1199size_t AudioPolicyService::growParamSize(char *param,
1200 size_t size,
1201 size_t *curSize,
1202 size_t *totSize)
1203{
1204 // *curSize is at least sizeof(effect_param_t) + 2 * sizeof(int)
1205 size_t pos = ((*curSize - 1 ) / size + 1) * size;
1206
1207 if (pos + size > *totSize) {
1208 while (pos + size > *totSize) {
1209 *totSize += ((*totSize + 7) / 8) * 4;
1210 }
1211 param = (char *)realloc(param, *totSize);
1212 }
1213 *curSize = pos + size;
1214 return pos;
1215}
1216
1217size_t AudioPolicyService::readParamValue(cnode *node,
1218 char *param,
1219 size_t *curSize,
1220 size_t *totSize)
1221{
1222 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) {
1223 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1224 *(short *)((char *)param + pos) = (short)atoi(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001225 ALOGV("readParamValue() reading short %d", *(short *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001226 return sizeof(short);
1227 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) {
1228 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1229 *(int *)((char *)param + pos) = atoi(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001230 ALOGV("readParamValue() reading int %d", *(int *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001231 return sizeof(int);
1232 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) {
1233 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1234 *(float *)((char *)param + pos) = (float)atof(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001235 ALOGV("readParamValue() reading float %f",*(float *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001236 return sizeof(float);
1237 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) {
1238 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1239 if (strncmp(node->value, "false", strlen("false") + 1) == 0) {
1240 *(bool *)((char *)param + pos) = false;
1241 } else {
1242 *(bool *)((char *)param + pos) = true;
1243 }
Steve Block3856b092011-10-20 11:56:00 +01001244 ALOGV("readParamValue() reading bool %s",*(bool *)((char *)param + pos) ? "true" : "false");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001245 return sizeof(bool);
1246 } else if (strncmp(node->name, STRING_TAG, sizeof(STRING_TAG) + 1) == 0) {
1247 size_t len = strnlen(node->value, EFFECT_STRING_LEN_MAX);
1248 if (*curSize + len + 1 > *totSize) {
1249 *totSize = *curSize + len + 1;
1250 param = (char *)realloc(param, *totSize);
1251 }
1252 strncpy(param + *curSize, node->value, len);
1253 *curSize += len;
1254 param[*curSize] = '\0';
Steve Block3856b092011-10-20 11:56:00 +01001255 ALOGV("readParamValue() reading string %s", param + *curSize - len);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001256 return len;
1257 }
Steve Block5ff1dd52012-01-05 23:22:43 +00001258 ALOGW("readParamValue() unknown param type %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001259 return 0;
1260}
1261
1262effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root)
1263{
1264 cnode *param;
1265 cnode *value;
1266 size_t curSize = sizeof(effect_param_t);
1267 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1268 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1269
1270 param = config_find(root, PARAM_TAG);
1271 value = config_find(root, VALUE_TAG);
1272 if (param == NULL && value == NULL) {
1273 // try to parse simple parameter form {int int}
1274 param = root->first_child;
Glenn Kastena0d68332012-01-27 16:47:15 -08001275 if (param != NULL) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001276 // Note: that a pair of random strings is read as 0 0
1277 int *ptr = (int *)fx_param->data;
1278 int *ptr2 = (int *)((char *)param + sizeof(effect_param_t));
Steve Block5ff1dd52012-01-05 23:22:43 +00001279 ALOGW("loadEffectParameter() ptr %p ptr2 %p", ptr, ptr2);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001280 *ptr++ = atoi(param->name);
1281 *ptr = atoi(param->value);
1282 fx_param->psize = sizeof(int);
1283 fx_param->vsize = sizeof(int);
1284 return fx_param;
1285 }
1286 }
1287 if (param == NULL || value == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001288 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001289 goto error;
1290 }
1291
1292 fx_param->psize = 0;
1293 param = param->first_child;
1294 while (param) {
Steve Block3856b092011-10-20 11:56:00 +01001295 ALOGV("loadEffectParameter() reading param of type %s", param->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001296 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1297 if (size == 0) {
1298 goto error;
1299 }
1300 fx_param->psize += size;
1301 param = param->next;
1302 }
1303
1304 // align start of value field on 32 bit boundary
1305 curSize = ((curSize - 1 ) / sizeof(int) + 1) * sizeof(int);
1306
1307 fx_param->vsize = 0;
1308 value = value->first_child;
1309 while (value) {
Steve Block3856b092011-10-20 11:56:00 +01001310 ALOGV("loadEffectParameter() reading value of type %s", value->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001311 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);
1312 if (size == 0) {
1313 goto error;
1314 }
1315 fx_param->vsize += size;
1316 value = value->next;
1317 }
1318
1319 return fx_param;
1320
1321error:
1322 delete fx_param;
1323 return NULL;
1324}
1325
1326void AudioPolicyService::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params)
1327{
1328 cnode *node = root->first_child;
1329 while (node) {
Steve Block3856b092011-10-20 11:56:00 +01001330 ALOGV("loadEffectParameters() loading param %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001331 effect_param_t *param = loadEffectParameter(node);
1332 if (param == NULL) {
1333 node = node->next;
1334 continue;
1335 }
1336 params.add(param);
1337 node = node->next;
1338 }
1339}
1340
1341AudioPolicyService::InputSourceDesc *AudioPolicyService::loadInputSource(
1342 cnode *root,
1343 const Vector <EffectDesc *>& effects)
1344{
1345 cnode *node = root->first_child;
1346 if (node == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001347 ALOGW("loadInputSource() empty element %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001348 return NULL;
1349 }
1350 InputSourceDesc *source = new InputSourceDesc();
1351 while (node) {
1352 size_t i;
1353 for (i = 0; i < effects.size(); i++) {
1354 if (strncmp(effects[i]->mName, node->name, EFFECT_STRING_LEN_MAX) == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001355 ALOGV("loadInputSource() found effect %s in list", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001356 break;
1357 }
1358 }
1359 if (i == effects.size()) {
Steve Block3856b092011-10-20 11:56:00 +01001360 ALOGV("loadInputSource() effect %s not in list", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001361 node = node->next;
1362 continue;
1363 }
Glenn Kasten9fda4b82012-02-02 14:04:37 -08001364 EffectDesc *effect = new EffectDesc(*effects[i]); // deep copy
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001365 loadEffectParameters(node, effect->mParams);
Steve Block3856b092011-10-20 11:56:00 +01001366 ALOGV("loadInputSource() adding effect %s uuid %08x", effect->mName, effect->mUuid.timeLow);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001367 source->mEffects.add(effect);
1368 node = node->next;
1369 }
1370 if (source->mEffects.size() == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001371 ALOGW("loadInputSource() no valid effects found in source %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001372 delete source;
1373 return NULL;
1374 }
1375 return source;
1376}
1377
1378status_t AudioPolicyService::loadInputSources(cnode *root, const Vector <EffectDesc *>& effects)
1379{
1380 cnode *node = config_find(root, PREPROCESSING_TAG);
1381 if (node == NULL) {
1382 return -ENOENT;
1383 }
1384 node = node->first_child;
1385 while (node) {
1386 audio_source_t source = inputSourceNameToEnum(node->name);
1387 if (source == AUDIO_SOURCE_CNT) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001388 ALOGW("loadInputSources() invalid input source %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001389 node = node->next;
1390 continue;
1391 }
Steve Block3856b092011-10-20 11:56:00 +01001392 ALOGV("loadInputSources() loading input source %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001393 InputSourceDesc *desc = loadInputSource(node, effects);
1394 if (desc == NULL) {
1395 node = node->next;
1396 continue;
1397 }
1398 mInputSources.add(source, desc);
1399 node = node->next;
1400 }
1401 return NO_ERROR;
1402}
1403
1404AudioPolicyService::EffectDesc *AudioPolicyService::loadEffect(cnode *root)
1405{
1406 cnode *node = config_find(root, UUID_TAG);
1407 if (node == NULL) {
1408 return NULL;
1409 }
1410 effect_uuid_t uuid;
1411 if (AudioEffect::stringToGuid(node->value, &uuid) != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001412 ALOGW("loadEffect() invalid uuid %s", node->value);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001413 return NULL;
1414 }
Glenn Kasten9fda4b82012-02-02 14:04:37 -08001415 return new EffectDesc(root->name, uuid);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001416}
1417
1418status_t AudioPolicyService::loadEffects(cnode *root, Vector <EffectDesc *>& effects)
1419{
1420 cnode *node = config_find(root, EFFECTS_TAG);
1421 if (node == NULL) {
1422 return -ENOENT;
1423 }
1424 node = node->first_child;
1425 while (node) {
Steve Block3856b092011-10-20 11:56:00 +01001426 ALOGV("loadEffects() loading effect %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001427 EffectDesc *effect = loadEffect(node);
1428 if (effect == NULL) {
1429 node = node->next;
1430 continue;
1431 }
1432 effects.add(effect);
1433 node = node->next;
1434 }
1435 return NO_ERROR;
1436}
1437
1438status_t AudioPolicyService::loadPreProcessorConfig(const char *path)
1439{
1440 cnode *root;
1441 char *data;
1442
1443 data = (char *)load_file(path, NULL);
1444 if (data == NULL) {
1445 return -ENODEV;
1446 }
1447 root = config_node("", "");
1448 config_load(root, data);
1449
1450 Vector <EffectDesc *> effects;
1451 loadEffects(root, effects);
1452 loadInputSources(root, effects);
1453
Yu Yezhonge6056ba2013-10-15 14:32:34 +08001454 // delete effects to fix memory leak.
1455 // as effects is local var and valgrind would treat this as memory leak
1456 // and although it only did in mediaserver init, but free it in case mediaserver reboot
1457 size_t i;
1458 for (i = 0; i < effects.size(); i++) {
1459 delete effects[i];
1460 }
1461
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001462 config_free(root);
1463 free(root);
1464 free(data);
1465
1466 return NO_ERROR;
1467}
1468
Dima Zavinfce7a472011-04-19 22:30:36 -07001469/* implementation of the interface to the policy manager */
1470extern "C" {
1471
Eric Laurenta4c5a552012-03-29 10:12:40 -07001472
1473static audio_module_handle_t aps_load_hw_module(void *service,
1474 const char *name)
Dima Zavinfce7a472011-04-19 22:30:36 -07001475{
1476 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001477 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001478 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001479 return 0;
1480 }
1481
Eric Laurenta4c5a552012-03-29 10:12:40 -07001482 return af->loadHwModule(name);
1483}
1484
1485// deprecated: replaced by aps_open_output_on_module()
1486static audio_io_handle_t aps_open_output(void *service,
1487 audio_devices_t *pDevices,
1488 uint32_t *pSamplingRate,
1489 audio_format_t *pFormat,
1490 audio_channel_mask_t *pChannelMask,
1491 uint32_t *pLatencyMs,
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001492 audio_output_flags_t flags)
Eric Laurenta4c5a552012-03-29 10:12:40 -07001493{
1494 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1495 if (af == 0) {
1496 ALOGW("%s: could not get AudioFlinger", __func__);
1497 return 0;
1498 }
1499
1500 return af->openOutput((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask,
1501 pLatencyMs, flags);
1502}
1503
1504static audio_io_handle_t aps_open_output_on_module(void *service,
1505 audio_module_handle_t module,
1506 audio_devices_t *pDevices,
1507 uint32_t *pSamplingRate,
1508 audio_format_t *pFormat,
1509 audio_channel_mask_t *pChannelMask,
1510 uint32_t *pLatencyMs,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001511 audio_output_flags_t flags,
1512 const audio_offload_info_t *offloadInfo)
Eric Laurenta4c5a552012-03-29 10:12:40 -07001513{
1514 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1515 if (af == 0) {
1516 ALOGW("%s: could not get AudioFlinger", __func__);
1517 return 0;
1518 }
Eric Laurenta4c5a552012-03-29 10:12:40 -07001519 return af->openOutput(module, pDevices, pSamplingRate, pFormat, pChannelMask,
Eric Laurentbfb1b832013-01-07 09:53:42 -08001520 pLatencyMs, flags, offloadInfo);
Dima Zavinfce7a472011-04-19 22:30:36 -07001521}
1522
1523static audio_io_handle_t aps_open_dup_output(void *service,
1524 audio_io_handle_t output1,
1525 audio_io_handle_t output2)
1526{
1527 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001528 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001529 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001530 return 0;
1531 }
1532 return af->openDuplicateOutput(output1, output2);
1533}
1534
1535static int aps_close_output(void *service, audio_io_handle_t output)
1536{
1537 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001538 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001539 return PERMISSION_DENIED;
1540
1541 return af->closeOutput(output);
1542}
1543
1544static int aps_suspend_output(void *service, audio_io_handle_t output)
1545{
1546 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001547 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001548 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001549 return PERMISSION_DENIED;
1550 }
1551
1552 return af->suspendOutput(output);
1553}
1554
1555static int aps_restore_output(void *service, audio_io_handle_t output)
1556{
1557 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001558 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001559 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001560 return PERMISSION_DENIED;
1561 }
1562
1563 return af->restoreOutput(output);
1564}
1565
Glenn Kasten20010052012-06-22 13:43:51 -07001566// deprecated: replaced by aps_open_input_on_module(), and acoustics parameter is ignored
Dima Zavinfce7a472011-04-19 22:30:36 -07001567static audio_io_handle_t aps_open_input(void *service,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001568 audio_devices_t *pDevices,
1569 uint32_t *pSamplingRate,
1570 audio_format_t *pFormat,
1571 audio_channel_mask_t *pChannelMask,
1572 audio_in_acoustics_t acoustics)
Dima Zavinfce7a472011-04-19 22:30:36 -07001573{
1574 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001575 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001576 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001577 return 0;
1578 }
1579
Eric Laurenta4c5a552012-03-29 10:12:40 -07001580 return af->openInput((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask);
1581}
1582
1583static audio_io_handle_t aps_open_input_on_module(void *service,
1584 audio_module_handle_t module,
1585 audio_devices_t *pDevices,
1586 uint32_t *pSamplingRate,
1587 audio_format_t *pFormat,
1588 audio_channel_mask_t *pChannelMask)
1589{
1590 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1591 if (af == 0) {
1592 ALOGW("%s: could not get AudioFlinger", __func__);
1593 return 0;
1594 }
1595
1596 return af->openInput(module, pDevices, pSamplingRate, pFormat, pChannelMask);
Dima Zavinfce7a472011-04-19 22:30:36 -07001597}
1598
1599static int aps_close_input(void *service, audio_io_handle_t input)
1600{
1601 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001602 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001603 return PERMISSION_DENIED;
1604
1605 return af->closeInput(input);
1606}
1607
1608static int aps_set_stream_output(void *service, audio_stream_type_t stream,
1609 audio_io_handle_t output)
1610{
1611 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001612 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001613 return PERMISSION_DENIED;
1614
1615 return af->setStreamOutput(stream, output);
1616}
1617
1618static int aps_move_effects(void *service, int session,
1619 audio_io_handle_t src_output,
1620 audio_io_handle_t dst_output)
1621{
1622 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001623 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001624 return PERMISSION_DENIED;
1625
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001626 return af->moveEffects(session, src_output, dst_output);
Dima Zavinfce7a472011-04-19 22:30:36 -07001627}
1628
1629static char * aps_get_parameters(void *service, audio_io_handle_t io_handle,
1630 const char *keys)
1631{
1632 String8 result = AudioSystem::getParameters(io_handle, String8(keys));
1633 return strdup(result.string());
1634}
1635
1636static void aps_set_parameters(void *service, audio_io_handle_t io_handle,
1637 const char *kv_pairs, int delay_ms)
1638{
1639 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1640
1641 audioPolicyService->setParameters(io_handle, kv_pairs, delay_ms);
1642}
1643
1644static int aps_set_stream_volume(void *service, audio_stream_type_t stream,
1645 float volume, audio_io_handle_t output,
1646 int delay_ms)
1647{
1648 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1649
1650 return audioPolicyService->setStreamVolume(stream, volume, output,
1651 delay_ms);
1652}
1653
1654static int aps_start_tone(void *service, audio_policy_tone_t tone,
1655 audio_stream_type_t stream)
1656{
1657 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1658
1659 return audioPolicyService->startTone(tone, stream);
1660}
1661
1662static int aps_stop_tone(void *service)
1663{
1664 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1665
1666 return audioPolicyService->stopTone();
1667}
1668
1669static int aps_set_voice_volume(void *service, float volume, int delay_ms)
1670{
1671 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1672
1673 return audioPolicyService->setVoiceVolume(volume, delay_ms);
1674}
1675
1676}; // extern "C"
1677
1678namespace {
1679 struct audio_policy_service_ops aps_ops = {
1680 open_output : aps_open_output,
1681 open_duplicate_output : aps_open_dup_output,
1682 close_output : aps_close_output,
1683 suspend_output : aps_suspend_output,
1684 restore_output : aps_restore_output,
1685 open_input : aps_open_input,
1686 close_input : aps_close_input,
1687 set_stream_volume : aps_set_stream_volume,
1688 set_stream_output : aps_set_stream_output,
1689 set_parameters : aps_set_parameters,
1690 get_parameters : aps_get_parameters,
1691 start_tone : aps_start_tone,
1692 stop_tone : aps_stop_tone,
1693 set_voice_volume : aps_set_voice_volume,
1694 move_effects : aps_move_effects,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001695 load_hw_module : aps_load_hw_module,
1696 open_output_on_module : aps_open_output_on_module,
1697 open_input_on_module : aps_open_input_on_module,
Dima Zavinfce7a472011-04-19 22:30:36 -07001698 };
1699}; // namespace <unnamed>
1700
Mathias Agopian65ab4712010-07-14 17:59:35 -07001701}; // namespace android