blob: bb92df1bc2a758225c0440171eb4630040e3047f [file] [log] [blame]
Eric Laurent81784c32012-11-19 14:55:58 -08001/*
2**
3** Copyright 2012, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef INCLUDING_FROM_AUDIOFLINGER_H
19 #error This header file should only be included from AudioFlinger.h
20#endif
21
22class ThreadBase : public Thread {
23public:
24
25#include "TrackBase.h"
26
27 enum type_t {
28 MIXER, // Thread class is MixerThread
29 DIRECT, // Thread class is DirectOutputThread
30 DUPLICATING, // Thread class is DuplicatingThread
Eric Laurentbfb1b832013-01-07 09:53:42 -080031 RECORD, // Thread class is RecordThread
32 OFFLOAD // Thread class is OffloadThread
Eric Laurent81784c32012-11-19 14:55:58 -080033 };
34
35 ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
36 audio_devices_t outDevice, audio_devices_t inDevice, type_t type);
37 virtual ~ThreadBase();
38
39 void dumpBase(int fd, const Vector<String16>& args);
40 void dumpEffectChains(int fd, const Vector<String16>& args);
41
42 void clearPowerManager();
43
44 // base for record and playback
45 enum {
46 CFG_EVENT_IO,
47 CFG_EVENT_PRIO
48 };
49
50 class ConfigEvent {
51 public:
52 ConfigEvent(int type) : mType(type) {}
53 virtual ~ConfigEvent() {}
54
55 int type() const { return mType; }
56
57 virtual void dump(char *buffer, size_t size) = 0;
58
59 private:
60 const int mType;
61 };
62
63 class IoConfigEvent : public ConfigEvent {
64 public:
65 IoConfigEvent(int event, int param) :
66 ConfigEvent(CFG_EVENT_IO), mEvent(event), mParam(event) {}
67 virtual ~IoConfigEvent() {}
68
69 int event() const { return mEvent; }
70 int param() const { return mParam; }
71
72 virtual void dump(char *buffer, size_t size) {
73 snprintf(buffer, size, "IO event: event %d, param %d\n", mEvent, mParam);
74 }
75
76 private:
77 const int mEvent;
78 const int mParam;
79 };
80
81 class PrioConfigEvent : public ConfigEvent {
82 public:
83 PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) :
84 ConfigEvent(CFG_EVENT_PRIO), mPid(pid), mTid(tid), mPrio(prio) {}
85 virtual ~PrioConfigEvent() {}
86
87 pid_t pid() const { return mPid; }
88 pid_t tid() const { return mTid; }
89 int32_t prio() const { return mPrio; }
90
91 virtual void dump(char *buffer, size_t size) {
92 snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d\n", mPid, mTid, mPrio);
93 }
94
95 private:
96 const pid_t mPid;
97 const pid_t mTid;
98 const int32_t mPrio;
99 };
100
101
102 class PMDeathRecipient : public IBinder::DeathRecipient {
103 public:
104 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
105 virtual ~PMDeathRecipient() {}
106
107 // IBinder::DeathRecipient
108 virtual void binderDied(const wp<IBinder>& who);
109
110 private:
111 PMDeathRecipient(const PMDeathRecipient&);
112 PMDeathRecipient& operator = (const PMDeathRecipient&);
113
114 wp<ThreadBase> mThread;
115 };
116
117 virtual status_t initCheck() const = 0;
118
119 // static externally-visible
120 type_t type() const { return mType; }
Eric Laurent22ac20e2015-05-08 10:50:03 -0700121 bool isDuplicating() const { return (mType == DUPLICATING); }
122
Eric Laurent81784c32012-11-19 14:55:58 -0800123 audio_io_handle_t id() const { return mId;}
124
125 // dynamic externally-visible
126 uint32_t sampleRate() const { return mSampleRate; }
127 uint32_t channelCount() const { return mChannelCount; }
128 audio_channel_mask_t channelMask() const { return mChannelMask; }
129 audio_format_t format() const { return mFormat; }
130 // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects,
Glenn Kasten9b58f632013-07-16 11:37:48 -0700131 // and returns the [normal mix] buffer's frame count.
132 virtual size_t frameCount() const = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800133 size_t frameSize() const { return mFrameSize; }
Eric Laurent81784c32012-11-19 14:55:58 -0800134
135 // Should be "virtual status_t requestExitAndWait()" and override same
136 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
137 void exit();
138 virtual bool checkForNewParameters_l() = 0;
139 virtual status_t setParameters(const String8& keyValuePairs);
140 virtual String8 getParameters(const String8& keys) = 0;
141 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
142 void sendIoConfigEvent(int event, int param = 0);
143 void sendIoConfigEvent_l(int event, int param = 0);
144 void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio);
145 void processConfigEvents();
146
147 // see note at declaration of mStandby, mOutDevice and mInDevice
148 bool standby() const { return mStandby; }
149 audio_devices_t outDevice() const { return mOutDevice; }
150 audio_devices_t inDevice() const { return mInDevice; }
151
152 virtual audio_stream_t* stream() const = 0;
153
154 sp<EffectHandle> createEffect_l(
155 const sp<AudioFlinger::Client>& client,
156 const sp<IEffectClient>& effectClient,
157 int32_t priority,
158 int sessionId,
159 effect_descriptor_t *desc,
160 int *enabled,
161 status_t *status);
162 void disconnectEffect(const sp< EffectModule>& effect,
163 EffectHandle *handle,
164 bool unpinIfLast);
165
166 // return values for hasAudioSession (bit field)
167 enum effect_state {
168 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
169 // effect
170 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
171 // track
172 };
173
174 // get effect chain corresponding to session Id.
175 sp<EffectChain> getEffectChain(int sessionId);
176 // same as getEffectChain() but must be called with ThreadBase mutex locked
177 sp<EffectChain> getEffectChain_l(int sessionId) const;
178 // add an effect chain to the chain list (mEffectChains)
179 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
180 // remove an effect chain from the chain list (mEffectChains)
181 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
182 // lock all effect chains Mutexes. Must be called before releasing the
183 // ThreadBase mutex before processing the mixer and effects. This guarantees the
184 // integrity of the chains during the process.
185 // Also sets the parameter 'effectChains' to current value of mEffectChains.
186 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
187 // unlock effect chains after process
188 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800189 // get a copy of mEffectChains vector
190 Vector< sp<EffectChain> > getEffectChains_l() const { return mEffectChains; };
Eric Laurent81784c32012-11-19 14:55:58 -0800191 // set audio mode to all effect chains
192 void setMode(audio_mode_t mode);
193 // get effect module with corresponding ID on specified audio session
194 sp<AudioFlinger::EffectModule> getEffect(int sessionId, int effectId);
195 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
196 // add and effect module. Also creates the effect chain is none exists for
197 // the effects audio session
198 status_t addEffect_l(const sp< EffectModule>& effect);
199 // remove and effect module. Also removes the effect chain is this was the last
200 // effect
201 void removeEffect_l(const sp< EffectModule>& effect);
202 // detach all tracks connected to an auxiliary effect
203 virtual void detachAuxEffect_l(int effectId) {}
204 // returns either EFFECT_SESSION if effects on this audio session exist in one
205 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
206 virtual uint32_t hasAudioSession(int sessionId) const = 0;
207 // the value returned by default implementation is not important as the
208 // strategy is only meaningful for PlaybackThread which implements this method
209 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
210
211 // suspend or restore effect according to the type of effect passed. a NULL
212 // type pointer means suspend all effects in the session
213 void setEffectSuspended(const effect_uuid_t *type,
214 bool suspend,
215 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
216 // check if some effects must be suspended/restored when an effect is enabled
217 // or disabled
218 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
219 bool enabled,
220 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
221 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
222 bool enabled,
223 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
224
225 virtual status_t setSyncEvent(const sp<SyncEvent>& event) = 0;
226 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const = 0;
227
228
229 mutable Mutex mLock;
230
231protected:
232
233 // entry describing an effect being suspended in mSuspendedSessions keyed vector
234 class SuspendedSessionDesc : public RefBase {
235 public:
236 SuspendedSessionDesc() : mRefCount(0) {}
237
238 int mRefCount; // number of active suspend requests
239 effect_uuid_t mType; // effect type UUID
240 };
241
Marco Nelissene14a5d62013-10-03 08:51:24 -0700242 void acquireWakeLock(int uid = -1);
243 void acquireWakeLock_l(int uid = -1);
Eric Laurent81784c32012-11-19 14:55:58 -0800244 void releaseWakeLock();
245 void releaseWakeLock_l();
Marco Nelissen9cae2172013-01-14 14:12:05 -0800246 void updateWakeLockUids(const SortedVector<int> &uids);
247 void updateWakeLockUids_l(const SortedVector<int> &uids);
248 void getPowerManager_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800249 void setEffectSuspended_l(const effect_uuid_t *type,
250 bool suspend,
251 int sessionId);
252 // updated mSuspendedSessions when an effect suspended or restored
253 void updateSuspendedSessions_l(const effect_uuid_t *type,
254 bool suspend,
255 int sessionId);
256 // check if some effects must be suspended when an effect chain is added
257 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
258
Narayan Kamath014e7fa2013-10-14 15:03:38 +0100259 String16 getWakeLockTag();
260
Eric Laurent81784c32012-11-19 14:55:58 -0800261 virtual void preExit() { }
262
263 friend class AudioFlinger; // for mEffectChains
264
265 const type_t mType;
266
267 // Used by parameters, config events, addTrack_l, exit
268 Condition mWaitWorkCV;
269
270 const sp<AudioFlinger> mAudioFlinger;
Glenn Kasten9b58f632013-07-16 11:37:48 -0700271
272 // updated by PlaybackThread::readOutputParameters() or
273 // RecordThread::readInputParameters()
Eric Laurent81784c32012-11-19 14:55:58 -0800274 uint32_t mSampleRate;
275 size_t mFrameCount; // output HAL, direct output, record
Eric Laurent81784c32012-11-19 14:55:58 -0800276 audio_channel_mask_t mChannelMask;
Glenn Kastenf6ed4232013-07-16 11:16:27 -0700277 uint32_t mChannelCount;
Eric Laurent81784c32012-11-19 14:55:58 -0800278 size_t mFrameSize;
279 audio_format_t mFormat;
280
281 // Parameter sequence by client: binder thread calling setParameters():
282 // 1. Lock mLock
283 // 2. Append to mNewParameters
284 // 3. mWaitWorkCV.signal
285 // 4. mParamCond.waitRelative with timeout
286 // 5. read mParamStatus
287 // 6. mWaitWorkCV.signal
288 // 7. Unlock
289 //
290 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
291 // 1. Lock mLock
292 // 2. If there is an entry in mNewParameters proceed ...
293 // 2. Read first entry in mNewParameters
294 // 3. Process
295 // 4. Remove first entry from mNewParameters
296 // 5. Set mParamStatus
297 // 6. mParamCond.signal
298 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
299 // 8. Unlock
300 Condition mParamCond;
301 Vector<String8> mNewParameters;
302 status_t mParamStatus;
303
Glenn Kastenc6ae3c82013-07-17 09:08:51 -0700304 // vector owns each ConfigEvent *, so must delete after removing
Eric Laurent81784c32012-11-19 14:55:58 -0800305 Vector<ConfigEvent *> mConfigEvents;
306
307 // These fields are written and read by thread itself without lock or barrier,
308 // and read by other threads without lock or barrier via standby() , outDevice()
309 // and inDevice().
310 // Because of the absence of a lock or barrier, any other thread that reads
311 // these fields must use the information in isolation, or be prepared to deal
312 // with possibility that it might be inconsistent with other information.
313 bool mStandby; // Whether thread is currently in standby.
314 audio_devices_t mOutDevice; // output device
315 audio_devices_t mInDevice; // input device
316 audio_source_t mAudioSource; // (see audio.h, audio_source_t)
317
318 const audio_io_handle_t mId;
319 Vector< sp<EffectChain> > mEffectChains;
320
321 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
322 char mName[kNameLength];
323 sp<IPowerManager> mPowerManager;
324 sp<IBinder> mWakeLockToken;
325 const sp<PMDeathRecipient> mDeathRecipient;
326 // list of suspended effects per session and per type. The first vector is
327 // keyed by session ID, the second by type UUID timeLow field
328 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > >
329 mSuspendedSessions;
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800330 static const size_t kLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800331 sp<NBLog::Writer> mNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800332};
333
334// --- PlaybackThread ---
335class PlaybackThread : public ThreadBase {
336public:
337
338#include "PlaybackTracks.h"
339
340 enum mixer_state {
341 MIXER_IDLE, // no active tracks
342 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
Eric Laurentbfb1b832013-01-07 09:53:42 -0800343 MIXER_TRACKS_READY, // at least one active track, and at least one track has data
344 MIXER_DRAIN_TRACK, // drain currently playing track
345 MIXER_DRAIN_ALL, // fully drain the hardware
Eric Laurent81784c32012-11-19 14:55:58 -0800346 // standby mode does not have an enum value
347 // suspend by audio policy manager is orthogonal to mixer state
348 };
349
Eric Laurentbfb1b832013-01-07 09:53:42 -0800350 // retry count before removing active track in case of underrun on offloaded thread:
351 // we need to make sure that AudioTrack client has enough time to send large buffers
352//FIXME may be more appropriate if expressed in time units. Need to revise how underrun is handled
353 // for offloaded tracks
354 static const int8_t kMaxTrackRetriesOffload = 20;
355
Eric Laurent81784c32012-11-19 14:55:58 -0800356 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
357 audio_io_handle_t id, audio_devices_t device, type_t type);
358 virtual ~PlaybackThread();
359
360 void dump(int fd, const Vector<String16>& args);
361
362 // Thread virtuals
363 virtual status_t readyToRun();
364 virtual bool threadLoop();
365
366 // RefBase
367 virtual void onFirstRef();
368
369protected:
370 // Code snippets that were lifted up out of threadLoop()
371 virtual void threadLoop_mix() = 0;
372 virtual void threadLoop_sleepTime() = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800373 virtual ssize_t threadLoop_write();
374 virtual void threadLoop_drain();
Eric Laurent81784c32012-11-19 14:55:58 -0800375 virtual void threadLoop_standby();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800376 virtual void threadLoop_exit();
Eric Laurent81784c32012-11-19 14:55:58 -0800377 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
378
379 // prepareTracks_l reads and writes mActiveTracks, and returns
380 // the pending set of tracks to remove via Vector 'tracksToRemove'. The caller
381 // is responsible for clearing or destroying this Vector later on, when it
382 // is safe to do so. That will drop the final ref count and destroy the tracks.
383 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800384 void removeTracks_l(const Vector< sp<Track> >& tracksToRemove);
385
386 void writeCallback();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700387 void resetWriteBlocked(uint32_t sequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800388 void drainCallback();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700389 void resetDraining(uint32_t sequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800390
391 static int asyncCallback(stream_callback_event_t event, void *param, void *cookie);
392
393 virtual bool waitingAsyncCallback();
394 virtual bool waitingAsyncCallback_l();
395 virtual bool shouldStandby_l();
396
Eric Laurent81784c32012-11-19 14:55:58 -0800397
398 // ThreadBase virtuals
399 virtual void preExit();
400
401public:
402
403 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
404
405 // return estimated latency in milliseconds, as reported by HAL
406 uint32_t latency() const;
407 // same, but lock must already be held
408 uint32_t latency_l() const;
409
410 void setMasterVolume(float value);
411 void setMasterMute(bool muted);
412
413 void setStreamVolume(audio_stream_type_t stream, float value);
414 void setStreamMute(audio_stream_type_t stream, bool muted);
415
416 float streamVolume(audio_stream_type_t stream) const;
417
418 sp<Track> createTrack_l(
419 const sp<AudioFlinger::Client>& client,
420 audio_stream_type_t streamType,
421 uint32_t sampleRate,
422 audio_format_t format,
423 audio_channel_mask_t channelMask,
424 size_t frameCount,
425 const sp<IMemory>& sharedBuffer,
426 int sessionId,
427 IAudioFlinger::track_flags_t *flags,
428 pid_t tid,
Marco Nelissen9cae2172013-01-14 14:12:05 -0800429 int uid,
Eric Laurent81784c32012-11-19 14:55:58 -0800430 status_t *status);
431
432 AudioStreamOut* getOutput() const;
433 AudioStreamOut* clearOutput();
434 virtual audio_stream_t* stream() const;
435
436 // a very large number of suspend() will eventually wraparound, but unlikely
437 void suspend() { (void) android_atomic_inc(&mSuspended); }
438 void restore()
439 {
440 // if restore() is done without suspend(), get back into
441 // range so that the next suspend() will operate correctly
442 if (android_atomic_dec(&mSuspended) <= 0) {
443 android_atomic_release_store(0, &mSuspended);
444 }
445 }
446 bool isSuspended() const
447 { return android_atomic_acquire_load(&mSuspended) > 0; }
448
449 virtual String8 getParameters(const String8& keys);
450 virtual void audioConfigChanged_l(int event, int param = 0);
451 status_t getRenderPosition(size_t *halFrames, size_t *dspFrames);
452 int16_t *mixBuffer() const { return mMixBuffer; };
453
454 virtual void detachAuxEffect_l(int effectId);
455 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
456 int EffectId);
457 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
458 int EffectId);
459
460 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
461 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
462 virtual uint32_t hasAudioSession(int sessionId) const;
463 virtual uint32_t getStrategyForSession_l(int sessionId);
464
465
466 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
467 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
Glenn Kastenfb1fdc92013-07-10 17:03:19 -0700468
469 // called with AudioFlinger lock held
Eric Laurent81784c32012-11-19 14:55:58 -0800470 void invalidateTracks(audio_stream_type_t streamType);
471
Glenn Kasten9b58f632013-07-16 11:37:48 -0700472 virtual size_t frameCount() const { return mNormalFrameCount; }
473
474 // Return's the HAL's frame count i.e. fast mixer buffer size.
475 size_t frameCountHAL() const { return mFrameCount; }
Eric Laurent81784c32012-11-19 14:55:58 -0800476
Eric Laurentaccc1472013-09-20 09:36:34 -0700477 status_t getTimestamp_l(AudioTimestamp& timestamp);
478
Eric Laurent81784c32012-11-19 14:55:58 -0800479protected:
Glenn Kasten9b58f632013-07-16 11:37:48 -0700480 // updated by readOutputParameters()
481 size_t mNormalFrameCount; // normal mixer and effects
482
Eric Laurentbfb1b832013-01-07 09:53:42 -0800483 int16_t* mMixBuffer; // frame size aligned mix buffer
484 int8_t* mAllocMixBuffer; // mixer buffer allocation address
Eric Laurent81784c32012-11-19 14:55:58 -0800485
486 // suspend count, > 0 means suspended. While suspended, the thread continues to pull from
487 // tracks and mix, but doesn't write to HAL. A2DP and SCO HAL implementations can't handle
488 // concurrent use of both of them, so Audio Policy Service suspends one of the threads to
489 // workaround that restriction.
490 // 'volatile' means accessed via atomic operations and no lock.
491 volatile int32_t mSuspended;
492
493 // FIXME overflows every 6+ hours at 44.1 kHz stereo 16-bit samples
494 // mFramesWritten would be better, or 64-bit even better
495 size_t mBytesWritten;
496private:
497 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
498 // PlaybackThread needs to find out if master-muted, it checks it's local
499 // copy rather than the one in AudioFlinger. This optimization saves a lock.
500 bool mMasterMute;
501 void setMasterMute_l(bool muted) { mMasterMute = muted; }
502protected:
503 SortedVector< wp<Track> > mActiveTracks; // FIXME check if this could be sp<>
Marco Nelissen9cae2172013-01-14 14:12:05 -0800504 SortedVector<int> mWakeLockUids;
505 int mActiveTracksGeneration;
Eric Laurentfd477972013-10-25 18:10:40 -0700506 wp<Track> mLatestActiveTrack; // latest track added to mActiveTracks
Eric Laurent81784c32012-11-19 14:55:58 -0800507
508 // Allocate a track name for a given channel mask.
509 // Returns name >= 0 if successful, -1 on failure.
510 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId) = 0;
511 virtual void deleteTrackName_l(int name) = 0;
512
513 // Time to sleep between cycles when:
514 virtual uint32_t activeSleepTimeUs() const; // mixer state MIXER_TRACKS_ENABLED
515 virtual uint32_t idleSleepTimeUs() const = 0; // mixer state MIXER_IDLE
516 virtual uint32_t suspendSleepTimeUs() const = 0; // audio policy manager suspended us
517 // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write()
518 // No sleep in standby mode; waits on a condition
519
520 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
521 void checkSilentMode_l();
522
523 // Non-trivial for DUPLICATING only
524 virtual void saveOutputTracks() { }
525 virtual void clearOutputTracks() { }
526
527 // Cache various calculated values, at threadLoop() entry and after a parameter change
528 virtual void cacheParameters_l();
529
530 virtual uint32_t correctLatency_l(uint32_t latency) const;
531
532private:
533
534 friend class AudioFlinger; // for numerous
535
536 PlaybackThread(const Client&);
537 PlaybackThread& operator = (const PlaybackThread&);
538
539 status_t addTrack_l(const sp<Track>& track);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800540 bool destroyTrack_l(const sp<Track>& track);
Eric Laurent81784c32012-11-19 14:55:58 -0800541 void removeTrack_l(const sp<Track>& track);
Eric Laurentede6c3b2013-09-19 14:37:46 -0700542 void broadcast_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800543
544 void readOutputParameters();
545
546 virtual void dumpInternals(int fd, const Vector<String16>& args);
547 void dumpTracks(int fd, const Vector<String16>& args);
548
549 SortedVector< sp<Track> > mTracks;
550 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by
551 // DuplicatingThread
552 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
553 AudioStreamOut *mOutput;
554
555 float mMasterVolume;
556 nsecs_t mLastWriteTime;
557 int mNumWrites;
558 int mNumDelayedWrites;
559 bool mInWrite;
560
561 // FIXME rename these former local variables of threadLoop to standard "m" names
562 nsecs_t standbyTime;
563 size_t mixBufferSize;
564
565 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
566 uint32_t activeSleepTime;
567 uint32_t idleSleepTime;
568
569 uint32_t sleepTime;
570
571 // mixer status returned by prepareTracks_l()
572 mixer_state mMixerStatus; // current cycle
573 // previous cycle when in prepareTracks_l()
574 mixer_state mMixerStatusIgnoringFastTracks;
575 // FIXME or a separate ready state per track
576
577 // FIXME move these declarations into the specific sub-class that needs them
578 // MIXER only
579 uint32_t sleepTimeShift;
580
581 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
582 nsecs_t standbyDelay;
583
584 // MIXER only
585 nsecs_t maxPeriod;
586
587 // DUPLICATING only
588 uint32_t writeFrames;
589
Eric Laurentbfb1b832013-01-07 09:53:42 -0800590 size_t mBytesRemaining;
591 size_t mCurrentWriteLength;
592 bool mUseAsyncWrite;
Eric Laurent3b4529e2013-09-05 18:09:19 -0700593 // mWriteAckSequence contains current write sequence on bits 31-1. The write sequence is
594 // incremented each time a write(), a flush() or a standby() occurs.
595 // Bit 0 is set when a write blocks and indicates a callback is expected.
596 // Bit 0 is reset by the async callback thread calling resetWriteBlocked(). Out of sequence
597 // callbacks are ignored.
598 uint32_t mWriteAckSequence;
599 // mDrainSequence contains current drain sequence on bits 31-1. The drain sequence is
600 // incremented each time a drain is requested or a flush() or standby() occurs.
601 // Bit 0 is set when the drain() command is called at the HAL and indicates a callback is
602 // expected.
603 // Bit 0 is reset by the async callback thread calling resetDraining(). Out of sequence
604 // callbacks are ignored.
605 uint32_t mDrainSequence;
Eric Laurentede6c3b2013-09-19 14:37:46 -0700606 // A condition that must be evaluated by prepareTrack_l() has changed and we must not wait
607 // for async write callback in the thread loop before evaluating it
Eric Laurentbfb1b832013-01-07 09:53:42 -0800608 bool mSignalPending;
609 sp<AsyncCallbackThread> mCallbackThread;
610
Eric Laurent81784c32012-11-19 14:55:58 -0800611private:
612 // The HAL output sink is treated as non-blocking, but current implementation is blocking
613 sp<NBAIO_Sink> mOutputSink;
614 // If a fast mixer is present, the blocking pipe sink, otherwise clear
615 sp<NBAIO_Sink> mPipeSink;
616 // The current sink for the normal mixer to write it's (sub)mix, mOutputSink or mPipeSink
617 sp<NBAIO_Sink> mNormalSink;
Glenn Kasten46909e72013-02-26 09:20:22 -0800618#ifdef TEE_SINK
Eric Laurent81784c32012-11-19 14:55:58 -0800619 // For dumpsys
620 sp<NBAIO_Sink> mTeeSink;
621 sp<NBAIO_Source> mTeeSource;
Glenn Kasten46909e72013-02-26 09:20:22 -0800622#endif
Eric Laurent81784c32012-11-19 14:55:58 -0800623 uint32_t mScreenState; // cached copy of gScreenState
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800624 static const size_t kFastMixerLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800625 sp<NBLog::Writer> mFastMixerNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800626public:
627 virtual bool hasFastMixer() const = 0;
628 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const
629 { FastTrackUnderruns dummy; return dummy; }
630
631protected:
632 // accessed by both binder threads and within threadLoop(), lock on mutex needed
633 unsigned mFastTrackAvailMask; // bit i set if fast track [i] is available
Eric Laurentbfb1b832013-01-07 09:53:42 -0800634 virtual void flushOutput_l();
Glenn Kastenbd096fd2013-08-23 13:53:56 -0700635
636private:
637 // timestamp latch:
638 // D input is written by threadLoop_write while mutex is unlocked, and read while locked
639 // Q output is written while locked, and read while locked
640 struct {
641 AudioTimestamp mTimestamp;
642 uint32_t mUnpresentedFrames;
643 } mLatchD, mLatchQ;
644 bool mLatchDValid; // true means mLatchD is valid, and clock it into latch at next opportunity
645 bool mLatchQValid; // true means mLatchQ is valid
Eric Laurent81784c32012-11-19 14:55:58 -0800646};
647
648class MixerThread : public PlaybackThread {
649public:
650 MixerThread(const sp<AudioFlinger>& audioFlinger,
651 AudioStreamOut* output,
652 audio_io_handle_t id,
653 audio_devices_t device,
654 type_t type = MIXER);
655 virtual ~MixerThread();
656
657 // Thread virtuals
658
659 virtual bool checkForNewParameters_l();
660 virtual void dumpInternals(int fd, const Vector<String16>& args);
661
662protected:
663 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
664 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
665 virtual void deleteTrackName_l(int name);
666 virtual uint32_t idleSleepTimeUs() const;
667 virtual uint32_t suspendSleepTimeUs() const;
668 virtual void cacheParameters_l();
669
670 // threadLoop snippets
Eric Laurentbfb1b832013-01-07 09:53:42 -0800671 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800672 virtual void threadLoop_standby();
673 virtual void threadLoop_mix();
674 virtual void threadLoop_sleepTime();
675 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
676 virtual uint32_t correctLatency_l(uint32_t latency) const;
677
678 AudioMixer* mAudioMixer; // normal mixer
679private:
680 // one-time initialization, no locks required
681 FastMixer* mFastMixer; // non-NULL if there is also a fast mixer
682 sp<AudioWatchdog> mAudioWatchdog; // non-0 if there is an audio watchdog thread
683
684 // contents are not guaranteed to be consistent, no locks required
685 FastMixerDumpState mFastMixerDumpState;
686#ifdef STATE_QUEUE_DUMP
687 StateQueueObserverDump mStateQueueObserverDump;
688 StateQueueMutatorDump mStateQueueMutatorDump;
689#endif
690 AudioWatchdogDump mAudioWatchdogDump;
691
692 // accessible only within the threadLoop(), no locks required
693 // mFastMixer->sq() // for mutating and pushing state
694 int32_t mFastMixerFutex; // for cold idle
695
696public:
697 virtual bool hasFastMixer() const { return mFastMixer != NULL; }
698 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const {
699 ALOG_ASSERT(fastIndex < FastMixerState::kMaxFastTracks);
700 return mFastMixerDumpState.mTracks[fastIndex].mUnderruns;
701 }
702};
703
704class DirectOutputThread : public PlaybackThread {
705public:
706
707 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
708 audio_io_handle_t id, audio_devices_t device);
709 virtual ~DirectOutputThread();
710
711 // Thread virtuals
712
713 virtual bool checkForNewParameters_l();
714
715protected:
716 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
717 virtual void deleteTrackName_l(int name);
718 virtual uint32_t activeSleepTimeUs() const;
719 virtual uint32_t idleSleepTimeUs() const;
720 virtual uint32_t suspendSleepTimeUs() const;
721 virtual void cacheParameters_l();
722
723 // threadLoop snippets
724 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
725 virtual void threadLoop_mix();
726 virtual void threadLoop_sleepTime();
727
Eric Laurent81784c32012-11-19 14:55:58 -0800728 // volumes last sent to audio HAL with stream->set_volume()
729 float mLeftVolFloat;
730 float mRightVolFloat;
731
Eric Laurentbfb1b832013-01-07 09:53:42 -0800732 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
733 audio_io_handle_t id, uint32_t device, ThreadBase::type_t type);
734 void processVolume_l(Track *track, bool lastTrack);
735
Eric Laurent81784c32012-11-19 14:55:58 -0800736 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
737 sp<Track> mActiveTrack;
738public:
739 virtual bool hasFastMixer() const { return false; }
740};
741
Eric Laurentbfb1b832013-01-07 09:53:42 -0800742class OffloadThread : public DirectOutputThread {
743public:
744
745 OffloadThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
746 audio_io_handle_t id, uint32_t device);
Eric Laurent6a51d7e2013-10-17 18:59:26 -0700747 virtual ~OffloadThread() {};
Eric Laurentbfb1b832013-01-07 09:53:42 -0800748
749protected:
750 // threadLoop snippets
751 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
752 virtual void threadLoop_exit();
753 virtual void flushOutput_l();
754
755 virtual bool waitingAsyncCallback();
756 virtual bool waitingAsyncCallback_l();
757 virtual bool shouldStandby_l();
758
759private:
760 void flushHw_l();
761
762private:
763 bool mHwPaused;
764 bool mFlushPending;
765 size_t mPausedWriteLength; // length in bytes of write interrupted by pause
766 size_t mPausedBytesRemaining; // bytes still waiting in mixbuffer after resume
Eric Laurentd7e59222013-11-15 12:02:28 -0800767 wp<Track> mPreviousTrack; // used to detect track switch
Eric Laurentbfb1b832013-01-07 09:53:42 -0800768};
769
770class AsyncCallbackThread : public Thread {
771public:
772
Eric Laurent4de95592013-09-26 15:28:21 -0700773 AsyncCallbackThread(const wp<PlaybackThread>& playbackThread);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800774
775 virtual ~AsyncCallbackThread();
776
777 // Thread virtuals
778 virtual bool threadLoop();
779
780 // RefBase
781 virtual void onFirstRef();
782
783 void exit();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700784 void setWriteBlocked(uint32_t sequence);
785 void resetWriteBlocked();
786 void setDraining(uint32_t sequence);
787 void resetDraining();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800788
789private:
Eric Laurent4de95592013-09-26 15:28:21 -0700790 const wp<PlaybackThread> mPlaybackThread;
Eric Laurent3b4529e2013-09-05 18:09:19 -0700791 // mWriteAckSequence corresponds to the last write sequence passed by the offload thread via
792 // setWriteBlocked(). The sequence is shifted one bit to the left and the lsb is used
793 // to indicate that the callback has been received via resetWriteBlocked()
Eric Laurent4de95592013-09-26 15:28:21 -0700794 uint32_t mWriteAckSequence;
Eric Laurent3b4529e2013-09-05 18:09:19 -0700795 // mDrainSequence corresponds to the last drain sequence passed by the offload thread via
796 // setDraining(). The sequence is shifted one bit to the left and the lsb is used
797 // to indicate that the callback has been received via resetDraining()
Eric Laurent4de95592013-09-26 15:28:21 -0700798 uint32_t mDrainSequence;
799 Condition mWaitWorkCV;
800 Mutex mLock;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800801};
802
Eric Laurent81784c32012-11-19 14:55:58 -0800803class DuplicatingThread : public MixerThread {
804public:
805 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
806 audio_io_handle_t id);
807 virtual ~DuplicatingThread();
808
809 // Thread virtuals
810 void addOutputTrack(MixerThread* thread);
811 void removeOutputTrack(MixerThread* thread);
812 uint32_t waitTimeMs() const { return mWaitTimeMs; }
813protected:
814 virtual uint32_t activeSleepTimeUs() const;
815
816private:
817 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
818protected:
819 // threadLoop snippets
820 virtual void threadLoop_mix();
821 virtual void threadLoop_sleepTime();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800822 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800823 virtual void threadLoop_standby();
824 virtual void cacheParameters_l();
825
826private:
827 // called from threadLoop, addOutputTrack, removeOutputTrack
828 virtual void updateWaitTime_l();
829protected:
830 virtual void saveOutputTracks();
831 virtual void clearOutputTracks();
832private:
833
834 uint32_t mWaitTimeMs;
835 SortedVector < sp<OutputTrack> > outputTracks;
836 SortedVector < sp<OutputTrack> > mOutputTracks;
837public:
838 virtual bool hasFastMixer() const { return false; }
839};
840
841
842// record thread
843class RecordThread : public ThreadBase, public AudioBufferProvider
844 // derives from AudioBufferProvider interface for use by resampler
845{
846public:
847
848#include "RecordTracks.h"
849
850 RecordThread(const sp<AudioFlinger>& audioFlinger,
851 AudioStreamIn *input,
852 uint32_t sampleRate,
853 audio_channel_mask_t channelMask,
854 audio_io_handle_t id,
Eric Laurentd3922f72013-02-01 17:57:04 -0800855 audio_devices_t outDevice,
Glenn Kasten46909e72013-02-26 09:20:22 -0800856 audio_devices_t inDevice
857#ifdef TEE_SINK
858 , const sp<NBAIO_Sink>& teeSink
859#endif
860 );
Eric Laurent81784c32012-11-19 14:55:58 -0800861 virtual ~RecordThread();
862
863 // no addTrack_l ?
864 void destroyTrack_l(const sp<RecordTrack>& track);
865 void removeTrack_l(const sp<RecordTrack>& track);
866
867 void dumpInternals(int fd, const Vector<String16>& args);
868 void dumpTracks(int fd, const Vector<String16>& args);
869
870 // Thread virtuals
871 virtual bool threadLoop();
872 virtual status_t readyToRun();
873
874 // RefBase
875 virtual void onFirstRef();
876
877 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
878 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
879 const sp<AudioFlinger::Client>& client,
880 uint32_t sampleRate,
881 audio_format_t format,
882 audio_channel_mask_t channelMask,
883 size_t frameCount,
884 int sessionId,
Marco Nelissen9cae2172013-01-14 14:12:05 -0800885 int uid,
Glenn Kastenddb0ccf2013-07-31 16:14:50 -0700886 IAudioFlinger::track_flags_t *flags,
Eric Laurent81784c32012-11-19 14:55:58 -0800887 pid_t tid,
888 status_t *status);
889
890 status_t start(RecordTrack* recordTrack,
891 AudioSystem::sync_event_t event,
892 int triggerSession);
893
894 // ask the thread to stop the specified track, and
895 // return true if the caller should then do it's part of the stopping process
Glenn Kastena8356f62013-07-25 14:37:52 -0700896 bool stop(RecordTrack* recordTrack);
Eric Laurent81784c32012-11-19 14:55:58 -0800897
898 void dump(int fd, const Vector<String16>& args);
899 AudioStreamIn* clearInput();
900 virtual audio_stream_t* stream() const;
901
902 // AudioBufferProvider interface
903 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
904 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
905
906 virtual bool checkForNewParameters_l();
907 virtual String8 getParameters(const String8& keys);
908 virtual void audioConfigChanged_l(int event, int param = 0);
909 void readInputParameters();
910 virtual unsigned int getInputFramesLost();
911
912 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
913 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
914 virtual uint32_t hasAudioSession(int sessionId) const;
915
916 // Return the set of unique session IDs across all tracks.
917 // The keys are the session IDs, and the associated values are meaningless.
918 // FIXME replace by Set [and implement Bag/Multiset for other uses].
919 KeyedVector<int, bool> sessionIds() const;
920
921 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
922 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
923
924 static void syncStartEventCallback(const wp<SyncEvent>& event);
925 void handleSyncStartEvent(const sp<SyncEvent>& event);
926
Glenn Kasten9b58f632013-07-16 11:37:48 -0700927 virtual size_t frameCount() const { return mFrameCount; }
Glenn Kasten90e58b12013-07-31 16:16:02 -0700928 bool hasFastRecorder() const { return false; }
Glenn Kasten9b58f632013-07-16 11:37:48 -0700929
Eric Laurent81784c32012-11-19 14:55:58 -0800930private:
931 void clearSyncStartEvent();
932
933 // Enter standby if not already in standby, and set mStandby flag
934 void standby();
935
936 // Call the HAL standby method unconditionally, and don't change mStandby flag
937 void inputStandBy();
938
939 AudioStreamIn *mInput;
940 SortedVector < sp<RecordTrack> > mTracks;
941 // mActiveTrack has dual roles: it indicates the current active track, and
942 // is used together with mStartStopCond to indicate start()/stop() progress
943 sp<RecordTrack> mActiveTrack;
944 Condition mStartStopCond;
Glenn Kasten9b58f632013-07-16 11:37:48 -0700945
946 // updated by RecordThread::readInputParameters()
Eric Laurent81784c32012-11-19 14:55:58 -0800947 AudioResampler *mResampler;
Glenn Kasten34af0262013-07-30 11:52:39 -0700948 // interleaved stereo pairs of fixed-point signed Q19.12
Eric Laurent81784c32012-11-19 14:55:58 -0800949 int32_t *mRsmpOutBuffer;
Glenn Kasten34af0262013-07-30 11:52:39 -0700950 int16_t *mRsmpInBuffer; // [mFrameCount * mChannelCount]
Eric Laurent81784c32012-11-19 14:55:58 -0800951 size_t mRsmpInIndex;
Glenn Kasten548efc92012-11-29 08:48:51 -0800952 size_t mBufferSize; // stream buffer size for read()
Eric Laurent81784c32012-11-19 14:55:58 -0800953 const uint32_t mReqChannelCount;
954 const uint32_t mReqSampleRate;
955 ssize_t mBytesRead;
956 // sync event triggering actual audio capture. Frames read before this event will
957 // be dropped and therefore not read by the application.
958 sp<SyncEvent> mSyncStartEvent;
959 // number of captured frames to drop after the start sync event has been received.
960 // when < 0, maximum frames to drop before starting capture even if sync event is
961 // not received
962 ssize_t mFramestoDrop;
963
964 // For dumpsys
965 const sp<NBAIO_Sink> mTeeSink;
Eric Laurent81784c32012-11-19 14:55:58 -0800966};