source: roaraudio/libroar/simple.c @ 3012:7d5415a0d8d8

Last change on this file since 3012:7d5415a0d8d8 was 3012:7d5415a0d8d8, checked in by phi, 15 years ago

added sysio warning

File size: 11.1 KB
RevLine 
[0]1//simple.c:
2
[690]3/*
[1187]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008, 2009
[690]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, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *  NOTE for everyone want's to change something and send patches:
24 *  read README and HACKING! There a addition information on
25 *  the license of this document you need to read before you send
26 *  any patches.
27 *
28 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
29 *  or libpulse*:
30 *  The libs libroaresd, libroararts and libroarpulse link this lib
31 *  and are therefore GPL. Because of this it may be illigal to use
32 *  them with any software that uses libesd, libartsc or libpulse*.
33 */
34
[0]35#include "libroar.h"
36
37int roar_simple_connect (struct roar_connection * con, char * server, char * name) {
38
39 ROAR_DBG("roar_simple_connect(*): trying to connect...");
40
41 if ( roar_connect(con, server) == -1 ) {
42  ROAR_DBG("roar_simple_connect(*): roar_connect() faild!");
43  return -1;
44 }
45
46 if ( roar_identify(con, name) == -1 ) {
47  ROAR_DBG("roar_simple_connect(*): roar_identify() faild!");
48  return -1;
49 }
50
51 if ( roar_auth(con) == -1 ) {
52  ROAR_DBG("roar_simple_connect(*): roar_auth() faild!");
53  return -1;
54 }
55
56 return 0;
57}
58
59int roar_simple_stream(int rate, int channels, int bits, int codec, char * server, int dir, char * name) {
[1158]60 struct roar_stream     s;
61
[2818]62 roar_debug_warn_sysio("roar_simple_stream", "roar_vio_simple_stream", NULL);
63
[1158]64 return roar_simple_stream_obj(&s, rate, channels, bits, codec, server, dir, name);
65}
66
67int roar_simple_stream_obj  (struct roar_stream * s, int rate, int channels, int bits, int codec, char * server, int dir, char * name) {
[0]68 struct roar_connection con;
[1660]69 int ret;
[0]70
[2818]71 roar_debug_warn_sysio("roar_simple_stream_obj", NULL, NULL);
72
[0]73 if ( roar_simple_connect(&con, server, name) == -1 ) {
74  ROAR_DBG("roar_simple_play(*): roar_simple_connect() faild!");
[1094]75  ROAR_ERR("roar_simple_stream(*): Can not connect to server");
[0]76  return -1;
77 }
78
[1158]79 if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
[0]80  roar_disconnect(&con);
81  return -1;
82 }
83
[1158]84 if ( roar_stream_connect(&con, s, dir) == -1 ) {
[0]85  roar_disconnect(&con);
86  return -1;
87 }
88
[1158]89 if ( roar_stream_exec(&con, s) == -1 ) {
[0]90  roar_disconnect(&con);
91  return -1;
92 }
93
[1660]94 if ( (ret = roar_get_connection_fh(&con)) == -1 ) {
95  roar_disconnect(&con);
96  return -1;
[54]97 }
98
[1660]99 if ( dir == ROAR_DIR_PLAY ) {
100  ROAR_SHUTDOWN(ret, SHUT_RD);
101 } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
102  ROAR_SHUTDOWN(ret, SHUT_WR);
103 }
104
105 return ret;
[0]106}
107
[1163]108int roar_simple_new_stream_attachexeced_obj (struct roar_connection * con, struct roar_stream * s, int rate, int channels, int bits, int codec, int dir) {
109 int fh;
110
[1476]111 if ( (fh = roar_simple_stream_obj(s, rate, channels, bits, codec, NULL /* server, we hope this is ok here... */,
[1163]112                                   dir, "libroar temp stream")) == -1 )
113  return -1;
114
115 if ( roar_stream_attach_simple(con, s, roar_get_clientid(con)) == -1 ) {
[1476]116#ifdef ROAR_HAVE_IO_POSIX
[1163]117  close(fh);
[1476]118#endif /* no else as we return -1 anyway */
[1163]119  return -1;
120 }
121
[1166]122 s->fh = fh;
123
[1163]124 return fh;
125}
126
[82]127int roar_simple_new_stream (struct roar_connection * con, int rate, int channels, int bits, int codec, int dir) {
128 struct roar_stream     s;
[119]129 return roar_simple_new_stream_obj(con, &s, rate, channels, bits, codec, dir);
130}
131
132int roar_simple_new_stream_obj (struct roar_connection * con, struct roar_stream * s, int rate, int channels, int bits, int codec, int dir) {
[2481]133 struct roar_libroar_config * config = roar_libroar_get_config();
[1168]134 char file[80] = {0};
135 int fh = -1, listen = -1;
[82]136 static int count = 0;
[487]137 int    type = ROAR_SOCKET_TYPE_UNIX;
138 int    port = 0;
[1396]139#if defined(ROAR_HAVE_IPV4) || defined(ROAR_HAVE_LIBDNET)
[493]140 int    opt  = 1;
[1396]141#endif
[1466]142#ifdef ROAR_HAVE_IPV4
[487]143 struct sockaddr_in   socket_addr;
144 socklen_t            len            = sizeof(struct sockaddr_in);
[1466]145#else
146 struct sockaddr      socket_addr;
147 socklen_t            len            = sizeof(struct sockaddr);
148#endif
[1465]149#ifdef ROAR_HAVE_SELECT
[1161]150 fd_set fds;
151 struct timeval timeout = {10, 0};
[1465]152 struct roar_message    mes;
153#endif
[1396]154#ifdef ROAR_HAVE_UNIX
[1168]155 int socks[2]; // for socketpair()
[1396]156#endif
[82]157
[3012]158 roar_debug_warn_sysio("roar_simple_new_stream_obj", "roar_vio_simple_new_stream_obj", NULL);
159
[2481]160 if ( config != NULL ) {
161  if ( config->workaround.workarounds & ROAR_LIBROAR_CONFIG_WAS_USE_EXECED ) {
162   return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir);
163  }
164 }
165
[1476]166#ifdef ROAR_HAVE_BSDSOCKETS
[1660]167 if ( getsockname(roar_get_connection_fh(con), (struct sockaddr *)&socket_addr, &len) == -1 ) {
[82]168  return -1;
169 }
[1476]170#else
171 return -1;
172#endif
[82]173
[1178]174 if ( len == 0 ) {
175#ifdef ROAR_OS_OPENBSD
176  ROAR_WARN("roar_simple_new_stream_obj(*): Unknown address family: guess AF_UNIX because OS is OpenBSD");
[1466]177  ((struct sockaddr*)&socket_addr)->sa_family = AF_UNIX;
[1178]178#else
[505]179  return -1;
[1178]180#endif
181 }
182
[1466]183 switch (((struct sockaddr*)&socket_addr)->sa_family) {
[1359]184#ifdef ROAR_HAVE_UNIX
[1178]185  case AF_UNIX:   type = ROAR_SOCKET_TYPE_UNIX; break;
[1359]186#endif
187#ifdef ROAR_HAVE_IPV4
[1178]188  case AF_INET:   type = ROAR_SOCKET_TYPE_INET; break;
[1359]189#endif
190#ifdef ROAR_HAVE_LIBDNET
[1178]191  case AF_DECnet: type = ROAR_SOCKET_TYPE_DECNET; break;
[1359]192#endif
[1178]193  default:
194    return -1;
195   break;
[487]196 }
197
[1187]198 if ( type == ROAR_SOCKET_TYPE_DECNET ) {
[526]199  if ( roar_socket_get_local_nodename() ) {
[1067]200   snprintf(file, 24,"%s::roar$TMP%04x%02x", roar_socket_get_local_nodename(), getpid(), count++);
[526]201  } else {
202   return -1;
203  }
[1380]204#ifdef ROAR_HAVE_IPV4
[487]205 } else {
[1068]206  strncpy(file, inet_ntoa(socket_addr.sin_addr), 79);
[1380]207#endif
[487]208 }
209
[1168]210 if ( type != ROAR_SOCKET_TYPE_UNIX ) {
211  if ( (listen = roar_socket_listen(type, file, port)) == -1 ) {
212   return -1;
213  }
[487]214 }
[451]215
[487]216 if ( type == ROAR_SOCKET_TYPE_INET ) {
[1380]217#ifdef ROAR_HAVE_IPV4
[487]218  len = sizeof(struct sockaddr_in);
[493]219  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
220
[487]221  if ( getsockname(listen, (struct sockaddr *)&socket_addr, &len) == -1 ) {
222   return -1;
223  }
224  port = ROAR_NET2HOST16(socket_addr.sin_port);
225  ROAR_DBG("roar_simple_new_stream_obj(*): port=%i", port);
[1380]226#else
227  return -1;
228#endif
[532]229 } else if ( type == ROAR_SOCKET_TYPE_DECNET ) {
[1395]230#ifdef ROAR_HAVE_LIBDNET
[532]231  len = sizeof(struct sockaddr_in);
232  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
[1395]233#else
234  return -1;
235#endif
[487]236 }
[451]237
[119]238 if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
[82]239  return -1;
240 }
241
[119]242 if ( roar_stream_connect(con, s, dir) == -1 ) {
[82]243  return -1;
244 }
245
[1168]246 if ( type != ROAR_SOCKET_TYPE_UNIX ) {
[1465]247#ifdef ROAR_HAVE_SELECT
[1168]248  if ( roar_stream_connect_to_ask(con, s, type, file, port) != -1 ) {
[1161]249
[1168]250   FD_ZERO(&fds);
251   FD_SET(listen, &fds);
[1163]252
[1168]253   if ( select(listen + 1, &fds, &fds, &fds, &timeout) < 1 ) {
254    close(listen);
[1163]255
[1168]256    // we don't need to check the content as we know it failed...
257    if ( roar_recv_message(con, &mes, NULL) == -1 )
258     return -1;
[1161]259
[1168]260    if ( roar_kick(con, ROAR_OT_STREAM, s->id) == -1 )
261     return -1;
[1161]262
[1168]263    return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir);
[82]264   }
[1168]265
266   if ( (fh = accept(listen, NULL, NULL)) != -1 ) {
267    /* errr, do we need we any error handling here? */
268   }
[82]269   if ( roar_recv_message(con, &mes, NULL) == -1 ) {
270    close(fh);
271    fh = -1;
272   } else if ( mes.cmd != ROAR_CMD_OK ) {
273    close(fh);
274    fh = -1;
275   }
[1168]276  }
277
278  close(listen);
[1465]279#else
280  return -1;
281#endif
[1168]282 } else { // this is type == ROAR_SOCKET_TYPE_UNIX
[1395]283#ifdef ROAR_HAVE_UNIX
[1168]284  if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
285   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
286                                          // as we return -1 in both whys
287   return -1;
288  }
289
290  if ( roar_stream_passfh(con, s, socks[0]) == -1 ) {
291   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
292                                          // as we return -1 in both whys
293   return -1;
294  }
295
296  close(socks[0]);
297  fh = socks[1];
[1395]298#else
299  roar_kick(con, ROAR_OT_STREAM, s->id);
300  return -1;
301#endif
[82]302 }
303
[1168]304/*
[487]305 if ( type == ROAR_SOCKET_TYPE_UNIX ) {
306  unlink(file);
307 }
[1168]308*/
309
310 if ( dir == ROAR_DIR_PLAY ) {
[1470]311  ROAR_SHUTDOWN(fh, SHUT_RD);
[1168]312 } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
[1470]313  ROAR_SHUTDOWN(fh, SHUT_WR);
[1168]314 }
[82]315
[505]316 s->fh = fh;
317
[82]318 return fh;
319}
320
[235]321
322int roar_simple_play_file(char * file, char * server, char * name) {
323 struct roar_connection con;
324
325 if ( roar_simple_connect(&con, server, name) == -1 ) {
326  return -1;
327 }
328
329 return roar_file_play(&con, file, 1); // con is closed by this as this stream will be an execed one.
330}
331
[0]332int roar_simple_play(int rate, int channels, int bits, int codec, char * server, char * name) {
[2655]333 roar_debug_warn_sysio("roar_simple_play", "roar_vio_simple_stream", NULL);
334
[0]335 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_PLAY, name);
336}
337
338int roar_simple_monitor(int rate, int channels, int bits, int codec, char * server, char * name) {
[2655]339 roar_debug_warn_sysio("roar_simple_monitor", "roar_vio_simple_stream", NULL);
340
[0]341 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_MONITOR, name);
342}
343
344int roar_simple_record(int rate, int channels, int bits, int codec, char * server, char * name) {
[2655]345 roar_debug_warn_sysio("roar_simple_record", "roar_vio_simple_stream", NULL);
346
[0]347 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_RECORD, name);
348}
349
350int roar_simple_filter(int rate, int channels, int bits, int codec, char * server, char * name) {
[2655]351 roar_debug_warn_sysio("roar_simple_filter", "roar_vio_simple_stream", NULL);
352
[0]353 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_FILTER, name);
354}
355
[2697]356int roar_simple_connect_virtual(struct roar_connection * con, struct roar_stream * s, int parent, int dir) {
[2656]357 struct roar_stream parent_stream;
358
359 if ( con == NULL || s == NULL || parent < 0 )
360  return -1;
361
[2697]362 if ( dir == -1 ) {
363  if ( roar_get_stream(con, &parent_stream, parent) == -1 )
364   return -1;
[2656]365
[2697]366  if ( (dir = roar_stream_get_dir(&parent_stream)) == -1 )
367   return -1;
368 }
[2656]369
370 if ( roar_stream_set_rel_id(s, parent) == -1 )
371  return -1;
372
373 if ( roar_stream_connect(con, s, dir) == -1 )
374  return -1;
375
376 if ( roar_stream_set_flags(con, s, ROAR_FLAG_VIRTUAL, 0) == -1 ) {
377  roar_kick(con, ROAR_OT_STREAM, roar_stream_get_id(s));
378  return -1;
379 }
380
381 return 0;
[2647]382}
[0]383
384int roar_simple_close(int fh) {
[2655]385 roar_debug_warn_sysio("roar_simple_close", "roar_vio_close", NULL);
386
[1763]387#ifdef ROAR_TARGET_WIN32
388 closesocket(fh);
389 return 0;
390#else
391
[1476]392#ifdef ROAR_HAVE_IO_POSIX
[0]393 return close(fh);
[1476]394#else
395 return -1;
396#endif
[1763]397
398#endif
[0]399}
400
401int roar_simple_get_standby (int fh) {
402 struct roar_connection con;
403
[2809]404 roar_debug_warn_sysio("roar_simple_get_standby", "roar_get_standby", NULL);
[2655]405
[1660]406 if ( roar_connect_fh(&con, fh) == -1 )
407  return -1;
[0]408
409 return roar_get_standby(&con);
410}
411
412//ll
Note: See TracBrowser for help on using the repository browser.