OSDN Git Service

legacy: move legacy audio code from frameworks/base here
[android-x86/hardware-libhardware_legacy.git] / audio / A2dpAudioInterface.cpp
1 /*
2  * Copyright (C) 2008 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 #include <math.h>
18
19 //#define LOG_NDEBUG 0
20 #define LOG_TAG "A2dpAudioInterface"
21 #include <utils/Log.h>
22 #include <utils/String8.h>
23
24 #include "A2dpAudioInterface.h"
25 #include "audio/liba2dp.h"
26 #include <hardware_legacy/power.h>
27
28 namespace android {
29
30 static const char *sA2dpWakeLock = "A2dpOutputStream";
31 #define MAX_WRITE_RETRIES  5
32
33 // ----------------------------------------------------------------------------
34
35 //AudioHardwareInterface* A2dpAudioInterface::createA2dpInterface()
36 //{
37 //    AudioHardwareInterface* hw = 0;
38 //
39 //    hw = AudioHardwareInterface::create();
40 //    LOGD("new A2dpAudioInterface(hw: %p)", hw);
41 //    hw = new A2dpAudioInterface(hw);
42 //    return hw;
43 //}
44
45 A2dpAudioInterface::A2dpAudioInterface(AudioHardwareInterface* hw) :
46     mOutput(0), mHardwareInterface(hw), mBluetoothEnabled(true), mSuspended(false)
47 {
48 }
49
50 A2dpAudioInterface::~A2dpAudioInterface()
51 {
52     closeOutputStream((AudioStreamOut *)mOutput);
53     delete mHardwareInterface;
54 }
55
56 status_t A2dpAudioInterface::initCheck()
57 {
58     if (mHardwareInterface == 0) return NO_INIT;
59     return mHardwareInterface->initCheck();
60 }
61
62 AudioStreamOut* A2dpAudioInterface::openOutputStream(
63         uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
64 {
65     if (!AudioSystem::isA2dpDevice((AudioSystem::audio_devices)devices)) {
66         LOGV("A2dpAudioInterface::openOutputStream() open HW device: %x", devices);
67         return mHardwareInterface->openOutputStream(devices, format, channels, sampleRate, status);
68     }
69
70     status_t err = 0;
71
72     // only one output stream allowed
73     if (mOutput) {
74         if (status)
75             *status = -1;
76         return NULL;
77     }
78
79     // create new output stream
80     A2dpAudioStreamOut* out = new A2dpAudioStreamOut();
81     if ((err = out->set(devices, format, channels, sampleRate)) == NO_ERROR) {
82         mOutput = out;
83         mOutput->setBluetoothEnabled(mBluetoothEnabled);
84         mOutput->setSuspended(mSuspended);
85     } else {
86         delete out;
87     }
88
89     if (status)
90         *status = err;
91     return mOutput;
92 }
93
94 void A2dpAudioInterface::closeOutputStream(AudioStreamOut* out) {
95     if (mOutput == 0 || mOutput != out) {
96         mHardwareInterface->closeOutputStream(out);
97     }
98     else {
99         delete mOutput;
100         mOutput = 0;
101     }
102 }
103
104
105 AudioStreamIn* A2dpAudioInterface::openInputStream(
106         uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status,
107         AudioSystem::audio_in_acoustics acoustics)
108 {
109     return mHardwareInterface->openInputStream(devices, format, channels, sampleRate, status, acoustics);
110 }
111
112 void A2dpAudioInterface::closeInputStream(AudioStreamIn* in)
113 {
114     return mHardwareInterface->closeInputStream(in);
115 }
116
117 status_t A2dpAudioInterface::setMode(int mode)
118 {
119     return mHardwareInterface->setMode(mode);
120 }
121
122 status_t A2dpAudioInterface::setMicMute(bool state)
123 {
124     return mHardwareInterface->setMicMute(state);
125 }
126
127 status_t A2dpAudioInterface::getMicMute(bool* state)
128 {
129     return mHardwareInterface->getMicMute(state);
130 }
131
132 status_t A2dpAudioInterface::setParameters(const String8& keyValuePairs)
133 {
134     AudioParameter param = AudioParameter(keyValuePairs);
135     String8 value;
136     String8 key;
137     status_t status = NO_ERROR;
138
139     LOGV("setParameters() %s", keyValuePairs.string());
140
141     key = "bluetooth_enabled";
142     if (param.get(key, value) == NO_ERROR) {
143         mBluetoothEnabled = (value == "true");
144         if (mOutput) {
145             mOutput->setBluetoothEnabled(mBluetoothEnabled);
146         }
147         param.remove(key);
148     }
149     key = String8("A2dpSuspended");
150     if (param.get(key, value) == NO_ERROR) {
151         mSuspended = (value == "true");
152         if (mOutput) {
153             mOutput->setSuspended(mSuspended);
154         }
155         param.remove(key);
156     }
157
158     if (param.size()) {
159         status_t hwStatus = mHardwareInterface->setParameters(param.toString());
160         if (status == NO_ERROR) {
161             status = hwStatus;
162         }
163     }
164
165     return status;
166 }
167
168 String8 A2dpAudioInterface::getParameters(const String8& keys)
169 {
170     AudioParameter param = AudioParameter(keys);
171     AudioParameter a2dpParam = AudioParameter();
172     String8 value;
173     String8 key;
174
175     key = "bluetooth_enabled";
176     if (param.get(key, value) == NO_ERROR) {
177         value = mBluetoothEnabled ? "true" : "false";
178         a2dpParam.add(key, value);
179         param.remove(key);
180     }
181     key = "A2dpSuspended";
182     if (param.get(key, value) == NO_ERROR) {
183         value = mSuspended ? "true" : "false";
184         a2dpParam.add(key, value);
185         param.remove(key);
186     }
187
188     String8 keyValuePairs  = a2dpParam.toString();
189
190     if (param.size()) {
191         if (keyValuePairs != "") {
192             keyValuePairs += ";";
193         }
194         keyValuePairs += mHardwareInterface->getParameters(param.toString());
195     }
196
197     LOGV("getParameters() %s", keyValuePairs.string());
198     return keyValuePairs;
199 }
200
201 size_t A2dpAudioInterface::getInputBufferSize(uint32_t sampleRate, int format, int channelCount)
202 {
203     return mHardwareInterface->getInputBufferSize(sampleRate, format, channelCount);
204 }
205
206 status_t A2dpAudioInterface::setVoiceVolume(float v)
207 {
208     return mHardwareInterface->setVoiceVolume(v);
209 }
210
211 status_t A2dpAudioInterface::setMasterVolume(float v)
212 {
213     return mHardwareInterface->setMasterVolume(v);
214 }
215
216 status_t A2dpAudioInterface::dump(int fd, const Vector<String16>& args)
217 {
218     return mHardwareInterface->dumpState(fd, args);
219 }
220
221 // ----------------------------------------------------------------------------
222
223 A2dpAudioInterface::A2dpAudioStreamOut::A2dpAudioStreamOut() :
224     mFd(-1), mStandby(true), mStartCount(0), mRetryCount(0), mData(NULL),
225     // assume BT enabled to start, this is safe because its only the
226     // enabled->disabled transition we are worried about
227     mBluetoothEnabled(true), mDevice(0), mClosing(false), mSuspended(false)
228 {
229     // use any address by default
230     strcpy(mA2dpAddress, "00:00:00:00:00:00");
231     init();
232 }
233
234 status_t A2dpAudioInterface::A2dpAudioStreamOut::set(
235         uint32_t device, int *pFormat, uint32_t *pChannels, uint32_t *pRate)
236 {
237     int lFormat = pFormat ? *pFormat : 0;
238     uint32_t lChannels = pChannels ? *pChannels : 0;
239     uint32_t lRate = pRate ? *pRate : 0;
240
241     LOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
242
243     // fix up defaults
244     if (lFormat == 0) lFormat = format();
245     if (lChannels == 0) lChannels = channels();
246     if (lRate == 0) lRate = sampleRate();
247
248     // check values
249     if ((lFormat != format()) ||
250             (lChannels != channels()) ||
251             (lRate != sampleRate())){
252         if (pFormat) *pFormat = format();
253         if (pChannels) *pChannels = channels();
254         if (pRate) *pRate = sampleRate();
255         return BAD_VALUE;
256     }
257
258     if (pFormat) *pFormat = lFormat;
259     if (pChannels) *pChannels = lChannels;
260     if (pRate) *pRate = lRate;
261
262     mDevice = device;
263     mBufferDurationUs = ((bufferSize() * 1000 )/ frameSize() / sampleRate()) * 1000;
264     return NO_ERROR;
265 }
266
267 A2dpAudioInterface::A2dpAudioStreamOut::~A2dpAudioStreamOut()
268 {
269     LOGV("A2dpAudioStreamOut destructor");
270     close();
271     LOGV("A2dpAudioStreamOut destructor returning from close()");
272 }
273
274 ssize_t A2dpAudioInterface::A2dpAudioStreamOut::write(const void* buffer, size_t bytes)
275 {
276     status_t status = -1;
277     {
278         Mutex::Autolock lock(mLock);
279
280         size_t remaining = bytes;
281
282         if (!mBluetoothEnabled || mClosing || mSuspended) {
283             LOGV("A2dpAudioStreamOut::write(), but bluetooth disabled \
284                    mBluetoothEnabled %d, mClosing %d, mSuspended %d",
285                     mBluetoothEnabled, mClosing, mSuspended);
286             goto Error;
287         }
288
289         if (mStandby) {
290             acquire_wake_lock (PARTIAL_WAKE_LOCK, sA2dpWakeLock);
291             mStandby = false;
292             mLastWriteTime = systemTime();
293         }
294
295         status = init();
296         if (status < 0)
297             goto Error;
298
299         int retries = MAX_WRITE_RETRIES;
300         while (remaining > 0 && retries) {
301             status = a2dp_write(mData, buffer, remaining);
302             if (status < 0) {
303                 LOGE("a2dp_write failed err: %d\n", status);
304                 goto Error;
305             }
306             if (status == 0) {
307                 retries--;
308             }
309             remaining -= status;
310             buffer = (char *)buffer + status;
311         }
312
313         // if A2DP sink runs abnormally fast, sleep a little so that audioflinger mixer thread
314         // does no spin and starve other threads.
315         // NOTE: It is likely that the A2DP headset is being disconnected
316         nsecs_t now = systemTime();
317         if ((uint32_t)ns2us(now - mLastWriteTime) < (mBufferDurationUs >> 2)) {
318             LOGV("A2DP sink runs too fast");
319             usleep(mBufferDurationUs - (uint32_t)ns2us(now - mLastWriteTime));
320         }
321         mLastWriteTime = now;
322         return bytes;
323
324     }
325 Error:
326
327     standby();
328
329     // Simulate audio output timing in case of error
330     usleep(mBufferDurationUs);
331
332     return status;
333 }
334
335 status_t A2dpAudioInterface::A2dpAudioStreamOut::init()
336 {
337     if (!mData) {
338         status_t status = a2dp_init(44100, 2, &mData);
339         if (status < 0) {
340             LOGE("a2dp_init failed err: %d\n", status);
341             mData = NULL;
342             return status;
343         }
344         a2dp_set_sink(mData, mA2dpAddress);
345     }
346
347     return 0;
348 }
349
350 status_t A2dpAudioInterface::A2dpAudioStreamOut::standby()
351 {
352     Mutex::Autolock lock(mLock);
353     return standby_l();
354 }
355
356 status_t A2dpAudioInterface::A2dpAudioStreamOut::standby_l()
357 {
358     int result = NO_ERROR;
359
360     if (!mStandby) {
361         LOGV_IF(mClosing || !mBluetoothEnabled, "Standby skip stop: closing %d enabled %d",
362                 mClosing, mBluetoothEnabled);
363         if (!mClosing && mBluetoothEnabled) {
364             result = a2dp_stop(mData);
365         }
366         release_wake_lock(sA2dpWakeLock);
367         mStandby = true;
368     }
369
370     return result;
371 }
372
373 status_t A2dpAudioInterface::A2dpAudioStreamOut::setParameters(const String8& keyValuePairs)
374 {
375     AudioParameter param = AudioParameter(keyValuePairs);
376     String8 value;
377     String8 key = String8("a2dp_sink_address");
378     status_t status = NO_ERROR;
379     int device;
380     LOGV("A2dpAudioStreamOut::setParameters() %s", keyValuePairs.string());
381
382     if (param.get(key, value) == NO_ERROR) {
383         if (value.length() != strlen("00:00:00:00:00:00")) {
384             status = BAD_VALUE;
385         } else {
386             setAddress(value.string());
387         }
388         param.remove(key);
389     }
390     key = String8("closing");
391     if (param.get(key, value) == NO_ERROR) {
392         mClosing = (value == "true");
393         if (mClosing) {
394             standby();
395         }
396         param.remove(key);
397     }
398     key = AudioParameter::keyRouting;
399     if (param.getInt(key, device) == NO_ERROR) {
400         if (AudioSystem::isA2dpDevice((AudioSystem::audio_devices)device)) {
401             mDevice = device;
402             status = NO_ERROR;
403         } else {
404             status = BAD_VALUE;
405         }
406         param.remove(key);
407     }
408
409     if (param.size()) {
410         status = BAD_VALUE;
411     }
412     return status;
413 }
414
415 String8 A2dpAudioInterface::A2dpAudioStreamOut::getParameters(const String8& keys)
416 {
417     AudioParameter param = AudioParameter(keys);
418     String8 value;
419     String8 key = String8("a2dp_sink_address");
420
421     if (param.get(key, value) == NO_ERROR) {
422         value = mA2dpAddress;
423         param.add(key, value);
424     }
425     key = AudioParameter::keyRouting;
426     if (param.get(key, value) == NO_ERROR) {
427         param.addInt(key, (int)mDevice);
428     }
429
430     LOGV("A2dpAudioStreamOut::getParameters() %s", param.toString().string());
431     return param.toString();
432 }
433
434 status_t A2dpAudioInterface::A2dpAudioStreamOut::setAddress(const char* address)
435 {
436     Mutex::Autolock lock(mLock);
437
438     if (strlen(address) != strlen("00:00:00:00:00:00"))
439         return -EINVAL;
440
441     strcpy(mA2dpAddress, address);
442     if (mData)
443         a2dp_set_sink(mData, mA2dpAddress);
444
445     return NO_ERROR;
446 }
447
448 status_t A2dpAudioInterface::A2dpAudioStreamOut::setBluetoothEnabled(bool enabled)
449 {
450     LOGD("setBluetoothEnabled %d", enabled);
451
452     Mutex::Autolock lock(mLock);
453
454     mBluetoothEnabled = enabled;
455     if (!enabled) {
456         return close_l();
457     }
458     return NO_ERROR;
459 }
460
461 status_t A2dpAudioInterface::A2dpAudioStreamOut::setSuspended(bool onOff)
462 {
463     LOGV("setSuspended %d", onOff);
464     mSuspended = onOff;
465     standby();
466     return NO_ERROR;
467 }
468
469 status_t A2dpAudioInterface::A2dpAudioStreamOut::close()
470 {
471     Mutex::Autolock lock(mLock);
472     LOGV("A2dpAudioStreamOut::close() calling close_l()");
473     return close_l();
474 }
475
476 status_t A2dpAudioInterface::A2dpAudioStreamOut::close_l()
477 {
478     standby_l();
479     if (mData) {
480         LOGV("A2dpAudioStreamOut::close_l() calling a2dp_cleanup(mData)");
481         a2dp_cleanup(mData);
482         mData = NULL;
483     }
484     return NO_ERROR;
485 }
486
487 status_t A2dpAudioInterface::A2dpAudioStreamOut::dump(int fd, const Vector<String16>& args)
488 {
489     return NO_ERROR;
490 }
491
492 status_t A2dpAudioInterface::A2dpAudioStreamOut::getRenderPosition(uint32_t *driverFrames)
493 {
494     //TODO: enable when supported by driver
495     return INVALID_OPERATION;
496 }
497
498 }; // namespace android