51f497027cf524e3f6b86d028db9b7f28c3d7b3e
[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 snd_mixer_selem_channel_id_t SCHANNELS[8] = {
23  SND_MIXER_SCHN_FRONT_LEFT,
24  SND_MIXER_SCHN_FRONT_RIGHT,
25  SND_MIXER_SCHN_FRONT_CENTER,
26  SND_MIXER_SCHN_REAR_LEFT,
27  SND_MIXER_SCHN_REAR_RIGHT,
28  SND_MIXER_SCHN_REAR_CENTER,
29  SND_MIXER_SCHN_SIDE_LEFT,
30  SND_MIXER_SCHN_SIDE_RIGHT
31 };
32
33 PUBLIC unsigned char _alsa_init (const char *name, audioCtxHandleT *ctx) {
34
35     snd_pcm_t *dev;
36     snd_pcm_hw_params_t *params;
37     snd_mixer_t *mixer;
38     snd_mixer_selem_id_t *mixer_sid;
39     snd_mixer_elem_t *mixer_elm;
40     snd_mixer_elem_t *mixer_elm_m;
41     unsigned int rate = 22050;
42     long vol, vol_min, vol_max;
43     int num, i;
44
45     if (snd_pcm_open (&dev, name, SND_PCM_STREAM_PLAYBACK, 0) < 0)
46         return 0;
47
48     snd_pcm_hw_params_malloc (&params);
49     snd_pcm_hw_params_any (dev, params);
50     snd_pcm_hw_params_set_access (dev, params, SND_PCM_ACCESS_RW_INTERLEAVED);
51     snd_pcm_hw_params_set_format (dev, params, SND_PCM_FORMAT_S16_LE);
52     snd_pcm_hw_params_set_rate_near (dev, params, &rate, 0);
53     snd_pcm_hw_params_set_channels (dev, params, ctx->channels);
54     if (snd_pcm_hw_params (dev, params) < 0) {
55         snd_pcm_hw_params_free (params);
56         return 0;
57     }
58     snd_pcm_prepare (dev);
59
60     snd_mixer_open (&mixer, 0);
61     if (snd_mixer_attach (mixer, name) < 0) {
62         snd_pcm_hw_params_free (params);
63         return 0;
64     }
65     snd_mixer_selem_register (mixer, NULL, NULL);
66     snd_mixer_load (mixer);
67
68     snd_mixer_selem_id_alloca (&mixer_sid);
69     snd_mixer_selem_id_set_index (mixer_sid, 0);
70     snd_mixer_selem_id_set_name (mixer_sid, "Master");
71
72     mixer_elm = snd_mixer_find_selem (mixer, mixer_sid);
73     mixer_elm_m = NULL;
74
75     if (!mixer_elm) {
76         /* no "Master" mixer ; we are probably on a board... search ! */
77         for (mixer_elm = snd_mixer_first_elem (mixer); mixer_elm != NULL;
78              mixer_elm = snd_mixer_elem_next (mixer_elm)) {
79             if (snd_mixer_elem_info (mixer_elm) < 0)
80                 continue;
81             snd_mixer_selem_get_id (mixer_elm, mixer_sid);
82             if (strstr (snd_mixer_selem_id_get_name (mixer_sid), "DVC Out")) {
83
84                 /* this is Porter... let us found the specific mute switch */
85                 snd_mixer_selem_id_set_index (mixer_sid, 0);
86                 snd_mixer_selem_id_set_name (mixer_sid, "DVC Out Mute");
87                 mixer_elm_m = snd_mixer_find_selem (mixer, mixer_sid);
88
89                 break;
90             }
91         }
92     }
93
94     if (mixer_elm) {
95         snd_mixer_selem_get_playback_volume_range (mixer_elm, &vol_min, &vol_max);
96         snd_mixer_selem_get_playback_volume (mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &vol);
97     }
98
99     /* allocate the global array if it hasn't been done */
100     if (!dev_ctx) {
101         dev_ctx = (dev_ctx_T**) malloc (sizeof(dev_ctx_T));
102         dev_ctx[0] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
103         dev_ctx[0]->name = NULL;
104         dev_ctx[0]->dev = NULL;
105     }
106
107     /* is a card with similar name already opened ? */
108     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
109         if (dev_ctx[num]->name &&
110            !strcmp (dev_ctx[num]->name, name))
111             return 0;
112     }
113     num++;
114
115     /* it's not... let us add it to the global array */
116     dev_ctx = (dev_ctx_T**) realloc (dev_ctx, (num+1)*sizeof(dev_ctx_T));
117     dev_ctx[num] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
118     dev_ctx[num]->name = strdup (name);
119     dev_ctx[num]->dev = dev;
120     dev_ctx[num]->params = params;
121     dev_ctx[num]->mixer_elm = mixer_elm;
122     dev_ctx[num]->mixer_elm_m = mixer_elm_m;
123     dev_ctx[num]->vol_max = vol_max;
124     dev_ctx[num]->vol = vol;
125     dev_ctx[num]->thr_should_run = 0;
126     dev_ctx[num]->thr_finished = 0;
127
128     /* make the client context aware of current card state */
129     for (i = 0; i < 8; i++)
130         ctx->volume[i] = _alsa_get_volume (num, i);
131     ctx->mute = _alsa_get_mute (num);
132     ctx->idx = num;
133
134     return 1;
135 }
136
137 PUBLIC void _alsa_free (const char *name) {
138
139     int num;
140
141     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
142         if (dev_ctx[num]->name &&
143            !strcmp (dev_ctx[num]->name, name)) {
144             snd_pcm_close (dev_ctx[num]->dev);
145             snd_pcm_hw_params_free (dev_ctx[num]->params);
146             free (dev_ctx[num]->name);
147             dev_ctx[num]->name = NULL;
148             dev_ctx[num]->dev = NULL;
149             free(dev_ctx[num]);
150             return;
151         }
152     }
153 }
154
155 PUBLIC void _alsa_play (unsigned int num) {
156
157     if (!dev_ctx || !dev_ctx[num] || dev_ctx[num]->thr_should_run ||
158         access (AUDIO_BUFFER, F_OK) == -1)
159         return;
160
161     dev_ctx[num]->thr_should_run = 1;
162     dev_ctx[num]->thr_finished = 0;
163     pthread_create(&dev_ctx[num]->thr, NULL, _play_thread_fn, (void*)dev_ctx[num]);
164 }
165
166 PUBLIC void _alsa_stop (unsigned int num) {
167
168     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->thr_should_run)
169         return;
170
171     /* stop the "while" loop in thread */
172     dev_ctx[num]->thr_should_run = 0;
173
174     while (!dev_ctx[num]->thr_finished)
175         usleep(100000);
176
177     pthread_join(dev_ctx[num]->thr, NULL);
178 }
179
180 PUBLIC int _alsa_get_volume (unsigned int num, unsigned int channel) {
181
182     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm)
183         return;
184
185     snd_mixer_selem_get_playback_volume (dev_ctx[num]->mixer_elm, SCHANNELS[channel], &dev_ctx[num]->vol);
186
187     return (int)(dev_ctx[num]->vol*100)/dev_ctx[num]->vol_max;
188 }
189
190 PUBLIC void _alsa_set_volume (unsigned int num, unsigned int channel, int vol) {
191
192     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm ||
193         0 > vol > 100)
194         return;
195
196     snd_mixer_selem_set_playback_volume (dev_ctx[num]->mixer_elm, SCHANNELS[channel], (vol*dev_ctx[num]->vol_max)/100);
197
198 }
199
200 PUBLIC void _alsa_set_volume_all (unsigned int num, int vol) {
201
202     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm ||
203         0 > vol > 100)
204
205     snd_mixer_selem_set_playback_volume_all (dev_ctx[num]->mixer_elm, (vol*dev_ctx[num]->vol_max)/100);
206 }
207
208 PUBLIC unsigned char _alsa_get_mute (unsigned int num) {
209
210     int mute = 0;
211     snd_mixer_elem_t *elm_m;
212
213     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm)
214         return;
215
216     dev_ctx[num]->mixer_elm_m ? (elm_m = dev_ctx[num]->mixer_elm_m) :
217                                 (elm_m = dev_ctx[num]->mixer_elm);
218
219     if (snd_mixer_selem_has_playback_switch (elm_m)) {
220         snd_mixer_selem_get_playback_switch (elm_m, SND_MIXER_SCHN_FRONT_LEFT, &mute);
221         snd_mixer_selem_get_playback_switch (elm_m, SND_MIXER_SCHN_FRONT_RIGHT, &mute);
222     }
223
224     if (dev_ctx[num]->mixer_elm_m)
225         return (unsigned char)mute;
226     else
227         return (unsigned char)!mute;
228 }
229
230 PUBLIC void _alsa_set_mute (unsigned int num, unsigned char tomute) {
231
232     snd_mixer_elem_t *elm_m;
233     int mute;
234
235     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm || 1 < tomute < 0)
236         return;
237
238     if (dev_ctx[num]->mixer_elm_m) {
239         elm_m = dev_ctx[num]->mixer_elm_m;
240         mute = (int)!tomute;
241     } else {
242         elm_m = dev_ctx[num]->mixer_elm;
243         mute = (int)tomute;
244     }
245
246     if (snd_mixer_selem_has_playback_switch (elm_m))
247         snd_mixer_selem_set_playback_switch_all (elm_m, !mute);
248 }
249
250 PUBLIC void _alsa_set_rate (unsigned int num, unsigned int rate) {
251
252     if (!dev_ctx || !dev_ctx[num])
253         return;
254
255     snd_pcm_hw_params_set_rate_near (dev_ctx[num]->dev, dev_ctx[num]->params, &rate, 0);
256 }
257
258 PUBLIC void _alsa_set_channels (unsigned int num, unsigned int channels) {
259
260     if (!dev_ctx || !dev_ctx[num])
261         return;
262
263     snd_pcm_hw_params_set_channels (dev_ctx[num]->dev, dev_ctx[num]->params, channels);
264 }
265
266  /* ---- LOCAL THREADED FUNCTIONS ---- */
267
268 STATIC void* _play_thread_fn (void *ctx) {
269
270     dev_ctx_T *dev_ctx = (dev_ctx_T *)ctx;
271     FILE *file = NULL;
272     char *buf = NULL;
273     long size;
274     int frames, res;
275
276     file = fopen (AUDIO_BUFFER, "rb");
277
278     while (dev_ctx->thr_should_run && file && (access (AUDIO_BUFFER, F_OK) != -1) ) {
279         fseek (file, 0, SEEK_END);
280         size = ftell (file);
281         buf = (char*) realloc (buf, size * sizeof(char));
282         frames = (size * sizeof(char)) / 4;
283
284         fseek (file, 0, SEEK_SET);
285         fread (buf, 1, size, file);
286         fflush (file);
287
288         if ((res = snd_pcm_writei (dev_ctx->dev, buf, frames)) != frames) {
289             snd_pcm_recover (dev_ctx->dev, res, 0);
290             snd_pcm_prepare (dev_ctx->dev);
291         }
292         /* snd_pcm_drain (dev_ctx->dev); */
293     }
294     if (buf) free(buf);
295     if (file) fclose(file);
296
297     dev_ctx->thr_finished = 1;
298     return 0;
299 }