blob: 4be292f91e151a2c799a64e5313735fb8628f163 [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{
Dima Zavinfce7a472011-04-19 22:30:36 -0700231 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700232 return 0;
233 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700234 ALOGV("getOutput()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700235 Mutex::Autolock _l(mLock);
Richard Fitzgeraldad3af332013-03-25 16:54:37 +0000236 return mpAudioPolicy->get_output(mpAudioPolicy, stream, samplingRate,
237 format, channelMask, flags, offloadInfo);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700238}
239
Eric Laurentde070132010-07-13 04:45:46 -0700240status_t AudioPolicyService::startOutput(audio_io_handle_t output,
Dima Zavinfce7a472011-04-19 22:30:36 -0700241 audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700242 int session)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700243{
Dima Zavinfce7a472011-04-19 22:30:36 -0700244 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700245 return NO_INIT;
246 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700247 ALOGV("startOutput()");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700248 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700249 return mpAudioPolicy->start_output(mpAudioPolicy, output, stream, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700250}
251
Eric Laurentde070132010-07-13 04:45:46 -0700252status_t AudioPolicyService::stopOutput(audio_io_handle_t output,
Dima Zavinfce7a472011-04-19 22:30:36 -0700253 audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700254 int session)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700255{
Dima Zavinfce7a472011-04-19 22:30:36 -0700256 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700257 return NO_INIT;
258 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700259 ALOGV("stopOutput()");
Eric Laurentbfb1b832013-01-07 09:53:42 -0800260 mOutputCommandThread->stopOutputCommand(output, stream, session);
261 return NO_ERROR;
262}
263
264status_t AudioPolicyService::doStopOutput(audio_io_handle_t output,
265 audio_stream_type_t stream,
266 int session)
267{
268 ALOGV("doStopOutput from tid %d", gettid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700269 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700270 return mpAudioPolicy->stop_output(mpAudioPolicy, output, stream, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700271}
272
273void AudioPolicyService::releaseOutput(audio_io_handle_t output)
274{
Dima Zavinfce7a472011-04-19 22:30:36 -0700275 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700276 return;
277 }
Glenn Kasten411e4472012-11-02 10:00:06 -0700278 ALOGV("releaseOutput()");
Eric Laurentbfb1b832013-01-07 09:53:42 -0800279 mOutputCommandThread->releaseOutputCommand(output);
280}
281
282void AudioPolicyService::doReleaseOutput(audio_io_handle_t output)
283{
284 ALOGV("doReleaseOutput from tid %d", gettid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700285 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700286 mpAudioPolicy->release_output(mpAudioPolicy, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700287}
288
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800289audio_io_handle_t AudioPolicyService::getInput(audio_source_t inputSource,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700290 uint32_t samplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800291 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -0700292 audio_channel_mask_t channelMask,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700293 int audioSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700294{
Dima Zavinfce7a472011-04-19 22:30:36 -0700295 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700296 return 0;
297 }
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800298 // already checked by client, but double-check in case the client wrapper is bypassed
Eric Laurent9a54bc22013-09-09 09:08:44 -0700299 if (inputSource >= AUDIO_SOURCE_CNT && inputSource != AUDIO_SOURCE_HOTWORD) {
Glenn Kasteneba51fb2012-01-23 13:58:49 -0800300 return 0;
301 }
Eric Laurent9a54bc22013-09-09 09:08:44 -0700302
303 if ((inputSource == AUDIO_SOURCE_HOTWORD) && !captureHotwordAllowed()) {
304 return 0;
305 }
306
Mathias Agopian65ab4712010-07-14 17:59:35 -0700307 Mutex::Autolock _l(mLock);
Glenn Kasten20010052012-06-22 13:43:51 -0700308 // the audio_in_acoustics_t parameter is ignored by get_input()
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700309 audio_io_handle_t input = mpAudioPolicy->get_input(mpAudioPolicy, inputSource, samplingRate,
Glenn Kasten8af901c2012-11-01 11:11:38 -0700310 format, channelMask, (audio_in_acoustics_t) 0);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700311
312 if (input == 0) {
313 return input;
314 }
315 // create audio pre processors according to input source
Eric Laurent9a54bc22013-09-09 09:08:44 -0700316 audio_source_t aliasSource = (inputSource == AUDIO_SOURCE_HOTWORD) ?
317 AUDIO_SOURCE_VOICE_RECOGNITION : inputSource;
318
319 ssize_t index = mInputSources.indexOfKey(aliasSource);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700320 if (index < 0) {
321 return input;
322 }
323 ssize_t idx = mInputs.indexOfKey(input);
324 InputDesc *inputDesc;
325 if (idx < 0) {
Glenn Kasten81872a22012-03-07 16:49:22 -0800326 inputDesc = new InputDesc(audioSession);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700327 mInputs.add(input, inputDesc);
328 } else {
329 inputDesc = mInputs.valueAt(idx);
330 }
331
332 Vector <EffectDesc *> effects = mInputSources.valueAt(index)->mEffects;
333 for (size_t i = 0; i < effects.size(); i++) {
334 EffectDesc *effect = effects[i];
335 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
336 status_t status = fx->initCheck();
337 if (status != NO_ERROR && status != ALREADY_EXISTS) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000338 ALOGW("Failed to create Fx %s on input %d", effect->mName, input);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700339 // fx goes out of scope and strong ref on AudioEffect is released
340 continue;
341 }
342 for (size_t j = 0; j < effect->mParams.size(); j++) {
343 fx->setParameter(effect->mParams[j]);
344 }
345 inputDesc->mEffects.add(fx);
346 }
347 setPreProcessorEnabled(inputDesc, true);
348 return input;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700349}
350
351status_t AudioPolicyService::startInput(audio_io_handle_t input)
352{
Dima Zavinfce7a472011-04-19 22:30:36 -0700353 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700354 return NO_INIT;
355 }
356 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700357
Dima Zavinfce7a472011-04-19 22:30:36 -0700358 return mpAudioPolicy->start_input(mpAudioPolicy, input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700359}
360
361status_t AudioPolicyService::stopInput(audio_io_handle_t input)
362{
Dima Zavinfce7a472011-04-19 22:30:36 -0700363 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700364 return NO_INIT;
365 }
366 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700367
Dima Zavinfce7a472011-04-19 22:30:36 -0700368 return mpAudioPolicy->stop_input(mpAudioPolicy, input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700369}
370
371void AudioPolicyService::releaseInput(audio_io_handle_t input)
372{
Dima Zavinfce7a472011-04-19 22:30:36 -0700373 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700374 return;
375 }
376 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700377 mpAudioPolicy->release_input(mpAudioPolicy, input);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700378
379 ssize_t index = mInputs.indexOfKey(input);
380 if (index < 0) {
381 return;
382 }
383 InputDesc *inputDesc = mInputs.valueAt(index);
384 setPreProcessorEnabled(inputDesc, false);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700385 delete inputDesc;
386 mInputs.removeItemsAt(index);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700387}
388
Dima Zavinfce7a472011-04-19 22:30:36 -0700389status_t AudioPolicyService::initStreamVolume(audio_stream_type_t stream,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700390 int indexMin,
391 int indexMax)
392{
Dima Zavinfce7a472011-04-19 22:30:36 -0700393 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700394 return NO_INIT;
395 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800396 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700397 return PERMISSION_DENIED;
398 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800399 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700400 return BAD_VALUE;
401 }
Eric Laurent5f121362012-06-15 14:45:03 -0700402 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700403 mpAudioPolicy->init_stream_volume(mpAudioPolicy, stream, indexMin, indexMax);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700404 return NO_ERROR;
405}
406
Eric Laurent83844cc2011-11-18 16:43:31 -0800407status_t AudioPolicyService::setStreamVolumeIndex(audio_stream_type_t stream,
408 int index,
409 audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700410{
Dima Zavinfce7a472011-04-19 22:30:36 -0700411 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700412 return NO_INIT;
413 }
Glenn Kasten44deb052012-02-05 18:09:08 -0800414 if (!settingsAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700415 return PERMISSION_DENIED;
416 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800417 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700418 return BAD_VALUE;
419 }
Eric Laurent5f121362012-06-15 14:45:03 -0700420 Mutex::Autolock _l(mLock);
Eric Laurent83844cc2011-11-18 16:43:31 -0800421 if (mpAudioPolicy->set_stream_volume_index_for_device) {
422 return mpAudioPolicy->set_stream_volume_index_for_device(mpAudioPolicy,
423 stream,
424 index,
425 device);
426 } else {
427 return mpAudioPolicy->set_stream_volume_index(mpAudioPolicy, stream, index);
428 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700429}
430
Eric Laurent83844cc2011-11-18 16:43:31 -0800431status_t AudioPolicyService::getStreamVolumeIndex(audio_stream_type_t stream,
432 int *index,
433 audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700434{
Dima Zavinfce7a472011-04-19 22:30:36 -0700435 if (mpAudioPolicy == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700436 return NO_INIT;
437 }
Glenn Kasten263709e2012-01-06 08:40:01 -0800438 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700439 return BAD_VALUE;
440 }
Eric Laurent5f121362012-06-15 14:45:03 -0700441 Mutex::Autolock _l(mLock);
Eric Laurent83844cc2011-11-18 16:43:31 -0800442 if (mpAudioPolicy->get_stream_volume_index_for_device) {
443 return mpAudioPolicy->get_stream_volume_index_for_device(mpAudioPolicy,
444 stream,
445 index,
446 device);
447 } else {
448 return mpAudioPolicy->get_stream_volume_index(mpAudioPolicy, stream, index);
449 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700450}
451
Dima Zavinfce7a472011-04-19 22:30:36 -0700452uint32_t AudioPolicyService::getStrategyForStream(audio_stream_type_t stream)
Eric Laurentde070132010-07-13 04:45:46 -0700453{
Dima Zavinfce7a472011-04-19 22:30:36 -0700454 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700455 return 0;
456 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700457 return mpAudioPolicy->get_strategy_for_stream(mpAudioPolicy, stream);
Eric Laurentde070132010-07-13 04:45:46 -0700458}
459
Eric Laurent63742522012-03-08 13:42:42 -0800460//audio policy: use audio_device_t appropriately
461
462audio_devices_t AudioPolicyService::getDevicesForStream(audio_stream_type_t stream)
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800463{
Dima Zavinfce7a472011-04-19 22:30:36 -0700464 if (mpAudioPolicy == NULL) {
Eric Laurent63742522012-03-08 13:42:42 -0800465 return (audio_devices_t)0;
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800466 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700467 return mpAudioPolicy->get_devices_for_stream(mpAudioPolicy, stream);
Glenn Kasten6b2718c2011-02-04 13:54:26 -0800468}
469
Glenn Kasten58e5aa32012-06-20 14:08:14 -0700470audio_io_handle_t AudioPolicyService::getOutputForEffect(const effect_descriptor_t *desc)
Eric Laurentde070132010-07-13 04:45:46 -0700471{
Dima Zavinfce7a472011-04-19 22:30:36 -0700472 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700473 return NO_INIT;
474 }
475 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700476 return mpAudioPolicy->get_output_for_effect(mpAudioPolicy, desc);
Eric Laurentde070132010-07-13 04:45:46 -0700477}
478
Glenn Kasten58e5aa32012-06-20 14:08:14 -0700479status_t AudioPolicyService::registerEffect(const effect_descriptor_t *desc,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700480 audio_io_handle_t io,
Eric Laurentde070132010-07-13 04:45:46 -0700481 uint32_t strategy,
482 int session,
483 int id)
484{
Dima Zavinfce7a472011-04-19 22:30:36 -0700485 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700486 return NO_INIT;
487 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700488 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
Eric Laurentde070132010-07-13 04:45:46 -0700489}
490
491status_t AudioPolicyService::unregisterEffect(int id)
492{
Dima Zavinfce7a472011-04-19 22:30:36 -0700493 if (mpAudioPolicy == NULL) {
Eric Laurentde070132010-07-13 04:45:46 -0700494 return NO_INIT;
495 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700496 return mpAudioPolicy->unregister_effect(mpAudioPolicy, id);
Eric Laurentde070132010-07-13 04:45:46 -0700497}
498
Eric Laurentdb7c0792011-08-10 10:37:50 -0700499status_t AudioPolicyService::setEffectEnabled(int id, bool enabled)
500{
501 if (mpAudioPolicy == NULL) {
502 return NO_INIT;
503 }
504 return mpAudioPolicy->set_effect_enabled(mpAudioPolicy, id, enabled);
505}
506
Glenn Kastenfff6d712012-01-12 16:38:12 -0800507bool AudioPolicyService::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
Eric Laurenteda6c362011-02-02 09:33:30 -0800508{
Dima Zavinfce7a472011-04-19 22:30:36 -0700509 if (mpAudioPolicy == NULL) {
Eric Laurenteda6c362011-02-02 09:33:30 -0800510 return 0;
511 }
512 Mutex::Autolock _l(mLock);
Dima Zavinfce7a472011-04-19 22:30:36 -0700513 return mpAudioPolicy->is_stream_active(mpAudioPolicy, stream, inPastMs);
Eric Laurenteda6c362011-02-02 09:33:30 -0800514}
515
Jean-Michel Trivie336f912013-02-04 16:26:02 -0800516bool AudioPolicyService::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
517{
518 if (mpAudioPolicy == NULL) {
519 return 0;
520 }
521 Mutex::Autolock _l(mLock);
522 return mpAudioPolicy->is_stream_active_remotely(mpAudioPolicy, stream, inPastMs);
523}
524
Jean-Michel Trivie3f641f2012-10-10 12:11:16 -0700525bool AudioPolicyService::isSourceActive(audio_source_t source) const
526{
527 if (mpAudioPolicy == NULL) {
528 return false;
529 }
530 if (mpAudioPolicy->is_source_active == 0) {
531 return false;
532 }
533 Mutex::Autolock _l(mLock);
534 return mpAudioPolicy->is_source_active(mpAudioPolicy, source);
535}
536
Eric Laurent57dae992011-07-24 13:36:09 -0700537status_t AudioPolicyService::queryDefaultPreProcessing(int audioSession,
538 effect_descriptor_t *descriptors,
539 uint32_t *count)
540{
541
542 if (mpAudioPolicy == NULL) {
543 *count = 0;
544 return NO_INIT;
545 }
546 Mutex::Autolock _l(mLock);
547 status_t status = NO_ERROR;
548
549 size_t index;
550 for (index = 0; index < mInputs.size(); index++) {
551 if (mInputs.valueAt(index)->mSessionId == audioSession) {
552 break;
553 }
554 }
555 if (index == mInputs.size()) {
556 *count = 0;
557 return BAD_VALUE;
558 }
559 Vector< sp<AudioEffect> > effects = mInputs.valueAt(index)->mEffects;
560
561 for (size_t i = 0; i < effects.size(); i++) {
562 effect_descriptor_t desc = effects[i]->descriptor();
563 if (i < *count) {
Glenn Kastena189a682012-02-20 12:16:30 -0800564 descriptors[i] = desc;
Eric Laurent57dae992011-07-24 13:36:09 -0700565 }
566 }
567 if (effects.size() > *count) {
568 status = NO_MEMORY;
569 }
570 *count = effects.size();
571 return status;
572}
573
Mathias Agopian65ab4712010-07-14 17:59:35 -0700574void AudioPolicyService::binderDied(const wp<IBinder>& who) {
Glenn Kasten411e4472012-11-02 10:00:06 -0700575 ALOGW("binderDied() %p, calling pid %d", who.unsafe_get(),
Eric Laurentde070132010-07-13 04:45:46 -0700576 IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700577}
578
579static bool tryLock(Mutex& mutex)
580{
581 bool locked = false;
582 for (int i = 0; i < kDumpLockRetries; ++i) {
583 if (mutex.tryLock() == NO_ERROR) {
584 locked = true;
585 break;
586 }
Glenn Kasten22ecc912012-01-09 08:33:38 -0800587 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700588 }
589 return locked;
590}
591
592status_t AudioPolicyService::dumpInternals(int fd)
593{
594 const size_t SIZE = 256;
595 char buffer[SIZE];
596 String8 result;
597
Dima Zavinfce7a472011-04-19 22:30:36 -0700598 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpAudioPolicy);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700599 result.append(buffer);
600 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
601 result.append(buffer);
602 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
603 result.append(buffer);
604
605 write(fd, result.string(), result.size());
606 return NO_ERROR;
607}
608
609status_t AudioPolicyService::dump(int fd, const Vector<String16>& args)
610{
Glenn Kasten44deb052012-02-05 18:09:08 -0800611 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700612 dumpPermissionDenial(fd);
613 } else {
614 bool locked = tryLock(mLock);
615 if (!locked) {
616 String8 result(kDeadlockedString);
617 write(fd, result.string(), result.size());
618 }
619
620 dumpInternals(fd);
Glenn Kasten9d1f02d2012-02-08 17:47:58 -0800621 if (mAudioCommandThread != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700622 mAudioCommandThread->dump(fd);
623 }
Glenn Kasten9d1f02d2012-02-08 17:47:58 -0800624 if (mTonePlaybackThread != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700625 mTonePlaybackThread->dump(fd);
626 }
627
Dima Zavinfce7a472011-04-19 22:30:36 -0700628 if (mpAudioPolicy) {
629 mpAudioPolicy->dump(mpAudioPolicy, fd);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700630 }
631
632 if (locked) mLock.unlock();
633 }
634 return NO_ERROR;
635}
636
637status_t AudioPolicyService::dumpPermissionDenial(int fd)
638{
639 const size_t SIZE = 256;
640 char buffer[SIZE];
641 String8 result;
642 snprintf(buffer, SIZE, "Permission Denial: "
643 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
644 IPCThreadState::self()->getCallingPid(),
645 IPCThreadState::self()->getCallingUid());
646 result.append(buffer);
647 write(fd, result.string(), result.size());
648 return NO_ERROR;
649}
650
Glenn Kasten81872a22012-03-07 16:49:22 -0800651void AudioPolicyService::setPreProcessorEnabled(const InputDesc *inputDesc, bool enabled)
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700652{
Glenn Kasten81872a22012-03-07 16:49:22 -0800653 const Vector<sp<AudioEffect> > &fxVector = inputDesc->mEffects;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700654 for (size_t i = 0; i < fxVector.size(); i++) {
Glenn Kastena1117922012-01-26 10:53:32 -0800655 fxVector.itemAt(i)->setEnabled(enabled);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700656 }
657}
658
Mathias Agopian65ab4712010-07-14 17:59:35 -0700659status_t AudioPolicyService::onTransact(
660 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
661{
662 return BnAudioPolicyService::onTransact(code, data, reply, flags);
663}
664
665
Mathias Agopian65ab4712010-07-14 17:59:35 -0700666// ----------- AudioPolicyService::AudioCommandThread implementation ----------
667
Eric Laurentbfb1b832013-01-07 09:53:42 -0800668AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name,
669 const wp<AudioPolicyService>& service)
670 : Thread(false), mName(name), mService(service)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700671{
672 mpToneGenerator = NULL;
673}
674
675
676AudioPolicyService::AudioCommandThread::~AudioCommandThread()
677{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800678 if (!mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700679 release_wake_lock(mName.string());
680 }
681 mAudioCommands.clear();
Glenn Kastene9dd0172012-01-27 18:08:45 -0800682 delete mpToneGenerator;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700683}
684
685void AudioPolicyService::AudioCommandThread::onFirstRef()
686{
Eric Laurentbfb1b832013-01-07 09:53:42 -0800687 run(mName.string(), ANDROID_PRIORITY_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700688}
689
690bool AudioPolicyService::AudioCommandThread::threadLoop()
691{
692 nsecs_t waitTime = INT64_MAX;
693
694 mLock.lock();
695 while (!exitPending())
696 {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700697 while (!mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700698 nsecs_t curTime = systemTime();
699 // commands are sorted by increasing time stamp: execute them from index 0 and up
700 if (mAudioCommands[0]->mTime <= curTime) {
701 AudioCommand *command = mAudioCommands[0];
702 mAudioCommands.removeAt(0);
703 mLastCommand = *command;
704
705 switch (command->mCommand) {
706 case START_TONE: {
707 mLock.unlock();
708 ToneData *data = (ToneData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100709 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700710 data->mType, data->mStream);
Glenn Kastene9dd0172012-01-27 18:08:45 -0800711 delete mpToneGenerator;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700712 mpToneGenerator = new ToneGenerator(data->mStream, 1.0);
713 mpToneGenerator->startTone(data->mType);
714 delete data;
715 mLock.lock();
716 }break;
717 case STOP_TONE: {
718 mLock.unlock();
Steve Block3856b092011-10-20 11:56:00 +0100719 ALOGV("AudioCommandThread() processing stop tone");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700720 if (mpToneGenerator != NULL) {
721 mpToneGenerator->stopTone();
722 delete mpToneGenerator;
723 mpToneGenerator = NULL;
724 }
725 mLock.lock();
726 }break;
727 case SET_VOLUME: {
728 VolumeData *data = (VolumeData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100729 ALOGV("AudioCommandThread() processing set volume stream %d, \
Eric Laurentde070132010-07-13 04:45:46 -0700730 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
731 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
732 data->mVolume,
733 data->mIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700734 if (command->mWaitStatus) {
735 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100736 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700737 }
738 delete data;
739 }break;
740 case SET_PARAMETERS: {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700741 ParametersData *data = (ParametersData *)command->mParam;
742 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
743 data->mKeyValuePairs.string(), data->mIO);
744 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs);
745 if (command->mWaitStatus) {
746 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100747 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700748 }
749 delete data;
750 }break;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700751 case SET_VOICE_VOLUME: {
752 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam;
Steve Block3856b092011-10-20 11:56:00 +0100753 ALOGV("AudioCommandThread() processing set voice volume volume %f",
Eric Laurentde070132010-07-13 04:45:46 -0700754 data->mVolume);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700755 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume);
756 if (command->mWaitStatus) {
757 command->mCond.signal();
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100758 command->mCond.waitRelative(mLock, kAudioCommandTimeout);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700759 }
760 delete data;
761 }break;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800762 case STOP_OUTPUT: {
763 StopOutputData *data = (StopOutputData *)command->mParam;
764 ALOGV("AudioCommandThread() processing stop output %d",
765 data->mIO);
766 sp<AudioPolicyService> svc = mService.promote();
767 if (svc == 0) {
768 break;
769 }
770 mLock.unlock();
771 svc->doStopOutput(data->mIO, data->mStream, data->mSession);
772 mLock.lock();
773 delete data;
774 }break;
775 case RELEASE_OUTPUT: {
776 ReleaseOutputData *data = (ReleaseOutputData *)command->mParam;
777 ALOGV("AudioCommandThread() processing release output %d",
778 data->mIO);
779 sp<AudioPolicyService> svc = mService.promote();
780 if (svc == 0) {
781 break;
782 }
783 mLock.unlock();
784 svc->doReleaseOutput(data->mIO);
785 mLock.lock();
786 delete data;
787 }break;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700788 default:
Steve Block5ff1dd52012-01-05 23:22:43 +0000789 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700790 }
791 delete command;
792 waitTime = INT64_MAX;
793 } else {
794 waitTime = mAudioCommands[0]->mTime - curTime;
795 break;
796 }
797 }
798 // release delayed commands wake lock
Eric Laurentbfb1b832013-01-07 09:53:42 -0800799 if (mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700800 release_wake_lock(mName.string());
801 }
Steve Block3856b092011-10-20 11:56:00 +0100802 ALOGV("AudioCommandThread() going to sleep");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700803 mWaitWorkCV.waitRelative(mLock, waitTime);
Steve Block3856b092011-10-20 11:56:00 +0100804 ALOGV("AudioCommandThread() waking up");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700805 }
806 mLock.unlock();
807 return false;
808}
809
810status_t AudioPolicyService::AudioCommandThread::dump(int fd)
811{
812 const size_t SIZE = 256;
813 char buffer[SIZE];
814 String8 result;
815
816 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
817 result.append(buffer);
818 write(fd, result.string(), result.size());
819
820 bool locked = tryLock(mLock);
821 if (!locked) {
822 String8 result2(kCmdDeadlockedString);
823 write(fd, result2.string(), result2.size());
824 }
825
826 snprintf(buffer, SIZE, "- Commands:\n");
827 result = String8(buffer);
828 result.append(" Command Time Wait pParam\n");
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800829 for (size_t i = 0; i < mAudioCommands.size(); i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700830 mAudioCommands[i]->dump(buffer, SIZE);
831 result.append(buffer);
832 }
833 result.append(" Last Command\n");
834 mLastCommand.dump(buffer, SIZE);
835 result.append(buffer);
836
837 write(fd, result.string(), result.size());
838
839 if (locked) mLock.unlock();
840
841 return NO_ERROR;
842}
843
Glenn Kasten3d2f8772012-01-27 15:25:25 -0800844void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
845 audio_stream_type_t stream)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700846{
847 AudioCommand *command = new AudioCommand();
848 command->mCommand = START_TONE;
849 ToneData *data = new ToneData();
850 data->mType = type;
851 data->mStream = stream;
852 command->mParam = (void *)data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700853 Mutex::Autolock _l(mLock);
854 insertCommand_l(command);
Steve Block3856b092011-10-20 11:56:00 +0100855 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700856 mWaitWorkCV.signal();
857}
858
859void AudioPolicyService::AudioCommandThread::stopToneCommand()
860{
861 AudioCommand *command = new AudioCommand();
862 command->mCommand = STOP_TONE;
863 command->mParam = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700864 Mutex::Autolock _l(mLock);
865 insertCommand_l(command);
Steve Block3856b092011-10-20 11:56:00 +0100866 ALOGV("AudioCommandThread() adding tone stop");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700867 mWaitWorkCV.signal();
868}
869
Glenn Kastenfff6d712012-01-12 16:38:12 -0800870status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
Eric Laurentde070132010-07-13 04:45:46 -0700871 float volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800872 audio_io_handle_t output,
Eric Laurentde070132010-07-13 04:45:46 -0700873 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874{
875 status_t status = NO_ERROR;
876
877 AudioCommand *command = new AudioCommand();
878 command->mCommand = SET_VOLUME;
879 VolumeData *data = new VolumeData();
880 data->mStream = stream;
881 data->mVolume = volume;
882 data->mIO = output;
883 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700884 Mutex::Autolock _l(mLock);
885 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100886 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
Eric Laurentde070132010-07-13 04:45:46 -0700887 stream, volume, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700888 mWaitWorkCV.signal();
889 if (command->mWaitStatus) {
890 command->mCond.wait(mLock);
891 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100892 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700893 }
894 return status;
895}
896
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800897status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
Dima Zavinfce7a472011-04-19 22:30:36 -0700898 const char *keyValuePairs,
Eric Laurentde070132010-07-13 04:45:46 -0700899 int delayMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700900{
901 status_t status = NO_ERROR;
902
903 AudioCommand *command = new AudioCommand();
904 command->mCommand = SET_PARAMETERS;
905 ParametersData *data = new ParametersData();
906 data->mIO = ioHandle;
Dima Zavinfce7a472011-04-19 22:30:36 -0700907 data->mKeyValuePairs = String8(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700908 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700909 Mutex::Autolock _l(mLock);
910 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100911 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
Dima Zavinfce7a472011-04-19 22:30:36 -0700912 keyValuePairs, ioHandle, delayMs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700913 mWaitWorkCV.signal();
914 if (command->mWaitStatus) {
915 command->mCond.wait(mLock);
916 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100917 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700918 }
919 return status;
920}
921
922status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
923{
924 status_t status = NO_ERROR;
925
926 AudioCommand *command = new AudioCommand();
927 command->mCommand = SET_VOICE_VOLUME;
928 VoiceVolumeData *data = new VoiceVolumeData();
929 data->mVolume = volume;
930 command->mParam = data;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700931 Mutex::Autolock _l(mLock);
932 insertCommand_l(command, delayMs);
Steve Block3856b092011-10-20 11:56:00 +0100933 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700934 mWaitWorkCV.signal();
935 if (command->mWaitStatus) {
936 command->mCond.wait(mLock);
937 status = command->mStatus;
Christer Fletcher5fa8c4b2013-01-18 15:27:03 +0100938 command->mCond.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700939 }
940 return status;
941}
942
Eric Laurentbfb1b832013-01-07 09:53:42 -0800943void AudioPolicyService::AudioCommandThread::stopOutputCommand(audio_io_handle_t output,
944 audio_stream_type_t stream,
945 int session)
946{
947 AudioCommand *command = new AudioCommand();
948 command->mCommand = STOP_OUTPUT;
949 StopOutputData *data = new StopOutputData();
950 data->mIO = output;
951 data->mStream = stream;
952 data->mSession = session;
953 command->mParam = (void *)data;
954 Mutex::Autolock _l(mLock);
955 insertCommand_l(command);
956 ALOGV("AudioCommandThread() adding stop output %d", output);
957 mWaitWorkCV.signal();
958}
959
960void AudioPolicyService::AudioCommandThread::releaseOutputCommand(audio_io_handle_t output)
961{
962 AudioCommand *command = new AudioCommand();
963 command->mCommand = RELEASE_OUTPUT;
964 ReleaseOutputData *data = new ReleaseOutputData();
965 data->mIO = output;
966 command->mParam = (void *)data;
967 Mutex::Autolock _l(mLock);
968 insertCommand_l(command);
969 ALOGV("AudioCommandThread() adding release output %d", output);
970 mWaitWorkCV.signal();
971}
972
Mathias Agopian65ab4712010-07-14 17:59:35 -0700973// insertCommand_l() must be called with mLock held
974void AudioPolicyService::AudioCommandThread::insertCommand_l(AudioCommand *command, int delayMs)
975{
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800976 ssize_t i; // not size_t because i will count down to -1
Mathias Agopian65ab4712010-07-14 17:59:35 -0700977 Vector <AudioCommand *> removedCommands;
Eric Laurentcec4abb2012-07-03 12:23:02 -0700978 nsecs_t time = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700979 command->mTime = systemTime() + milliseconds(delayMs);
980
981 // acquire wake lock to make sure delayed commands are processed
Eric Laurentbfb1b832013-01-07 09:53:42 -0800982 if (mAudioCommands.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700983 acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.string());
984 }
985
986 // check same pending commands with later time stamps and eliminate them
987 for (i = mAudioCommands.size()-1; i >= 0; i--) {
988 AudioCommand *command2 = mAudioCommands[i];
989 // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands
990 if (command2->mTime <= command->mTime) break;
991 if (command2->mCommand != command->mCommand) continue;
992
993 switch (command->mCommand) {
994 case SET_PARAMETERS: {
995 ParametersData *data = (ParametersData *)command->mParam;
996 ParametersData *data2 = (ParametersData *)command2->mParam;
997 if (data->mIO != data2->mIO) break;
Steve Block3856b092011-10-20 11:56:00 +0100998 ALOGV("Comparing parameter command %s to new command %s",
Eric Laurentde070132010-07-13 04:45:46 -0700999 data2->mKeyValuePairs.string(), data->mKeyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001000 AudioParameter param = AudioParameter(data->mKeyValuePairs);
1001 AudioParameter param2 = AudioParameter(data2->mKeyValuePairs);
1002 for (size_t j = 0; j < param.size(); j++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001003 String8 key;
1004 String8 value;
1005 param.getAt(j, key, value);
1006 for (size_t k = 0; k < param2.size(); k++) {
1007 String8 key2;
1008 String8 value2;
1009 param2.getAt(k, key2, value2);
1010 if (key2 == key) {
1011 param2.remove(key2);
1012 ALOGV("Filtering out parameter %s", key2.string());
1013 break;
1014 }
1015 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001016 }
1017 // if all keys have been filtered out, remove the command.
1018 // otherwise, update the key value pairs
1019 if (param2.size() == 0) {
1020 removedCommands.add(command2);
1021 } else {
1022 data2->mKeyValuePairs = param2.toString();
1023 }
Eric Laurentcec4abb2012-07-03 12:23:02 -07001024 time = command2->mTime;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001025 } break;
1026
1027 case SET_VOLUME: {
1028 VolumeData *data = (VolumeData *)command->mParam;
1029 VolumeData *data2 = (VolumeData *)command2->mParam;
1030 if (data->mIO != data2->mIO) break;
1031 if (data->mStream != data2->mStream) break;
Steve Block3856b092011-10-20 11:56:00 +01001032 ALOGV("Filtering out volume command on output %d for stream %d",
Eric Laurentde070132010-07-13 04:45:46 -07001033 data->mIO, data->mStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001034 removedCommands.add(command2);
Eric Laurentcec4abb2012-07-03 12:23:02 -07001035 time = command2->mTime;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001036 } break;
1037 case START_TONE:
1038 case STOP_TONE:
1039 default:
1040 break;
1041 }
1042 }
1043
1044 // remove filtered commands
1045 for (size_t j = 0; j < removedCommands.size(); j++) {
1046 // removed commands always have time stamps greater than current command
1047 for (size_t k = i + 1; k < mAudioCommands.size(); k++) {
1048 if (mAudioCommands[k] == removedCommands[j]) {
Steve Block3856b092011-10-20 11:56:00 +01001049 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001050 mAudioCommands.removeAt(k);
1051 break;
1052 }
1053 }
1054 }
1055 removedCommands.clear();
1056
Eric Laurentcec4abb2012-07-03 12:23:02 -07001057 // wait for status only if delay is 0 and command time was not modified above
1058 if (delayMs == 0 && time == 0) {
1059 command->mWaitStatus = true;
1060 } else {
1061 command->mWaitStatus = false;
1062 }
1063 // update command time if modified above
1064 if (time != 0) {
1065 command->mTime = time;
1066 }
1067
Mathias Agopian65ab4712010-07-14 17:59:35 -07001068 // insert command at the right place according to its time stamp
Steve Block3856b092011-10-20 11:56:00 +01001069 ALOGV("inserting command: %d at index %d, num commands %d",
Eric Laurentde070132010-07-13 04:45:46 -07001070 command->mCommand, (int)i+1, mAudioCommands.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001071 mAudioCommands.insertAt(command, i + 1);
1072}
1073
1074void AudioPolicyService::AudioCommandThread::exit()
1075{
Steve Block3856b092011-10-20 11:56:00 +01001076 ALOGV("AudioCommandThread::exit");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001077 {
1078 AutoMutex _l(mLock);
1079 requestExit();
1080 mWaitWorkCV.signal();
1081 }
1082 requestExitAndWait();
1083}
1084
1085void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)
1086{
1087 snprintf(buffer, size, " %02d %06d.%03d %01u %p\n",
1088 mCommand,
1089 (int)ns2s(mTime),
1090 (int)ns2ms(mTime)%1000,
1091 mWaitStatus,
1092 mParam);
1093}
1094
Dima Zavinfce7a472011-04-19 22:30:36 -07001095/******* helpers for the service_ops callbacks defined below *********/
1096void AudioPolicyService::setParameters(audio_io_handle_t ioHandle,
1097 const char *keyValuePairs,
1098 int delayMs)
1099{
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001100 mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs,
Dima Zavinfce7a472011-04-19 22:30:36 -07001101 delayMs);
1102}
1103
1104int AudioPolicyService::setStreamVolume(audio_stream_type_t stream,
1105 float volume,
1106 audio_io_handle_t output,
1107 int delayMs)
1108{
Glenn Kastenfff6d712012-01-12 16:38:12 -08001109 return (int)mAudioCommandThread->volumeCommand(stream, volume,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001110 output, delayMs);
Dima Zavinfce7a472011-04-19 22:30:36 -07001111}
1112
1113int AudioPolicyService::startTone(audio_policy_tone_t tone,
1114 audio_stream_type_t stream)
1115{
1116 if (tone != AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION)
Steve Block29357bc2012-01-06 19:20:56 +00001117 ALOGE("startTone: illegal tone requested (%d)", tone);
Dima Zavinfce7a472011-04-19 22:30:36 -07001118 if (stream != AUDIO_STREAM_VOICE_CALL)
Steve Block29357bc2012-01-06 19:20:56 +00001119 ALOGE("startTone: illegal stream (%d) requested for tone %d", stream,
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001120 tone);
Dima Zavinfce7a472011-04-19 22:30:36 -07001121 mTonePlaybackThread->startToneCommand(ToneGenerator::TONE_SUP_CALL_WAITING,
1122 AUDIO_STREAM_VOICE_CALL);
1123 return 0;
1124}
1125
1126int AudioPolicyService::stopTone()
1127{
1128 mTonePlaybackThread->stopToneCommand();
1129 return 0;
1130}
1131
1132int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1133{
1134 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);
1135}
1136
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001137bool AudioPolicyService::isOffloadSupported(const audio_offload_info_t& info)
1138{
Eric Laurentbfb1b832013-01-07 09:53:42 -08001139 if (mpAudioPolicy == NULL) {
1140 ALOGV("mpAudioPolicy == NULL");
1141 return false;
1142 }
1143
1144 if (mpAudioPolicy->is_offload_supported == NULL) {
1145 ALOGV("HAL does not implement is_offload_supported");
1146 return false;
1147 }
1148
1149 return mpAudioPolicy->is_offload_supported(mpAudioPolicy, &info);
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001150}
1151
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001152// ----------------------------------------------------------------------------
1153// Audio pre-processing configuration
1154// ----------------------------------------------------------------------------
1155
Glenn Kasten8dad0e32012-01-09 08:41:22 -08001156/*static*/ const char * const AudioPolicyService::kInputSourceNames[AUDIO_SOURCE_CNT -1] = {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001157 MIC_SRC_TAG,
1158 VOICE_UL_SRC_TAG,
1159 VOICE_DL_SRC_TAG,
1160 VOICE_CALL_SRC_TAG,
1161 CAMCORDER_SRC_TAG,
1162 VOICE_REC_SRC_TAG,
1163 VOICE_COMM_SRC_TAG
1164};
1165
1166// returns the audio_source_t enum corresponding to the input source name or
1167// AUDIO_SOURCE_CNT is no match found
1168audio_source_t AudioPolicyService::inputSourceNameToEnum(const char *name)
1169{
1170 int i;
1171 for (i = AUDIO_SOURCE_MIC; i < AUDIO_SOURCE_CNT; i++) {
1172 if (strcmp(name, kInputSourceNames[i - AUDIO_SOURCE_MIC]) == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001173 ALOGV("inputSourceNameToEnum found source %s %d", name, i);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001174 break;
1175 }
1176 }
1177 return (audio_source_t)i;
1178}
1179
1180size_t AudioPolicyService::growParamSize(char *param,
1181 size_t size,
1182 size_t *curSize,
1183 size_t *totSize)
1184{
1185 // *curSize is at least sizeof(effect_param_t) + 2 * sizeof(int)
1186 size_t pos = ((*curSize - 1 ) / size + 1) * size;
1187
1188 if (pos + size > *totSize) {
1189 while (pos + size > *totSize) {
1190 *totSize += ((*totSize + 7) / 8) * 4;
1191 }
1192 param = (char *)realloc(param, *totSize);
1193 }
1194 *curSize = pos + size;
1195 return pos;
1196}
1197
1198size_t AudioPolicyService::readParamValue(cnode *node,
1199 char *param,
1200 size_t *curSize,
1201 size_t *totSize)
1202{
1203 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) {
1204 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1205 *(short *)((char *)param + pos) = (short)atoi(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001206 ALOGV("readParamValue() reading short %d", *(short *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001207 return sizeof(short);
1208 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) {
1209 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1210 *(int *)((char *)param + pos) = atoi(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001211 ALOGV("readParamValue() reading int %d", *(int *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001212 return sizeof(int);
1213 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) {
1214 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1215 *(float *)((char *)param + pos) = (float)atof(node->value);
Steve Block3856b092011-10-20 11:56:00 +01001216 ALOGV("readParamValue() reading float %f",*(float *)((char *)param + pos));
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001217 return sizeof(float);
1218 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) {
1219 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1220 if (strncmp(node->value, "false", strlen("false") + 1) == 0) {
1221 *(bool *)((char *)param + pos) = false;
1222 } else {
1223 *(bool *)((char *)param + pos) = true;
1224 }
Steve Block3856b092011-10-20 11:56:00 +01001225 ALOGV("readParamValue() reading bool %s",*(bool *)((char *)param + pos) ? "true" : "false");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001226 return sizeof(bool);
1227 } else if (strncmp(node->name, STRING_TAG, sizeof(STRING_TAG) + 1) == 0) {
1228 size_t len = strnlen(node->value, EFFECT_STRING_LEN_MAX);
1229 if (*curSize + len + 1 > *totSize) {
1230 *totSize = *curSize + len + 1;
1231 param = (char *)realloc(param, *totSize);
1232 }
1233 strncpy(param + *curSize, node->value, len);
1234 *curSize += len;
1235 param[*curSize] = '\0';
Steve Block3856b092011-10-20 11:56:00 +01001236 ALOGV("readParamValue() reading string %s", param + *curSize - len);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001237 return len;
1238 }
Steve Block5ff1dd52012-01-05 23:22:43 +00001239 ALOGW("readParamValue() unknown param type %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001240 return 0;
1241}
1242
1243effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root)
1244{
1245 cnode *param;
1246 cnode *value;
1247 size_t curSize = sizeof(effect_param_t);
1248 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1249 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1250
1251 param = config_find(root, PARAM_TAG);
1252 value = config_find(root, VALUE_TAG);
1253 if (param == NULL && value == NULL) {
1254 // try to parse simple parameter form {int int}
1255 param = root->first_child;
Glenn Kastena0d68332012-01-27 16:47:15 -08001256 if (param != NULL) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001257 // Note: that a pair of random strings is read as 0 0
1258 int *ptr = (int *)fx_param->data;
1259 int *ptr2 = (int *)((char *)param + sizeof(effect_param_t));
Steve Block5ff1dd52012-01-05 23:22:43 +00001260 ALOGW("loadEffectParameter() ptr %p ptr2 %p", ptr, ptr2);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001261 *ptr++ = atoi(param->name);
1262 *ptr = atoi(param->value);
1263 fx_param->psize = sizeof(int);
1264 fx_param->vsize = sizeof(int);
1265 return fx_param;
1266 }
1267 }
1268 if (param == NULL || value == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001269 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001270 goto error;
1271 }
1272
1273 fx_param->psize = 0;
1274 param = param->first_child;
1275 while (param) {
Steve Block3856b092011-10-20 11:56:00 +01001276 ALOGV("loadEffectParameter() reading param of type %s", param->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001277 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1278 if (size == 0) {
1279 goto error;
1280 }
1281 fx_param->psize += size;
1282 param = param->next;
1283 }
1284
1285 // align start of value field on 32 bit boundary
1286 curSize = ((curSize - 1 ) / sizeof(int) + 1) * sizeof(int);
1287
1288 fx_param->vsize = 0;
1289 value = value->first_child;
1290 while (value) {
Steve Block3856b092011-10-20 11:56:00 +01001291 ALOGV("loadEffectParameter() reading value of type %s", value->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001292 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);
1293 if (size == 0) {
1294 goto error;
1295 }
1296 fx_param->vsize += size;
1297 value = value->next;
1298 }
1299
1300 return fx_param;
1301
1302error:
1303 delete fx_param;
1304 return NULL;
1305}
1306
1307void AudioPolicyService::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params)
1308{
1309 cnode *node = root->first_child;
1310 while (node) {
Steve Block3856b092011-10-20 11:56:00 +01001311 ALOGV("loadEffectParameters() loading param %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001312 effect_param_t *param = loadEffectParameter(node);
1313 if (param == NULL) {
1314 node = node->next;
1315 continue;
1316 }
1317 params.add(param);
1318 node = node->next;
1319 }
1320}
1321
1322AudioPolicyService::InputSourceDesc *AudioPolicyService::loadInputSource(
1323 cnode *root,
1324 const Vector <EffectDesc *>& effects)
1325{
1326 cnode *node = root->first_child;
1327 if (node == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001328 ALOGW("loadInputSource() empty element %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001329 return NULL;
1330 }
1331 InputSourceDesc *source = new InputSourceDesc();
1332 while (node) {
1333 size_t i;
1334 for (i = 0; i < effects.size(); i++) {
1335 if (strncmp(effects[i]->mName, node->name, EFFECT_STRING_LEN_MAX) == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001336 ALOGV("loadInputSource() found effect %s in list", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001337 break;
1338 }
1339 }
1340 if (i == effects.size()) {
Steve Block3856b092011-10-20 11:56:00 +01001341 ALOGV("loadInputSource() effect %s not in list", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001342 node = node->next;
1343 continue;
1344 }
Glenn Kasten9fda4b82012-02-02 14:04:37 -08001345 EffectDesc *effect = new EffectDesc(*effects[i]); // deep copy
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001346 loadEffectParameters(node, effect->mParams);
Steve Block3856b092011-10-20 11:56:00 +01001347 ALOGV("loadInputSource() adding effect %s uuid %08x", effect->mName, effect->mUuid.timeLow);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001348 source->mEffects.add(effect);
1349 node = node->next;
1350 }
1351 if (source->mEffects.size() == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001352 ALOGW("loadInputSource() no valid effects found in source %s", root->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001353 delete source;
1354 return NULL;
1355 }
1356 return source;
1357}
1358
1359status_t AudioPolicyService::loadInputSources(cnode *root, const Vector <EffectDesc *>& effects)
1360{
1361 cnode *node = config_find(root, PREPROCESSING_TAG);
1362 if (node == NULL) {
1363 return -ENOENT;
1364 }
1365 node = node->first_child;
1366 while (node) {
1367 audio_source_t source = inputSourceNameToEnum(node->name);
1368 if (source == AUDIO_SOURCE_CNT) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001369 ALOGW("loadInputSources() invalid input source %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001370 node = node->next;
1371 continue;
1372 }
Steve Block3856b092011-10-20 11:56:00 +01001373 ALOGV("loadInputSources() loading input source %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001374 InputSourceDesc *desc = loadInputSource(node, effects);
1375 if (desc == NULL) {
1376 node = node->next;
1377 continue;
1378 }
1379 mInputSources.add(source, desc);
1380 node = node->next;
1381 }
1382 return NO_ERROR;
1383}
1384
1385AudioPolicyService::EffectDesc *AudioPolicyService::loadEffect(cnode *root)
1386{
1387 cnode *node = config_find(root, UUID_TAG);
1388 if (node == NULL) {
1389 return NULL;
1390 }
1391 effect_uuid_t uuid;
1392 if (AudioEffect::stringToGuid(node->value, &uuid) != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001393 ALOGW("loadEffect() invalid uuid %s", node->value);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001394 return NULL;
1395 }
Glenn Kasten9fda4b82012-02-02 14:04:37 -08001396 return new EffectDesc(root->name, uuid);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001397}
1398
1399status_t AudioPolicyService::loadEffects(cnode *root, Vector <EffectDesc *>& effects)
1400{
1401 cnode *node = config_find(root, EFFECTS_TAG);
1402 if (node == NULL) {
1403 return -ENOENT;
1404 }
1405 node = node->first_child;
1406 while (node) {
Steve Block3856b092011-10-20 11:56:00 +01001407 ALOGV("loadEffects() loading effect %s", node->name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001408 EffectDesc *effect = loadEffect(node);
1409 if (effect == NULL) {
1410 node = node->next;
1411 continue;
1412 }
1413 effects.add(effect);
1414 node = node->next;
1415 }
1416 return NO_ERROR;
1417}
1418
1419status_t AudioPolicyService::loadPreProcessorConfig(const char *path)
1420{
1421 cnode *root;
1422 char *data;
1423
1424 data = (char *)load_file(path, NULL);
1425 if (data == NULL) {
1426 return -ENODEV;
1427 }
1428 root = config_node("", "");
1429 config_load(root, data);
1430
1431 Vector <EffectDesc *> effects;
1432 loadEffects(root, effects);
1433 loadInputSources(root, effects);
1434
1435 config_free(root);
1436 free(root);
1437 free(data);
1438
1439 return NO_ERROR;
1440}
1441
Dima Zavinfce7a472011-04-19 22:30:36 -07001442/* implementation of the interface to the policy manager */
1443extern "C" {
1444
Eric Laurenta4c5a552012-03-29 10:12:40 -07001445
1446static audio_module_handle_t aps_load_hw_module(void *service,
1447 const char *name)
Dima Zavinfce7a472011-04-19 22:30:36 -07001448{
1449 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001450 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001451 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001452 return 0;
1453 }
1454
Eric Laurenta4c5a552012-03-29 10:12:40 -07001455 return af->loadHwModule(name);
1456}
1457
1458// deprecated: replaced by aps_open_output_on_module()
1459static audio_io_handle_t aps_open_output(void *service,
1460 audio_devices_t *pDevices,
1461 uint32_t *pSamplingRate,
1462 audio_format_t *pFormat,
1463 audio_channel_mask_t *pChannelMask,
1464 uint32_t *pLatencyMs,
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001465 audio_output_flags_t flags)
Eric Laurenta4c5a552012-03-29 10:12:40 -07001466{
1467 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1468 if (af == 0) {
1469 ALOGW("%s: could not get AudioFlinger", __func__);
1470 return 0;
1471 }
1472
1473 return af->openOutput((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask,
1474 pLatencyMs, flags);
1475}
1476
1477static audio_io_handle_t aps_open_output_on_module(void *service,
1478 audio_module_handle_t module,
1479 audio_devices_t *pDevices,
1480 uint32_t *pSamplingRate,
1481 audio_format_t *pFormat,
1482 audio_channel_mask_t *pChannelMask,
1483 uint32_t *pLatencyMs,
Richard Fitzgeraldad3af332013-03-25 16:54:37 +00001484 audio_output_flags_t flags,
1485 const audio_offload_info_t *offloadInfo)
Eric Laurenta4c5a552012-03-29 10:12:40 -07001486{
1487 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1488 if (af == 0) {
1489 ALOGW("%s: could not get AudioFlinger", __func__);
1490 return 0;
1491 }
Eric Laurenta4c5a552012-03-29 10:12:40 -07001492 return af->openOutput(module, pDevices, pSamplingRate, pFormat, pChannelMask,
Eric Laurentbfb1b832013-01-07 09:53:42 -08001493 pLatencyMs, flags, offloadInfo);
Dima Zavinfce7a472011-04-19 22:30:36 -07001494}
1495
1496static audio_io_handle_t aps_open_dup_output(void *service,
1497 audio_io_handle_t output1,
1498 audio_io_handle_t output2)
1499{
1500 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001501 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001502 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001503 return 0;
1504 }
1505 return af->openDuplicateOutput(output1, output2);
1506}
1507
1508static int aps_close_output(void *service, audio_io_handle_t output)
1509{
1510 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001511 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001512 return PERMISSION_DENIED;
1513
1514 return af->closeOutput(output);
1515}
1516
1517static int aps_suspend_output(void *service, audio_io_handle_t output)
1518{
1519 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001520 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001521 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001522 return PERMISSION_DENIED;
1523 }
1524
1525 return af->suspendOutput(output);
1526}
1527
1528static int aps_restore_output(void *service, audio_io_handle_t output)
1529{
1530 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001531 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001532 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001533 return PERMISSION_DENIED;
1534 }
1535
1536 return af->restoreOutput(output);
1537}
1538
Glenn Kasten20010052012-06-22 13:43:51 -07001539// deprecated: replaced by aps_open_input_on_module(), and acoustics parameter is ignored
Dima Zavinfce7a472011-04-19 22:30:36 -07001540static audio_io_handle_t aps_open_input(void *service,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001541 audio_devices_t *pDevices,
1542 uint32_t *pSamplingRate,
1543 audio_format_t *pFormat,
1544 audio_channel_mask_t *pChannelMask,
1545 audio_in_acoustics_t acoustics)
Dima Zavinfce7a472011-04-19 22:30:36 -07001546{
1547 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001548 if (af == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001549 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavinfce7a472011-04-19 22:30:36 -07001550 return 0;
1551 }
1552
Eric Laurenta4c5a552012-03-29 10:12:40 -07001553 return af->openInput((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask);
1554}
1555
1556static audio_io_handle_t aps_open_input_on_module(void *service,
1557 audio_module_handle_t module,
1558 audio_devices_t *pDevices,
1559 uint32_t *pSamplingRate,
1560 audio_format_t *pFormat,
1561 audio_channel_mask_t *pChannelMask)
1562{
1563 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
1564 if (af == 0) {
1565 ALOGW("%s: could not get AudioFlinger", __func__);
1566 return 0;
1567 }
1568
1569 return af->openInput(module, pDevices, pSamplingRate, pFormat, pChannelMask);
Dima Zavinfce7a472011-04-19 22:30:36 -07001570}
1571
1572static int aps_close_input(void *service, audio_io_handle_t input)
1573{
1574 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001575 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001576 return PERMISSION_DENIED;
1577
1578 return af->closeInput(input);
1579}
1580
1581static int aps_set_stream_output(void *service, audio_stream_type_t stream,
1582 audio_io_handle_t output)
1583{
1584 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001585 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001586 return PERMISSION_DENIED;
1587
1588 return af->setStreamOutput(stream, output);
1589}
1590
1591static int aps_move_effects(void *service, int session,
1592 audio_io_handle_t src_output,
1593 audio_io_handle_t dst_output)
1594{
1595 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten7378ca52012-01-20 13:44:40 -08001596 if (af == 0)
Dima Zavinfce7a472011-04-19 22:30:36 -07001597 return PERMISSION_DENIED;
1598
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001599 return af->moveEffects(session, src_output, dst_output);
Dima Zavinfce7a472011-04-19 22:30:36 -07001600}
1601
1602static char * aps_get_parameters(void *service, audio_io_handle_t io_handle,
1603 const char *keys)
1604{
1605 String8 result = AudioSystem::getParameters(io_handle, String8(keys));
1606 return strdup(result.string());
1607}
1608
1609static void aps_set_parameters(void *service, audio_io_handle_t io_handle,
1610 const char *kv_pairs, int delay_ms)
1611{
1612 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1613
1614 audioPolicyService->setParameters(io_handle, kv_pairs, delay_ms);
1615}
1616
1617static int aps_set_stream_volume(void *service, audio_stream_type_t stream,
1618 float volume, audio_io_handle_t output,
1619 int delay_ms)
1620{
1621 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1622
1623 return audioPolicyService->setStreamVolume(stream, volume, output,
1624 delay_ms);
1625}
1626
1627static int aps_start_tone(void *service, audio_policy_tone_t tone,
1628 audio_stream_type_t stream)
1629{
1630 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1631
1632 return audioPolicyService->startTone(tone, stream);
1633}
1634
1635static int aps_stop_tone(void *service)
1636{
1637 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1638
1639 return audioPolicyService->stopTone();
1640}
1641
1642static int aps_set_voice_volume(void *service, float volume, int delay_ms)
1643{
1644 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1645
1646 return audioPolicyService->setVoiceVolume(volume, delay_ms);
1647}
1648
1649}; // extern "C"
1650
1651namespace {
1652 struct audio_policy_service_ops aps_ops = {
1653 open_output : aps_open_output,
1654 open_duplicate_output : aps_open_dup_output,
1655 close_output : aps_close_output,
1656 suspend_output : aps_suspend_output,
1657 restore_output : aps_restore_output,
1658 open_input : aps_open_input,
1659 close_input : aps_close_input,
1660 set_stream_volume : aps_set_stream_volume,
1661 set_stream_output : aps_set_stream_output,
1662 set_parameters : aps_set_parameters,
1663 get_parameters : aps_get_parameters,
1664 start_tone : aps_start_tone,
1665 stop_tone : aps_stop_tone,
1666 set_voice_volume : aps_set_voice_volume,
1667 move_effects : aps_move_effects,
Eric Laurenta4c5a552012-03-29 10:12:40 -07001668 load_hw_module : aps_load_hw_module,
1669 open_output_on_module : aps_open_output_on_module,
1670 open_input_on_module : aps_open_input_on_module,
Dima Zavinfce7a472011-04-19 22:30:36 -07001671 };
1672}; // namespace <unnamed>
1673
Mathias Agopian65ab4712010-07-14 17:59:35 -07001674}; // namespace android