source: roaraudio/roard/driver.c @ 1951:b3aa890e87cd

Last change on this file since 1951:b3aa890e87cd was 1951:b3aa890e87cd, checked in by phi, 15 years ago

corrected list of drivers

File size: 7.9 KB
Line 
1//driver.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
27struct roar_driver g_driver[] = {
28 { "null", "null audio driver", "/dev/null", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
29   NULL, NULL, NULL, NULL, NULL, NULL, NULL},
30#ifdef ROAR_HAVE_ESD
31 { "esd", "EsounD audio driver", "localhost, remote.host.dom", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
32   NULL, driver_esd_close, driver_esd_pause, NULL, NULL, driver_esd_flush, driver_esd_open_vio},
33#endif
34 { "roar", "RoarAudio driver", "localhost, remote.host.dom", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
35   NULL, driver_roar_close, NULL, NULL, NULL, driver_roar_flush, driver_roar_open_vio},
36#ifdef ROAR_HAVE_IO_POSIX
37 { "raw",  "RAW PCM driver", "/some/file", DRV_FLAG_FHSEC, ROAR_SUBSYS_WAVEFORM|ROAR_SUBSYS_MIDI|ROAR_SUBSYS_LIGHT,
38   NULL, NULL, NULL, NULL, NULL, driver_raw_flush, driver_raw_open_vio},
39#endif
40#if defined(ROAR_HAVE_OSS_BSD) || defined(ROAR_HAVE_OSS)
41#ifndef ROAR_DEFAULT_OSS_DEV
42#define ROAR_DEFAULT_OSS_DEV "no default device"
43#endif
44 { "oss", "Open Sound System", ROAR_DEFAULT_OSS_DEV, DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
45   NULL, NULL, NULL, NULL, NULL, NULL, driver_oss_open},
46#endif
47#ifdef ROAR_HAVE_LIBAO
48 { "ao", "libao audio driver", "DRIVER", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
49   NULL, driver_ao_close, NULL, NULL, NULL, NULL, driver_ao_open_vio},
50#endif
51#ifdef ROAR_HAVE_LIBSHOUT
52 {"shout", "libshout streaming", "http://user:pw@host:port/mount.ogg", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
53  NULL, driver_shout_close, NULL, NULL, NULL, NULL, driver_shout_open_vio},
54#endif
55#ifdef ROAR_HAVE_LIBSNDIO
56 {"sndio", "OpenBSD sndio", "/dev/audio, /tmp/aucat-<uid>/default", DRV_FLAG_NONE, ROAR_SUBSYS_WAVEFORM,
57  NULL, NULL, NULL, NULL, NULL, NULL, driver_sndio_open},
58#endif
59 {"dmx", "DMX512 driver", "/dev/dmx", DRV_FLAG_FHSEC, ROAR_SUBSYS_LIGHT,
60  NULL, NULL, NULL, NULL, NULL, NULL, driver_dmx_open_vio},
61 {NULL, NULL, NULL, DRV_FLAG_NONE, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL} // end of list
62                                };
63
64void print_driverlist (void) {
65 int i;
66 char subsys[7] = "      ";
67
68 printf("  Driver Flag Subsys - Description (devices)\n");
69 printf("------------------------------------------------------\n");
70
71 for (i = 0; g_driver[i].name != NULL; i++) {
72  strncpy(subsys, "      ", 6);
73
74  if ( g_driver[i].subsystems & ROAR_SUBSYS_WAVEFORM )
75   subsys[0] = 'W';
76  if ( g_driver[i].subsystems & ROAR_SUBSYS_MIDI )
77   subsys[1] = 'M';
78  if ( g_driver[i].subsystems & ROAR_SUBSYS_CB )
79   subsys[2] = 'C';
80  if ( g_driver[i].subsystems & ROAR_SUBSYS_LIGHT )
81   subsys[3] = 'L';
82
83  printf("  %-7s %c%c%c %6s - %s (devices: %s)\n", g_driver[i].name,
84                g_driver[i].flags & DRV_FLAG_FHSEC                                                         ? 's' : ' ',
85                g_driver[i].open     != NULL || (g_driver[i].open == NULL && g_driver[i].vio_init == NULL) ? 'S' : ' ',
86                g_driver[i].vio_init != NULL || (g_driver[i].open == NULL && g_driver[i].vio_init == NULL) ? 'V' : ' ',
87                subsys,
88                g_driver[i].desc, g_driver[i].devices);
89 }
90}
91
92int driver_open (DRIVER_USERDATA_T * inst, int * driver_id, char * driver, char * device, struct roar_audio_info * info) {
93 int i;
94
95 if ( driver == NULL )
96  driver = ROAR_DRIVER_DEFAULT;
97
98 for (i = 0; g_driver[i].name != NULL; i++) {
99  if ( strcmp(g_driver[i].name, driver) == 0 ) {
100   ROAR_DBG("driver_open(*): found driver: id = %i", i);
101
102   *driver_id = i;
103
104   if ( g_driver[i].vio_init != NULL ) {
105    if ( (*inst = malloc(sizeof(struct roar_vio_calls))) == NULL )
106     return -1;
107
108    memset(*inst, 0, sizeof(struct roar_vio_calls));
109
110    if ( (i = g_driver[i].vio_init(*inst, device, info, -1)) == -1 ) {
111     free(*inst);
112     return -1;
113    }
114    return i;
115   }
116
117   if ( g_driver[i].open ) {
118    ROAR_WARN("driver_open(*): driver(%s) uses old non-vio interface!", driver);
119    return g_driver[i].open(inst, device, info);
120   }
121
122   return 0;
123  }
124 }
125
126 return -1;
127}
128
129int driver_openvio(struct roar_vio_calls * calls,
130                 int * driver_id, char * driver /* NOTE: this is not part of struct roar_driver's def! */,
131                 char * device, struct roar_audio_info * info, int fh) {
132 int i;
133
134 if ( driver == NULL )
135  driver = ROAR_DRIVER_DEFAULT;
136
137 ROAR_DBG("driver_openvio(*): searching for driver '%s'...", driver);
138
139 for (i = 0; g_driver[i].name != NULL; i++) {
140  if ( strcmp(g_driver[i].name, driver) == 0 ) {
141   ROAR_DBG("driver_open(*): found driver: id = %i", i);
142
143   *driver_id = i;
144
145   ROAR_DBG("driver_openvio(*): driver found: %s -> %i", driver, i);
146
147   if ( g_driver[i].vio_init == NULL ) {
148    if ( g_driver[i].open == NULL ) { // this is the null driver
149     memset(calls, 0, sizeof(struct roar_vio_calls));
150     calls->read  = roar_vio_null_rw;
151     calls->write = roar_vio_null_rw;
152     return 0;
153    }
154
155    ROAR_WARN("driver_open(*): driver(%s) uses old non-vio interface!", driver);
156    ROAR_ERR("driver_openvio(calls=%p, driver_id={%i}, driver='%s', device='%s', info=%p, fh=%i): not a VIO driver!",
157        calls, i, driver, device, info, fh);
158    return -1;
159   }
160
161   ROAR_DBG("driver_openvio(*): Opening VIO driver %s(%i)...", driver, i);
162   return g_driver[i].vio_init(calls, device, info, fh);
163  }
164 }
165 return -1;
166}
167
168int driver_close(DRIVER_USERDATA_T   inst, int driver) {
169 int ret = 0;
170 ROAR_DBG("driver_close(inst=%p, driver=%i) = ?", inst, driver);
171
172 if ( driver == -1 )
173  return -1;
174
175 if ( g_driver[driver].close )
176  ret = g_driver[driver].close(inst);
177
178 if ( g_driver[driver].vio_init != NULL )
179  free(inst);
180
181 return ret;
182}
183
184int driver_closevio(struct roar_vio_calls * calls, int driver) {
185 ROAR_DBG("driver_closevio(calls=%p, driver=%i) = ?", calls, driver);
186
187 if ( driver == -1 )
188  return -1;
189
190 if ( g_driver[driver].close )
191  return g_driver[driver].close((DRIVER_USERDATA_T)calls);
192
193 if ( calls->close != NULL )
194  roar_vio_close(calls);
195
196 return 0;
197}
198
199int driver_pause(DRIVER_USERDATA_T   inst, int driver, int newstate) {
200 if ( driver == -1 )
201  return -1;
202
203 if ( g_driver[driver].pause )
204  return g_driver[driver].pause(inst, newstate);
205
206 return -1;
207}
208
209int driver_write(DRIVER_USERDATA_T   inst, int driver, char * buf, int len) {
210 if ( driver == -1 )
211  return -1;
212
213 if ( g_driver[driver].vio_init != NULL )
214  return roar_vio_write((struct roar_vio_calls *) inst, buf, len);
215
216 if ( g_driver[driver].write )
217  return g_driver[driver].write(inst, buf, len);
218
219 return 0;
220}
221
222int driver_read (DRIVER_USERDATA_T   inst, int driver, char * buf, int len) {
223 if ( driver == -1 )
224  return -1;
225
226 if ( g_driver[driver].vio_init != NULL )
227  return roar_vio_read((struct roar_vio_calls *) inst, buf, len);
228
229 if ( g_driver[driver].read )
230  return g_driver[driver].read(inst, buf, len);
231
232 return 0;
233}
234
235int driver_flush(DRIVER_USERDATA_T   inst, int driver) {
236 if ( driver == -1 )
237  return -1;
238
239 if ( g_driver[driver].flush )
240  return g_driver[driver].flush(inst);
241
242 return 0;
243}
244
245int driver_set_volume(int stream, struct roar_mixer_settings * mixer) {
246 struct roar_stream_server * ss;
247
248 if ( (ss = g_streams[stream]) == NULL )
249  return -1;
250
251 if ( !streams_get_flag(stream, ROAR_FLAG_HWMIXER) )
252  return 0;
253
254 if ( ss->driver_id == -1 )
255  return -1;
256
257 return roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_VOLUME, (void*)mixer);
258}
259
260//ll
Note: See TracBrowser for help on using the repository browser.