blob: 62768bf4fcd8096dd7d93090a60513527c207315 [file] [log] [blame]
Eric Laurenta553c252009-07-17 12:17:14 -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
Eric Laurent327c27b2009-08-27 00:48:47 -070019
20#undef __STRICT_ANSI__
21#define __STDINT_LIMITS
22#define __STDC_LIMIT_MACROS
23#include <stdint.h>
24
25#include <sys/time.h>
Eric Laurenta553c252009-07-17 12:17:14 -070026#include <binder/IServiceManager.h>
27#include <utils/Log.h>
28#include <cutils/properties.h>
29#include <binder/IPCThreadState.h>
30#include <utils/String16.h>
31#include <utils/threads.h>
32#include "AudioPolicyService.h"
Glenn Kasten81211142012-02-05 18:09:08 -080033#include "ServiceUtilities.h"
Eric Laurenta553c252009-07-17 12:17:14 -070034#include <cutils/properties.h>
Eric Laurentcef3cd72009-12-10 01:03:50 -080035#include <hardware_legacy/power.h>
Eric Laurent464d5b32011-06-17 21:29:58 -070036#include <media/AudioEffect.h>
37#include <media/EffectsFactoryApi.h>
Eric Laurenta553c252009-07-17 12:17:14 -070038
Dima Zavin24fc2fb2011-04-19 22:30:36 -070039#include <hardware/hardware.h>
Dima Zavin34bb4192011-05-11 14:15:23 -070040#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070041#include <system/audio_policy.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070042#include <hardware/audio_policy.h>
Eric Laurent464d5b32011-06-17 21:29:58 -070043#include <audio_effects/audio_effects_conf.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070044
Eric Laurenta553c252009-07-17 12:17:14 -070045namespace android {
46
Glenn Kasten05d33102012-01-09 08:41:22 -080047static const char kDeadlockedString[] = "AudioPolicyService may be deadlocked\n";
48static const char kCmdDeadlockedString[] = "AudioPolicyService command thread may be deadlocked\n";
Eric Laurentf4ee40e2009-11-02 10:29:02 -080049
50static const int kDumpLockRetries = 50;
Glenn Kasten22c42412012-01-09 08:33:38 -080051static const int kDumpLockSleepUs = 20000;
Eric Laurentf4ee40e2009-11-02 10:29:02 -080052
Dima Zavin24fc2fb2011-04-19 22:30:36 -070053namespace {
54 extern struct audio_policy_service_ops aps_ops;
55};
56
Eric Laurenta553c252009-07-17 12:17:14 -070057// ----------------------------------------------------------------------------
58
59AudioPolicyService::AudioPolicyService()
Dima Zavin24fc2fb2011-04-19 22:30:36 -070060 : BnAudioPolicyService() , mpAudioPolicyDev(NULL) , mpAudioPolicy(NULL)
Eric Laurenta553c252009-07-17 12:17:14 -070061{
Eric Laurenta553c252009-07-17 12:17:14 -070062 char value[PROPERTY_VALUE_MAX];
Dima Zavin24fc2fb2011-04-19 22:30:36 -070063 const struct hw_module_t *module;
64 int forced_val;
65 int rc;
Eric Laurenta553c252009-07-17 12:17:14 -070066
Eric Laurent01635942011-01-18 18:39:02 -080067 Mutex::Autolock _l(mLock);
68
Eric Laurenta553c252009-07-17 12:17:14 -070069 // start tone playback thread
Eric Laurentcef3cd72009-12-10 01:03:50 -080070 mTonePlaybackThread = new AudioCommandThread(String8(""));
Eric Laurenta553c252009-07-17 12:17:14 -070071 // start audio commands thread
Glenn Kasten86e33622012-02-28 12:30:08 -080072 mAudioCommandThread = new AudioCommandThread(String8("ApmCommand"));
Eric Laurenta553c252009-07-17 12:17:14 -070073
Dima Zavin24fc2fb2011-04-19 22:30:36 -070074 /* instantiate the audio policy manager */
75 rc = hw_get_module(AUDIO_POLICY_HARDWARE_MODULE_ID, &module);
76 if (rc)
77 return;
Eric Laurenta553c252009-07-17 12:17:14 -070078
Dima Zavin24fc2fb2011-04-19 22:30:36 -070079 rc = audio_policy_dev_open(module, &mpAudioPolicyDev);
Steve Block3762c312012-01-06 19:20:56 +000080 ALOGE_IF(rc, "couldn't open audio policy device (%s)", strerror(-rc));
Dima Zavin24fc2fb2011-04-19 22:30:36 -070081 if (rc)
82 return;
Eric Laurent01635942011-01-18 18:39:02 -080083
Dima Zavin24fc2fb2011-04-19 22:30:36 -070084 rc = mpAudioPolicyDev->create_audio_policy(mpAudioPolicyDev, &aps_ops, this,
85 &mpAudioPolicy);
Steve Block3762c312012-01-06 19:20:56 +000086 ALOGE_IF(rc, "couldn't create audio policy (%s)", strerror(-rc));
Dima Zavin24fc2fb2011-04-19 22:30:36 -070087 if (rc)
88 return;
89
90 rc = mpAudioPolicy->init_check(mpAudioPolicy);
Steve Block3762c312012-01-06 19:20:56 +000091 ALOGE_IF(rc, "couldn't init_check the audio policy (%s)", strerror(-rc));
Dima Zavin24fc2fb2011-04-19 22:30:36 -070092 if (rc)
93 return;
94
95 property_get("ro.camera.sound.forced", value, "0");
96 forced_val = strtol(value, NULL, 0);
97 mpAudioPolicy->set_can_mute_enforced_audible(mpAudioPolicy, !forced_val);
98
Steve Block6215d3f2012-01-04 20:05:49 +000099 ALOGI("Loaded audio policy from %s (%s)", module->name, module->id);
Eric Laurent464d5b32011-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 }
Eric Laurenta553c252009-07-17 12:17:14 -0700107}
108
109AudioPolicyService::~AudioPolicyService()
110{
Eric Laurent327c27b2009-08-27 00:48:47 -0700111 mTonePlaybackThread->exit();
112 mTonePlaybackThread.clear();
Eric Laurenta553c252009-07-17 12:17:14 -0700113 mAudioCommandThread->exit();
114 mAudioCommandThread.clear();
115
Eric Laurent464d5b32011-06-17 21:29:58 -0700116
117 // release audio pre processing resources
118 for (size_t i = 0; i < mInputSources.size(); i++) {
Glenn Kastenafe98332012-02-02 14:04:37 -0800119 delete mInputSources.valueAt(i);
Eric Laurent464d5b32011-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 Kasten3694ec12012-01-27 16:47:15 -0800129 if (mpAudioPolicy != NULL && mpAudioPolicyDev != NULL)
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700130 mpAudioPolicyDev->destroy_audio_policy(mpAudioPolicyDev, mpAudioPolicy);
Glenn Kasten3694ec12012-01-27 16:47:15 -0800131 if (mpAudioPolicyDev != NULL)
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700132 audio_policy_dev_close(mpAudioPolicyDev);
Eric Laurenta553c252009-07-17 12:17:14 -0700133}
134
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700135status_t AudioPolicyService::setDeviceConnectionState(audio_devices_t device,
136 audio_policy_dev_state_t state,
Eric Laurenta553c252009-07-17 12:17:14 -0700137 const char *device_address)
138{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700139 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700140 return NO_INIT;
141 }
Glenn Kasten81211142012-02-05 18:09:08 -0800142 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700143 return PERMISSION_DENIED;
144 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700145 if (!audio_is_output_device(device) && !audio_is_input_device(device)) {
Eric Laurenta553c252009-07-17 12:17:14 -0700146 return BAD_VALUE;
147 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700148 if (state != AUDIO_POLICY_DEVICE_STATE_AVAILABLE &&
149 state != AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
Eric Laurenta553c252009-07-17 12:17:14 -0700150 return BAD_VALUE;
151 }
152
Steve Block71f2cf12011-10-20 11:56:00 +0100153 ALOGV("setDeviceConnectionState() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700154 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700155 return mpAudioPolicy->set_device_connection_state(mpAudioPolicy, device,
156 state, device_address);
Eric Laurenta553c252009-07-17 12:17:14 -0700157}
158
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700159audio_policy_dev_state_t AudioPolicyService::getDeviceConnectionState(
160 audio_devices_t device,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700161 const char *device_address)
Eric Laurenta553c252009-07-17 12:17:14 -0700162{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700163 if (mpAudioPolicy == NULL) {
164 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta553c252009-07-17 12:17:14 -0700165 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700166 return mpAudioPolicy->get_device_connection_state(mpAudioPolicy, device,
167 device_address);
Eric Laurenta553c252009-07-17 12:17:14 -0700168}
169
Glenn Kastenaccb1142012-01-04 11:00:47 -0800170status_t AudioPolicyService::setPhoneState(audio_mode_t state)
Eric Laurenta553c252009-07-17 12:17:14 -0700171{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700172 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700173 return NO_INIT;
174 }
Glenn Kasten81211142012-02-05 18:09:08 -0800175 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700176 return PERMISSION_DENIED;
177 }
Glenn Kasten01aaf2c2012-01-06 16:47:31 -0800178 if (uint32_t(state) >= AUDIO_MODE_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700179 return BAD_VALUE;
180 }
181
Steve Block71f2cf12011-10-20 11:56:00 +0100182 ALOGV("setPhoneState() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -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 Zavin24fc2fb2011-04-19 22:30:36 -0700188 mpAudioPolicy->set_phone_state(mpAudioPolicy, state);
Eric Laurenta553c252009-07-17 12:17:14 -0700189 return NO_ERROR;
190}
191
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700192status_t AudioPolicyService::setForceUse(audio_policy_force_use_t usage,
193 audio_policy_forced_cfg_t config)
Eric Laurenta553c252009-07-17 12:17:14 -0700194{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700195 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700196 return NO_INIT;
197 }
Glenn Kasten81211142012-02-05 18:09:08 -0800198 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700199 return PERMISSION_DENIED;
200 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700201 if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700202 return BAD_VALUE;
203 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700204 if (config < 0 || config >= AUDIO_POLICY_FORCE_CFG_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700205 return BAD_VALUE;
206 }
Steve Block71f2cf12011-10-20 11:56:00 +0100207 ALOGV("setForceUse() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700208 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700209 mpAudioPolicy->set_force_use(mpAudioPolicy, usage, config);
Eric Laurenta553c252009-07-17 12:17:14 -0700210 return NO_ERROR;
211}
212
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700213audio_policy_forced_cfg_t AudioPolicyService::getForceUse(audio_policy_force_use_t usage)
Eric Laurenta553c252009-07-17 12:17:14 -0700214{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700215 if (mpAudioPolicy == NULL) {
216 return AUDIO_POLICY_FORCE_NONE;
Eric Laurenta553c252009-07-17 12:17:14 -0700217 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700218 if (usage < 0 || usage >= AUDIO_POLICY_FORCE_USE_CNT) {
219 return AUDIO_POLICY_FORCE_NONE;
Eric Laurenta553c252009-07-17 12:17:14 -0700220 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700221 return mpAudioPolicy->get_force_use(mpAudioPolicy, usage);
Eric Laurenta553c252009-07-17 12:17:14 -0700222}
223
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700224audio_io_handle_t AudioPolicyService::getOutput(audio_stream_type_t stream,
Eric Laurenta553c252009-07-17 12:17:14 -0700225 uint32_t samplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800226 audio_format_t format,
Eric Laurenta553c252009-07-17 12:17:14 -0700227 uint32_t channels,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700228 audio_policy_output_flags_t flags)
Eric Laurenta553c252009-07-17 12:17:14 -0700229{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700230 if (mpAudioPolicy == NULL) {
Eric Laurentddb78e72009-07-28 08:44:33 -0700231 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700232 }
Steve Block71f2cf12011-10-20 11:56:00 +0100233 ALOGV("getOutput() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700234 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700235 return mpAudioPolicy->get_output(mpAudioPolicy, stream, samplingRate, format, channels, flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700236}
237
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700238status_t AudioPolicyService::startOutput(audio_io_handle_t output,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700239 audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700240 int session)
Eric Laurenta553c252009-07-17 12:17:14 -0700241{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700242 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700243 return NO_INIT;
244 }
Steve Block71f2cf12011-10-20 11:56:00 +0100245 ALOGV("startOutput() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700246 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700247 return mpAudioPolicy->start_output(mpAudioPolicy, output, stream, session);
Eric Laurenta553c252009-07-17 12:17:14 -0700248}
249
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700250status_t AudioPolicyService::stopOutput(audio_io_handle_t output,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700251 audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700252 int session)
Eric Laurenta553c252009-07-17 12:17:14 -0700253{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700254 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700255 return NO_INIT;
256 }
Steve Block71f2cf12011-10-20 11:56:00 +0100257 ALOGV("stopOutput() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700258 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700259 return mpAudioPolicy->stop_output(mpAudioPolicy, output, stream, session);
Eric Laurenta553c252009-07-17 12:17:14 -0700260}
261
262void AudioPolicyService::releaseOutput(audio_io_handle_t output)
263{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700264 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700265 return;
266 }
Steve Block71f2cf12011-10-20 11:56:00 +0100267 ALOGV("releaseOutput() tid %d", gettid());
Eric Laurenta553c252009-07-17 12:17:14 -0700268 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700269 mpAudioPolicy->release_output(mpAudioPolicy, output);
Eric Laurenta553c252009-07-17 12:17:14 -0700270}
271
Glenn Kasten0f0fbd92012-01-23 13:58:49 -0800272audio_io_handle_t AudioPolicyService::getInput(audio_source_t inputSource,
Eric Laurenta553c252009-07-17 12:17:14 -0700273 uint32_t samplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800274 audio_format_t format,
Eric Laurenta553c252009-07-17 12:17:14 -0700275 uint32_t channels,
Eric Laurent464d5b32011-06-17 21:29:58 -0700276 audio_in_acoustics_t acoustics,
277 int audioSession)
Eric Laurenta553c252009-07-17 12:17:14 -0700278{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700279 if (mpAudioPolicy == NULL) {
Eric Laurentddb78e72009-07-28 08:44:33 -0700280 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700281 }
Glenn Kasten0f0fbd92012-01-23 13:58:49 -0800282 // already checked by client, but double-check in case the client wrapper is bypassed
283 if (uint32_t(inputSource) >= AUDIO_SOURCE_CNT) {
284 return 0;
285 }
Eric Laurenta553c252009-07-17 12:17:14 -0700286 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -0700287 audio_io_handle_t input = mpAudioPolicy->get_input(mpAudioPolicy, inputSource, samplingRate,
288 format, channels, acoustics);
289
290 if (input == 0) {
291 return input;
292 }
293 // create audio pre processors according to input source
Glenn Kasten0f0fbd92012-01-23 13:58:49 -0800294 ssize_t index = mInputSources.indexOfKey(inputSource);
Eric Laurent464d5b32011-06-17 21:29:58 -0700295 if (index < 0) {
296 return input;
297 }
298 ssize_t idx = mInputs.indexOfKey(input);
299 InputDesc *inputDesc;
300 if (idx < 0) {
301 inputDesc = new InputDesc();
302 inputDesc->mSessionId = audioSession;
303 mInputs.add(input, inputDesc);
304 } else {
305 inputDesc = mInputs.valueAt(idx);
306 }
307
308 Vector <EffectDesc *> effects = mInputSources.valueAt(index)->mEffects;
309 for (size_t i = 0; i < effects.size(); i++) {
310 EffectDesc *effect = effects[i];
311 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
312 status_t status = fx->initCheck();
313 if (status != NO_ERROR && status != ALREADY_EXISTS) {
Steve Block8564c8d2012-01-05 23:22:43 +0000314 ALOGW("Failed to create Fx %s on input %d", effect->mName, input);
Eric Laurent464d5b32011-06-17 21:29:58 -0700315 // fx goes out of scope and strong ref on AudioEffect is released
316 continue;
317 }
318 for (size_t j = 0; j < effect->mParams.size(); j++) {
319 fx->setParameter(effect->mParams[j]);
320 }
321 inputDesc->mEffects.add(fx);
322 }
323 setPreProcessorEnabled(inputDesc, true);
324 return input;
Eric Laurenta553c252009-07-17 12:17:14 -0700325}
326
327status_t AudioPolicyService::startInput(audio_io_handle_t input)
328{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700329 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700330 return NO_INIT;
331 }
332 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -0700333
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700334 return mpAudioPolicy->start_input(mpAudioPolicy, input);
Eric Laurenta553c252009-07-17 12:17:14 -0700335}
336
337status_t AudioPolicyService::stopInput(audio_io_handle_t input)
338{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700339 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700340 return NO_INIT;
341 }
342 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -0700343
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700344 return mpAudioPolicy->stop_input(mpAudioPolicy, input);
Eric Laurenta553c252009-07-17 12:17:14 -0700345}
346
347void AudioPolicyService::releaseInput(audio_io_handle_t input)
348{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700349 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700350 return;
351 }
352 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700353 mpAudioPolicy->release_input(mpAudioPolicy, input);
Eric Laurent464d5b32011-06-17 21:29:58 -0700354
355 ssize_t index = mInputs.indexOfKey(input);
356 if (index < 0) {
357 return;
358 }
359 InputDesc *inputDesc = mInputs.valueAt(index);
360 setPreProcessorEnabled(inputDesc, false);
361 inputDesc->mEffects.clear();
362 delete inputDesc;
363 mInputs.removeItemsAt(index);
Eric Laurenta553c252009-07-17 12:17:14 -0700364}
365
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700366status_t AudioPolicyService::initStreamVolume(audio_stream_type_t stream,
Eric Laurenta553c252009-07-17 12:17:14 -0700367 int indexMin,
368 int indexMax)
369{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700370 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700371 return NO_INIT;
372 }
Glenn Kasten81211142012-02-05 18:09:08 -0800373 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700374 return PERMISSION_DENIED;
375 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800376 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700377 return BAD_VALUE;
378 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700379 mpAudioPolicy->init_stream_volume(mpAudioPolicy, stream, indexMin, indexMax);
Eric Laurenta553c252009-07-17 12:17:14 -0700380 return NO_ERROR;
381}
382
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800383status_t AudioPolicyService::setStreamVolumeIndex(audio_stream_type_t stream,
384 int index,
385 audio_devices_t device)
Eric Laurenta553c252009-07-17 12:17:14 -0700386{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700387 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700388 return NO_INIT;
389 }
Glenn Kasten81211142012-02-05 18:09:08 -0800390 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700391 return PERMISSION_DENIED;
392 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800393 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700394 return BAD_VALUE;
395 }
396
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800397 if (mpAudioPolicy->set_stream_volume_index_for_device) {
398 return mpAudioPolicy->set_stream_volume_index_for_device(mpAudioPolicy,
399 stream,
400 index,
401 device);
402 } else {
403 return mpAudioPolicy->set_stream_volume_index(mpAudioPolicy, stream, index);
404 }
Eric Laurenta553c252009-07-17 12:17:14 -0700405}
406
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800407status_t AudioPolicyService::getStreamVolumeIndex(audio_stream_type_t stream,
408 int *index,
409 audio_devices_t device)
Eric Laurenta553c252009-07-17 12:17:14 -0700410{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700411 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700412 return NO_INIT;
413 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800414 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700415 return BAD_VALUE;
416 }
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800417 if (mpAudioPolicy->get_stream_volume_index_for_device) {
418 return mpAudioPolicy->get_stream_volume_index_for_device(mpAudioPolicy,
419 stream,
420 index,
421 device);
422 } else {
423 return mpAudioPolicy->get_stream_volume_index(mpAudioPolicy, stream, index);
424 }
Eric Laurenta553c252009-07-17 12:17:14 -0700425}
426
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700427uint32_t AudioPolicyService::getStrategyForStream(audio_stream_type_t stream)
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700428{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700429 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700430 return 0;
431 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700432 return mpAudioPolicy->get_strategy_for_stream(mpAudioPolicy, stream);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700433}
434
Eric Laurentc9ab9f52012-03-08 13:42:42 -0800435//audio policy: use audio_device_t appropriately
436
437audio_devices_t AudioPolicyService::getDevicesForStream(audio_stream_type_t stream)
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800438{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700439 if (mpAudioPolicy == NULL) {
Eric Laurentc9ab9f52012-03-08 13:42:42 -0800440 return (audio_devices_t)0;
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800441 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700442 return mpAudioPolicy->get_devices_for_stream(mpAudioPolicy, stream);
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800443}
444
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700445audio_io_handle_t AudioPolicyService::getOutputForEffect(effect_descriptor_t *desc)
446{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700447 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700448 return NO_INIT;
449 }
450 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700451 return mpAudioPolicy->get_output_for_effect(mpAudioPolicy, desc);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700452}
453
454status_t AudioPolicyService::registerEffect(effect_descriptor_t *desc,
Eric Laurent464d5b32011-06-17 21:29:58 -0700455 audio_io_handle_t io,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700456 uint32_t strategy,
457 int session,
458 int id)
459{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700460 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700461 return NO_INIT;
462 }
Eric Laurent464d5b32011-06-17 21:29:58 -0700463 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700464}
465
466status_t AudioPolicyService::unregisterEffect(int id)
467{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700468 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700469 return NO_INIT;
470 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700471 return mpAudioPolicy->unregister_effect(mpAudioPolicy, id);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700472}
473
Eric Laurent6752ec82011-08-10 10:37:50 -0700474status_t AudioPolicyService::setEffectEnabled(int id, bool enabled)
475{
476 if (mpAudioPolicy == NULL) {
477 return NO_INIT;
478 }
479 return mpAudioPolicy->set_effect_enabled(mpAudioPolicy, id, enabled);
480}
481
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800482bool AudioPolicyService::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
Eric Laurent25101b02011-02-02 09:33:30 -0800483{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700484 if (mpAudioPolicy == NULL) {
Eric Laurent25101b02011-02-02 09:33:30 -0800485 return 0;
486 }
487 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700488 return mpAudioPolicy->is_stream_active(mpAudioPolicy, stream, inPastMs);
Eric Laurent25101b02011-02-02 09:33:30 -0800489}
490
Eric Laurent0f7f4ec2011-07-24 13:36:09 -0700491status_t AudioPolicyService::queryDefaultPreProcessing(int audioSession,
492 effect_descriptor_t *descriptors,
493 uint32_t *count)
494{
495
496 if (mpAudioPolicy == NULL) {
497 *count = 0;
498 return NO_INIT;
499 }
500 Mutex::Autolock _l(mLock);
501 status_t status = NO_ERROR;
502
503 size_t index;
504 for (index = 0; index < mInputs.size(); index++) {
505 if (mInputs.valueAt(index)->mSessionId == audioSession) {
506 break;
507 }
508 }
509 if (index == mInputs.size()) {
510 *count = 0;
511 return BAD_VALUE;
512 }
513 Vector< sp<AudioEffect> > effects = mInputs.valueAt(index)->mEffects;
514
515 for (size_t i = 0; i < effects.size(); i++) {
516 effect_descriptor_t desc = effects[i]->descriptor();
517 if (i < *count) {
518 memcpy(descriptors + i, &desc, sizeof(effect_descriptor_t));
519 }
520 }
521 if (effects.size() > *count) {
522 status = NO_MEMORY;
523 }
524 *count = effects.size();
525 return status;
526}
527
Eric Laurenta553c252009-07-17 12:17:14 -0700528void AudioPolicyService::binderDied(const wp<IBinder>& who) {
Glenn Kasten7ed4f0c2012-02-03 11:10:00 -0800529 ALOGW("binderDied() %p, tid %d, calling pid %d", who.unsafe_get(), gettid(),
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700530 IPCThreadState::self()->getCallingPid());
Eric Laurenta553c252009-07-17 12:17:14 -0700531}
532
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800533static bool tryLock(Mutex& mutex)
534{
535 bool locked = false;
536 for (int i = 0; i < kDumpLockRetries; ++i) {
537 if (mutex.tryLock() == NO_ERROR) {
538 locked = true;
539 break;
540 }
Glenn Kasten22c42412012-01-09 08:33:38 -0800541 usleep(kDumpLockSleepUs);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800542 }
543 return locked;
544}
545
546status_t AudioPolicyService::dumpInternals(int fd)
547{
548 const size_t SIZE = 256;
549 char buffer[SIZE];
550 String8 result;
551
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700552 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpAudioPolicy);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800553 result.append(buffer);
554 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
555 result.append(buffer);
556 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
557 result.append(buffer);
558
559 write(fd, result.string(), result.size());
560 return NO_ERROR;
561}
562
Eric Laurenta553c252009-07-17 12:17:14 -0700563status_t AudioPolicyService::dump(int fd, const Vector<String16>& args)
564{
Glenn Kasten81211142012-02-05 18:09:08 -0800565 if (!dumpAllowed()) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800566 dumpPermissionDenial(fd);
Eric Laurenta553c252009-07-17 12:17:14 -0700567 } else {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800568 bool locked = tryLock(mLock);
569 if (!locked) {
570 String8 result(kDeadlockedString);
571 write(fd, result.string(), result.size());
572 }
Eric Laurenta553c252009-07-17 12:17:14 -0700573
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800574 dumpInternals(fd);
Glenn Kasten1137be12012-02-08 17:47:58 -0800575 if (mAudioCommandThread != 0) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800576 mAudioCommandThread->dump(fd);
577 }
Glenn Kasten1137be12012-02-08 17:47:58 -0800578 if (mTonePlaybackThread != 0) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800579 mTonePlaybackThread->dump(fd);
580 }
581
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700582 if (mpAudioPolicy) {
583 mpAudioPolicy->dump(mpAudioPolicy, fd);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800584 }
585
586 if (locked) mLock.unlock();
Eric Laurenta553c252009-07-17 12:17:14 -0700587 }
588 return NO_ERROR;
589}
590
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800591status_t AudioPolicyService::dumpPermissionDenial(int fd)
Eric Laurenta553c252009-07-17 12:17:14 -0700592{
593 const size_t SIZE = 256;
594 char buffer[SIZE];
595 String8 result;
596 snprintf(buffer, SIZE, "Permission Denial: "
597 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
598 IPCThreadState::self()->getCallingPid(),
599 IPCThreadState::self()->getCallingUid());
600 result.append(buffer);
601 write(fd, result.string(), result.size());
602 return NO_ERROR;
603}
604
Eric Laurent464d5b32011-06-17 21:29:58 -0700605void AudioPolicyService::setPreProcessorEnabled(InputDesc *inputDesc, bool enabled)
606{
607 Vector<sp<AudioEffect> > fxVector = inputDesc->mEffects;
608 for (size_t i = 0; i < fxVector.size(); i++) {
Glenn Kasten7d3be3a2012-01-26 10:53:32 -0800609 fxVector.itemAt(i)->setEnabled(enabled);
Eric Laurent464d5b32011-06-17 21:29:58 -0700610 }
611}
612
Eric Laurenta553c252009-07-17 12:17:14 -0700613status_t AudioPolicyService::onTransact(
614 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
615{
616 return BnAudioPolicyService::onTransact(code, data, reply, flags);
617}
618
619
Eric Laurenta553c252009-07-17 12:17:14 -0700620// ----------- AudioPolicyService::AudioCommandThread implementation ----------
621
Eric Laurentcef3cd72009-12-10 01:03:50 -0800622AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name)
623 : Thread(false), mName(name)
Eric Laurenta553c252009-07-17 12:17:14 -0700624{
625 mpToneGenerator = NULL;
626}
627
628
629AudioPolicyService::AudioCommandThread::~AudioCommandThread()
630{
Eric Laurentcef3cd72009-12-10 01:03:50 -0800631 if (mName != "" && !mAudioCommands.isEmpty()) {
632 release_wake_lock(mName.string());
633 }
Eric Laurenta553c252009-07-17 12:17:14 -0700634 mAudioCommands.clear();
Glenn Kasten2589cf92012-01-27 18:08:45 -0800635 delete mpToneGenerator;
Eric Laurenta553c252009-07-17 12:17:14 -0700636}
637
638void AudioPolicyService::AudioCommandThread::onFirstRef()
639{
Eric Laurentcef3cd72009-12-10 01:03:50 -0800640 if (mName != "") {
641 run(mName.string(), ANDROID_PRIORITY_AUDIO);
642 } else {
Glenn Kasten86e33622012-02-28 12:30:08 -0800643 run("AudioCommand", ANDROID_PRIORITY_AUDIO);
Eric Laurentcef3cd72009-12-10 01:03:50 -0800644 }
Eric Laurenta553c252009-07-17 12:17:14 -0700645}
646
647bool AudioPolicyService::AudioCommandThread::threadLoop()
648{
Eric Laurent327c27b2009-08-27 00:48:47 -0700649 nsecs_t waitTime = INT64_MAX;
650
Eric Laurenta553c252009-07-17 12:17:14 -0700651 mLock.lock();
652 while (!exitPending())
653 {
654 while(!mAudioCommands.isEmpty()) {
Eric Laurent327c27b2009-08-27 00:48:47 -0700655 nsecs_t curTime = systemTime();
656 // commands are sorted by increasing time stamp: execute them from index 0 and up
657 if (mAudioCommands[0]->mTime <= curTime) {
658 AudioCommand *command = mAudioCommands[0];
659 mAudioCommands.removeAt(0);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800660 mLastCommand = *command;
661
Eric Laurent327c27b2009-08-27 00:48:47 -0700662 switch (command->mCommand) {
663 case START_TONE: {
664 mLock.unlock();
665 ToneData *data = (ToneData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100666 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
Eric Laurent327c27b2009-08-27 00:48:47 -0700667 data->mType, data->mStream);
Glenn Kasten2589cf92012-01-27 18:08:45 -0800668 delete mpToneGenerator;
Eric Laurent327c27b2009-08-27 00:48:47 -0700669 mpToneGenerator = new ToneGenerator(data->mStream, 1.0);
670 mpToneGenerator->startTone(data->mType);
671 delete data;
672 mLock.lock();
673 }break;
674 case STOP_TONE: {
675 mLock.unlock();
Steve Block71f2cf12011-10-20 11:56:00 +0100676 ALOGV("AudioCommandThread() processing stop tone");
Eric Laurent327c27b2009-08-27 00:48:47 -0700677 if (mpToneGenerator != NULL) {
678 mpToneGenerator->stopTone();
679 delete mpToneGenerator;
680 mpToneGenerator = NULL;
681 }
682 mLock.lock();
683 }break;
684 case SET_VOLUME: {
685 VolumeData *data = (VolumeData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100686 ALOGV("AudioCommandThread() processing set volume stream %d, \
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700687 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
688 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
689 data->mVolume,
690 data->mIO);
Eric Laurent327c27b2009-08-27 00:48:47 -0700691 if (command->mWaitStatus) {
692 command->mCond.signal();
693 mWaitWorkCV.wait(mLock);
694 }
695 delete data;
696 }break;
697 case SET_PARAMETERS: {
698 ParametersData *data = (ParametersData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100699 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700700 data->mKeyValuePairs.string(), data->mIO);
Eric Laurent327c27b2009-08-27 00:48:47 -0700701 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs);
702 if (command->mWaitStatus) {
703 command->mCond.signal();
704 mWaitWorkCV.wait(mLock);
705 }
706 delete data;
707 }break;
Eric Laurent415f3e22009-10-21 08:14:22 -0700708 case SET_VOICE_VOLUME: {
709 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100710 ALOGV("AudioCommandThread() processing set voice volume volume %f",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700711 data->mVolume);
Eric Laurent415f3e22009-10-21 08:14:22 -0700712 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume);
713 if (command->mWaitStatus) {
714 command->mCond.signal();
715 mWaitWorkCV.wait(mLock);
716 }
717 delete data;
718 }break;
Eric Laurent327c27b2009-08-27 00:48:47 -0700719 default:
Steve Block8564c8d2012-01-05 23:22:43 +0000720 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
Eric Laurenta553c252009-07-17 12:17:14 -0700721 }
Eric Laurent327c27b2009-08-27 00:48:47 -0700722 delete command;
723 waitTime = INT64_MAX;
724 } else {
725 waitTime = mAudioCommands[0]->mTime - curTime;
726 break;
Eric Laurenta553c252009-07-17 12:17:14 -0700727 }
Eric Laurenta553c252009-07-17 12:17:14 -0700728 }
Eric Laurentcef3cd72009-12-10 01:03:50 -0800729 // release delayed commands wake lock
730 if (mName != "" && mAudioCommands.isEmpty()) {
731 release_wake_lock(mName.string());
732 }
Steve Block71f2cf12011-10-20 11:56:00 +0100733 ALOGV("AudioCommandThread() going to sleep");
Eric Laurent327c27b2009-08-27 00:48:47 -0700734 mWaitWorkCV.waitRelative(mLock, waitTime);
Steve Block71f2cf12011-10-20 11:56:00 +0100735 ALOGV("AudioCommandThread() waking up");
Eric Laurenta553c252009-07-17 12:17:14 -0700736 }
737 mLock.unlock();
738 return false;
739}
740
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800741status_t AudioPolicyService::AudioCommandThread::dump(int fd)
742{
743 const size_t SIZE = 256;
744 char buffer[SIZE];
745 String8 result;
746
747 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
748 result.append(buffer);
749 write(fd, result.string(), result.size());
750
751 bool locked = tryLock(mLock);
752 if (!locked) {
753 String8 result2(kCmdDeadlockedString);
754 write(fd, result2.string(), result2.size());
755 }
756
757 snprintf(buffer, SIZE, "- Commands:\n");
758 result = String8(buffer);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800759 result.append(" Command Time Wait pParam\n");
Glenn Kasten150d2382012-02-08 14:04:28 -0800760 for (size_t i = 0; i < mAudioCommands.size(); i++) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800761 mAudioCommands[i]->dump(buffer, SIZE);
762 result.append(buffer);
763 }
Eric Laurent3fdb1262009-11-07 00:01:32 -0800764 result.append(" Last Command\n");
765 mLastCommand.dump(buffer, SIZE);
766 result.append(buffer);
767
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800768 write(fd, result.string(), result.size());
769
770 if (locked) mLock.unlock();
771
772 return NO_ERROR;
773}
774
Glenn Kasten23f7ad32012-01-27 15:25:25 -0800775void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
776 audio_stream_type_t stream)
Eric Laurenta553c252009-07-17 12:17:14 -0700777{
Eric Laurenta553c252009-07-17 12:17:14 -0700778 AudioCommand *command = new AudioCommand();
779 command->mCommand = START_TONE;
780 ToneData *data = new ToneData();
781 data->mType = type;
782 data->mStream = stream;
783 command->mParam = (void *)data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700784 command->mWaitStatus = false;
Eric Laurent415f3e22009-10-21 08:14:22 -0700785 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700786 insertCommand_l(command);
Steve Block71f2cf12011-10-20 11:56:00 +0100787 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
Eric Laurenta553c252009-07-17 12:17:14 -0700788 mWaitWorkCV.signal();
789}
790
791void AudioPolicyService::AudioCommandThread::stopToneCommand()
792{
Eric Laurenta553c252009-07-17 12:17:14 -0700793 AudioCommand *command = new AudioCommand();
794 command->mCommand = STOP_TONE;
795 command->mParam = NULL;
Eric Laurent327c27b2009-08-27 00:48:47 -0700796 command->mWaitStatus = false;
Eric Laurent415f3e22009-10-21 08:14:22 -0700797 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700798 insertCommand_l(command);
Steve Block71f2cf12011-10-20 11:56:00 +0100799 ALOGV("AudioCommandThread() adding tone stop");
Eric Laurenta553c252009-07-17 12:17:14 -0700800 mWaitWorkCV.signal();
801}
802
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800803status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700804 float volume,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800805 audio_io_handle_t output,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700806 int delayMs)
Eric Laurenta553c252009-07-17 12:17:14 -0700807{
Eric Laurent327c27b2009-08-27 00:48:47 -0700808 status_t status = NO_ERROR;
809
Eric Laurenta553c252009-07-17 12:17:14 -0700810 AudioCommand *command = new AudioCommand();
811 command->mCommand = SET_VOLUME;
812 VolumeData *data = new VolumeData();
813 data->mStream = stream;
814 data->mVolume = volume;
815 data->mIO = output;
816 command->mParam = data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700817 if (delayMs == 0) {
818 command->mWaitStatus = true;
819 } else {
820 command->mWaitStatus = false;
821 }
Eric Laurent415f3e22009-10-21 08:14:22 -0700822 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700823 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100824 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700825 stream, volume, output);
Eric Laurenta553c252009-07-17 12:17:14 -0700826 mWaitWorkCV.signal();
Eric Laurent327c27b2009-08-27 00:48:47 -0700827 if (command->mWaitStatus) {
828 command->mCond.wait(mLock);
829 status = command->mStatus;
830 mWaitWorkCV.signal();
831 }
Eric Laurenta553c252009-07-17 12:17:14 -0700832 return status;
833}
834
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800835status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700836 const char *keyValuePairs,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700837 int delayMs)
Eric Laurenta553c252009-07-17 12:17:14 -0700838{
Eric Laurent327c27b2009-08-27 00:48:47 -0700839 status_t status = NO_ERROR;
840
Eric Laurenta553c252009-07-17 12:17:14 -0700841 AudioCommand *command = new AudioCommand();
842 command->mCommand = SET_PARAMETERS;
843 ParametersData *data = new ParametersData();
844 data->mIO = ioHandle;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700845 data->mKeyValuePairs = String8(keyValuePairs);
Eric Laurenta553c252009-07-17 12:17:14 -0700846 command->mParam = data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700847 if (delayMs == 0) {
848 command->mWaitStatus = true;
849 } else {
850 command->mWaitStatus = false;
851 }
Eric Laurent415f3e22009-10-21 08:14:22 -0700852 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700853 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100854 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700855 keyValuePairs, ioHandle, delayMs);
Eric Laurenta553c252009-07-17 12:17:14 -0700856 mWaitWorkCV.signal();
Eric Laurent327c27b2009-08-27 00:48:47 -0700857 if (command->mWaitStatus) {
858 command->mCond.wait(mLock);
859 status = command->mStatus;
860 mWaitWorkCV.signal();
861 }
Eric Laurenta553c252009-07-17 12:17:14 -0700862 return status;
863}
864
Eric Laurent415f3e22009-10-21 08:14:22 -0700865status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
866{
867 status_t status = NO_ERROR;
868
869 AudioCommand *command = new AudioCommand();
870 command->mCommand = SET_VOICE_VOLUME;
871 VoiceVolumeData *data = new VoiceVolumeData();
872 data->mVolume = volume;
873 command->mParam = data;
874 if (delayMs == 0) {
875 command->mWaitStatus = true;
876 } else {
877 command->mWaitStatus = false;
878 }
879 Mutex::Autolock _l(mLock);
880 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100881 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
Eric Laurent415f3e22009-10-21 08:14:22 -0700882 mWaitWorkCV.signal();
883 if (command->mWaitStatus) {
884 command->mCond.wait(mLock);
885 status = command->mStatus;
886 mWaitWorkCV.signal();
887 }
888 return status;
889}
890
Eric Laurent327c27b2009-08-27 00:48:47 -0700891// insertCommand_l() must be called with mLock held
892void AudioPolicyService::AudioCommandThread::insertCommand_l(AudioCommand *command, int delayMs)
893{
Glenn Kasten150d2382012-02-08 14:04:28 -0800894 ssize_t i; // not size_t because i will count down to -1
Eric Laurent327c27b2009-08-27 00:48:47 -0700895 Vector <AudioCommand *> removedCommands;
896
897 command->mTime = systemTime() + milliseconds(delayMs);
898
Eric Laurentcef3cd72009-12-10 01:03:50 -0800899 // acquire wake lock to make sure delayed commands are processed
900 if (mName != "" && mAudioCommands.isEmpty()) {
901 acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.string());
902 }
903
Eric Laurent327c27b2009-08-27 00:48:47 -0700904 // check same pending commands with later time stamps and eliminate them
905 for (i = mAudioCommands.size()-1; i >= 0; i--) {
906 AudioCommand *command2 = mAudioCommands[i];
907 // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands
908 if (command2->mTime <= command->mTime) break;
909 if (command2->mCommand != command->mCommand) continue;
910
911 switch (command->mCommand) {
912 case SET_PARAMETERS: {
913 ParametersData *data = (ParametersData *)command->mParam;
914 ParametersData *data2 = (ParametersData *)command2->mParam;
915 if (data->mIO != data2->mIO) break;
Steve Block71f2cf12011-10-20 11:56:00 +0100916 ALOGV("Comparing parameter command %s to new command %s",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700917 data2->mKeyValuePairs.string(), data->mKeyValuePairs.string());
Eric Laurent327c27b2009-08-27 00:48:47 -0700918 AudioParameter param = AudioParameter(data->mKeyValuePairs);
919 AudioParameter param2 = AudioParameter(data2->mKeyValuePairs);
920 for (size_t j = 0; j < param.size(); j++) {
921 String8 key;
922 String8 value;
923 param.getAt(j, key, value);
924 for (size_t k = 0; k < param2.size(); k++) {
925 String8 key2;
926 String8 value2;
927 param2.getAt(k, key2, value2);
928 if (key2 == key) {
929 param2.remove(key2);
Steve Block71f2cf12011-10-20 11:56:00 +0100930 ALOGV("Filtering out parameter %s", key2.string());
Eric Laurent327c27b2009-08-27 00:48:47 -0700931 break;
932 }
933 }
934 }
935 // if all keys have been filtered out, remove the command.
936 // otherwise, update the key value pairs
937 if (param2.size() == 0) {
938 removedCommands.add(command2);
939 } else {
940 data2->mKeyValuePairs = param2.toString();
941 }
942 } break;
943
944 case SET_VOLUME: {
945 VolumeData *data = (VolumeData *)command->mParam;
946 VolumeData *data2 = (VolumeData *)command2->mParam;
947 if (data->mIO != data2->mIO) break;
948 if (data->mStream != data2->mStream) break;
Steve Block71f2cf12011-10-20 11:56:00 +0100949 ALOGV("Filtering out volume command on output %d for stream %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700950 data->mIO, data->mStream);
Eric Laurent327c27b2009-08-27 00:48:47 -0700951 removedCommands.add(command2);
952 } break;
953 case START_TONE:
954 case STOP_TONE:
955 default:
956 break;
957 }
958 }
959
960 // remove filtered commands
961 for (size_t j = 0; j < removedCommands.size(); j++) {
962 // removed commands always have time stamps greater than current command
963 for (size_t k = i + 1; k < mAudioCommands.size(); k++) {
964 if (mAudioCommands[k] == removedCommands[j]) {
Steve Block71f2cf12011-10-20 11:56:00 +0100965 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand);
Eric Laurent327c27b2009-08-27 00:48:47 -0700966 mAudioCommands.removeAt(k);
967 break;
968 }
969 }
970 }
971 removedCommands.clear();
972
973 // insert command at the right place according to its time stamp
Steve Block71f2cf12011-10-20 11:56:00 +0100974 ALOGV("inserting command: %d at index %d, num commands %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700975 command->mCommand, (int)i+1, mAudioCommands.size());
Eric Laurent327c27b2009-08-27 00:48:47 -0700976 mAudioCommands.insertAt(command, i + 1);
977}
978
Eric Laurenta553c252009-07-17 12:17:14 -0700979void AudioPolicyService::AudioCommandThread::exit()
980{
Steve Block71f2cf12011-10-20 11:56:00 +0100981 ALOGV("AudioCommandThread::exit");
Eric Laurenta553c252009-07-17 12:17:14 -0700982 {
983 AutoMutex _l(mLock);
984 requestExit();
985 mWaitWorkCV.signal();
986 }
987 requestExitAndWait();
988}
989
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800990void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)
991{
Eric Laurent3fdb1262009-11-07 00:01:32 -0800992 snprintf(buffer, size, " %02d %06d.%03d %01u %p\n",
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800993 mCommand,
994 (int)ns2s(mTime),
995 (int)ns2ms(mTime)%1000,
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800996 mWaitStatus,
997 mParam);
998}
999
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001000/******* helpers for the service_ops callbacks defined below *********/
1001void AudioPolicyService::setParameters(audio_io_handle_t ioHandle,
1002 const char *keyValuePairs,
1003 int delayMs)
1004{
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001005 mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001006 delayMs);
1007}
1008
1009int AudioPolicyService::setStreamVolume(audio_stream_type_t stream,
1010 float volume,
1011 audio_io_handle_t output,
1012 int delayMs)
1013{
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001014 return (int)mAudioCommandThread->volumeCommand(stream, volume,
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001015 output, delayMs);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001016}
1017
1018int AudioPolicyService::startTone(audio_policy_tone_t tone,
1019 audio_stream_type_t stream)
1020{
1021 if (tone != AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION)
Steve Block3762c312012-01-06 19:20:56 +00001022 ALOGE("startTone: illegal tone requested (%d)", tone);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001023 if (stream != AUDIO_STREAM_VOICE_CALL)
Steve Block3762c312012-01-06 19:20:56 +00001024 ALOGE("startTone: illegal stream (%d) requested for tone %d", stream,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001025 tone);
1026 mTonePlaybackThread->startToneCommand(ToneGenerator::TONE_SUP_CALL_WAITING,
1027 AUDIO_STREAM_VOICE_CALL);
1028 return 0;
1029}
1030
1031int AudioPolicyService::stopTone()
1032{
1033 mTonePlaybackThread->stopToneCommand();
1034 return 0;
1035}
1036
1037int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1038{
1039 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);
1040}
1041
Eric Laurent464d5b32011-06-17 21:29:58 -07001042// ----------------------------------------------------------------------------
1043// Audio pre-processing configuration
1044// ----------------------------------------------------------------------------
1045
Glenn Kasten05d33102012-01-09 08:41:22 -08001046/*static*/ const char * const AudioPolicyService::kInputSourceNames[AUDIO_SOURCE_CNT -1] = {
Eric Laurent464d5b32011-06-17 21:29:58 -07001047 MIC_SRC_TAG,
1048 VOICE_UL_SRC_TAG,
1049 VOICE_DL_SRC_TAG,
1050 VOICE_CALL_SRC_TAG,
1051 CAMCORDER_SRC_TAG,
1052 VOICE_REC_SRC_TAG,
1053 VOICE_COMM_SRC_TAG
1054};
1055
1056// returns the audio_source_t enum corresponding to the input source name or
1057// AUDIO_SOURCE_CNT is no match found
1058audio_source_t AudioPolicyService::inputSourceNameToEnum(const char *name)
1059{
1060 int i;
1061 for (i = AUDIO_SOURCE_MIC; i < AUDIO_SOURCE_CNT; i++) {
1062 if (strcmp(name, kInputSourceNames[i - AUDIO_SOURCE_MIC]) == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001063 ALOGV("inputSourceNameToEnum found source %s %d", name, i);
Eric Laurent464d5b32011-06-17 21:29:58 -07001064 break;
1065 }
1066 }
1067 return (audio_source_t)i;
1068}
1069
1070size_t AudioPolicyService::growParamSize(char *param,
1071 size_t size,
1072 size_t *curSize,
1073 size_t *totSize)
1074{
1075 // *curSize is at least sizeof(effect_param_t) + 2 * sizeof(int)
1076 size_t pos = ((*curSize - 1 ) / size + 1) * size;
1077
1078 if (pos + size > *totSize) {
1079 while (pos + size > *totSize) {
1080 *totSize += ((*totSize + 7) / 8) * 4;
1081 }
1082 param = (char *)realloc(param, *totSize);
1083 }
1084 *curSize = pos + size;
1085 return pos;
1086}
1087
1088size_t AudioPolicyService::readParamValue(cnode *node,
1089 char *param,
1090 size_t *curSize,
1091 size_t *totSize)
1092{
1093 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) {
1094 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1095 *(short *)((char *)param + pos) = (short)atoi(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001096 ALOGV("readParamValue() reading short %d", *(short *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001097 return sizeof(short);
1098 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) {
1099 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1100 *(int *)((char *)param + pos) = atoi(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001101 ALOGV("readParamValue() reading int %d", *(int *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001102 return sizeof(int);
1103 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) {
1104 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1105 *(float *)((char *)param + pos) = (float)atof(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001106 ALOGV("readParamValue() reading float %f",*(float *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001107 return sizeof(float);
1108 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) {
1109 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1110 if (strncmp(node->value, "false", strlen("false") + 1) == 0) {
1111 *(bool *)((char *)param + pos) = false;
1112 } else {
1113 *(bool *)((char *)param + pos) = true;
1114 }
Steve Block71f2cf12011-10-20 11:56:00 +01001115 ALOGV("readParamValue() reading bool %s",*(bool *)((char *)param + pos) ? "true" : "false");
Eric Laurent464d5b32011-06-17 21:29:58 -07001116 return sizeof(bool);
1117 } else if (strncmp(node->name, STRING_TAG, sizeof(STRING_TAG) + 1) == 0) {
1118 size_t len = strnlen(node->value, EFFECT_STRING_LEN_MAX);
1119 if (*curSize + len + 1 > *totSize) {
1120 *totSize = *curSize + len + 1;
1121 param = (char *)realloc(param, *totSize);
1122 }
1123 strncpy(param + *curSize, node->value, len);
1124 *curSize += len;
1125 param[*curSize] = '\0';
Steve Block71f2cf12011-10-20 11:56:00 +01001126 ALOGV("readParamValue() reading string %s", param + *curSize - len);
Eric Laurent464d5b32011-06-17 21:29:58 -07001127 return len;
1128 }
Steve Block8564c8d2012-01-05 23:22:43 +00001129 ALOGW("readParamValue() unknown param type %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001130 return 0;
1131}
1132
1133effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root)
1134{
1135 cnode *param;
1136 cnode *value;
1137 size_t curSize = sizeof(effect_param_t);
1138 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1139 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1140
1141 param = config_find(root, PARAM_TAG);
1142 value = config_find(root, VALUE_TAG);
1143 if (param == NULL && value == NULL) {
1144 // try to parse simple parameter form {int int}
1145 param = root->first_child;
Glenn Kasten3694ec12012-01-27 16:47:15 -08001146 if (param != NULL) {
Eric Laurent464d5b32011-06-17 21:29:58 -07001147 // Note: that a pair of random strings is read as 0 0
1148 int *ptr = (int *)fx_param->data;
1149 int *ptr2 = (int *)((char *)param + sizeof(effect_param_t));
Steve Block8564c8d2012-01-05 23:22:43 +00001150 ALOGW("loadEffectParameter() ptr %p ptr2 %p", ptr, ptr2);
Eric Laurent464d5b32011-06-17 21:29:58 -07001151 *ptr++ = atoi(param->name);
1152 *ptr = atoi(param->value);
1153 fx_param->psize = sizeof(int);
1154 fx_param->vsize = sizeof(int);
1155 return fx_param;
1156 }
1157 }
1158 if (param == NULL || value == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001159 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001160 goto error;
1161 }
1162
1163 fx_param->psize = 0;
1164 param = param->first_child;
1165 while (param) {
Steve Block71f2cf12011-10-20 11:56:00 +01001166 ALOGV("loadEffectParameter() reading param of type %s", param->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001167 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1168 if (size == 0) {
1169 goto error;
1170 }
1171 fx_param->psize += size;
1172 param = param->next;
1173 }
1174
1175 // align start of value field on 32 bit boundary
1176 curSize = ((curSize - 1 ) / sizeof(int) + 1) * sizeof(int);
1177
1178 fx_param->vsize = 0;
1179 value = value->first_child;
1180 while (value) {
Steve Block71f2cf12011-10-20 11:56:00 +01001181 ALOGV("loadEffectParameter() reading value of type %s", value->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001182 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);
1183 if (size == 0) {
1184 goto error;
1185 }
1186 fx_param->vsize += size;
1187 value = value->next;
1188 }
1189
1190 return fx_param;
1191
1192error:
1193 delete fx_param;
1194 return NULL;
1195}
1196
1197void AudioPolicyService::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params)
1198{
1199 cnode *node = root->first_child;
1200 while (node) {
Steve Block71f2cf12011-10-20 11:56:00 +01001201 ALOGV("loadEffectParameters() loading param %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001202 effect_param_t *param = loadEffectParameter(node);
1203 if (param == NULL) {
1204 node = node->next;
1205 continue;
1206 }
1207 params.add(param);
1208 node = node->next;
1209 }
1210}
1211
1212AudioPolicyService::InputSourceDesc *AudioPolicyService::loadInputSource(
1213 cnode *root,
1214 const Vector <EffectDesc *>& effects)
1215{
1216 cnode *node = root->first_child;
1217 if (node == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001218 ALOGW("loadInputSource() empty element %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001219 return NULL;
1220 }
1221 InputSourceDesc *source = new InputSourceDesc();
1222 while (node) {
1223 size_t i;
1224 for (i = 0; i < effects.size(); i++) {
1225 if (strncmp(effects[i]->mName, node->name, EFFECT_STRING_LEN_MAX) == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001226 ALOGV("loadInputSource() found effect %s in list", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001227 break;
1228 }
1229 }
1230 if (i == effects.size()) {
Steve Block71f2cf12011-10-20 11:56:00 +01001231 ALOGV("loadInputSource() effect %s not in list", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001232 node = node->next;
1233 continue;
1234 }
Glenn Kastenafe98332012-02-02 14:04:37 -08001235 EffectDesc *effect = new EffectDesc(*effects[i]); // deep copy
Eric Laurent464d5b32011-06-17 21:29:58 -07001236 loadEffectParameters(node, effect->mParams);
Steve Block71f2cf12011-10-20 11:56:00 +01001237 ALOGV("loadInputSource() adding effect %s uuid %08x", effect->mName, effect->mUuid.timeLow);
Eric Laurent464d5b32011-06-17 21:29:58 -07001238 source->mEffects.add(effect);
1239 node = node->next;
1240 }
1241 if (source->mEffects.size() == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001242 ALOGW("loadInputSource() no valid effects found in source %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001243 delete source;
1244 return NULL;
1245 }
1246 return source;
1247}
1248
1249status_t AudioPolicyService::loadInputSources(cnode *root, const Vector <EffectDesc *>& effects)
1250{
1251 cnode *node = config_find(root, PREPROCESSING_TAG);
1252 if (node == NULL) {
1253 return -ENOENT;
1254 }
1255 node = node->first_child;
1256 while (node) {
1257 audio_source_t source = inputSourceNameToEnum(node->name);
1258 if (source == AUDIO_SOURCE_CNT) {
Steve Block8564c8d2012-01-05 23:22:43 +00001259 ALOGW("loadInputSources() invalid input source %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001260 node = node->next;
1261 continue;
1262 }
Steve Block71f2cf12011-10-20 11:56:00 +01001263 ALOGV("loadInputSources() loading input source %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001264 InputSourceDesc *desc = loadInputSource(node, effects);
1265 if (desc == NULL) {
1266 node = node->next;
1267 continue;
1268 }
1269 mInputSources.add(source, desc);
1270 node = node->next;
1271 }
1272 return NO_ERROR;
1273}
1274
1275AudioPolicyService::EffectDesc *AudioPolicyService::loadEffect(cnode *root)
1276{
1277 cnode *node = config_find(root, UUID_TAG);
1278 if (node == NULL) {
1279 return NULL;
1280 }
1281 effect_uuid_t uuid;
1282 if (AudioEffect::stringToGuid(node->value, &uuid) != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +00001283 ALOGW("loadEffect() invalid uuid %s", node->value);
Eric Laurent464d5b32011-06-17 21:29:58 -07001284 return NULL;
1285 }
Glenn Kastenafe98332012-02-02 14:04:37 -08001286 return new EffectDesc(root->name, uuid);
Eric Laurent464d5b32011-06-17 21:29:58 -07001287}
1288
1289status_t AudioPolicyService::loadEffects(cnode *root, Vector <EffectDesc *>& effects)
1290{
1291 cnode *node = config_find(root, EFFECTS_TAG);
1292 if (node == NULL) {
1293 return -ENOENT;
1294 }
1295 node = node->first_child;
1296 while (node) {
Steve Block71f2cf12011-10-20 11:56:00 +01001297 ALOGV("loadEffects() loading effect %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001298 EffectDesc *effect = loadEffect(node);
1299 if (effect == NULL) {
1300 node = node->next;
1301 continue;
1302 }
1303 effects.add(effect);
1304 node = node->next;
1305 }
1306 return NO_ERROR;
1307}
1308
1309status_t AudioPolicyService::loadPreProcessorConfig(const char *path)
1310{
1311 cnode *root;
1312 char *data;
1313
1314 data = (char *)load_file(path, NULL);
1315 if (data == NULL) {
1316 return -ENODEV;
1317 }
1318 root = config_node("", "");
1319 config_load(root, data);
1320
1321 Vector <EffectDesc *> effects;
1322 loadEffects(root, effects);
1323 loadInputSources(root, effects);
1324
1325 config_free(root);
1326 free(root);
1327 free(data);
1328
1329 return NO_ERROR;
1330}
1331
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001332/* implementation of the interface to the policy manager */
1333extern "C" {
1334
1335static audio_io_handle_t aps_open_output(void *service,
1336 uint32_t *pDevices,
1337 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001338 audio_format_t *pFormat,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001339 uint32_t *pChannels,
1340 uint32_t *pLatencyMs,
1341 audio_policy_output_flags_t flags)
1342{
1343 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001344 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001345 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001346 return 0;
1347 }
1348
1349 return af->openOutput(pDevices, pSamplingRate, pFormat, pChannels,
1350 pLatencyMs, flags);
1351}
1352
1353static audio_io_handle_t aps_open_dup_output(void *service,
1354 audio_io_handle_t output1,
1355 audio_io_handle_t output2)
1356{
1357 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001358 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001359 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001360 return 0;
1361 }
1362 return af->openDuplicateOutput(output1, output2);
1363}
1364
1365static int aps_close_output(void *service, audio_io_handle_t output)
1366{
1367 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001368 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001369 return PERMISSION_DENIED;
1370
1371 return af->closeOutput(output);
1372}
1373
1374static int aps_suspend_output(void *service, audio_io_handle_t output)
1375{
1376 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001377 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001378 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001379 return PERMISSION_DENIED;
1380 }
1381
1382 return af->suspendOutput(output);
1383}
1384
1385static int aps_restore_output(void *service, audio_io_handle_t output)
1386{
1387 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001388 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001389 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001390 return PERMISSION_DENIED;
1391 }
1392
1393 return af->restoreOutput(output);
1394}
1395
1396static audio_io_handle_t aps_open_input(void *service,
1397 uint32_t *pDevices,
1398 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001399 audio_format_t *pFormat,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001400 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -08001401 audio_in_acoustics_t acoustics)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001402{
1403 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001404 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001405 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001406 return 0;
1407 }
1408
1409 return af->openInput(pDevices, pSamplingRate, pFormat, pChannels,
1410 acoustics);
1411}
1412
1413static int aps_close_input(void *service, audio_io_handle_t input)
1414{
1415 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001416 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001417 return PERMISSION_DENIED;
1418
1419 return af->closeInput(input);
1420}
1421
1422static int aps_set_stream_output(void *service, audio_stream_type_t stream,
1423 audio_io_handle_t output)
1424{
1425 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001426 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001427 return PERMISSION_DENIED;
1428
1429 return af->setStreamOutput(stream, output);
1430}
1431
1432static int aps_move_effects(void *service, int session,
1433 audio_io_handle_t src_output,
1434 audio_io_handle_t dst_output)
1435{
1436 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001437 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001438 return PERMISSION_DENIED;
1439
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001440 return af->moveEffects(session, src_output, dst_output);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001441}
1442
1443static char * aps_get_parameters(void *service, audio_io_handle_t io_handle,
1444 const char *keys)
1445{
1446 String8 result = AudioSystem::getParameters(io_handle, String8(keys));
1447 return strdup(result.string());
1448}
1449
1450static void aps_set_parameters(void *service, audio_io_handle_t io_handle,
1451 const char *kv_pairs, int delay_ms)
1452{
1453 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1454
1455 audioPolicyService->setParameters(io_handle, kv_pairs, delay_ms);
1456}
1457
1458static int aps_set_stream_volume(void *service, audio_stream_type_t stream,
1459 float volume, audio_io_handle_t output,
1460 int delay_ms)
1461{
1462 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1463
1464 return audioPolicyService->setStreamVolume(stream, volume, output,
1465 delay_ms);
1466}
1467
1468static int aps_start_tone(void *service, audio_policy_tone_t tone,
1469 audio_stream_type_t stream)
1470{
1471 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1472
1473 return audioPolicyService->startTone(tone, stream);
1474}
1475
1476static int aps_stop_tone(void *service)
1477{
1478 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1479
1480 return audioPolicyService->stopTone();
1481}
1482
1483static int aps_set_voice_volume(void *service, float volume, int delay_ms)
1484{
1485 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1486
1487 return audioPolicyService->setVoiceVolume(volume, delay_ms);
1488}
1489
1490}; // extern "C"
1491
1492namespace {
1493 struct audio_policy_service_ops aps_ops = {
1494 open_output : aps_open_output,
1495 open_duplicate_output : aps_open_dup_output,
1496 close_output : aps_close_output,
1497 suspend_output : aps_suspend_output,
1498 restore_output : aps_restore_output,
1499 open_input : aps_open_input,
1500 close_input : aps_close_input,
1501 set_stream_volume : aps_set_stream_volume,
1502 set_stream_output : aps_set_stream_output,
1503 set_parameters : aps_set_parameters,
1504 get_parameters : aps_get_parameters,
1505 start_tone : aps_start_tone,
1506 stop_tone : aps_stop_tone,
1507 set_voice_volume : aps_set_voice_volume,
1508 move_effects : aps_move_effects,
1509 };
1510}; // namespace <unnamed>
1511
Eric Laurenta553c252009-07-17 12:17:14 -07001512}; // namespace android