4ee4804515e531059c4369e7e6a4e96cebc0f52c
[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     if (mixer_elm) {
62         snd_mixer_selem_get_playback_volume_range (mixer_elm, &vol_min, &vol_max);
63         snd_mixer_selem_get_playback_volume (mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &vol);
64     }
65
66     /* allocate the global array if it hasn't been done */
67     if (!dev_ctx) {
68         dev_ctx = (dev_ctx_T**) malloc (sizeof(dev_ctx_T));
69         dev_ctx[0] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
70         dev_ctx[0]->name = NULL;
71         dev_ctx[0]->dev = NULL;
72     }
73
74     /* is a card with similar name already opened ? */
75     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
76         if (dev_ctx[num]->name &&
77            !strcmp (dev_ctx[num]->name, name))
78             return 0;
79     }
80     num++;
81
82     /* it's not... let us add it to the global array */
83     dev_ctx = (dev_ctx_T**) realloc (dev_ctx, (num+1)*sizeof(dev_ctx_T));
84     dev_ctx[num] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
85     dev_ctx[num]->name = strdup (name);
86     dev_ctx[num]->dev = dev;
87     dev_ctx[num]->params = params;
88     dev_ctx[num]->mixer_elm = mixer_elm;
89     dev_ctx[num]->vol_max = vol_max;
90     dev_ctx[num]->vol = vol;
91     dev_ctx[num]->thr_should_run = 0;
92     dev_ctx[num]->thr_finished = 0;
93
94     /* make the client context aware of current card state */
95     ctx->volume = _alsa_get_volume (num);
96     ctx->mute = _alsa_get_mute (num);
97     ctx->idx = num;
98
99     return 1;
100 }
101
102 PUBLIC void _alsa_free (const char *name) {
103
104     int num;
105
106     for (num = 0; num < (sizeof(dev_ctx)/sizeof(dev_ctx_T)); num++) {
107         if (dev_ctx[num]->name &&
108            !strcmp (dev_ctx[num]->name, name)) {
109             snd_pcm_close (dev_ctx[num]->dev);
110             snd_pcm_hw_params_free (dev_ctx[num]->params);
111             free (dev_ctx[num]->name);
112             dev_ctx[num]->name = NULL;
113             dev_ctx[num]->dev = NULL;
114             free(dev_ctx[num]);
115             return;
116         }
117     }
118 }
119
120 PUBLIC void _alsa_play (unsigned int num) {
121
122     if (!dev_ctx || !dev_ctx[num] || dev_ctx[num]->thr_should_run ||
123         access (AUDIO_BUFFER, F_OK) == -1)
124         return;
125
126     dev_ctx[num]->thr_should_run = 1;
127     dev_ctx[num]->thr_finished = 0;
128     pthread_create(&dev_ctx[num]->thr, NULL, _play_thread_fn, (void*)dev_ctx[num]);
129 }
130
131 PUBLIC void _alsa_stop (unsigned int num) {
132
133     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->thr_should_run)
134         return;
135
136     /* stop the "while" loop in thread */
137     dev_ctx[num]->thr_should_run = 0;
138
139     while (!dev_ctx[num]->thr_finished)
140         usleep(100000);
141
142     pthread_join(dev_ctx[num]->thr, NULL);
143 }
144
145 PUBLIC unsigned int _alsa_get_volume (unsigned int num) {
146
147     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm)
148         return;
149
150     snd_mixer_selem_get_playback_volume (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &dev_ctx[num]->vol);
151
152     return (unsigned int)(dev_ctx[num]->vol*100)/dev_ctx[num]->vol_max;
153 }
154
155 PUBLIC unsigned int _alsa_set_volume (unsigned int num, unsigned int vol) {
156
157     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm || vol > 100)
158         return;
159
160    snd_mixer_selem_set_playback_volume_all (dev_ctx[num]->mixer_elm, (vol*dev_ctx[num]->vol_max)/100);
161 }
162
163 PUBLIC unsigned char _alsa_get_mute (unsigned int num) {
164
165     int mute = 0;
166
167     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm)
168         return;
169
170     if (snd_mixer_selem_has_playback_switch (dev_ctx[num]->mixer_elm)) {
171         snd_mixer_selem_get_playback_switch (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_LEFT, &mute); 
172         snd_mixer_selem_get_playback_switch (dev_ctx[num]->mixer_elm, SND_MIXER_SCHN_FRONT_RIGHT, &mute); 
173
174     }
175
176     return (unsigned char)!mute;
177 }
178
179 PUBLIC void _alsa_set_mute (unsigned int num, unsigned char mute) {
180
181     if (!dev_ctx || !dev_ctx[num] || !dev_ctx[num]->mixer_elm || 1 < mute < 0)
182         return;
183
184     if (snd_mixer_selem_has_playback_switch (dev_ctx[num]->mixer_elm))
185         snd_mixer_selem_set_playback_switch_all (dev_ctx[num]->mixer_elm, !mute);
186 }
187
188 PUBLIC void _alsa_set_rate (unsigned int num, unsigned int rate) {
189
190     if (!dev_ctx || !dev_ctx[num])
191         return;
192
193     snd_pcm_hw_params_set_rate_near (dev_ctx[num]->dev, dev_ctx[num]->params, &rate, 0);
194 }
195
196 PUBLIC void _alsa_set_channels (unsigned int num, unsigned int channels) {
197
198     if (!dev_ctx || !dev_ctx[num])
199         return;
200
201     snd_pcm_hw_params_set_channels (dev_ctx[num]->dev, dev_ctx[num]->params, channels);
202 }
203
204  /* ---- LOCAL THREADED FUNCTIONS ---- */
205
206 STATIC void* _play_thread_fn (void *ctx) {
207
208     dev_ctx_T *dev_ctx = (dev_ctx_T *)ctx;
209     FILE *file = NULL;
210     char *buf = NULL;
211     long size;
212     int frames, res;
213
214     file = fopen (AUDIO_BUFFER, "rb");
215
216     while (dev_ctx->thr_should_run && file && (access (AUDIO_BUFFER, F_OK) != -1) ) {
217         fseek (file, 0, SEEK_END);
218         size = ftell (file);
219         buf = (char*) realloc (buf, size * sizeof(char));
220         frames = (size * sizeof(char)) / 4;
221
222         fseek (file, 0, SEEK_SET);
223         fread (buf, 1, size, file);
224         fflush (file);
225
226         if ((res = snd_pcm_writei (dev_ctx->dev, buf, frames)) != frames) {
227             snd_pcm_recover (dev_ctx->dev, res, 0);
228             snd_pcm_prepare (dev_ctx->dev);
229         }
230         /* snd_pcm_drain (dev_ctx->dev); */
231     }
232     if (buf) free(buf);
233     if (file) fclose(file);
234
235     dev_ctx->thr_finished = 1;
236     return 0;
237 }