source: roaraudio/libroar/vio_stream.c @ 5408:c6d31c2e4a51

Last change on this file since 5408:c6d31c2e4a51 was 5408:c6d31c2e4a51, checked in by phi, 12 years ago

re-ported to f* s* bla win32 !*!*Dd*S!, I hate this.

File size: 12.0 KB
Line 
1//vio_stream.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2012
5 *
6 *  This file is part of libroar 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 *  libroar 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 *  NOTE for everyone want's to change something and send patches:
25 *  read README and HACKING! There a addition information on
26 *  the license of this document you need to read before you send
27 *  any patches.
28 *
29 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
30 *  or libpulse*:
31 *  The libs libroaresd, libroararts and libroarpulse link this lib
32 *  and are therefore GPL. Because of this it may be illigal to use
33 *  them with any software that uses libesd, libartsc or libpulse*.
34 */
35
36#include "libroar.h"
37
38static ssize_t _vio_stream_read    (struct roar_vio_calls * vio, void *buf, size_t count) {
39 return roar_vio_read(roar_get_connection_vio2(vio->inst), buf, count);
40}
41
42static ssize_t _vio_stream_write   (struct roar_vio_calls * vio, void *buf, size_t count) {
43 return roar_vio_write(roar_get_connection_vio2(vio->inst), buf, count);
44}
45
46static roar_off_t   _vio_stream_lseek   (struct roar_vio_calls * vio, roar_off_t offset, int whence) {
47 return roar_vio_lseek(roar_get_connection_vio2(vio->inst), offset, whence);
48}
49static int     _vio_stream_sync    (struct roar_vio_calls * vio) {
50 return roar_vio_sync(roar_get_connection_vio2(vio->inst));
51}
52static int     _vio_stream_ctl     (struct roar_vio_calls * vio, roar_vio_ctl_t cmd, void * data) {
53 if (vio == NULL) {
54  roar_err_set(ROAR_ERROR_FAULT);
55  return -1;
56 }
57
58 if (cmd == -1) {
59  roar_err_set(ROAR_ERROR_INVAL);
60  return -1;
61 }
62
63 switch (cmd) {
64  case ROAR_VIO_CTL_GET_NAME:
65    if ( data == NULL ) {
66     roar_err_set(ROAR_ERROR_FAULT);
67     return -1;
68    }
69
70    *(char**)data = "stream";
71    return 0;
72   break;
73  case ROAR_VIO_CTL_GET_NEXT:
74    *(struct roar_vio_calls **)data = roar_get_connection_vio2(vio->inst);
75    return 0;
76   break;
77  case ROAR_VIO_CTL_SET_NEXT:
78    roar_err_set(ROAR_ERROR_NOTSUP);
79    return -1;
80   break;
81  case ROAR_VIO_CTL_NONBLOCK:
82    return roar_vio_ctl(roar_get_connection_vio2(vio->inst), ROAR_VIO_CTL_NONBLOCK, data);
83   break;
84 }
85
86 return roar_vio_ctl(roar_get_connection_vio2(vio->inst), cmd, data);
87}
88
89static int     _vio_stream_close   (struct roar_vio_calls * vio) {
90 roar_vio_close(roar_get_connection_vio2(vio->inst));
91 roar_mm_free(vio->inst);
92
93 return 0;
94}
95
96int     roar_vio_simple_stream (struct roar_vio_calls * calls,
97                                uint32_t rate, uint32_t channels, uint32_t bits, uint32_t codec,
98                                const char * server, int dir, const char * name, int mixer) {
99 struct roar_connection * con = NULL;
100 struct roar_stream       stream;
101 int err;
102
103 if ( calls == NULL ) {
104  roar_err_set(ROAR_ERROR_FAULT);
105  return -1;
106 }
107
108 if ( roar_stream_new(&stream, rate, channels, bits, codec) == -1 )
109  return -1;
110
111 con = roar_mm_malloc(sizeof(struct roar_connection));
112 if ( con == NULL )
113  return -1;
114
115 memset(con, 0, sizeof(struct roar_connection));
116
117 if ( roar_simple_connect(con, server, name) == -1 ) {
118  err = roar_error;
119  roar_mm_free(con);
120  roar_error = err;
121  return -1;
122 }
123
124 if ( roar_stream_connect(con, &stream, dir, mixer) == -1 ) {
125  err = roar_error;
126  roar_disconnect(con);
127  roar_mm_free(con);
128  roar_error = err;
129  return -1;
130 }
131
132 if ( roar_stream_exec(con, &stream) == -1 ) {
133  err = roar_error;
134  roar_disconnect(con);
135  roar_mm_free(con);
136  roar_error = err;
137  return -1;
138 }
139
140 roar_vio_clear_calls(calls);
141
142 calls->inst       = con;
143 calls->read       = _vio_stream_read;
144 calls->write      = _vio_stream_write;
145 calls->lseek      = _vio_stream_lseek;
146 calls->sync       = _vio_stream_sync;
147 calls->ctl        = _vio_stream_ctl;
148 calls->close      = _vio_stream_close;
149
150 if ( dir == ROAR_DIR_PLAY ) {
151  roar_vio_shutdown(calls, SHUT_RD);
152 } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
153  roar_vio_shutdown(calls, SHUT_WR);
154 }
155
156 return 0;
157}
158
159static int _roar_simple_new_stream_obj (struct roar_connection * con, struct roar_stream * s, uint32_t rate, uint32_t channels, uint32_t bits, uint32_t codec, int dir, int mixer) {
160 struct roar_libroar_config * config = roar_libroar_get_config();
161 char file[80] = {0};
162 int fh = -1, listen = -1;
163 static int count = 0;
164 int    type = ROAR_SOCKET_TYPE_UNIX;
165 int    port = 0;
166#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_LIBDNET)
167 int    opt  = 1;
168#endif
169#ifdef ROAR_HAVE_IPV4
170 struct sockaddr_in   socket_addr;
171 socklen_t            len            = sizeof(struct sockaddr_in);
172#else
173 struct sockaddr      socket_addr;
174 socklen_t            len            = sizeof(struct sockaddr);
175#endif
176#ifdef ROAR_HAVE_SELECT
177 int confh;
178 fd_set fds;
179 struct timeval timeout = {10, 0};
180 struct roar_message    mes;
181#endif
182#ifdef ROAR_HAVE_UNIX
183 int socks[2]; // for socketpair()
184#endif
185 struct roar_sockname sockname;
186
187 // make valgrind happy
188 memset(&socket_addr, 0, sizeof(socket_addr));
189#ifdef ROAR_HAVE_SELECT
190 memset(&mes,         0, sizeof(mes));
191#endif
192
193 ROAR_DBG("_roar_simple_new_stream_obj(con=%p, s=%p, rate=%i, channels=%i, bits=%i, codec=%i, dir=%i, mixer=%i) = ?", con, s, (int)rate, (int)channels, (int)bits, (int)codec, dir, mixer);
194
195 if ( config != NULL ) {
196  if ( config->workaround.workarounds & ROAR_LIBROAR_CONFIG_WAS_USE_EXECED ) {
197   return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir, mixer);
198  }
199 }
200
201 ROAR_DBG("_roar_simple_new_stream_obj(con=%p, s=%p, rate=%i, channels=%i, bits=%i, codec=%i, dir=%i, mixer=%i) = ?", con, s, (int)rate, (int)channels, (int)bits, (int)codec, dir, mixer);
202
203 roar_libroar_nowarn();
204 if ( roar_vio_ctl(roar_get_connection_vio2(con), ROAR_VIO_CTL_GET_SOCKNAME, &sockname) == -1 ) {
205  roar_libroar_warn();
206#ifdef ROAR_OS_OPENBSD
207  sockname.type = ROAR_SOCKET_TYPE_UNIX;
208#else
209  ROAR_DBG("_roar_simple_new_stream_obj(con=%p, s=%p, rate=%i, channels=%i, bits=%i, codec=%i, dir=%i, mixer=%i) = -1", con, s, (int)rate, (int)channels, (int)bits, (int)codec, dir, mixer);
210
211  return -1;
212#endif
213 }
214 roar_libroar_warn();
215
216 ROAR_DBG("_roar_simple_new_stream_obj(con=%p, s=%p, rate=%i, channels=%i, bits=%i, codec=%i, dir=%i, mixer=%i) = ?", con, s, (int)rate, (int)channels, (int)bits, (int)codec, dir, mixer);
217
218 if ( sockname.type == ROAR_SOCKET_TYPE_DECNET ) {
219  if ( roar_socket_get_local_nodename() ) {
220   snprintf(file, 24, "%s::roar$TMP%04x%02x", roar_socket_get_local_nodename(), getpid(), count++);
221  } else {
222   return -1;
223  }
224#ifdef ROAR_HAVE_IPV4
225 } else {
226  strncpy(file, inet_ntoa(socket_addr.sin_addr), sizeof(file) - 1);
227#endif
228 }
229
230 if ( sockname.type != ROAR_SOCKET_TYPE_UNIX ) {
231  if ( (listen = roar_socket_listen(sockname.type, file, port)) == -1 ) {
232   return -1;
233  }
234 }
235
236 if ( sockname.type == ROAR_SOCKET_TYPE_INET ) {
237#ifdef ROAR_HAVE_IPV4
238  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, (void*)&opt, sizeof(int));
239
240  len = sizeof(struct sockaddr_in);
241  if ( getsockname(listen, (struct sockaddr *)&socket_addr, &len) == -1 ) {
242   return -1;
243  }
244  port = ROAR_NET2HOST16(socket_addr.sin_port);
245  ROAR_DBG("roar_simple_new_stream_obj(*): port=%i", port);
246#else
247  return -1;
248#endif
249 } else if ( sockname.type == ROAR_SOCKET_TYPE_DECNET ) {
250#ifdef ROAR_HAVE_LIBDNET
251  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
252#else
253  return -1;
254#endif
255 }
256
257 if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
258  return -1;
259 }
260
261 if ( roar_stream_connect(con, s, dir, mixer) == -1 ) {
262  return -1;
263 }
264
265 if ( sockname.type != ROAR_SOCKET_TYPE_UNIX ) {
266#ifdef ROAR_HAVE_SELECT
267  if ( roar_stream_connect_to_ask(con, s, sockname.type, file, port) != -1 ) {
268
269   FD_ZERO(&fds);
270   FD_SET(listen, &fds);
271
272   confh = roar_get_connection_fh(con);
273
274   if ( confh != -1 ) {
275    FD_SET(confh, &fds);
276   }
277
278   if ( select((confh > listen ? confh : listen) + 1, &fds, NULL, NULL, &timeout) < 1 ) {
279    close(listen);
280
281    // we don't need to check the content as we know it failed...
282    if ( roar_recv_message(con, &mes, NULL) == -1 )
283     return -1;
284
285    if ( roar_kick(con, ROAR_OT_STREAM, s->id) == -1 )
286     return -1;
287
288    return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir, mixer);
289   }
290
291   if ( FD_ISSET(listen, &fds) ) {
292    if ( (fh = accept(listen, NULL, NULL)) != -1 ) {
293     /* errr, do we need we any error handling here? */
294    }
295
296    if ( roar_recv_message(con, &mes, NULL) == -1 ) {
297     if ( fh != -1 )
298      close(fh);
299     fh = -1;
300    } else if ( mes.cmd != ROAR_CMD_OK ) {
301     if ( fh != -1 )
302      close(fh);
303     fh = -1;
304    }
305   } else {
306    // we don't need to check the content as we know it failed...
307    if ( roar_recv_message(con, &mes, NULL) == -1 ) {
308     close(listen);
309     return -1;
310    }
311
312    if ( mes.cmd != ROAR_CMD_OK ) {
313     close(listen);
314     if ( roar_kick(con, ROAR_OT_STREAM, s->id) == -1 )
315      return -1;
316
317     return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir, mixer);
318    } else { // seems like we have a positive reply. So we retry the listen socket:
319     FD_ZERO(&fds);
320     FD_SET(listen, &fds);
321     timeout.tv_sec = 0;
322     timeout.tv_usec = 128000L;
323     fh = -1;
324     if ( select(listen + 1, &fds, NULL, NULL, &timeout) > 0 ) {
325      if ( (fh = accept(listen, NULL, NULL)) == -1 ) {
326       close(listen);
327       if ( roar_kick(con, ROAR_OT_STREAM, s->id) == -1 )
328        return -1;
329
330       return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir, mixer);
331      }
332     }
333    }
334   }
335  }
336
337  close(listen);
338#else
339  return -1;
340#endif
341 } else { // this is sockname.type == ROAR_SOCKET_TYPE_UNIX
342#ifdef ROAR_HAVE_UNIX
343  if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
344   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
345                                          // as we return -1 in both whys
346   return -1;
347  }
348
349  if ( roar_stream_passfh(con, s, socks[0]) == -1 ) {
350   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
351                                          // as we return -1 anyway.
352   close(socks[0]);
353   close(socks[1]);
354   return -1;
355  }
356
357  close(socks[0]);
358  fh = socks[1];
359#else
360  roar_kick(con, ROAR_OT_STREAM, s->id);
361  return -1;
362#endif
363 }
364
365 if ( fh != -1 ) {
366  if ( dir == ROAR_DIR_PLAY ) {
367   (void)ROAR_SHUTDOWN(fh, SHUT_RD);
368  } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
369   (void)ROAR_SHUTDOWN(fh, SHUT_WR);
370  }
371 }
372
373 s->fh = fh;
374
375 ROAR_DBG("_roar_simple_new_stream_obj(con=%p, s=%p, rate=%i, channels=%i, bits=%i, codec=%i, dir=%i, mixer=%i) = %i", con, s, (int)rate, (int)channels, (int)bits, (int)codec, dir, mixer, fh);
376 return fh;
377}
378
379int     roar_vio_simple_new_stream_obj (struct roar_vio_calls * calls,
380                                        struct roar_connection * con,
381                                        struct roar_stream * s,
382                                        uint32_t rate, uint32_t channels, uint32_t bits, uint32_t codec,
383                                        int dir, int mixer) {
384 struct roar_stream stream;
385 int fh;
386
387 ROAR_DBG("roar_vio_simple_new_stream_obj(*) = ?");
388
389 if ( calls == NULL ) {
390  roar_err_set(ROAR_ERROR_FAULT);
391  return -1;
392 }
393
394 if ( s == NULL )
395  s = &stream;
396
397 if ( (fh = _roar_simple_new_stream_obj(con, s, rate, channels, bits, codec, dir, mixer)) == -1 ) {
398  ROAR_DBG("roar_vio_simple_new_stream_obj(*) = -1");
399  return -1;
400 }
401
402 ROAR_DBG("roar_vio_simple_new_stream_obj(*): fh=%i", fh);
403
404 return roar_vio_open_fh_socket(calls, fh);
405}
406
407//ll
Note: See TracBrowser for help on using the repository browser.