source: roaraudio/roard/driver_oss.c @ 1539:56b0eed81f0c

Last change on this file since 1539:56b0eed81f0c was 1539:56b0eed81f0c, checked in by phi, 15 years ago

added support to reopen device

File size: 13.3 KB
Line 
1//driver_oss.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26#if defined(ROAR_HAVE_OSS_BSD) || defined(ROAR_HAVE_OSS)
27
28struct driver_oss {
29 char * device;
30 int fh;
31 int blocks;
32 int blocksize;
33 struct roar_audio_info info;
34 int need_reopen;
35 int need_config;
36 struct roar_stream_server * stream;
37 int ssid;
38};
39
40#define _get(vio,obj) (((struct driver_oss*)((vio)->inst))->obj)
41
42ssize_t driver_oss_write    (struct roar_vio_calls * vio, void *buf, size_t count);
43int     driver_oss_nonblock (struct roar_vio_calls * vio, int state);
44int     driver_oss_close_vio(struct roar_vio_calls * vio);
45int     driver_oss_reopen_device(struct driver_oss * self);
46
47int driver_oss_init_vio(struct roar_vio_calls * vio, struct driver_oss * inst) {
48 if ( vio == NULL )
49  return -1;
50
51 memset(vio, 0, sizeof(struct roar_vio_calls));
52
53 vio->write    = driver_oss_write;
54 vio->nonblock = driver_oss_nonblock;
55 vio->sync     = driver_oss_sync;
56 vio->ctl      = driver_oss_ctl;
57 vio->close    = driver_oss_close_vio;
58
59 vio->inst     = (void*) inst;
60
61 return 0;
62}
63
64int driver_oss_open_device(struct driver_oss * self) {
65 int    fh     = self->fh;
66 char * device = self->device;
67
68 if ( fh != -1 )
69  return 0;
70
71#ifdef ROAR_DEFAULT_OSS_DEV
72 if ( device == NULL )
73  device = ROAR_DEFAULT_OSS_DEV;
74#endif
75
76 if ( device == NULL ) {
77  ROAR_ERR("driver_oss_open_device(*): no default device found, you need to specify one manuelly");
78  return -1;
79 }
80
81 if ( (fh = open(device, O_WRONLY, 0644)) == -1 ) {
82  ROAR_ERR("driver_oss_open_device(*): Can not open OSS device: %s: %s", device, strerror(errno));
83  return -1;
84 }
85
86 self->fh          = fh;
87 self->need_config = 1;
88
89 return 0;
90}
91
92int driver_oss_config_device(struct driver_oss * self) {
93 int                      fh   =   self->fh;
94 struct roar_audio_info * info = &(self->info);
95 int tmp, ctmp;
96 char * es;
97 int autoconfig         = 0;
98 int need_update_server = 0;
99
100 if ( fh == -1 )
101  return -1;
102
103 if ( self->ssid != -1 ) {
104  autoconfig = streams_get_flag(self->ssid, ROAR_FLAG_AUTOCONF);
105 }
106
107 ROAR_DBG("driver_oss_config_device(self=%p): ssid=%i, autoconfig=%i", self, self->ssid, autoconfig);
108
109#ifdef SNDCTL_DSP_CHANNELS
110 tmp = info->channels;
111
112 if ( ioctl(fh, SNDCTL_DSP_CHANNELS, &tmp) == -1 ) {
113  ROAR_ERR("driver_oss_config_device(*): can not set number of channels");
114  return -1;
115 }
116
117 if ( tmp != info->channels ) {
118  if ( autoconfig ) {
119   need_update_server = 1;
120   self->info.channels = tmp;
121  } else {
122   ROAR_ERR("driver_oss_config_device(*): can not set requested numer of channels, OSS suggested %i channels, to use this restart with -oO channels=%i or set codec manuelly via -oO channels=num", tmp, tmp);
123   return -1;
124  }
125 }
126#else
127 switch (info->channels) {
128  case  1: tmp = 0; break;
129  case  2: tmp = 1; break;
130  default: return -1;
131 }
132
133 if ( ioctl(fh, SNDCTL_DSP_STEREO, &tmp) == -1 ) {
134  ROAR_ERR("driver_oss_config_device(*): can not set number of channels");
135  return -1;
136 }
137#endif
138
139 switch (info->codec) {
140  case ROAR_CODEC_PCM_S_LE:
141    switch (info->bits) {
142     case  8: tmp = AFMT_S8;     break;
143     case 16: tmp = AFMT_S16_LE; break;
144//     case 24: tmp = AFMT_S24_PACKED; break;
145#ifdef AFMT_S32_LE
146     case 32: tmp = AFMT_S32_LE; break;
147#endif
148     default: return -1;
149    }
150   break;
151  case ROAR_CODEC_PCM_S_BE:
152    switch (info->bits) {
153     case  8: tmp = AFMT_S8;     break;
154     case 16: tmp = AFMT_S16_BE; break;
155//     case 24: tmp = AFMT_S24_PACKED; break;
156#ifdef AFMT_S32_BE
157     case 32: tmp = AFMT_S32_BE; break;
158#endif
159     default: return -1;
160    }
161   break;
162  case ROAR_CODEC_PCM_U_LE:
163    switch (info->bits) {
164     case  8: tmp = AFMT_U8;     break;
165     case 16: tmp = AFMT_U16_LE; break;
166     default: return -1;
167    }
168   break;
169  case ROAR_CODEC_PCM_U_BE:
170    switch (info->bits) {
171     case  8: tmp = AFMT_U8;     break;
172     case 16: tmp = AFMT_U16_BE; break;
173     default: return -1;
174    }
175  case ROAR_CODEC_ALAW:
176    tmp = AFMT_A_LAW;
177   break;
178  case ROAR_CODEC_MULAW:
179    tmp = AFMT_MU_LAW;
180   break;
181#ifdef AFMT_VORBIS
182  case ROAR_CODEC_OGG_VORBIS:
183    tmp = AFMT_VORBIS;
184   break;
185#endif
186  default:
187    return -1;
188   break;
189 }
190
191 ctmp = tmp;
192#ifdef SNDCTL_DSP_SETFMT
193 if ( ioctl(fh, SNDCTL_DSP_SETFMT, &tmp) == -1 ) {
194#else
195 if ( ioctl(fh, SNDCTL_DSP_SAMPLESIZE, &tmp) == -1 ) {
196#endif
197  ROAR_ERR("driver_oss_config_device(*): can not set sample format");
198  return -1;
199 }
200
201 if ( tmp != ctmp ) {
202  if ( autoconfig ) {
203   need_update_server = 1;
204   switch (tmp) {
205    case AFMT_S8    : self->info.bits =  8; self->info.codec = ROAR_CODEC_PCM;      break;
206    case AFMT_U8    : self->info.bits =  8; self->info.codec = ROAR_CODEC_PCM_U_LE; break;
207    case AFMT_S16_LE: self->info.bits = 16; self->info.codec = ROAR_CODEC_PCM_S_LE; break;
208    case AFMT_S16_BE: self->info.bits = 16; self->info.codec = ROAR_CODEC_PCM_S_BE; break;
209    case AFMT_U16_LE: self->info.bits = 16; self->info.codec = ROAR_CODEC_PCM_U_LE; break;
210    case AFMT_U16_BE: self->info.bits = 16; self->info.codec = ROAR_CODEC_PCM_U_BE; break;
211#ifdef AFMT_S32_LE
212    case AFMT_S32_LE: self->info.bits = 32; self->info.codec = ROAR_CODEC_PCM_S_LE; break;
213#endif
214#ifdef AFMT_S32_BE
215    case AFMT_S32_BE: self->info.bits = 32; self->info.codec = ROAR_CODEC_PCM_S_BE; break;
216#endif
217    case AFMT_A_LAW : self->info.bits =  8; self->info.codec = ROAR_CODEC_ALAW;     break;
218    case AFMT_MU_LAW: self->info.bits =  8; self->info.codec = ROAR_CODEC_MULAW;    break;
219#ifdef AFMT_VORBIS
220    case AFMT_VORBIS: self->info.codec = ROAR_CODEC_OGG_VORBIS;                     break;
221#endif
222    default:
223      ROAR_WARN("driver_oss_config_device(*): Auto config failed: unknown OSS Codec %i", tmp);
224      ROAR_ERR("driver_oss_config_device(*): can not set requested codec, set codec manuelly via -oO codec=somecodec");
225     break;
226   }
227  } else {
228   es = NULL;
229   switch (tmp) {
230    case AFMT_S8    : es = "bits=8,codec=pcm";       break;
231    case AFMT_U8    : es = "bits=8,codec=pcm_u_le";  break;
232    case AFMT_S16_LE: es = "bits=16,codec=pcm_s_le"; break;
233    case AFMT_S16_BE: es = "bits=16,codec=pcm_s_be"; break;
234    case AFMT_U16_LE: es = "bits=16,codec=pcm_u_le"; break;
235    case AFMT_U16_BE: es = "bits=16,codec=pcm_u_be"; break;
236#ifdef AFMT_S32_LE
237    case AFMT_S32_LE: es = "bits=32,codec=pcm_s_le"; break;
238#endif
239#ifdef AFMT_S32_BE
240    case AFMT_S32_BE: es = "bits=32,codec=pcm_s_be"; break;
241#endif
242    case AFMT_A_LAW : es = "codec=alaw";             break;
243    case AFMT_MU_LAW: es = "codec=mulaw";            break;
244#ifdef AFMT_VORBIS
245    case AFMT_VORBIS: es = "codec=ogg_vorbis";       break;
246#endif
247   }
248
249   if ( es != NULL ) {
250    ROAR_ERR("driver_oss_config_device(*): can not set requested codec, OSS retruned another codec than requested, to use this restart with -oO %s or set codec manuelly via -oO codec=somecodec", es);
251   } else {
252    ROAR_ERR("driver_oss_config_device(*): can not set requested codec, set codec manuelly via -oO codec=somecodec");
253   }
254   return -1;
255  }
256 }
257
258 tmp = info->rate;
259
260 if ( ioctl(fh, SNDCTL_DSP_SPEED, &tmp) == -1 ) {
261  ROAR_ERR("driver_oss_config_device(*): can not set sample rate");
262  return -1;
263 }
264
265 if ( tmp != info->rate ) {
266  if ( autoconfig ) {
267   need_update_server = 1;
268   self->info.rate = tmp;
269  } else {
270   ROAR_WARN("driver_oss_config_device(*): Device does not support requested sample rate: req=%iHz, sug=%iHz",
271                     info->rate, tmp);
272
273   if ( tmp < info->rate * 0.98 || tmp > info->rate * 1.02 ) {
274    ROAR_ERR("driver_oss_config_device(*): sample rate out of acceptable accuracy");
275    return -1;
276   }
277  }
278 }
279
280 // latency things:
281#ifdef SNDCTL_DSP_SETFRAGMENT
282
283 // defaults
284 if ( self->blocksize < 1 )
285  self->blocksize = 2048;
286 if ( self->blocks < 1 )
287  self->blocks    =    4;
288
289 switch (self->blocksize) {
290  case 1<< 4: tmp =  4; break;
291  case 1<< 5: tmp =  5; break;
292  case 1<< 6: tmp =  6; break;
293  case 1<< 7: tmp =  7; break;
294  case 1<< 8: tmp =  8; break;
295  case 1<< 9: tmp =  9; break;
296  case 1<<10: tmp = 10; break;
297  case 1<<11: tmp = 11; break;
298  case 1<<12: tmp = 12; break;
299  case 1<<13: tmp = 13; break;
300  case 1<<14: tmp = 14; break;
301  case 1<<15: tmp = 15; break;
302  case 1<<16: tmp = 16; break;
303  default: tmp = 11;
304    ROAR_WARN("driver_oss_config_device(*): blocksize of %i byte is not a valid value. trying 2KB", self->blocksize);
305   break;
306 }
307
308 ROAR_DBG("driver_oss_config_device(*): blocksize=%i(N=%i), blocks=%i", self->blocksize, tmp, self->blocks);
309
310 tmp |= self->blocks << 16;
311 if ( ioctl(fh, SNDCTL_DSP_SETFRAGMENT, &tmp) == -1 ) {
312  ROAR_WARN("driver_oss_ctl(*): Can not set fragment size, sorry :(");
313 }
314#endif
315
316 if ( need_update_server ) {
317  if ( self->stream == NULL ) {
318   streams_get(self->ssid, &(self->stream));
319  }
320
321  if ( self->stream == NULL ) {
322   ROAR_ERR("driver_oss_config_device(*): Auto config failed: can not set new values for stream: no stream object known");
323   return -1;
324  }
325
326  memcpy(&(ROAR_STREAM(self->stream)->info), info, sizeof(struct roar_audio_info));
327 }
328
329 self->need_config = 0;
330
331 return 0;
332}
333
334#define er() close(self->fh); if ( self->device ) free(self->device); free(self); return -1
335int driver_oss_open(struct roar_vio_calls * inst, char * device, struct roar_audio_info * info, int fh) {
336 struct driver_oss * self = NULL;
337
338 if ( (self = malloc(sizeof(struct driver_oss))) == NULL ) {
339  ROAR_ERR("driver_oss_open(*): Can not malloc() instance data: %s", strerror(errno));
340  return -1;
341 }
342
343 memset(self, 0, sizeof(struct driver_oss));
344 memcpy(&(self->info), info, sizeof(struct roar_audio_info));
345
346 self->ssid = -1;
347 self->fh   = fh;
348
349 if ( device != NULL )
350  self->device = strdup(device);
351
352 if ( driver_oss_init_vio(inst, self) == -1 ) {
353  ROAR_ERR("driver_oss_open(*): Can not init vio interface");
354  er();
355 }
356
357 if ( driver_oss_open_device(self) == -1 ) {
358  ROAR_ERR("driver_oss_open(*): Can not open audio device");
359  er();
360 }
361
362 ROAR_DBG("driver_oss_open(*): OSS devices opened :)");
363
364 return 0;
365}
366#undef er
367
368int     driver_oss_reopen_device(struct driver_oss * self) {
369#ifdef SNDCTL_DSP_SYNC
370 ioctl(self->fh, SNDCTL_DSP_SYNC, NULL);
371#endif
372
373 close(self->fh);
374
375 if ( driver_oss_open_device(self) == -1 )
376  return -1;
377
378 self->need_config = 1;
379
380 return 0;
381}
382
383int driver_oss_close(DRIVER_USERDATA_T   inst) {
384 return roar_vio_close((struct roar_vio_calls *)inst);
385}
386
387int     driver_oss_close_vio(struct roar_vio_calls * vio) {
388 close(_get(vio,fh));
389
390 if ( _get(vio,device) != NULL )
391  free(_get(vio,device));
392
393 free(vio->inst);
394 return 0;
395}
396
397int     driver_oss_nonblock(struct roar_vio_calls * vio, int state) {
398 if ( roar_socket_nonblock(_get(vio,fh), state) == -1 )
399  return -1;
400
401 if ( state == ROAR_SOCKET_NONBLOCK )
402  return 0;
403
404 roar_vio_sync(vio);
405
406 return 0;
407}
408
409int driver_oss_sync(struct roar_vio_calls * vio) {
410#ifdef SNDCTL_DSP_SYNC
411 return ioctl(_get(vio,fh), SNDCTL_DSP_SYNC, NULL);
412#else
413 return 0;
414#endif
415}
416
417int driver_oss_ctl(struct roar_vio_calls * vio, int cmd, void * data) {
418 struct driver_oss * self = vio->inst;
419#ifdef SNDCTL_DSP_GETODELAY
420 int d;
421#endif
422
423 ROAR_DBG("driver_oss_ctl(vio=%p, cmd=0x%.8x, data=%p) = ?", vio, cmd, data);
424
425 if ( vio == NULL )
426  return -1;
427
428 switch (cmd) {
429  case ROAR_VIO_CTL_GET_DELAY:
430#ifdef SNDCTL_DSP_GETODELAY
431    if ( ioctl(_get(vio,fh), SNDCTL_DSP_GETODELAY, &d) == -1 )
432     return -1;
433
434    ROAR_DBG("driver_oss_ctl(*): delay=%i byte", d);
435
436    *(uint_least32_t *)data = d;
437#else
438    return -1;
439#endif
440   break;
441  case ROAR_VIO_CTL_SET_DBLOCKS:
442#ifdef SNDCTL_DSP_SETFRAGMENT
443    if ( !self->need_config ) {
444     ROAR_WARN("driver_oss_ctl(*): possible late ROAR_VIO_CTL_SET_DBLOCKS, setting anyway.");
445    }
446
447    self->blocks    = *(uint_least32_t *)data;
448#else
449    return -1;
450#endif
451   break;
452  case ROAR_VIO_CTL_SET_DBLKSIZE:
453#ifdef SNDCTL_DSP_SETFRAGMENT
454    if ( !self->need_config ) {
455     ROAR_WARN("driver_oss_ctl(*): possible late ROAR_VIO_CTL_SET_DBLKSIZE, setting anyway.");
456    }
457
458    self->blocksize = *(uint_least32_t *)data;
459#else
460    return -1;
461#endif
462   break;
463  case ROAR_VIO_CTL_GET_DBLKSIZE:
464    if ( !self->blocksize )
465     return -1;
466
467    *(uint_least32_t *)data = self->blocksize;
468   break;
469  case ROAR_VIO_CTL_SET_SSTREAMID:
470    self->ssid = *(int *)data;
471   break;
472  case ROAR_VIO_CTL_SET_SSTREAM:
473    self->stream = data;
474   break;
475  case ROAR_VIO_CTL_GET_AUINFO:
476    memcpy(data, &(self->info), sizeof(struct roar_audio_info));
477   break;
478  case ROAR_VIO_CTL_SET_AUINFO:
479    memcpy(&(self->info), data, sizeof(struct roar_audio_info));
480    return driver_oss_reopen_device(self);
481   break;
482  default:
483   return -1;
484 }
485
486 return 0;
487}
488
489ssize_t driver_oss_write   (struct roar_vio_calls * vio, void *buf, size_t count) {
490 if ( _get(vio,need_config) ) {
491  if ( driver_oss_config_device(vio->inst) == -1 ) {
492   return -1;
493  }
494 }
495
496 return write(_get(vio,fh), buf, count);
497}
498
499#endif
500//ll
Note: See TracBrowser for help on using the repository browser.