1/*
2 * Copyright (C) 2011 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 "legacy_audio_policy_hal"
18//#define LOG_NDEBUG 0
19
20#include <stdint.h>
21
22#include <hardware/hardware.h>
23#include <system/audio.h>
24#include <system/audio_policy.h>
25#include <hardware/audio_policy.h>
26
27#include <hardware_legacy/AudioPolicyInterface.h>
28#include <hardware_legacy/AudioSystemLegacy.h>
29
30#include "AudioPolicyCompatClient.h"
31
32namespace android_audio_legacy {
33
34extern "C" {
35
36struct legacy_ap_module {
37    struct audio_policy_module module;
38};
39
40struct legacy_ap_device {
41    struct audio_policy_device device;
42};
43
44struct legacy_audio_policy {
45    struct audio_policy policy;
46
47    void *service;
48    struct audio_policy_service_ops *aps_ops;
49    AudioPolicyCompatClient *service_client;
50    AudioPolicyInterface *apm;
51};
52
53static inline struct legacy_audio_policy * to_lap(struct audio_policy *pol)
54{
55    return reinterpret_cast<struct legacy_audio_policy *>(pol);
56}
57
58static inline const struct legacy_audio_policy * to_clap(const struct audio_policy *pol)
59{
60    return reinterpret_cast<const struct legacy_audio_policy *>(pol);
61}
62
63
64static int ap_set_device_connection_state(struct audio_policy *pol,
65                                          audio_devices_t device,
66                                          audio_policy_dev_state_t state,
67                                          const char *device_address)
68{
69    struct legacy_audio_policy *lap = to_lap(pol);
70    return lap->apm->setDeviceConnectionState(
71                    (AudioSystem::audio_devices)device,
72                    (AudioSystem::device_connection_state)state,
73                    device_address);
74}
75
76static audio_policy_dev_state_t ap_get_device_connection_state(
77                                            const struct audio_policy *pol,
78                                            audio_devices_t device,
79                                            const char *device_address)
80{
81    const struct legacy_audio_policy *lap = to_clap(pol);
82    return (audio_policy_dev_state_t)lap->apm->getDeviceConnectionState(
83                    (AudioSystem::audio_devices)device,
84                    device_address);
85}
86
87static void ap_set_phone_state(struct audio_policy *pol, audio_mode_t state)
88{
89    struct legacy_audio_policy *lap = to_lap(pol);
90    // as this is the legacy API, don't change it to use audio_mode_t instead of int
91    lap->apm->setPhoneState((int) state);
92}
93
94    /* indicate a change in ringer mode */
95static void ap_set_ringer_mode(struct audio_policy *pol, uint32_t mode,
96                               uint32_t mask)
97{
98    // deprecated, never called
99}
100
101    /* force using a specific device category for the specified usage */
102static void ap_set_force_use(struct audio_policy *pol,
103                          audio_policy_force_use_t usage,
104                          audio_policy_forced_cfg_t config)
105{
106    struct legacy_audio_policy *lap = to_lap(pol);
107    lap->apm->setForceUse((AudioSystem::force_use)usage,
108                          (AudioSystem::forced_config)config);
109}
110
111    /* retreive current device category forced for a given usage */
112static audio_policy_forced_cfg_t ap_get_force_use(
113                                               const struct audio_policy *pol,
114                                               audio_policy_force_use_t usage)
115{
116    const struct legacy_audio_policy *lap = to_clap(pol);
117    return (audio_policy_forced_cfg_t)lap->apm->getForceUse(
118                          (AudioSystem::force_use)usage);
119}
120
121/* if can_mute is true, then audio streams that are marked ENFORCED_AUDIBLE
122 * can still be muted. */
123static void ap_set_can_mute_enforced_audible(struct audio_policy *pol,
124                                             bool can_mute)
125{
126    struct legacy_audio_policy *lap = to_lap(pol);
127    lap->apm->setSystemProperty("ro.camera.sound.forced", can_mute ? "0" : "1");
128}
129
130static int ap_init_check(const struct audio_policy *pol)
131{
132    const struct legacy_audio_policy *lap = to_clap(pol);
133    return lap->apm->initCheck();
134}
135
136static audio_io_handle_t ap_get_output(struct audio_policy *pol,
137                                       audio_stream_type_t stream,
138                                       uint32_t sampling_rate,
139                                       audio_format_t format,
140                                       audio_channel_mask_t channelMask,
141                                       audio_output_flags_t flags)
142{
143    struct legacy_audio_policy *lap = to_lap(pol);
144
145    ALOGV("%s: tid %d", __func__, gettid());
146    return lap->apm->getOutput((AudioSystem::stream_type)stream,
147                               sampling_rate, (int) format, channelMask,
148                               (AudioSystem::output_flags)flags);
149}
150
151static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output,
152                           audio_stream_type_t stream, int session)
153{
154    struct legacy_audio_policy *lap = to_lap(pol);
155    return lap->apm->startOutput(output, (AudioSystem::stream_type)stream,
156                                 session);
157}
158
159static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output,
160                          audio_stream_type_t stream, int session)
161{
162    struct legacy_audio_policy *lap = to_lap(pol);
163    return lap->apm->stopOutput(output, (AudioSystem::stream_type)stream,
164                                session);
165}
166
167static void ap_release_output(struct audio_policy *pol,
168                              audio_io_handle_t output)
169{
170    struct legacy_audio_policy *lap = to_lap(pol);
171    lap->apm->releaseOutput(output);
172}
173
174static audio_io_handle_t ap_get_input(struct audio_policy *pol, audio_source_t inputSource,
175                                      uint32_t sampling_rate,
176                                      audio_format_t format,
177                                      audio_channel_mask_t channelMask,
178                                      audio_in_acoustics_t acoustics)
179{
180    struct legacy_audio_policy *lap = to_lap(pol);
181    return lap->apm->getInput((int) inputSource, sampling_rate, (int) format, channelMask,
182                              (AudioSystem::audio_in_acoustics)acoustics);
183}
184
185static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input)
186{
187    struct legacy_audio_policy *lap = to_lap(pol);
188    return lap->apm->startInput(input);
189}
190
191static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input)
192{
193    struct legacy_audio_policy *lap = to_lap(pol);
194    return lap->apm->stopInput(input);
195}
196
197static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input)
198{
199    struct legacy_audio_policy *lap = to_lap(pol);
200    lap->apm->releaseInput(input);
201}
202
203static void ap_init_stream_volume(struct audio_policy *pol,
204                                  audio_stream_type_t stream, int index_min,
205                                  int index_max)
206{
207    struct legacy_audio_policy *lap = to_lap(pol);
208    lap->apm->initStreamVolume((AudioSystem::stream_type)stream, index_min,
209                               index_max);
210}
211
212static int ap_set_stream_volume_index(struct audio_policy *pol,
213                                      audio_stream_type_t stream,
214                                      int index)
215{
216    struct legacy_audio_policy *lap = to_lap(pol);
217    return lap->apm->setStreamVolumeIndex((AudioSystem::stream_type)stream,
218                                          index,
219                                          AUDIO_DEVICE_OUT_DEFAULT);
220}
221
222static int ap_get_stream_volume_index(const struct audio_policy *pol,
223                                      audio_stream_type_t stream,
224                                      int *index)
225{
226    const struct legacy_audio_policy *lap = to_clap(pol);
227    return lap->apm->getStreamVolumeIndex((AudioSystem::stream_type)stream,
228                                          index,
229                                          AUDIO_DEVICE_OUT_DEFAULT);
230}
231
232static int ap_set_stream_volume_index_for_device(struct audio_policy *pol,
233                                      audio_stream_type_t stream,
234                                      int index,
235                                      audio_devices_t device)
236{
237    struct legacy_audio_policy *lap = to_lap(pol);
238    return lap->apm->setStreamVolumeIndex((AudioSystem::stream_type)stream,
239                                          index,
240                                          device);
241}
242
243static int ap_get_stream_volume_index_for_device(const struct audio_policy *pol,
244                                      audio_stream_type_t stream,
245                                      int *index,
246                                      audio_devices_t device)
247{
248    const struct legacy_audio_policy *lap = to_clap(pol);
249    return lap->apm->getStreamVolumeIndex((AudioSystem::stream_type)stream,
250                                          index,
251                                          device);
252}
253
254static uint32_t ap_get_strategy_for_stream(const struct audio_policy *pol,
255                                           audio_stream_type_t stream)
256{
257    const struct legacy_audio_policy *lap = to_clap(pol);
258    return lap->apm->getStrategyForStream((AudioSystem::stream_type)stream);
259}
260
261static audio_devices_t ap_get_devices_for_stream(const struct audio_policy *pol,
262                                       audio_stream_type_t stream)
263{
264    const struct legacy_audio_policy *lap = to_clap(pol);
265    return lap->apm->getDevicesForStream((AudioSystem::stream_type)stream);
266}
267
268static audio_io_handle_t ap_get_output_for_effect(struct audio_policy *pol,
269                                            const struct effect_descriptor_s *desc)
270{
271    struct legacy_audio_policy *lap = to_lap(pol);
272    return lap->apm->getOutputForEffect(desc);
273}
274
275static int ap_register_effect(struct audio_policy *pol,
276                              const struct effect_descriptor_s *desc,
277                              audio_io_handle_t io,
278                              uint32_t strategy,
279                              int session,
280                              int id)
281{
282    struct legacy_audio_policy *lap = to_lap(pol);
283    return lap->apm->registerEffect(desc, io, strategy, session, id);
284}
285
286static int ap_unregister_effect(struct audio_policy *pol, int id)
287{
288    struct legacy_audio_policy *lap = to_lap(pol);
289    return lap->apm->unregisterEffect(id);
290}
291
292static int ap_set_effect_enabled(struct audio_policy *pol, int id, bool enabled)
293{
294    struct legacy_audio_policy *lap = to_lap(pol);
295    return lap->apm->setEffectEnabled(id, enabled);
296}
297
298static bool ap_is_stream_active(const struct audio_policy *pol, audio_stream_type_t stream,
299                                uint32_t in_past_ms)
300{
301    const struct legacy_audio_policy *lap = to_clap(pol);
302    return lap->apm->isStreamActive((int) stream, in_past_ms);
303}
304
305static bool ap_is_stream_active_remotely(const struct audio_policy *pol, audio_stream_type_t stream,
306                                uint32_t in_past_ms)
307{
308    const struct legacy_audio_policy *lap = to_clap(pol);
309    return lap->apm->isStreamActiveRemotely((int) stream, in_past_ms);
310}
311
312static bool ap_is_source_active(const struct audio_policy *pol, audio_source_t source)
313{
314    const struct legacy_audio_policy *lap = to_clap(pol);
315    return lap->apm->isSourceActive(source);
316}
317
318static int ap_dump(const struct audio_policy *pol, int fd)
319{
320    const struct legacy_audio_policy *lap = to_clap(pol);
321    return lap->apm->dump(fd);
322}
323
324static int create_legacy_ap(const struct audio_policy_device *device,
325                            struct audio_policy_service_ops *aps_ops,
326                            void *service,
327                            struct audio_policy **ap)
328{
329    struct legacy_audio_policy *lap;
330    int ret;
331
332    if (!service || !aps_ops)
333        return -EINVAL;
334
335    lap = (struct legacy_audio_policy *)calloc(1, sizeof(*lap));
336    if (!lap)
337        return -ENOMEM;
338
339    lap->policy.set_device_connection_state = ap_set_device_connection_state;
340    lap->policy.get_device_connection_state = ap_get_device_connection_state;
341    lap->policy.set_phone_state = ap_set_phone_state;
342    lap->policy.set_ringer_mode = ap_set_ringer_mode;
343    lap->policy.set_force_use = ap_set_force_use;
344    lap->policy.get_force_use = ap_get_force_use;
345    lap->policy.set_can_mute_enforced_audible =
346        ap_set_can_mute_enforced_audible;
347    lap->policy.init_check = ap_init_check;
348    lap->policy.get_output = ap_get_output;
349    lap->policy.start_output = ap_start_output;
350    lap->policy.stop_output = ap_stop_output;
351    lap->policy.release_output = ap_release_output;
352    lap->policy.get_input = ap_get_input;
353    lap->policy.start_input = ap_start_input;
354    lap->policy.stop_input = ap_stop_input;
355    lap->policy.release_input = ap_release_input;
356    lap->policy.init_stream_volume = ap_init_stream_volume;
357    lap->policy.set_stream_volume_index = ap_set_stream_volume_index;
358    lap->policy.get_stream_volume_index = ap_get_stream_volume_index;
359    lap->policy.set_stream_volume_index_for_device = ap_set_stream_volume_index_for_device;
360    lap->policy.get_stream_volume_index_for_device = ap_get_stream_volume_index_for_device;
361    lap->policy.get_strategy_for_stream = ap_get_strategy_for_stream;
362    lap->policy.get_devices_for_stream = ap_get_devices_for_stream;
363    lap->policy.get_output_for_effect = ap_get_output_for_effect;
364    lap->policy.register_effect = ap_register_effect;
365    lap->policy.unregister_effect = ap_unregister_effect;
366    lap->policy.set_effect_enabled = ap_set_effect_enabled;
367    lap->policy.is_stream_active = ap_is_stream_active;
368    lap->policy.is_stream_active_remotely = ap_is_stream_active_remotely;
369    lap->policy.is_source_active = ap_is_source_active;
370    lap->policy.dump = ap_dump;
371
372    lap->service = service;
373    lap->aps_ops = aps_ops;
374    lap->service_client =
375        new AudioPolicyCompatClient(aps_ops, service);
376    if (!lap->service_client) {
377        ret = -ENOMEM;
378        goto err_new_compat_client;
379    }
380
381    lap->apm = createAudioPolicyManager(lap->service_client);
382    if (!lap->apm) {
383        ret = -ENOMEM;
384        goto err_create_apm;
385    }
386
387    *ap = &lap->policy;
388    return 0;
389
390err_create_apm:
391    delete lap->service_client;
392err_new_compat_client:
393    free(lap);
394    *ap = NULL;
395    return ret;
396}
397
398static int destroy_legacy_ap(const struct audio_policy_device *ap_dev,
399                             struct audio_policy *ap)
400{
401    struct legacy_audio_policy *lap = to_lap(ap);
402
403    if (!lap)
404        return 0;
405
406    if (lap->apm)
407        destroyAudioPolicyManager(lap->apm);
408    if (lap->service_client)
409        delete lap->service_client;
410    free(lap);
411    return 0;
412}
413
414static int legacy_ap_dev_close(hw_device_t* device)
415{
416    if (device)
417        free(device);
418    return 0;
419}
420
421static int legacy_ap_dev_open(const hw_module_t* module, const char* name,
422                                    hw_device_t** device)
423{
424    struct legacy_ap_device *dev;
425
426    if (strcmp(name, AUDIO_POLICY_INTERFACE) != 0)
427        return -EINVAL;
428
429    dev = (struct legacy_ap_device *)calloc(1, sizeof(*dev));
430    if (!dev)
431        return -ENOMEM;
432
433    dev->device.common.tag = HARDWARE_DEVICE_TAG;
434    dev->device.common.version = 0;
435    dev->device.common.module = const_cast<hw_module_t*>(module);
436    dev->device.common.close = legacy_ap_dev_close;
437    dev->device.create_audio_policy = create_legacy_ap;
438    dev->device.destroy_audio_policy = destroy_legacy_ap;
439
440    *device = &dev->device.common;
441
442    return 0;
443}
444
445static struct hw_module_methods_t legacy_ap_module_methods = {
446        open: legacy_ap_dev_open
447};
448
449struct legacy_ap_module HAL_MODULE_INFO_SYM = {
450    module: {
451        common: {
452            tag: HARDWARE_MODULE_TAG,
453            version_major: 1,
454            version_minor: 0,
455            id: AUDIO_POLICY_HARDWARE_MODULE_ID,
456            name: "LEGACY Audio Policy HAL",
457            author: "The Android Open Source Project",
458            methods: &legacy_ap_module_methods,
459            dso : NULL,
460            reserved : {0},
461        },
462    },
463};
464
465}; // extern "C"
466
467}; // namespace android_audio_legacy
468