blob: 62ad29ee52196b2d2e76a03bdc655348fd744257 [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#ifndef ANDROID_AUDIOPOLICYSERVICE_H
18#define ANDROID_AUDIOPOLICYSERVICE_H
19
Eric Laurent464d5b32011-06-17 21:29:58 -070020#include <cutils/misc.h>
21#include <cutils/config_utils.h>
Eric Laurent327c27b2009-08-27 00:48:47 -070022#include <utils/Vector.h>
Eric Laurent464d5b32011-06-17 21:29:58 -070023#include <utils/SortedVector.h>
Glenn Kasten3515a332011-02-03 16:55:26 -080024#include <binder/BinderService.h>
Dima Zavin34bb4192011-05-11 14:15:23 -070025#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070026#include <system/audio_policy.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070027#include <hardware/audio_policy.h>
Eric Laurent464d5b32011-06-17 21:29:58 -070028#include <media/IAudioPolicyService.h>
29#include <media/ToneGenerator.h>
30#include <media/AudioEffect.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070031
Eric Laurenta553c252009-07-17 12:17:14 -070032namespace android {
33
34class String8;
35
36// ----------------------------------------------------------------------------
37
Glenn Kasten3515a332011-02-03 16:55:26 -080038class AudioPolicyService :
39 public BinderService<AudioPolicyService>,
40 public BnAudioPolicyService,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070041// public AudioPolicyClientInterface,
Eric Laurent8ed6ed02010-07-13 04:45:46 -070042 public IBinder::DeathRecipient
Eric Laurenta553c252009-07-17 12:17:14 -070043{
Glenn Kasten3515a332011-02-03 16:55:26 -080044 friend class BinderService<AudioPolicyService>;
Eric Laurenta553c252009-07-17 12:17:14 -070045
46public:
Glenn Kasten3515a332011-02-03 16:55:26 -080047 // for BinderService
48 static const char *getServiceName() { return "media.audio_policy"; }
Eric Laurenta553c252009-07-17 12:17:14 -070049
50 virtual status_t dump(int fd, const Vector<String16>& args);
51
52 //
53 // BnAudioPolicyService (see AudioPolicyInterface for method descriptions)
54 //
55
Dima Zavin24fc2fb2011-04-19 22:30:36 -070056 virtual status_t setDeviceConnectionState(audio_devices_t device,
57 audio_policy_dev_state_t state,
Eric Laurenta553c252009-07-17 12:17:14 -070058 const char *device_address);
Dima Zavin24fc2fb2011-04-19 22:30:36 -070059 virtual audio_policy_dev_state_t getDeviceConnectionState(
60 audio_devices_t device,
Eric Laurent8ed6ed02010-07-13 04:45:46 -070061 const char *device_address);
Eric Laurenta553c252009-07-17 12:17:14 -070062 virtual status_t setPhoneState(int state);
63 virtual status_t setRingerMode(uint32_t mode, uint32_t mask);
Dima Zavin24fc2fb2011-04-19 22:30:36 -070064 virtual status_t setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config);
65 virtual audio_policy_forced_cfg_t getForceUse(audio_policy_force_use_t usage);
66 virtual audio_io_handle_t getOutput(audio_stream_type_t stream,
Eric Laurenta553c252009-07-17 12:17:14 -070067 uint32_t samplingRate = 0,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070068 uint32_t format = AUDIO_FORMAT_DEFAULT,
Eric Laurenta553c252009-07-17 12:17:14 -070069 uint32_t channels = 0,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070070 audio_policy_output_flags_t flags =
71 AUDIO_POLICY_OUTPUT_FLAG_INDIRECT);
Eric Laurent8ed6ed02010-07-13 04:45:46 -070072 virtual status_t startOutput(audio_io_handle_t output,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070073 audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -070074 int session = 0);
75 virtual status_t stopOutput(audio_io_handle_t output,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070076 audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -070077 int session = 0);
Eric Laurenta553c252009-07-17 12:17:14 -070078 virtual void releaseOutput(audio_io_handle_t output);
79 virtual audio_io_handle_t getInput(int inputSource,
80 uint32_t samplingRate = 0,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070081 uint32_t format = AUDIO_FORMAT_DEFAULT,
Eric Laurenta553c252009-07-17 12:17:14 -070082 uint32_t channels = 0,
Dima Zavin24fc2fb2011-04-19 22:30:36 -070083 audio_in_acoustics_t acoustics =
Eric Laurent464d5b32011-06-17 21:29:58 -070084 (audio_in_acoustics_t)0,
85 int audioSession = 0);
Eric Laurenta553c252009-07-17 12:17:14 -070086 virtual status_t startInput(audio_io_handle_t input);
87 virtual status_t stopInput(audio_io_handle_t input);
88 virtual void releaseInput(audio_io_handle_t input);
Dima Zavin24fc2fb2011-04-19 22:30:36 -070089 virtual status_t initStreamVolume(audio_stream_type_t stream,
Eric Laurenta553c252009-07-17 12:17:14 -070090 int indexMin,
91 int indexMax);
Dima Zavin24fc2fb2011-04-19 22:30:36 -070092 virtual status_t setStreamVolumeIndex(audio_stream_type_t stream, int index);
93 virtual status_t getStreamVolumeIndex(audio_stream_type_t stream, int *index);
Eric Laurenta553c252009-07-17 12:17:14 -070094
Dima Zavin24fc2fb2011-04-19 22:30:36 -070095 virtual uint32_t getStrategyForStream(audio_stream_type_t stream);
96 virtual uint32_t getDevicesForStream(audio_stream_type_t stream);
Eric Laurent8ed6ed02010-07-13 04:45:46 -070097
98 virtual audio_io_handle_t getOutputForEffect(effect_descriptor_t *desc);
99 virtual status_t registerEffect(effect_descriptor_t *desc,
Eric Laurent464d5b32011-06-17 21:29:58 -0700100 audio_io_handle_t io,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700101 uint32_t strategy,
102 int session,
103 int id);
104 virtual status_t unregisterEffect(int id);
Eric Laurent25101b02011-02-02 09:33:30 -0800105 virtual bool isStreamActive(int stream, uint32_t inPastMs = 0) const;
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700106
Eric Laurenta553c252009-07-17 12:17:14 -0700107 virtual status_t onTransact(
108 uint32_t code,
109 const Parcel& data,
110 Parcel* reply,
111 uint32_t flags);
112
113 // IBinder::DeathRecipient
114 virtual void binderDied(const wp<IBinder>& who);
115
116 //
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700117 // Helpers for the struct audio_policy_service_ops implementation.
118 // This is used by the audio policy manager for certain operations that
119 // are implemented by the policy service.
Eric Laurenta553c252009-07-17 12:17:14 -0700120 //
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700121 virtual void setParameters(audio_io_handle_t ioHandle,
122 const char *keyValuePairs,
123 int delayMs);
124
125 virtual status_t setStreamVolume(audio_stream_type_t stream,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700126 float volume,
127 audio_io_handle_t output,
128 int delayMs = 0);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700129 virtual status_t startTone(audio_policy_tone_t tone, audio_stream_type_t stream);
Eric Laurenta553c252009-07-17 12:17:14 -0700130 virtual status_t stopTone();
Eric Laurent415f3e22009-10-21 08:14:22 -0700131 virtual status_t setVoiceVolume(float volume, int delayMs = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700132
133private:
134 AudioPolicyService();
135 virtual ~AudioPolicyService();
136
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800137 status_t dumpInternals(int fd);
138
Eric Laurenta553c252009-07-17 12:17:14 -0700139 // Thread used for tone playback and to send audio config commands to audio flinger
140 // For tone playback, using a separate thread is necessary to avoid deadlock with mLock because startTone()
141 // and stopTone() are normally called with mLock locked and requesting a tone start or stop will cause
142 // calls to AudioPolicyService and an attempt to lock mLock.
143 // For audio config commands, it is necessary because audio flinger requires that the calling process (user)
144 // has permission to modify audio settings.
145 class AudioCommandThread : public Thread {
Eric Laurent327c27b2009-08-27 00:48:47 -0700146 class AudioCommand;
Eric Laurenta553c252009-07-17 12:17:14 -0700147 public:
148
149 // commands for tone AudioCommand
150 enum {
151 START_TONE,
152 STOP_TONE,
153 SET_VOLUME,
Eric Laurent415f3e22009-10-21 08:14:22 -0700154 SET_PARAMETERS,
155 SET_VOICE_VOLUME
Eric Laurenta553c252009-07-17 12:17:14 -0700156 };
157
Eric Laurentcef3cd72009-12-10 01:03:50 -0800158 AudioCommandThread (String8 name);
Eric Laurenta553c252009-07-17 12:17:14 -0700159 virtual ~AudioCommandThread();
160
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800161 status_t dump(int fd);
162
Eric Laurenta553c252009-07-17 12:17:14 -0700163 // Thread virtuals
164 virtual void onFirstRef();
165 virtual bool threadLoop();
166
167 void exit();
168 void startToneCommand(int type = 0, int stream = 0);
169 void stopToneCommand();
Eric Laurent327c27b2009-08-27 00:48:47 -0700170 status_t volumeCommand(int stream, float volume, int output, int delayMs = 0);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700171 status_t parametersCommand(int ioHandle, const char *keyValuePairs, int delayMs = 0);
Eric Laurent415f3e22009-10-21 08:14:22 -0700172 status_t voiceVolumeCommand(float volume, int delayMs = 0);
Eric Laurent327c27b2009-08-27 00:48:47 -0700173 void insertCommand_l(AudioCommand *command, int delayMs = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700174
175 private:
176 // descriptor for requested tone playback event
177 class AudioCommand {
Eric Laurent3fdb1262009-11-07 00:01:32 -0800178
Eric Laurenta553c252009-07-17 12:17:14 -0700179 public:
Eric Laurent3fdb1262009-11-07 00:01:32 -0800180 AudioCommand()
181 : mCommand(-1) {}
182
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800183 void dump(char* buffer, size_t size);
184
Eric Laurenta553c252009-07-17 12:17:14 -0700185 int mCommand; // START_TONE, STOP_TONE ...
Eric Laurent327c27b2009-08-27 00:48:47 -0700186 nsecs_t mTime; // time stamp
187 Condition mCond; // condition for status return
188 status_t mStatus; // command status
189 bool mWaitStatus; // true if caller is waiting for status
190 void *mParam; // command parameter (ToneData, VolumeData, ParametersData)
Eric Laurenta553c252009-07-17 12:17:14 -0700191 };
192
193 class ToneData {
194 public:
195 int mType; // tone type (START_TONE only)
196 int mStream; // stream type (START_TONE only)
197 };
198
199 class VolumeData {
200 public:
201 int mStream;
202 float mVolume;
Eric Laurentddb78e72009-07-28 08:44:33 -0700203 int mIO;
Eric Laurenta553c252009-07-17 12:17:14 -0700204 };
Eric Laurent415f3e22009-10-21 08:14:22 -0700205
Eric Laurenta553c252009-07-17 12:17:14 -0700206 class ParametersData {
207 public:
Eric Laurentddb78e72009-07-28 08:44:33 -0700208 int mIO;
Eric Laurenta553c252009-07-17 12:17:14 -0700209 String8 mKeyValuePairs;
210 };
211
Eric Laurent415f3e22009-10-21 08:14:22 -0700212 class VoiceVolumeData {
213 public:
214 float mVolume;
215 };
Eric Laurenta553c252009-07-17 12:17:14 -0700216
217 Mutex mLock;
218 Condition mWaitWorkCV;
Eric Laurent327c27b2009-08-27 00:48:47 -0700219 Vector <AudioCommand *> mAudioCommands; // list of pending commands
Eric Laurenta553c252009-07-17 12:17:14 -0700220 ToneGenerator *mpToneGenerator; // the tone generator
Eric Laurentcef3cd72009-12-10 01:03:50 -0800221 AudioCommand mLastCommand; // last processed command (used by dump)
222 String8 mName; // string used by wake lock fo delayed commands
Eric Laurenta553c252009-07-17 12:17:14 -0700223 };
224
Eric Laurent464d5b32011-06-17 21:29:58 -0700225 class EffectDesc {
226 public:
227 EffectDesc() {}
228 virtual ~EffectDesc() {}
229 char *mName;
230 effect_uuid_t mUuid;
231 Vector <effect_param_t *> mParams;
232 };
233
234 class InputSourceDesc {
235 public:
236 InputSourceDesc() {}
237 virtual ~InputSourceDesc() {}
238 Vector <EffectDesc *> mEffects;
239 };
240
241
242 class InputDesc {
243 public:
244 InputDesc() {}
245 virtual ~InputDesc() {}
246 int mSessionId;
247 Vector< sp<AudioEffect> >mEffects;
248 };
249
250 static const char *kInputSourceNames[AUDIO_SOURCE_CNT -1];
251
252 void setPreProcessorEnabled(InputDesc *inputDesc, bool enabled);
253 status_t loadPreProcessorConfig(const char *path);
254 status_t loadEffects(cnode *root, Vector <EffectDesc *>& effects);
255 EffectDesc *loadEffect(cnode *root);
256 status_t loadInputSources(cnode *root, const Vector <EffectDesc *>& effects);
257 audio_source_t inputSourceNameToEnum(const char *name);
258 InputSourceDesc *loadInputSource(cnode *root, const Vector <EffectDesc *>& effects);
259 void loadEffectParameters(cnode *root, Vector <effect_param_t *>& params);
260 effect_param_t *loadEffectParameter(cnode *root);
261 size_t readParamValue(cnode *node,
262 char *param,
263 size_t *curSize,
264 size_t *totSize);
265 size_t growParamSize(char *param,
266 size_t size,
267 size_t *curSize,
268 size_t *totSize);
269
Eric Laurenta553c252009-07-17 12:17:14 -0700270 // Internal dump utilities.
Eric Laurentf4ee40e2009-11-02 10:29:02 -0800271 status_t dumpPermissionDenial(int fd);
Eric Laurenta553c252009-07-17 12:17:14 -0700272
273
Eric Laurent25101b02011-02-02 09:33:30 -0800274 mutable Mutex mLock; // prevents concurrent access to AudioPolicy manager functions changing
275 // device connection state or routing
Eric Laurenta553c252009-07-17 12:17:14 -0700276 sp <AudioCommandThread> mAudioCommandThread; // audio commands thread
Eric Laurent327c27b2009-08-27 00:48:47 -0700277 sp <AudioCommandThread> mTonePlaybackThread; // tone playback thread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700278 struct audio_policy_device *mpAudioPolicyDev;
279 struct audio_policy *mpAudioPolicy;
Eric Laurent464d5b32011-06-17 21:29:58 -0700280 KeyedVector< audio_source_t, InputSourceDesc* > mInputSources;
281 KeyedVector< audio_io_handle_t, InputDesc* > mInputs;
Eric Laurenta553c252009-07-17 12:17:14 -0700282};
283
284}; // namespace android
285
286#endif // ANDROID_AUDIOPOLICYSERVICE_H