Fix Audio API runtime
[src/app-framework-binder.git] / plugins / audio / audio-alsa.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Manuel Bachmann"
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "audio-api.h"
20 #include "audio-alsa.h"
21
22 PUBLIC unsigned char _alsa_init (const char *name, audioCtxHandleT *ctx) {
23
24     snd_pcm_t *dev;
25     snd_pcm_hw_params_t *params;
26     snd_mixer_t *mixer;
27     snd_mixer_selem_id_t *mixer_sid;
28     snd_mixer_elem_t *mixer_elm;
29     unsigned int rate = 22050;
30     long vol, vol_min, vol_max;
31     int num;
32
33     if (snd_pcm_open (&dev, name, SND_PCM_STREAM_PLAYBACK, 0) < 0)
34         return 0;
35
36     snd_pcm_hw_params_malloc (&params);
37     snd_pcm_hw_params_any (dev, params);
38     snd_pcm_hw_params_set_access (dev, params, SND_PCM_ACCESS_RW_INTERLEAVED);
39     snd_pcm_hw_params_set_format (dev, params, SND_PCM_FORMAT_S16_LE);
40     snd_pcm_hw_params_set_rate_near (dev, params, &rate, 0);
41     snd_pcm_hw_params_set_channels (dev, params, ctx->channels);
42     if (snd_pcm_hw_params (dev, params) < 0) {
43         snd_pcm_hw_params_free (params);
44         return 0;
45     }
46     snd_pcm_prepare (dev);
47
48     snd_mixer_open (&mixer, 0);
49     if (snd_mixer_attach (mixer, name) < 0) {
50         snd_pcm_hw_params_free (params);
51         return 0;
52     }
53     snd_mixer_selem_register (mixer, NULL, NULL);
54     snd_mixer_load (mixer);
55
56     snd_mixer_selem_id_alloca (&mixer_sid);
57     snd_mixer_selem_id_set_index (mixer_sid, 0);
58     snd_mixer_selem_id_set_name (mixer_sid, "Master");
59
60     mixer_elm = snd_mixer_find_selem (mixer, mixer_sid);
61     snd_mixer_selem_get_playback_volume_range (mixer_elm, &vol_min, &vol_max);
62     snd_mixer_selem_get_playback_volume (mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &vol);
63
64     /* allocate the global array if it hasn't been done */
65     if (!dev_ctx) {
66         dev_ctx = (dev_ctx_T**) malloc (sizeof(dev_ctx_T));
67         dev_ctx[0] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
68         dev_ctx[0]->name = NULL;
69         dev_ctx[0]->dev = NULL;
70     }
71
72     /* is a card with similar name already opened ? */
73     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
74         if (dev_ctx[num]->name &&
75            !strcmp (dev_ctx[num]->name, name))
76             return 0;
77     }
78     num++;
79
80     /* it's not... let us add it to the global array */
81     dev_ctx = (dev_ctx_T**) realloc (dev_ctx, (num+1)*sizeof(dev_ctx_T));
82     dev_ctx[num] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
83     dev_ctx[num]->name = strdup (name);
84     dev_ctx[num]->dev = dev;
85     dev_ctx[num]->params = params;
86     dev_ctx[num]->mixer_elm = mixer_elm;
87     dev_ctx[num]->vol_max = vol_max;
88     dev_ctx[num]->vol = vol;
89
90     /* make the client context aware of current card state */
91     ctx->volume = _alsa_get_volume (num);
92     ctx->mute = _alsa_get_mute (num);
93     ctx->idx = num;
94
95     return 1;
96 }
97
98 PUBLIC void _alsa_free (const char *name) {
99
100     int num;
101
102     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
103         if (dev_ctx[num]->name &&
104            !strcmp (dev_ctx[num]->name, name)) {
105             snd_pcm_close (dev_ctx[num]->dev);
106             snd_pcm_hw_params_free (dev_ctx[num]->params);
107             free (dev_ctx[num]->name);
108             dev_ctx[num]->name = NULL;
109             dev_ctx[num]->dev = NULL;
110             free(dev_ctx[num]);
111             return;
112         }
113     }
114 }
115
116 PUBLIC void _alsa_play (unsigned int num, void *buf, int len) {
117
118     if (!dev_ctx || !dev_ctx[num])
119         return;
120
121     int16_t *cbuf = (int16_t *)buf;
122     int frames = len / 2;
123     int res;
124
125     if ((res = snd_pcm_writei (dev_ctx[num]->dev, cbuf, frames)) != frames) {
126         snd_pcm_recover (dev_ctx[num]->dev, res, 0);
127         snd_pcm_prepare (dev_ctx[num]->dev);
128     }
129     /* snd_pcm_drain (dev_ctx[num]->dev); */
130 }
131
132 PUBLIC unsigned int _alsa_get_volume (unsigned int num) {
133
134     if (!dev_ctx || !dev_ctx[num])
135         return;
136
137     snd_mixer_selem_get_playback_volume (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &dev_ctx[num]->vol);
138
139     return (unsigned int)(dev_ctx[num]->vol*100)/dev_ctx[num]->vol_max;
140 }
141
142 PUBLIC unsigned int _alsa_set_volume (unsigned int num, unsigned int vol) {
143
144     if (!dev_ctx || !dev_ctx[num] || vol > 100)
145         return;
146
147    snd_mixer_selem_set_playback_volume_all (dev_ctx[num]->mixer_elm, (vol*dev_ctx[num]->vol_max)/100);
148 }
149
150 PUBLIC unsigned char _alsa_get_mute (unsigned int num) {
151
152     int mute = 0;
153
154     if (!dev_ctx || !dev_ctx[num])
155         return;
156
157     if (snd_mixer_selem_has_playback_switch (dev_ctx[num]->mixer_elm)) {
158         snd_mixer_selem_get_playback_switch (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &mute); 
159         snd_mixer_selem_get_playback_switch (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_RIGHT, &mute); 
160
161     }
162
163     return (unsigned char)!mute;
164 }
165
166 PUBLIC void _alsa_set_mute (unsigned int num, unsigned char mute) {
167
168     if (!dev_ctx || !dev_ctx[num] || 1 < mute < 0)
169         return;
170
171     if (snd_mixer_selem_has_playback_switch (dev_ctx[num]->mixer_elm))
172         snd_mixer_selem_set_playback_switch_all (dev_ctx[num]->mixer_elm, !mute);
173 }
174
175 PUBLIC void _alsa_set_rate (unsigned int num, unsigned int rate) {
176
177     if (!dev_ctx || !dev_ctx[num])
178         return;
179
180     snd_pcm_hw_params_set_rate_near (dev_ctx[num]->dev, dev_ctx[num]->params, &rate, 0);
181 }
182
183 PUBLIC void _alsa_set_channels (unsigned int num, unsigned int channels) {
184
185     if (!dev_ctx || !dev_ctx[num])
186         return;
187
188     snd_pcm_hw_params_set_channels (dev_ctx[num]->dev, dev_ctx[num]->params, channels);
189 }