source: roaraudio/libroar/simple.c @ 1380:2df1d3fd0785

Last change on this file since 1380:2df1d3fd0785 was 1380:2df1d3fd0785, checked in by phi, 15 years ago

only support IPv4 if we have IPv4 support, return -1 in other cases

File size: 8.6 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
62 return roar_simple_stream_obj(&s, rate, channels, bits, codec, server, dir, name);
63}
64
65int roar_simple_stream_obj  (struct roar_stream * s, int rate, int channels, int bits, int codec, char * server, int dir, char * name) {
[0]66 struct roar_connection con;
67
68 if ( roar_simple_connect(&con, server, name) == -1 ) {
69  ROAR_DBG("roar_simple_play(*): roar_simple_connect() faild!");
[1094]70  ROAR_ERR("roar_simple_stream(*): Can not connect to server");
[0]71  return -1;
72 }
73
[1158]74 if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
[0]75  roar_disconnect(&con);
76  return -1;
77 }
78
[1158]79 if ( roar_stream_connect(&con, s, dir) == -1 ) {
[0]80  roar_disconnect(&con);
81  return -1;
82 }
83
[1158]84 if ( roar_stream_exec(&con, s) == -1 ) {
[0]85  roar_disconnect(&con);
86  return -1;
87 }
88
[54]89 if ( dir == ROAR_DIR_PLAY ) {
90  shutdown(con.fh, SHUT_RD);
91 } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
92  shutdown(con.fh, SHUT_WR);
93 }
94
[0]95 return con.fh;
96}
97
[1163]98int roar_simple_new_stream_attachexeced_obj (struct roar_connection * con, struct roar_stream * s, int rate, int channels, int bits, int codec, int dir) {
99 int fh;
100
101 if ( (fh = roar_simple_stream_obj(s, rate, channels, bits, codec, NULL /* server, we hope this goes ok here... */,
102                                   dir, "libroar temp stream")) == -1 )
103  return -1;
104
105 if ( roar_stream_attach_simple(con, s, roar_get_clientid(con)) == -1 ) {
106  close(fh);
107  return -1;
108 }
109
[1166]110 s->fh = fh;
111
[1163]112 return fh;
113}
114
[82]115int roar_simple_new_stream (struct roar_connection * con, int rate, int channels, int bits, int codec, int dir) {
116 struct roar_stream     s;
[119]117 return roar_simple_new_stream_obj(con, &s, rate, channels, bits, codec, dir);
118}
119
120int roar_simple_new_stream_obj (struct roar_connection * con, struct roar_stream * s, int rate, int channels, int bits, int codec, int dir) {
[82]121 struct roar_message    mes;
[1168]122 char file[80] = {0};
123 int fh = -1, listen = -1;
[82]124 static int count = 0;
[487]125 int    type = ROAR_SOCKET_TYPE_UNIX;
126 int    port = 0;
[493]127 int    opt  = 1;
[487]128 struct sockaddr_in   socket_addr;
129 socklen_t            len            = sizeof(struct sockaddr_in);
[1161]130 fd_set fds;
131 struct timeval timeout = {10, 0};
[1168]132 int socks[2]; // for socketpair()
[82]133
[487]134 if ( getsockname(con->fh, (struct sockaddr *)&socket_addr, &len) == -1 ) {
[82]135  return -1;
136 }
137
[1178]138 if ( len == 0 ) {
139#ifdef ROAR_OS_OPENBSD
140  ROAR_WARN("roar_simple_new_stream_obj(*): Unknown address family: guess AF_UNIX because OS is OpenBSD");
141  socket_addr.sin_family = AF_UNIX;
142#else
[505]143  return -1;
[1178]144#endif
145 }
146
147 switch (socket_addr.sin_family) {
[1359]148#ifdef ROAR_HAVE_UNIX
[1178]149  case AF_UNIX:   type = ROAR_SOCKET_TYPE_UNIX; break;
[1359]150#endif
151#ifdef ROAR_HAVE_IPV4
[1178]152  case AF_INET:   type = ROAR_SOCKET_TYPE_INET; break;
[1359]153#endif
154#ifdef ROAR_HAVE_LIBDNET
[1178]155  case AF_DECnet: type = ROAR_SOCKET_TYPE_DECNET; break;
[1359]156#endif
[1178]157  default:
158    return -1;
159   break;
[487]160 }
161
[1187]162 if ( type == ROAR_SOCKET_TYPE_DECNET ) {
[526]163  if ( roar_socket_get_local_nodename() ) {
[1067]164   snprintf(file, 24,"%s::roar$TMP%04x%02x", roar_socket_get_local_nodename(), getpid(), count++);
[526]165  } else {
166   return -1;
167  }
[1380]168#ifdef ROAR_HAVE_IPV4
[487]169 } else {
[1068]170  strncpy(file, inet_ntoa(socket_addr.sin_addr), 79);
[1380]171#endif
[487]172 }
173
[1168]174 if ( type != ROAR_SOCKET_TYPE_UNIX ) {
175  if ( (listen = roar_socket_listen(type, file, port)) == -1 ) {
176   return -1;
177  }
[487]178 }
[451]179
[487]180 if ( type == ROAR_SOCKET_TYPE_INET ) {
[1380]181#ifdef ROAR_HAVE_IPV4
[487]182  len = sizeof(struct sockaddr_in);
[493]183  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
184
[487]185  if ( getsockname(listen, (struct sockaddr *)&socket_addr, &len) == -1 ) {
186   return -1;
187  }
188  port = ROAR_NET2HOST16(socket_addr.sin_port);
189  ROAR_DBG("roar_simple_new_stream_obj(*): port=%i", port);
[1380]190#else
191  return -1;
192#endif
[532]193 } else if ( type == ROAR_SOCKET_TYPE_DECNET ) {
194  len = sizeof(struct sockaddr_in);
195  setsockopt(listen, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int));
[487]196 }
[451]197
[119]198 if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
[82]199  return -1;
200 }
201
[119]202 if ( roar_stream_connect(con, s, dir) == -1 ) {
[82]203  return -1;
204 }
205
[1168]206 if ( type != ROAR_SOCKET_TYPE_UNIX ) {
207  if ( roar_stream_connect_to_ask(con, s, type, file, port) != -1 ) {
[1161]208
[1168]209   FD_ZERO(&fds);
210   FD_SET(listen, &fds);
[1163]211
[1168]212   if ( select(listen + 1, &fds, &fds, &fds, &timeout) < 1 ) {
213    close(listen);
[1163]214
[1168]215    // we don't need to check the content as we know it failed...
216    if ( roar_recv_message(con, &mes, NULL) == -1 )
217     return -1;
[1161]218
[1168]219    if ( roar_kick(con, ROAR_OT_STREAM, s->id) == -1 )
220     return -1;
[1161]221
[1168]222    return roar_simple_new_stream_attachexeced_obj(con, s, rate, channels, bits, codec, dir);
[82]223   }
[1168]224
225   if ( (fh = accept(listen, NULL, NULL)) != -1 ) {
226    /* errr, do we need we any error handling here? */
227   }
[82]228   if ( roar_recv_message(con, &mes, NULL) == -1 ) {
229    close(fh);
230    fh = -1;
231   } else if ( mes.cmd != ROAR_CMD_OK ) {
232    close(fh);
233    fh = -1;
234   }
[1168]235  }
236
237  close(listen);
238 } else { // this is type == ROAR_SOCKET_TYPE_UNIX
239  if ( socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == -1 ) {
240   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
241                                          // as we return -1 in both whys
242   return -1;
243  }
244
245  if ( roar_stream_passfh(con, s, socks[0]) == -1 ) {
246   roar_kick(con, ROAR_OT_STREAM, s->id); // we do not need to check for errors
247                                          // as we return -1 in both whys
248   return -1;
249  }
250
251  close(socks[0]);
252  fh = socks[1];
[82]253 }
254
[1168]255/*
[487]256 if ( type == ROAR_SOCKET_TYPE_UNIX ) {
257  unlink(file);
258 }
[1168]259*/
260
261 if ( dir == ROAR_DIR_PLAY ) {
262  shutdown(fh, SHUT_RD);
263 } else if ( dir == ROAR_DIR_MONITOR || dir == ROAR_DIR_RECORD ) {
264  shutdown(fh, SHUT_WR);
265 }
[82]266
[505]267 s->fh = fh;
268
[82]269 return fh;
270}
271
[235]272
273int roar_simple_play_file(char * file, char * server, char * name) {
274 struct roar_connection con;
275
276 if ( roar_simple_connect(&con, server, name) == -1 ) {
277  return -1;
278 }
279
280 return roar_file_play(&con, file, 1); // con is closed by this as this stream will be an execed one.
281}
282
[0]283int roar_simple_play(int rate, int channels, int bits, int codec, char * server, char * name) {
284 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_PLAY, name);
285}
286
287int roar_simple_monitor(int rate, int channels, int bits, int codec, char * server, char * name) {
288 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_MONITOR, name);
289}
290
291int roar_simple_record(int rate, int channels, int bits, int codec, char * server, char * name) {
292 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_RECORD, name);
293}
294
295int roar_simple_filter(int rate, int channels, int bits, int codec, char * server, char * name) {
296 return roar_simple_stream(rate, channels, bits, codec, server, ROAR_DIR_FILTER, name);
297}
298
299
300int roar_simple_close(int fh) {
301 return close(fh);
302}
303
304int roar_simple_get_standby (int fh) {
305 struct roar_connection con;
306
307 con.fh = fh;
308
309 return roar_get_standby(&con);
310}
311
312//ll
Note: See TracBrowser for help on using the repository browser.