source: roaraudio/libroareio/driver.c @ 5381:430b1d26e12d

Last change on this file since 5381:430b1d26e12d was 5381:430b1d26e12d, checked in by phi, 12 years ago

updated copyright years

File size: 3.3 KB
Line 
1//driver.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009-2012
5 *
6 *  This file is part of roarclients 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, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <roaraudio.h>
27#include "driver.h"
28#include "autodetected.h"
29
30#ifdef ROAR_HAVE_AD_ESDFW
31#include "driver_esdfw.h"
32#endif
33
34int roar_cdriver_null(struct roar_vio_calls * calls, const char * name, const char * dev, struct roar_audio_info * info, int dir) {
35 ROAR_DBG("roar_cdriver_null(calls=%p, name='%s', dev='%s', info=%p{...}, dir=%i(?)) = ?", calls, name, dev, info, dir);
36
37 (void)name, (void)dev, (void)info, (void)dir;
38
39 memset(calls, 0, sizeof(struct roar_vio_calls));
40 calls->read  = roar_vio_null_rw;
41 calls->write = roar_vio_null_rw;
42
43 ROAR_DBG("roar_cdriver_null(calls=%p, name='%s', dev='%s', info=%p{...}, dir=%i(?)) = 0", calls, name, dev, info, dir);
44 return 0;
45}
46
47struct roar_cdriver _g_roar_cdriver[] = {
48 {"null", roar_cdriver_null},
49 {"roar", roar_cdriver_roar},
50#if defined(ROAR_HAVE_OSS_BSD) || defined(ROAR_HAVE_OSS)
51 {"oss",  roar_cdriver_oss},
52#endif
53#ifdef ROAR_HAVE_AD_ESDFW
54#include "driver_esdfw.c"
55#endif
56 {NULL, NULL}
57};
58
59
60static int roar_cdriver_open_default(struct roar_vio_calls * calls, const char * dev, struct roar_audio_info * info, int dir) {
61 const char * names[] = {
62  // native APIs:
63  "oss",
64  // Virtual APIs:
65  "roar",
66  // Dummys:
67  "null"
68 };
69 size_t i;
70 int ret;
71
72 if ( dev != NULL ) {
73  ROAR_WARN("roar_cdriver_open_default(calls=%p, dev='%s', info=%p, dir=%i): Try to open given device without driver name is a bad thing to do. This is normaly a Application error.", calls, dev, info, dir);
74 }
75
76 for (i = 0; i < (sizeof(names)/sizeof(*names)); i++) {
77  ret = roar_cdriver_open(calls, names[i], dev, info, dir);
78  if ( ret != -1 )
79   return ret;
80 }
81
82 return -1;
83}
84
85int roar_cdriver_open(struct roar_vio_calls * calls, const char * name, const char * dev, struct roar_audio_info * info, int dir) {
86 int i;
87 char *delm;
88
89 if ( name == NULL )
90  return roar_cdriver_open_default(calls, dev, info, dir);
91
92 for (i = 0; _g_roar_cdriver[i].name != NULL; i++) {
93  ROAR_DBG("roar_cdriver_open(*): _g_roar_cdriver[i].name='%s' <cmp> name='%s'", _g_roar_cdriver[i].name, name);
94
95  if ( !strcmp(_g_roar_cdriver[i].name, name) )
96   return _g_roar_cdriver[i].open(calls, name, dev, info, dir);
97
98  if ( (delm = strstr(_g_roar_cdriver[i].name, ":")) != NULL ) {
99   ROAR_DBG("roar_cdriver_open(*): delm+1='%s' <cmp> name='%s'", delm+1, name);
100   if ( !strcmp(delm+1, name) )
101    return _g_roar_cdriver[i].open(calls, name, dev, info, dir);
102  }
103
104 }
105
106 return -1;
107}
108
109//ll
Note: See TracBrowser for help on using the repository browser.