blob: c23eb04b3eb7715fe8acc5cd3a9e550486f49bfd [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) {
Glenn Kastenfcf2ac02012-03-07 16:49:22 -0800301 inputDesc = new InputDesc(audioSession);
Eric Laurent464d5b32011-06-17 21:29:58 -0700302 mInputs.add(input, inputDesc);
303 } else {
304 inputDesc = mInputs.valueAt(idx);
305 }
306
307 Vector <EffectDesc *> effects = mInputSources.valueAt(index)->mEffects;
308 for (size_t i = 0; i < effects.size(); i++) {
309 EffectDesc *effect = effects[i];
310 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
311 status_t status = fx->initCheck();
312 if (status != NO_ERROR && status != ALREADY_EXISTS) {
Steve Block8564c8d2012-01-05 23:22:43 +0000313 ALOGW("Failed to create Fx %s on input %d", effect->mName, input);
Eric Laurent464d5b32011-06-17 21:29:58 -0700314 // fx goes out of scope and strong ref on AudioEffect is released
315 continue;
316 }
317 for (size_t j = 0; j < effect->mParams.size(); j++) {
318 fx->setParameter(effect->mParams[j]);
319 }
320 inputDesc->mEffects.add(fx);
321 }
322 setPreProcessorEnabled(inputDesc, true);
323 return input;
Eric Laurenta553c252009-07-17 12:17:14 -0700324}
325
326status_t AudioPolicyService::startInput(audio_io_handle_t input)
327{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700328 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700329 return NO_INIT;
330 }
331 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -0700332
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700333 return mpAudioPolicy->start_input(mpAudioPolicy, input);
Eric Laurenta553c252009-07-17 12:17:14 -0700334}
335
336status_t AudioPolicyService::stopInput(audio_io_handle_t input)
337{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700338 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700339 return NO_INIT;
340 }
341 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -0700342
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700343 return mpAudioPolicy->stop_input(mpAudioPolicy, input);
Eric Laurenta553c252009-07-17 12:17:14 -0700344}
345
346void AudioPolicyService::releaseInput(audio_io_handle_t input)
347{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700348 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700349 return;
350 }
351 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700352 mpAudioPolicy->release_input(mpAudioPolicy, input);
Eric Laurent464d5b32011-06-17 21:29:58 -0700353
354 ssize_t index = mInputs.indexOfKey(input);
355 if (index < 0) {
356 return;
357 }
358 InputDesc *inputDesc = mInputs.valueAt(index);
359 setPreProcessorEnabled(inputDesc, false);
Eric Laurent464d5b32011-06-17 21:29:58 -0700360 delete inputDesc;
361 mInputs.removeItemsAt(index);
Eric Laurenta553c252009-07-17 12:17:14 -0700362}
363
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700364status_t AudioPolicyService::initStreamVolume(audio_stream_type_t stream,
Eric Laurenta553c252009-07-17 12:17:14 -0700365 int indexMin,
366 int indexMax)
367{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700368 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700369 return NO_INIT;
370 }
Glenn Kasten81211142012-02-05 18:09:08 -0800371 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700372 return PERMISSION_DENIED;
373 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800374 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700375 return BAD_VALUE;
376 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700377 mpAudioPolicy->init_stream_volume(mpAudioPolicy, stream, indexMin, indexMax);
Eric Laurenta553c252009-07-17 12:17:14 -0700378 return NO_ERROR;
379}
380
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800381status_t AudioPolicyService::setStreamVolumeIndex(audio_stream_type_t stream,
382 int index,
383 audio_devices_t device)
Eric Laurenta553c252009-07-17 12:17:14 -0700384{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700385 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700386 return NO_INIT;
387 }
Glenn Kasten81211142012-02-05 18:09:08 -0800388 if (!settingsAllowed()) {
Eric Laurenta553c252009-07-17 12:17:14 -0700389 return PERMISSION_DENIED;
390 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800391 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700392 return BAD_VALUE;
393 }
394
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800395 if (mpAudioPolicy->set_stream_volume_index_for_device) {
396 return mpAudioPolicy->set_stream_volume_index_for_device(mpAudioPolicy,
397 stream,
398 index,
399 device);
400 } else {
401 return mpAudioPolicy->set_stream_volume_index(mpAudioPolicy, stream, index);
402 }
Eric Laurenta553c252009-07-17 12:17:14 -0700403}
404
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800405status_t AudioPolicyService::getStreamVolumeIndex(audio_stream_type_t stream,
406 int *index,
407 audio_devices_t device)
Eric Laurenta553c252009-07-17 12:17:14 -0700408{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700409 if (mpAudioPolicy == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -0700410 return NO_INIT;
411 }
Glenn Kasten6e987a42012-01-06 08:40:01 -0800412 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Eric Laurenta553c252009-07-17 12:17:14 -0700413 return BAD_VALUE;
414 }
Eric Laurent9bc8358d2011-11-18 16:43:31 -0800415 if (mpAudioPolicy->get_stream_volume_index_for_device) {
416 return mpAudioPolicy->get_stream_volume_index_for_device(mpAudioPolicy,
417 stream,
418 index,
419 device);
420 } else {
421 return mpAudioPolicy->get_stream_volume_index(mpAudioPolicy, stream, index);
422 }
Eric Laurenta553c252009-07-17 12:17:14 -0700423}
424
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700425uint32_t AudioPolicyService::getStrategyForStream(audio_stream_type_t stream)
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700426{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700427 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700428 return 0;
429 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700430 return mpAudioPolicy->get_strategy_for_stream(mpAudioPolicy, stream);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700431}
432
Eric Laurentc9ab9f52012-03-08 13:42:42 -0800433//audio policy: use audio_device_t appropriately
434
435audio_devices_t AudioPolicyService::getDevicesForStream(audio_stream_type_t stream)
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800436{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700437 if (mpAudioPolicy == NULL) {
Eric Laurentc9ab9f52012-03-08 13:42:42 -0800438 return (audio_devices_t)0;
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800439 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700440 return mpAudioPolicy->get_devices_for_stream(mpAudioPolicy, stream);
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800441}
442
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700443audio_io_handle_t AudioPolicyService::getOutputForEffect(effect_descriptor_t *desc)
444{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700445 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700446 return NO_INIT;
447 }
448 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700449 return mpAudioPolicy->get_output_for_effect(mpAudioPolicy, desc);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700450}
451
452status_t AudioPolicyService::registerEffect(effect_descriptor_t *desc,
Eric Laurent464d5b32011-06-17 21:29:58 -0700453 audio_io_handle_t io,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700454 uint32_t strategy,
455 int session,
456 int id)
457{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700458 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700459 return NO_INIT;
460 }
Eric Laurent464d5b32011-06-17 21:29:58 -0700461 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700462}
463
464status_t AudioPolicyService::unregisterEffect(int id)
465{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700466 if (mpAudioPolicy == NULL) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700467 return NO_INIT;
468 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700469 return mpAudioPolicy->unregister_effect(mpAudioPolicy, id);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700470}
471
Eric Laurent6752ec82011-08-10 10:37:50 -0700472status_t AudioPolicyService::setEffectEnabled(int id, bool enabled)
473{
474 if (mpAudioPolicy == NULL) {
475 return NO_INIT;
476 }
477 return mpAudioPolicy->set_effect_enabled(mpAudioPolicy, id, enabled);
478}
479
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800480bool AudioPolicyService::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
Eric Laurent25101b02011-02-02 09:33:30 -0800481{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700482 if (mpAudioPolicy == NULL) {
Eric Laurent25101b02011-02-02 09:33:30 -0800483 return 0;
484 }
485 Mutex::Autolock _l(mLock);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700486 return mpAudioPolicy->is_stream_active(mpAudioPolicy, stream, inPastMs);
Eric Laurent25101b02011-02-02 09:33:30 -0800487}
488
Eric Laurent0f7f4ec2011-07-24 13:36:09 -0700489status_t AudioPolicyService::queryDefaultPreProcessing(int audioSession,
490 effect_descriptor_t *descriptors,
491 uint32_t *count)
492{
493
494 if (mpAudioPolicy == NULL) {
495 *count = 0;
496 return NO_INIT;
497 }
498 Mutex::Autolock _l(mLock);
499 status_t status = NO_ERROR;
500
501 size_t index;
502 for (index = 0; index < mInputs.size(); index++) {
503 if (mInputs.valueAt(index)->mSessionId == audioSession) {
504 break;
505 }
506 }
507 if (index == mInputs.size()) {
508 *count = 0;
509 return BAD_VALUE;
510 }
511 Vector< sp<AudioEffect> > effects = mInputs.valueAt(index)->mEffects;
512
513 for (size_t i = 0; i < effects.size(); i++) {
514 effect_descriptor_t desc = effects[i]->descriptor();
515 if (i < *count) {
516 memcpy(descriptors + i, &desc, sizeof(effect_descriptor_t));
517 }
518 }
519 if (effects.size() > *count) {
520 status = NO_MEMORY;
521 }
522 *count = effects.size();
523 return status;
524}
525
Eric Laurenta553c252009-07-17 12:17:14 -0700526void AudioPolicyService::binderDied(const wp<IBinder>& who) {
Glenn Kasten7ed4f0c2012-02-03 11:10:00 -0800527 ALOGW("binderDied() %p, tid %d, calling pid %d", who.unsafe_get(), gettid(),
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700528 IPCThreadState::self()->getCallingPid());
Eric Laurenta553c252009-07-17 12:17:14 -0700529}
530
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800531static bool tryLock(Mutex& mutex)
532{
533 bool locked = false;
534 for (int i = 0; i < kDumpLockRetries; ++i) {
535 if (mutex.tryLock() == NO_ERROR) {
536 locked = true;
537 break;
538 }
Glenn Kasten22c42412012-01-09 08:33:38 -0800539 usleep(kDumpLockSleepUs);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800540 }
541 return locked;
542}
543
544status_t AudioPolicyService::dumpInternals(int fd)
545{
546 const size_t SIZE = 256;
547 char buffer[SIZE];
548 String8 result;
549
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700550 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpAudioPolicy);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800551 result.append(buffer);
552 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
553 result.append(buffer);
554 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
555 result.append(buffer);
556
557 write(fd, result.string(), result.size());
558 return NO_ERROR;
559}
560
Eric Laurenta553c252009-07-17 12:17:14 -0700561status_t AudioPolicyService::dump(int fd, const Vector<String16>& args)
562{
Glenn Kasten81211142012-02-05 18:09:08 -0800563 if (!dumpAllowed()) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800564 dumpPermissionDenial(fd);
Eric Laurenta553c252009-07-17 12:17:14 -0700565 } else {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800566 bool locked = tryLock(mLock);
567 if (!locked) {
568 String8 result(kDeadlockedString);
569 write(fd, result.string(), result.size());
570 }
Eric Laurenta553c252009-07-17 12:17:14 -0700571
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800572 dumpInternals(fd);
Glenn Kasten1137be12012-02-08 17:47:58 -0800573 if (mAudioCommandThread != 0) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800574 mAudioCommandThread->dump(fd);
575 }
Glenn Kasten1137be12012-02-08 17:47:58 -0800576 if (mTonePlaybackThread != 0) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800577 mTonePlaybackThread->dump(fd);
578 }
579
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700580 if (mpAudioPolicy) {
581 mpAudioPolicy->dump(mpAudioPolicy, fd);
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800582 }
583
584 if (locked) mLock.unlock();
Eric Laurenta553c252009-07-17 12:17:14 -0700585 }
586 return NO_ERROR;
587}
588
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800589status_t AudioPolicyService::dumpPermissionDenial(int fd)
Eric Laurenta553c252009-07-17 12:17:14 -0700590{
591 const size_t SIZE = 256;
592 char buffer[SIZE];
593 String8 result;
594 snprintf(buffer, SIZE, "Permission Denial: "
595 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
596 IPCThreadState::self()->getCallingPid(),
597 IPCThreadState::self()->getCallingUid());
598 result.append(buffer);
599 write(fd, result.string(), result.size());
600 return NO_ERROR;
601}
602
Glenn Kastenfcf2ac02012-03-07 16:49:22 -0800603void AudioPolicyService::setPreProcessorEnabled(const InputDesc *inputDesc, bool enabled)
Eric Laurent464d5b32011-06-17 21:29:58 -0700604{
Glenn Kastenfcf2ac02012-03-07 16:49:22 -0800605 const Vector<sp<AudioEffect> > &fxVector = inputDesc->mEffects;
Eric Laurent464d5b32011-06-17 21:29:58 -0700606 for (size_t i = 0; i < fxVector.size(); i++) {
Glenn Kasten7d3be3a2012-01-26 10:53:32 -0800607 fxVector.itemAt(i)->setEnabled(enabled);
Eric Laurent464d5b32011-06-17 21:29:58 -0700608 }
609}
610
Eric Laurenta553c252009-07-17 12:17:14 -0700611status_t AudioPolicyService::onTransact(
612 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
613{
614 return BnAudioPolicyService::onTransact(code, data, reply, flags);
615}
616
617
Eric Laurenta553c252009-07-17 12:17:14 -0700618// ----------- AudioPolicyService::AudioCommandThread implementation ----------
619
Eric Laurentcef3cd72009-12-10 01:03:50 -0800620AudioPolicyService::AudioCommandThread::AudioCommandThread(String8 name)
621 : Thread(false), mName(name)
Eric Laurenta553c252009-07-17 12:17:14 -0700622{
623 mpToneGenerator = NULL;
624}
625
626
627AudioPolicyService::AudioCommandThread::~AudioCommandThread()
628{
Eric Laurentcef3cd72009-12-10 01:03:50 -0800629 if (mName != "" && !mAudioCommands.isEmpty()) {
630 release_wake_lock(mName.string());
631 }
Eric Laurenta553c252009-07-17 12:17:14 -0700632 mAudioCommands.clear();
Glenn Kasten2589cf92012-01-27 18:08:45 -0800633 delete mpToneGenerator;
Eric Laurenta553c252009-07-17 12:17:14 -0700634}
635
636void AudioPolicyService::AudioCommandThread::onFirstRef()
637{
Eric Laurentcef3cd72009-12-10 01:03:50 -0800638 if (mName != "") {
639 run(mName.string(), ANDROID_PRIORITY_AUDIO);
640 } else {
Glenn Kasten86e33622012-02-28 12:30:08 -0800641 run("AudioCommand", ANDROID_PRIORITY_AUDIO);
Eric Laurentcef3cd72009-12-10 01:03:50 -0800642 }
Eric Laurenta553c252009-07-17 12:17:14 -0700643}
644
645bool AudioPolicyService::AudioCommandThread::threadLoop()
646{
Eric Laurent327c27b2009-08-27 00:48:47 -0700647 nsecs_t waitTime = INT64_MAX;
648
Eric Laurenta553c252009-07-17 12:17:14 -0700649 mLock.lock();
650 while (!exitPending())
651 {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700652 while (!mAudioCommands.isEmpty()) {
Eric Laurent327c27b2009-08-27 00:48:47 -0700653 nsecs_t curTime = systemTime();
654 // commands are sorted by increasing time stamp: execute them from index 0 and up
655 if (mAudioCommands[0]->mTime <= curTime) {
656 AudioCommand *command = mAudioCommands[0];
657 mAudioCommands.removeAt(0);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800658 mLastCommand = *command;
659
Eric Laurent327c27b2009-08-27 00:48:47 -0700660 switch (command->mCommand) {
661 case START_TONE: {
662 mLock.unlock();
663 ToneData *data = (ToneData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100664 ALOGV("AudioCommandThread() processing start tone %d on stream %d",
Eric Laurent327c27b2009-08-27 00:48:47 -0700665 data->mType, data->mStream);
Glenn Kasten2589cf92012-01-27 18:08:45 -0800666 delete mpToneGenerator;
Eric Laurent327c27b2009-08-27 00:48:47 -0700667 mpToneGenerator = new ToneGenerator(data->mStream, 1.0);
668 mpToneGenerator->startTone(data->mType);
669 delete data;
670 mLock.lock();
671 }break;
672 case STOP_TONE: {
673 mLock.unlock();
Steve Block71f2cf12011-10-20 11:56:00 +0100674 ALOGV("AudioCommandThread() processing stop tone");
Eric Laurent327c27b2009-08-27 00:48:47 -0700675 if (mpToneGenerator != NULL) {
676 mpToneGenerator->stopTone();
677 delete mpToneGenerator;
678 mpToneGenerator = NULL;
679 }
680 mLock.lock();
681 }break;
682 case SET_VOLUME: {
683 VolumeData *data = (VolumeData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100684 ALOGV("AudioCommandThread() processing set volume stream %d, \
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700685 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
686 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
687 data->mVolume,
688 data->mIO);
Eric Laurent327c27b2009-08-27 00:48:47 -0700689 if (command->mWaitStatus) {
690 command->mCond.signal();
691 mWaitWorkCV.wait(mLock);
692 }
693 delete data;
694 }break;
695 case SET_PARAMETERS: {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700696 ParametersData *data = (ParametersData *)command->mParam;
697 ALOGV("AudioCommandThread() processing set parameters string %s, io %d",
698 data->mKeyValuePairs.string(), data->mIO);
699 command->mStatus = AudioSystem::setParameters(data->mIO, data->mKeyValuePairs);
700 if (command->mWaitStatus) {
701 command->mCond.signal();
702 mWaitWorkCV.wait(mLock);
703 }
704 delete data;
705 }break;
Eric Laurent415f3e22009-10-21 08:14:22 -0700706 case SET_VOICE_VOLUME: {
707 VoiceVolumeData *data = (VoiceVolumeData *)command->mParam;
Steve Block71f2cf12011-10-20 11:56:00 +0100708 ALOGV("AudioCommandThread() processing set voice volume volume %f",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700709 data->mVolume);
Eric Laurent415f3e22009-10-21 08:14:22 -0700710 command->mStatus = AudioSystem::setVoiceVolume(data->mVolume);
711 if (command->mWaitStatus) {
712 command->mCond.signal();
713 mWaitWorkCV.wait(mLock);
714 }
715 delete data;
716 }break;
Eric Laurent327c27b2009-08-27 00:48:47 -0700717 default:
Steve Block8564c8d2012-01-05 23:22:43 +0000718 ALOGW("AudioCommandThread() unknown command %d", command->mCommand);
Eric Laurenta553c252009-07-17 12:17:14 -0700719 }
Eric Laurent327c27b2009-08-27 00:48:47 -0700720 delete command;
721 waitTime = INT64_MAX;
722 } else {
723 waitTime = mAudioCommands[0]->mTime - curTime;
724 break;
Eric Laurenta553c252009-07-17 12:17:14 -0700725 }
Eric Laurenta553c252009-07-17 12:17:14 -0700726 }
Eric Laurentcef3cd72009-12-10 01:03:50 -0800727 // release delayed commands wake lock
728 if (mName != "" && mAudioCommands.isEmpty()) {
729 release_wake_lock(mName.string());
730 }
Steve Block71f2cf12011-10-20 11:56:00 +0100731 ALOGV("AudioCommandThread() going to sleep");
Eric Laurent327c27b2009-08-27 00:48:47 -0700732 mWaitWorkCV.waitRelative(mLock, waitTime);
Steve Block71f2cf12011-10-20 11:56:00 +0100733 ALOGV("AudioCommandThread() waking up");
Eric Laurenta553c252009-07-17 12:17:14 -0700734 }
735 mLock.unlock();
736 return false;
737}
738
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800739status_t AudioPolicyService::AudioCommandThread::dump(int fd)
740{
741 const size_t SIZE = 256;
742 char buffer[SIZE];
743 String8 result;
744
745 snprintf(buffer, SIZE, "AudioCommandThread %p Dump\n", this);
746 result.append(buffer);
747 write(fd, result.string(), result.size());
748
749 bool locked = tryLock(mLock);
750 if (!locked) {
751 String8 result2(kCmdDeadlockedString);
752 write(fd, result2.string(), result2.size());
753 }
754
755 snprintf(buffer, SIZE, "- Commands:\n");
756 result = String8(buffer);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800757 result.append(" Command Time Wait pParam\n");
Glenn Kasten150d2382012-02-08 14:04:28 -0800758 for (size_t i = 0; i < mAudioCommands.size(); i++) {
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800759 mAudioCommands[i]->dump(buffer, SIZE);
760 result.append(buffer);
761 }
Eric Laurent3fdb1262009-11-07 00:01:32 -0800762 result.append(" Last Command\n");
763 mLastCommand.dump(buffer, SIZE);
764 result.append(buffer);
765
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800766 write(fd, result.string(), result.size());
767
768 if (locked) mLock.unlock();
769
770 return NO_ERROR;
771}
772
Glenn Kasten23f7ad32012-01-27 15:25:25 -0800773void AudioPolicyService::AudioCommandThread::startToneCommand(ToneGenerator::tone_type type,
774 audio_stream_type_t stream)
Eric Laurenta553c252009-07-17 12:17:14 -0700775{
Eric Laurenta553c252009-07-17 12:17:14 -0700776 AudioCommand *command = new AudioCommand();
777 command->mCommand = START_TONE;
778 ToneData *data = new ToneData();
779 data->mType = type;
780 data->mStream = stream;
781 command->mParam = (void *)data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700782 command->mWaitStatus = false;
Eric Laurent415f3e22009-10-21 08:14:22 -0700783 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700784 insertCommand_l(command);
Steve Block71f2cf12011-10-20 11:56:00 +0100785 ALOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
Eric Laurenta553c252009-07-17 12:17:14 -0700786 mWaitWorkCV.signal();
787}
788
789void AudioPolicyService::AudioCommandThread::stopToneCommand()
790{
Eric Laurenta553c252009-07-17 12:17:14 -0700791 AudioCommand *command = new AudioCommand();
792 command->mCommand = STOP_TONE;
793 command->mParam = NULL;
Eric Laurent327c27b2009-08-27 00:48:47 -0700794 command->mWaitStatus = false;
Eric Laurent415f3e22009-10-21 08:14:22 -0700795 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700796 insertCommand_l(command);
Steve Block71f2cf12011-10-20 11:56:00 +0100797 ALOGV("AudioCommandThread() adding tone stop");
Eric Laurenta553c252009-07-17 12:17:14 -0700798 mWaitWorkCV.signal();
799}
800
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800801status_t AudioPolicyService::AudioCommandThread::volumeCommand(audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700802 float volume,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800803 audio_io_handle_t output,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700804 int delayMs)
Eric Laurenta553c252009-07-17 12:17:14 -0700805{
Eric Laurent327c27b2009-08-27 00:48:47 -0700806 status_t status = NO_ERROR;
807
Eric Laurenta553c252009-07-17 12:17:14 -0700808 AudioCommand *command = new AudioCommand();
809 command->mCommand = SET_VOLUME;
810 VolumeData *data = new VolumeData();
811 data->mStream = stream;
812 data->mVolume = volume;
813 data->mIO = output;
814 command->mParam = data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700815 if (delayMs == 0) {
816 command->mWaitStatus = true;
817 } else {
818 command->mWaitStatus = false;
819 }
Eric Laurent415f3e22009-10-21 08:14:22 -0700820 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700821 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100822 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700823 stream, volume, output);
Eric Laurenta553c252009-07-17 12:17:14 -0700824 mWaitWorkCV.signal();
Eric Laurent327c27b2009-08-27 00:48:47 -0700825 if (command->mWaitStatus) {
826 command->mCond.wait(mLock);
827 status = command->mStatus;
828 mWaitWorkCV.signal();
829 }
Eric Laurenta553c252009-07-17 12:17:14 -0700830 return status;
831}
832
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800833status_t AudioPolicyService::AudioCommandThread::parametersCommand(audio_io_handle_t ioHandle,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700834 const char *keyValuePairs,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700835 int delayMs)
Eric Laurenta553c252009-07-17 12:17:14 -0700836{
Eric Laurent327c27b2009-08-27 00:48:47 -0700837 status_t status = NO_ERROR;
838
Eric Laurenta553c252009-07-17 12:17:14 -0700839 AudioCommand *command = new AudioCommand();
840 command->mCommand = SET_PARAMETERS;
841 ParametersData *data = new ParametersData();
842 data->mIO = ioHandle;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700843 data->mKeyValuePairs = String8(keyValuePairs);
Eric Laurenta553c252009-07-17 12:17:14 -0700844 command->mParam = data;
Eric Laurent327c27b2009-08-27 00:48:47 -0700845 if (delayMs == 0) {
846 command->mWaitStatus = true;
847 } else {
848 command->mWaitStatus = false;
849 }
Eric Laurent415f3e22009-10-21 08:14:22 -0700850 Mutex::Autolock _l(mLock);
Eric Laurent327c27b2009-08-27 00:48:47 -0700851 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100852 ALOGV("AudioCommandThread() adding set parameter string %s, io %d ,delay %d",
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700853 keyValuePairs, ioHandle, delayMs);
Eric Laurenta553c252009-07-17 12:17:14 -0700854 mWaitWorkCV.signal();
Eric Laurent327c27b2009-08-27 00:48:47 -0700855 if (command->mWaitStatus) {
856 command->mCond.wait(mLock);
857 status = command->mStatus;
858 mWaitWorkCV.signal();
859 }
Eric Laurenta553c252009-07-17 12:17:14 -0700860 return status;
861}
862
Eric Laurent415f3e22009-10-21 08:14:22 -0700863status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs)
864{
865 status_t status = NO_ERROR;
866
867 AudioCommand *command = new AudioCommand();
868 command->mCommand = SET_VOICE_VOLUME;
869 VoiceVolumeData *data = new VoiceVolumeData();
870 data->mVolume = volume;
871 command->mParam = data;
872 if (delayMs == 0) {
873 command->mWaitStatus = true;
874 } else {
875 command->mWaitStatus = false;
876 }
877 Mutex::Autolock _l(mLock);
878 insertCommand_l(command, delayMs);
Steve Block71f2cf12011-10-20 11:56:00 +0100879 ALOGV("AudioCommandThread() adding set voice volume volume %f", volume);
Eric Laurent415f3e22009-10-21 08:14:22 -0700880 mWaitWorkCV.signal();
881 if (command->mWaitStatus) {
882 command->mCond.wait(mLock);
883 status = command->mStatus;
884 mWaitWorkCV.signal();
885 }
886 return status;
887}
888
Eric Laurent327c27b2009-08-27 00:48:47 -0700889// insertCommand_l() must be called with mLock held
890void AudioPolicyService::AudioCommandThread::insertCommand_l(AudioCommand *command, int delayMs)
891{
Glenn Kasten150d2382012-02-08 14:04:28 -0800892 ssize_t i; // not size_t because i will count down to -1
Eric Laurent327c27b2009-08-27 00:48:47 -0700893 Vector <AudioCommand *> removedCommands;
894
895 command->mTime = systemTime() + milliseconds(delayMs);
896
Eric Laurentcef3cd72009-12-10 01:03:50 -0800897 // acquire wake lock to make sure delayed commands are processed
898 if (mName != "" && mAudioCommands.isEmpty()) {
899 acquire_wake_lock(PARTIAL_WAKE_LOCK, mName.string());
900 }
901
Eric Laurent327c27b2009-08-27 00:48:47 -0700902 // check same pending commands with later time stamps and eliminate them
903 for (i = mAudioCommands.size()-1; i >= 0; i--) {
904 AudioCommand *command2 = mAudioCommands[i];
905 // commands are sorted by increasing time stamp: no need to scan the rest of mAudioCommands
906 if (command2->mTime <= command->mTime) break;
907 if (command2->mCommand != command->mCommand) continue;
908
909 switch (command->mCommand) {
910 case SET_PARAMETERS: {
911 ParametersData *data = (ParametersData *)command->mParam;
912 ParametersData *data2 = (ParametersData *)command2->mParam;
913 if (data->mIO != data2->mIO) break;
Steve Block71f2cf12011-10-20 11:56:00 +0100914 ALOGV("Comparing parameter command %s to new command %s",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700915 data2->mKeyValuePairs.string(), data->mKeyValuePairs.string());
Eric Laurent327c27b2009-08-27 00:48:47 -0700916 AudioParameter param = AudioParameter(data->mKeyValuePairs);
917 AudioParameter param2 = AudioParameter(data2->mKeyValuePairs);
918 for (size_t j = 0; j < param.size(); j++) {
Glenn Kasten18db49a2012-03-12 16:29:55 -0700919 String8 key;
920 String8 value;
921 param.getAt(j, key, value);
922 for (size_t k = 0; k < param2.size(); k++) {
923 String8 key2;
924 String8 value2;
925 param2.getAt(k, key2, value2);
926 if (key2 == key) {
927 param2.remove(key2);
928 ALOGV("Filtering out parameter %s", key2.string());
929 break;
930 }
931 }
Eric Laurent327c27b2009-08-27 00:48:47 -0700932 }
933 // if all keys have been filtered out, remove the command.
934 // otherwise, update the key value pairs
935 if (param2.size() == 0) {
936 removedCommands.add(command2);
937 } else {
938 data2->mKeyValuePairs = param2.toString();
939 }
940 } break;
941
942 case SET_VOLUME: {
943 VolumeData *data = (VolumeData *)command->mParam;
944 VolumeData *data2 = (VolumeData *)command2->mParam;
945 if (data->mIO != data2->mIO) break;
946 if (data->mStream != data2->mStream) break;
Steve Block71f2cf12011-10-20 11:56:00 +0100947 ALOGV("Filtering out volume command on output %d for stream %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700948 data->mIO, data->mStream);
Eric Laurent327c27b2009-08-27 00:48:47 -0700949 removedCommands.add(command2);
950 } break;
951 case START_TONE:
952 case STOP_TONE:
953 default:
954 break;
955 }
956 }
957
958 // remove filtered commands
959 for (size_t j = 0; j < removedCommands.size(); j++) {
960 // removed commands always have time stamps greater than current command
961 for (size_t k = i + 1; k < mAudioCommands.size(); k++) {
962 if (mAudioCommands[k] == removedCommands[j]) {
Steve Block71f2cf12011-10-20 11:56:00 +0100963 ALOGV("suppressing command: %d", mAudioCommands[k]->mCommand);
Eric Laurent327c27b2009-08-27 00:48:47 -0700964 mAudioCommands.removeAt(k);
965 break;
966 }
967 }
968 }
969 removedCommands.clear();
970
971 // insert command at the right place according to its time stamp
Steve Block71f2cf12011-10-20 11:56:00 +0100972 ALOGV("inserting command: %d at index %d, num commands %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700973 command->mCommand, (int)i+1, mAudioCommands.size());
Eric Laurent327c27b2009-08-27 00:48:47 -0700974 mAudioCommands.insertAt(command, i + 1);
975}
976
Eric Laurenta553c252009-07-17 12:17:14 -0700977void AudioPolicyService::AudioCommandThread::exit()
978{
Steve Block71f2cf12011-10-20 11:56:00 +0100979 ALOGV("AudioCommandThread::exit");
Eric Laurenta553c252009-07-17 12:17:14 -0700980 {
981 AutoMutex _l(mLock);
982 requestExit();
983 mWaitWorkCV.signal();
984 }
985 requestExitAndWait();
986}
987
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800988void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size)
989{
Eric Laurent3fdb1262009-11-07 00:01:32 -0800990 snprintf(buffer, size, " %02d %06d.%03d %01u %p\n",
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800991 mCommand,
992 (int)ns2s(mTime),
993 (int)ns2ms(mTime)%1000,
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800994 mWaitStatus,
995 mParam);
996}
997
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700998/******* helpers for the service_ops callbacks defined below *********/
999void AudioPolicyService::setParameters(audio_io_handle_t ioHandle,
1000 const char *keyValuePairs,
1001 int delayMs)
1002{
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001003 mAudioCommandThread->parametersCommand(ioHandle, keyValuePairs,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001004 delayMs);
1005}
1006
1007int AudioPolicyService::setStreamVolume(audio_stream_type_t stream,
1008 float volume,
1009 audio_io_handle_t output,
1010 int delayMs)
1011{
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001012 return (int)mAudioCommandThread->volumeCommand(stream, volume,
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001013 output, delayMs);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001014}
1015
1016int AudioPolicyService::startTone(audio_policy_tone_t tone,
1017 audio_stream_type_t stream)
1018{
1019 if (tone != AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION)
Steve Block3762c312012-01-06 19:20:56 +00001020 ALOGE("startTone: illegal tone requested (%d)", tone);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001021 if (stream != AUDIO_STREAM_VOICE_CALL)
Steve Block3762c312012-01-06 19:20:56 +00001022 ALOGE("startTone: illegal stream (%d) requested for tone %d", stream,
Glenn Kasten18db49a2012-03-12 16:29:55 -07001023 tone);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001024 mTonePlaybackThread->startToneCommand(ToneGenerator::TONE_SUP_CALL_WAITING,
1025 AUDIO_STREAM_VOICE_CALL);
1026 return 0;
1027}
1028
1029int AudioPolicyService::stopTone()
1030{
1031 mTonePlaybackThread->stopToneCommand();
1032 return 0;
1033}
1034
1035int AudioPolicyService::setVoiceVolume(float volume, int delayMs)
1036{
1037 return (int)mAudioCommandThread->voiceVolumeCommand(volume, delayMs);
1038}
1039
Eric Laurent464d5b32011-06-17 21:29:58 -07001040// ----------------------------------------------------------------------------
1041// Audio pre-processing configuration
1042// ----------------------------------------------------------------------------
1043
Glenn Kasten05d33102012-01-09 08:41:22 -08001044/*static*/ const char * const AudioPolicyService::kInputSourceNames[AUDIO_SOURCE_CNT -1] = {
Eric Laurent464d5b32011-06-17 21:29:58 -07001045 MIC_SRC_TAG,
1046 VOICE_UL_SRC_TAG,
1047 VOICE_DL_SRC_TAG,
1048 VOICE_CALL_SRC_TAG,
1049 CAMCORDER_SRC_TAG,
1050 VOICE_REC_SRC_TAG,
1051 VOICE_COMM_SRC_TAG
1052};
1053
1054// returns the audio_source_t enum corresponding to the input source name or
1055// AUDIO_SOURCE_CNT is no match found
1056audio_source_t AudioPolicyService::inputSourceNameToEnum(const char *name)
1057{
1058 int i;
1059 for (i = AUDIO_SOURCE_MIC; i < AUDIO_SOURCE_CNT; i++) {
1060 if (strcmp(name, kInputSourceNames[i - AUDIO_SOURCE_MIC]) == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001061 ALOGV("inputSourceNameToEnum found source %s %d", name, i);
Eric Laurent464d5b32011-06-17 21:29:58 -07001062 break;
1063 }
1064 }
1065 return (audio_source_t)i;
1066}
1067
1068size_t AudioPolicyService::growParamSize(char *param,
1069 size_t size,
1070 size_t *curSize,
1071 size_t *totSize)
1072{
1073 // *curSize is at least sizeof(effect_param_t) + 2 * sizeof(int)
1074 size_t pos = ((*curSize - 1 ) / size + 1) * size;
1075
1076 if (pos + size > *totSize) {
1077 while (pos + size > *totSize) {
1078 *totSize += ((*totSize + 7) / 8) * 4;
1079 }
1080 param = (char *)realloc(param, *totSize);
1081 }
1082 *curSize = pos + size;
1083 return pos;
1084}
1085
1086size_t AudioPolicyService::readParamValue(cnode *node,
1087 char *param,
1088 size_t *curSize,
1089 size_t *totSize)
1090{
1091 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) {
1092 size_t pos = growParamSize(param, sizeof(short), curSize, totSize);
1093 *(short *)((char *)param + pos) = (short)atoi(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001094 ALOGV("readParamValue() reading short %d", *(short *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001095 return sizeof(short);
1096 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) {
1097 size_t pos = growParamSize(param, sizeof(int), curSize, totSize);
1098 *(int *)((char *)param + pos) = atoi(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001099 ALOGV("readParamValue() reading int %d", *(int *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001100 return sizeof(int);
1101 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) {
1102 size_t pos = growParamSize(param, sizeof(float), curSize, totSize);
1103 *(float *)((char *)param + pos) = (float)atof(node->value);
Steve Block71f2cf12011-10-20 11:56:00 +01001104 ALOGV("readParamValue() reading float %f",*(float *)((char *)param + pos));
Eric Laurent464d5b32011-06-17 21:29:58 -07001105 return sizeof(float);
1106 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) {
1107 size_t pos = growParamSize(param, sizeof(bool), curSize, totSize);
1108 if (strncmp(node->value, "false", strlen("false") + 1) == 0) {
1109 *(bool *)((char *)param + pos) = false;
1110 } else {
1111 *(bool *)((char *)param + pos) = true;
1112 }
Steve Block71f2cf12011-10-20 11:56:00 +01001113 ALOGV("readParamValue() reading bool %s",*(bool *)((char *)param + pos) ? "true" : "false");
Eric Laurent464d5b32011-06-17 21:29:58 -07001114 return sizeof(bool);
1115 } else if (strncmp(node->name, STRING_TAG, sizeof(STRING_TAG) + 1) == 0) {
1116 size_t len = strnlen(node->value, EFFECT_STRING_LEN_MAX);
1117 if (*curSize + len + 1 > *totSize) {
1118 *totSize = *curSize + len + 1;
1119 param = (char *)realloc(param, *totSize);
1120 }
1121 strncpy(param + *curSize, node->value, len);
1122 *curSize += len;
1123 param[*curSize] = '\0';
Steve Block71f2cf12011-10-20 11:56:00 +01001124 ALOGV("readParamValue() reading string %s", param + *curSize - len);
Eric Laurent464d5b32011-06-17 21:29:58 -07001125 return len;
1126 }
Steve Block8564c8d2012-01-05 23:22:43 +00001127 ALOGW("readParamValue() unknown param type %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001128 return 0;
1129}
1130
1131effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root)
1132{
1133 cnode *param;
1134 cnode *value;
1135 size_t curSize = sizeof(effect_param_t);
1136 size_t totSize = sizeof(effect_param_t) + 2 * sizeof(int);
1137 effect_param_t *fx_param = (effect_param_t *)malloc(totSize);
1138
1139 param = config_find(root, PARAM_TAG);
1140 value = config_find(root, VALUE_TAG);
1141 if (param == NULL && value == NULL) {
1142 // try to parse simple parameter form {int int}
1143 param = root->first_child;
Glenn Kasten3694ec12012-01-27 16:47:15 -08001144 if (param != NULL) {
Eric Laurent464d5b32011-06-17 21:29:58 -07001145 // Note: that a pair of random strings is read as 0 0
1146 int *ptr = (int *)fx_param->data;
1147 int *ptr2 = (int *)((char *)param + sizeof(effect_param_t));
Steve Block8564c8d2012-01-05 23:22:43 +00001148 ALOGW("loadEffectParameter() ptr %p ptr2 %p", ptr, ptr2);
Eric Laurent464d5b32011-06-17 21:29:58 -07001149 *ptr++ = atoi(param->name);
1150 *ptr = atoi(param->value);
1151 fx_param->psize = sizeof(int);
1152 fx_param->vsize = sizeof(int);
1153 return fx_param;
1154 }
1155 }
1156 if (param == NULL || value == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001157 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001158 goto error;
1159 }
1160
1161 fx_param->psize = 0;
1162 param = param->first_child;
1163 while (param) {
Steve Block71f2cf12011-10-20 11:56:00 +01001164 ALOGV("loadEffectParameter() reading param of type %s", param->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001165 size_t size = readParamValue(param, (char *)fx_param, &curSize, &totSize);
1166 if (size == 0) {
1167 goto error;
1168 }
1169 fx_param->psize += size;
1170 param = param->next;
1171 }
1172
1173 // align start of value field on 32 bit boundary
1174 curSize = ((curSize - 1 ) / sizeof(int) + 1) * sizeof(int);
1175
1176 fx_param->vsize = 0;
1177 value = value->first_child;
1178 while (value) {
Steve Block71f2cf12011-10-20 11:56:00 +01001179 ALOGV("loadEffectParameter() reading value of type %s", value->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001180 size_t size = readParamValue(value, (char *)fx_param, &curSize, &totSize);
1181 if (size == 0) {
1182 goto error;
1183 }
1184 fx_param->vsize += size;
1185 value = value->next;
1186 }
1187
1188 return fx_param;
1189
1190error:
1191 delete fx_param;
1192 return NULL;
1193}
1194
1195void AudioPolicyService::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params)
1196{
1197 cnode *node = root->first_child;
1198 while (node) {
Steve Block71f2cf12011-10-20 11:56:00 +01001199 ALOGV("loadEffectParameters() loading param %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001200 effect_param_t *param = loadEffectParameter(node);
1201 if (param == NULL) {
1202 node = node->next;
1203 continue;
1204 }
1205 params.add(param);
1206 node = node->next;
1207 }
1208}
1209
1210AudioPolicyService::InputSourceDesc *AudioPolicyService::loadInputSource(
1211 cnode *root,
1212 const Vector <EffectDesc *>& effects)
1213{
1214 cnode *node = root->first_child;
1215 if (node == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001216 ALOGW("loadInputSource() empty element %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001217 return NULL;
1218 }
1219 InputSourceDesc *source = new InputSourceDesc();
1220 while (node) {
1221 size_t i;
1222 for (i = 0; i < effects.size(); i++) {
1223 if (strncmp(effects[i]->mName, node->name, EFFECT_STRING_LEN_MAX) == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001224 ALOGV("loadInputSource() found effect %s in list", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001225 break;
1226 }
1227 }
1228 if (i == effects.size()) {
Steve Block71f2cf12011-10-20 11:56:00 +01001229 ALOGV("loadInputSource() effect %s not in list", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001230 node = node->next;
1231 continue;
1232 }
Glenn Kastenafe98332012-02-02 14:04:37 -08001233 EffectDesc *effect = new EffectDesc(*effects[i]); // deep copy
Eric Laurent464d5b32011-06-17 21:29:58 -07001234 loadEffectParameters(node, effect->mParams);
Steve Block71f2cf12011-10-20 11:56:00 +01001235 ALOGV("loadInputSource() adding effect %s uuid %08x", effect->mName, effect->mUuid.timeLow);
Eric Laurent464d5b32011-06-17 21:29:58 -07001236 source->mEffects.add(effect);
1237 node = node->next;
1238 }
1239 if (source->mEffects.size() == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001240 ALOGW("loadInputSource() no valid effects found in source %s", root->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001241 delete source;
1242 return NULL;
1243 }
1244 return source;
1245}
1246
1247status_t AudioPolicyService::loadInputSources(cnode *root, const Vector <EffectDesc *>& effects)
1248{
1249 cnode *node = config_find(root, PREPROCESSING_TAG);
1250 if (node == NULL) {
1251 return -ENOENT;
1252 }
1253 node = node->first_child;
1254 while (node) {
1255 audio_source_t source = inputSourceNameToEnum(node->name);
1256 if (source == AUDIO_SOURCE_CNT) {
Steve Block8564c8d2012-01-05 23:22:43 +00001257 ALOGW("loadInputSources() invalid input source %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001258 node = node->next;
1259 continue;
1260 }
Steve Block71f2cf12011-10-20 11:56:00 +01001261 ALOGV("loadInputSources() loading input source %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001262 InputSourceDesc *desc = loadInputSource(node, effects);
1263 if (desc == NULL) {
1264 node = node->next;
1265 continue;
1266 }
1267 mInputSources.add(source, desc);
1268 node = node->next;
1269 }
1270 return NO_ERROR;
1271}
1272
1273AudioPolicyService::EffectDesc *AudioPolicyService::loadEffect(cnode *root)
1274{
1275 cnode *node = config_find(root, UUID_TAG);
1276 if (node == NULL) {
1277 return NULL;
1278 }
1279 effect_uuid_t uuid;
1280 if (AudioEffect::stringToGuid(node->value, &uuid) != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +00001281 ALOGW("loadEffect() invalid uuid %s", node->value);
Eric Laurent464d5b32011-06-17 21:29:58 -07001282 return NULL;
1283 }
Glenn Kastenafe98332012-02-02 14:04:37 -08001284 return new EffectDesc(root->name, uuid);
Eric Laurent464d5b32011-06-17 21:29:58 -07001285}
1286
1287status_t AudioPolicyService::loadEffects(cnode *root, Vector <EffectDesc *>& effects)
1288{
1289 cnode *node = config_find(root, EFFECTS_TAG);
1290 if (node == NULL) {
1291 return -ENOENT;
1292 }
1293 node = node->first_child;
1294 while (node) {
Steve Block71f2cf12011-10-20 11:56:00 +01001295 ALOGV("loadEffects() loading effect %s", node->name);
Eric Laurent464d5b32011-06-17 21:29:58 -07001296 EffectDesc *effect = loadEffect(node);
1297 if (effect == NULL) {
1298 node = node->next;
1299 continue;
1300 }
1301 effects.add(effect);
1302 node = node->next;
1303 }
1304 return NO_ERROR;
1305}
1306
1307status_t AudioPolicyService::loadPreProcessorConfig(const char *path)
1308{
1309 cnode *root;
1310 char *data;
1311
1312 data = (char *)load_file(path, NULL);
1313 if (data == NULL) {
1314 return -ENODEV;
1315 }
1316 root = config_node("", "");
1317 config_load(root, data);
1318
1319 Vector <EffectDesc *> effects;
1320 loadEffects(root, effects);
1321 loadInputSources(root, effects);
1322
1323 config_free(root);
1324 free(root);
1325 free(data);
1326
1327 return NO_ERROR;
1328}
1329
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001330/* implementation of the interface to the policy manager */
1331extern "C" {
1332
1333static audio_io_handle_t aps_open_output(void *service,
1334 uint32_t *pDevices,
1335 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001336 audio_format_t *pFormat,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001337 uint32_t *pChannels,
1338 uint32_t *pLatencyMs,
1339 audio_policy_output_flags_t flags)
1340{
1341 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001342 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001343 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001344 return 0;
1345 }
1346
1347 return af->openOutput(pDevices, pSamplingRate, pFormat, pChannels,
1348 pLatencyMs, flags);
1349}
1350
1351static audio_io_handle_t aps_open_dup_output(void *service,
1352 audio_io_handle_t output1,
1353 audio_io_handle_t output2)
1354{
1355 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001356 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001357 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001358 return 0;
1359 }
1360 return af->openDuplicateOutput(output1, output2);
1361}
1362
1363static int aps_close_output(void *service, audio_io_handle_t output)
1364{
1365 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001366 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001367 return PERMISSION_DENIED;
1368
1369 return af->closeOutput(output);
1370}
1371
1372static int aps_suspend_output(void *service, audio_io_handle_t output)
1373{
1374 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001375 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001376 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001377 return PERMISSION_DENIED;
1378 }
1379
1380 return af->suspendOutput(output);
1381}
1382
1383static int aps_restore_output(void *service, audio_io_handle_t output)
1384{
1385 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001386 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001387 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001388 return PERMISSION_DENIED;
1389 }
1390
1391 return af->restoreOutput(output);
1392}
1393
1394static audio_io_handle_t aps_open_input(void *service,
1395 uint32_t *pDevices,
1396 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001397 audio_format_t *pFormat,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001398 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -08001399 audio_in_acoustics_t acoustics)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001400{
1401 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001402 if (af == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001403 ALOGW("%s: could not get AudioFlinger", __func__);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001404 return 0;
1405 }
1406
1407 return af->openInput(pDevices, pSamplingRate, pFormat, pChannels,
1408 acoustics);
1409}
1410
1411static int aps_close_input(void *service, audio_io_handle_t input)
1412{
1413 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001414 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001415 return PERMISSION_DENIED;
1416
1417 return af->closeInput(input);
1418}
1419
1420static int aps_set_stream_output(void *service, audio_stream_type_t stream,
1421 audio_io_handle_t output)
1422{
1423 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001424 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001425 return PERMISSION_DENIED;
1426
1427 return af->setStreamOutput(stream, output);
1428}
1429
1430static int aps_move_effects(void *service, int session,
1431 audio_io_handle_t src_output,
1432 audio_io_handle_t dst_output)
1433{
1434 sp<IAudioFlinger> af = AudioSystem::get_audio_flinger();
Glenn Kasten706b6182012-01-20 13:44:40 -08001435 if (af == 0)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001436 return PERMISSION_DENIED;
1437
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001438 return af->moveEffects(session, src_output, dst_output);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001439}
1440
1441static char * aps_get_parameters(void *service, audio_io_handle_t io_handle,
1442 const char *keys)
1443{
1444 String8 result = AudioSystem::getParameters(io_handle, String8(keys));
1445 return strdup(result.string());
1446}
1447
1448static void aps_set_parameters(void *service, audio_io_handle_t io_handle,
1449 const char *kv_pairs, int delay_ms)
1450{
1451 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1452
1453 audioPolicyService->setParameters(io_handle, kv_pairs, delay_ms);
1454}
1455
1456static int aps_set_stream_volume(void *service, audio_stream_type_t stream,
1457 float volume, audio_io_handle_t output,
1458 int delay_ms)
1459{
1460 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1461
1462 return audioPolicyService->setStreamVolume(stream, volume, output,
1463 delay_ms);
1464}
1465
1466static int aps_start_tone(void *service, audio_policy_tone_t tone,
1467 audio_stream_type_t stream)
1468{
1469 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1470
1471 return audioPolicyService->startTone(tone, stream);
1472}
1473
1474static int aps_stop_tone(void *service)
1475{
1476 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1477
1478 return audioPolicyService->stopTone();
1479}
1480
1481static int aps_set_voice_volume(void *service, float volume, int delay_ms)
1482{
1483 AudioPolicyService *audioPolicyService = (AudioPolicyService *)service;
1484
1485 return audioPolicyService->setVoiceVolume(volume, delay_ms);
1486}
1487
1488}; // extern "C"
1489
1490namespace {
1491 struct audio_policy_service_ops aps_ops = {
1492 open_output : aps_open_output,
1493 open_duplicate_output : aps_open_dup_output,
1494 close_output : aps_close_output,
1495 suspend_output : aps_suspend_output,
1496 restore_output : aps_restore_output,
1497 open_input : aps_open_input,
1498 close_input : aps_close_input,
1499 set_stream_volume : aps_set_stream_volume,
1500 set_stream_output : aps_set_stream_output,
1501 set_parameters : aps_set_parameters,
1502 get_parameters : aps_get_parameters,
1503 start_tone : aps_start_tone,
1504 stop_tone : aps_stop_tone,
1505 set_voice_volume : aps_set_voice_volume,
1506 move_effects : aps_move_effects,
1507 };
1508}; // namespace <unnamed>
1509
Eric Laurenta553c252009-07-17 12:17:14 -07001510}; // namespace android