source: roaraudio/libroar/basic.c @ 2567:df748c6f09ea

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

added roar_libroar_[gs]et_server()

File size: 11.7 KB
Line 
1//basic.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
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
35#include "libroar.h"
36
37int roar_connect_raw (char * server) {
38 char user_sock[80];
39 char * roar_server;
40 int i = 0;
41 int port = 0;
42 int fh = -1;
43 int is_decnet = 0;
44 char * obj = NULL;
45#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
46 struct passwd * pwd;
47#endif
48#ifdef ROAR_HAVE_LIBDNET
49 struct stat decnet_stat;
50#endif
51
52 roar_errno = ROAR_ERROR_UNKNOWN;
53
54 if ( server == NULL )
55  server = roar_libroar_get_server();
56
57 if ( server == NULL && (roar_server = getenv("ROAR_SERVER")) != NULL )
58  server = roar_server;
59
60#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
61 if ( server == NULL && (i = readlink("/etc/roarserver", user_sock, 79)) != -1 ) {
62   user_sock[i] = 0;
63   server = user_sock;
64 }
65#endif
66
67 if ( server == NULL || *server == 0 ) {
68  /* connect via defaults */
69
70#ifdef ROAR_HAVE_UNIX
71#ifndef ROAR_TARGET_MICROCONTROLLER
72  roar_server = getenv("HOME");
73#else
74  roar_server = NULL;
75#endif
76
77  if ( roar_server == NULL ) {
78#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
79   if ( (pwd = getpwuid(getuid())) == NULL ) {
80    roar_server = "/NX-HOME-DIR";
81   } else {
82    roar_server = pwd->pw_dir;
83   }
84#else
85   roar_server = "/WIN32-SUCKS";
86#endif
87  }
88
89  snprintf(user_sock, 79, "%s/%s", roar_server, ROAR_DEFAULT_SOCK_USER);
90
91  if ( (fh = roar_socket_connect(user_sock, 0)) != -1 )
92   return fh;
93
94  if ( (fh = roar_socket_connect(ROAR_DEFAULT_SOCK_GLOBAL, 0)) != -1 )
95   return fh;
96#endif
97
98  if ( (fh = roar_socket_connect(ROAR_DEFAULT_HOST, ROAR_DEFAULT_PORT)) != -1 )
99   return fh;
100
101#ifdef ROAR_HAVE_LIBDNET
102  if ( stat(ROAR_PROC_NET_DECNET, &decnet_stat) == 0 ) {
103   if ( roar_socket_get_local_nodename() ) {
104    snprintf(user_sock, 79, "%s::%s", roar_socket_get_local_nodename(), ROAR_DEFAULT_OBJECT);
105    if ( (fh = roar_socket_connect(user_sock, ROAR_DEFAULT_NUM)) != -1 )
106     return fh;
107   }
108  }
109#endif
110
111#ifdef ROAR_HAVE_LIBSLP
112 if ( (server = roar_slp_find_roard(0)) != NULL )
113  if ( (fh = roar_connect_raw(server)) != -1 )
114   return fh;
115
116 /* in case we can not connect to the server given this may be a cache problem,
117    we do a new lookup with the cache disabled in this case                     */
118 ROAR_WARN("roar_connect_raw(*): Can not connect to SLP located server, disabling cache");
119 if ( (server = roar_slp_find_roard(1)) != NULL )
120  if ( (fh = roar_connect_raw(server)) != -1 )
121   return fh;
122#endif
123
124 return -1;
125
126 } else {
127  /* connect via (char*)server */
128  // find a port:
129  if ( *server != '/' ) { // don't test AF_UNIX sockets for ports
130   for (i = 0; server[i] != 0; i++) {
131    if ( server[i] == ':' ) {
132     if ( server[i+1] == ':' ) { // DECnet, leave unchanged
133      is_decnet = 1;
134      obj = &server[i+2];
135      break;
136     }
137
138     port = atoi(server+i+1);
139     server[i] = 0;
140     break;
141    }
142   }
143  }
144
145  if ( is_decnet ) {
146    *user_sock = 0;
147   if ( *server == ':' ) {
148    if ( roar_socket_get_local_nodename() )
149     strncat(user_sock, roar_socket_get_local_nodename(), 6);
150   }
151
152   strncat(user_sock, server, 79);
153   server = user_sock;
154   if ( *obj == 0 ) {
155#ifdef DN_MAXOBJL
156    strncat(user_sock, ROAR_DEFAULT_OBJECT, DN_MAXOBJL+2);
157#else
158    ROAR_ERR("roar_connect_raw(*): size of DECnet object unknown.");
159#endif
160   }
161  }
162
163  if ( port || is_decnet ) {
164   fh = roar_socket_connect(server, port);
165   // restore the original string
166   server[i] = ':';
167  } else {
168   fh = roar_socket_connect(server, ROAR_DEFAULT_PORT);
169  }
170 }
171
172 if ( fh == -1 )
173  roar_errno = ROAR_ERROR_CONNREFUSED;
174
175 ROAR_DBG("roar_connect_raw(*) = %i", fh);
176
177 return fh;
178}
179
180int roar_connect    (struct roar_connection * con, char * server) {
181 int fh;
182
183 if ( con == NULL ) {
184  roar_errno = ROAR_ERROR_INVAL;
185  return -1;
186 }
187
188 roar_errno = ROAR_ERROR_UNKNOWN;
189 fh = roar_connect_raw(server);
190
191 if ( fh == -1 )
192  return -1;
193
194 return roar_connect_fh(con, fh);
195}
196
197int roar_connect_fh (struct roar_connection * con, int fh) {
198
199 if ( con == NULL || fh == -1 ) {
200  roar_errno = ROAR_ERROR_INVAL;
201  return -1;
202 }
203
204 // specal hack to set an ilegal value used internaly in libroar:
205 if ( fh == -2 )
206  fh = -1;
207
208 memset(con, 0, sizeof(struct roar_connection));
209
210 con->__fh = fh;
211
212 roar_errno = ROAR_ERROR_NONE;
213 return 0;
214}
215
216int roar_get_connection_fh (struct roar_connection * con) {
217 if ( con == NULL )
218  return -1;
219
220 return con->__fh;
221}
222
223int roar_get_connection_vio (struct roar_connection * con, struct roar_vio_calls * vio) {
224 if ( con == NULL || vio == NULL )
225  return -1;
226
227 return roar_vio_open_fh_socket(vio, roar_get_connection_fh(con));
228}
229
230int roar_disconnect (struct roar_connection * con) {
231 struct roar_message m;
232
233 m.datalen = 0;
234 m.stream  = 0;
235 m.pos     = 0;
236 m.cmd     = ROAR_CMD_QUIT;
237
238 roar_req(con, &m, NULL);
239
240#ifdef ROAR_HAVE_IO_POSIX
241 close(roar_get_connection_fh(con));
242#endif
243
244 roar_connect_fh(con, -2);
245
246 roar_errno = ROAR_ERROR_NONE;
247
248 return 0;
249}
250
251int roar_identify   (struct roar_connection * con, char * name) {
252 struct roar_message mes;
253 pid_t pid;
254 int max_len;
255
256 roar_errno = ROAR_ERROR_UNKNOWN;
257
258 ROAR_DBG("roar_identify(*): try to identify myself...");
259
260 mes.cmd    = ROAR_CMD_IDENTIFY;
261 mes.stream = 0;
262 mes.pos    = 0;
263
264 ROAR_DBG("roar_identify(*): name=%p", name);
265
266 if ( name == NULL )
267  name = "libroar client";
268
269 ROAR_DBG("roar_identify(*): name=%p", name);
270
271 max_len = strlen(name);
272 ROAR_DBG("roar_identify(*): strlen(name) = %i", max_len);
273
274 if ( max_len > (LIBROAR_BUFFER_MSGDATA - 5) )
275  max_len = LIBROAR_BUFFER_MSGDATA - 5;
276
277 mes.datalen = 5 + max_len;
278 mes.data[0] = 1;
279
280 pid = getpid();
281 *(uint32_t*)(mes.data+1) = ROAR_HOST2NET32(pid);
282 ROAR_DBG("roar_identify(*): pid = %i", pid);
283
284 strncpy(mes.data+5, name, max_len);
285
286 return roar_req(con, &mes, NULL);
287}
288
289#define _ROAR_MESS_BUF_LEN (1 /* version */ + 1 /* cmd */ + 2 /* stream */ + 4 /* pos */ + 2 /* datalen */)
290int roar_send_message (struct roar_connection * con, struct roar_message * mes, char * data) {
291 struct roar_vio_calls vio;
292
293 if ( roar_vio_open_fh_socket(&vio, roar_get_connection_fh(con)) == -1 )
294  return -1;
295
296 return roar_vsend_message(&vio, mes, data);
297}
298
299int roar_vsend_message(struct roar_vio_calls * vio, struct roar_message * mes, char *  data) {
300 char buf[_ROAR_MESS_BUF_LEN];
301
302 roar_errno = ROAR_ERROR_UNKNOWN;
303
304 ROAR_DBG("roar_send_message(*): try to send an request...");
305
306 buf[0] = _ROAR_MESSAGE_VERSION;
307 buf[1] = (unsigned char) mes->cmd;
308 *(uint16_t*)(buf+2) = ROAR_HOST2NET16(mes->stream);
309 *(uint32_t*)(buf+4) = ROAR_HOST2NET32(mes->pos);
310 *(uint16_t*)(buf+8) = ROAR_HOST2NET16(mes->datalen);
311
312 if ( roar_vio_write(vio, buf, _ROAR_MESS_BUF_LEN) != _ROAR_MESS_BUF_LEN ) {
313  roar_errno = ROAR_ERROR_PIPE;
314  return -1;
315 }
316
317 if ( mes->datalen != 0 ) {
318  if ( roar_vio_write(vio, data == NULL ? mes->data : data, mes->datalen) != mes->datalen ) {
319   roar_errno = ROAR_ERROR_PIPE;
320   return -1;
321  }
322 }
323
324 roar_errno = ROAR_ERROR_NONE;
325
326 ROAR_DBG("roar_send_message(*) = 0");
327 return 0;
328}
329
330int roar_recv_message (struct roar_connection * con, struct roar_message * mes, char ** data) {
331 struct roar_vio_calls vio;
332
333 if ( roar_vio_open_fh_socket(&vio, roar_get_connection_fh(con)) == -1 )
334  return -1;
335
336 return roar_vrecv_message(&vio, mes, data);
337}
338
339int roar_vrecv_message(struct roar_vio_calls * vio, struct roar_message * mes, char ** data) {
340 char buf[_ROAR_MESS_BUF_LEN];
341
342 roar_errno = ROAR_ERROR_UNKNOWN;
343
344 ROAR_DBG("roar_recv_message(*): try to get a response form the server...");
345
346 if ( data )
347  *data = NULL;
348
349 if ( roar_vio_read(vio, buf, _ROAR_MESS_BUF_LEN) != _ROAR_MESS_BUF_LEN ) {
350  roar_errno = ROAR_ERROR_PROTO;
351  return -1;
352 }
353
354 ROAR_DBG("roar_recv_message(*): Got a header");
355
356 if ( buf[0] != _ROAR_MESSAGE_VERSION ) {
357  roar_errno = ROAR_ERROR_PROTO;
358  return -1;
359 }
360
361 mes->cmd     = (unsigned char)buf[1];
362 mes->stream  = ROAR_NET2HOST16(*(uint16_t*)(buf+2));
363 mes->pos     = ROAR_NET2HOST32(*(uint32_t*)(buf+4));
364 mes->datalen = ROAR_NET2HOST16(*(uint16_t*)(buf+8));
365
366 ROAR_DBG("roar_recv_message(*): command=%i(%s)", mes->cmd,
367           mes->cmd == ROAR_CMD_OK ? "OK" : (mes->cmd == ROAR_CMD_ERROR ? "ERROR" : "UNKNOWN"));
368
369 if ( mes->datalen == 0 ) {
370  ROAR_DBG("roar_recv_message(*): no data in this pkg");
371  ROAR_DBG("roar_recv_message(*) = 0");
372  roar_errno = ROAR_ERROR_NONE;
373  return 0;
374 }
375
376 if ( mes->datalen <= LIBROAR_BUFFER_MSGDATA ) {
377  if ( roar_vio_read(vio, mes->data, mes->datalen) == mes->datalen ) {
378   ROAR_DBG("roar_recv_message(*): Got data!");
379   ROAR_DBG("roar_recv_message(*) = 0");
380   roar_errno = ROAR_ERROR_NONE;
381   return 0;
382  }
383
384  roar_errno = ROAR_ERROR_PIPE;
385  return -1;
386 } else {
387  if ( data == NULL ) {
388   roar_errno = ROAR_ERROR_MSGSIZE;
389   return -1;
390  }
391
392  if ( (*data = malloc(mes->datalen)) == NULL ) {
393   roar_errno = ROAR_ERROR_NOMEM;
394   return -1;
395  }
396
397  if ( mes->datalen == 0 ) {
398   roar_errno = ROAR_ERROR_NONE;
399   return 0;
400  }
401
402  if ( roar_vio_read(vio, *data, mes->datalen) == mes->datalen ) {
403   ROAR_DBG("roar_recv_message(*): Got data!");
404   ROAR_DBG("roar_recv_message(*) = 0");
405   roar_errno = ROAR_ERROR_NONE;
406   return 0;
407  }
408
409  roar_errno = ROAR_ERROR_PIPE;
410  return -1;
411 }
412
413 // what happened here?
414 return -1;
415}
416
417int roar_req (struct roar_connection * con, struct roar_message * mes, char ** data) {
418 struct roar_vio_calls vio;
419
420 if ( roar_vio_open_fh_socket(&vio, roar_get_connection_fh(con)) == -1 )
421  return -1;
422
423 return roar_vreq(&vio, mes, data);
424}
425
426int roar_vreq         (struct roar_vio_calls * vio, struct roar_message * mes, char ** data) {
427 if ( roar_vsend_message(vio, mes, data ? *data : NULL) != 0 )
428  return -1;
429
430 if ( data )
431  free(*data);
432
433 roar_vio_sync(vio); // we need to do this becasue of ssl/compressed links
434
435 return roar_vrecv_message(vio, mes, data);
436}
437
438int roar_debug_message_print (struct roar_message * mes) {
439 if ( mes == NULL )
440  return -1;
441
442 ROAR_DBG("roar_debug_message_print(*): Command: %i", mes->cmd);
443 ROAR_DBG("roar_debug_message_print(*): Stream : %u", mes->stream);
444 ROAR_DBG("roar_debug_message_print(*): Pos    : %u", mes->pos);
445 ROAR_DBG("roar_debug_message_print(*): Datalen: %i", mes->datalen);
446
447 ROAR_DBG("roar_debug_message_print(*) = 0");
448 return 0;
449}
450
451int roar_debug_audio_info_print (struct roar_audio_info * info) {
452 if ( info == NULL )
453  return -1;
454
455 ROAR_DBG("roar_debug_audio_info_print(*): Rate    : %i", info->rate);
456 ROAR_DBG("roar_debug_audio_info_print(*): Channels: %i", info->channels);
457 ROAR_DBG("roar_debug_audio_info_print(*): Bits    : %i", info->bits);
458 ROAR_DBG("roar_debug_audio_info_print(*): Codec   : %i", info->codec);
459
460 ROAR_DBG("roar_debug_audio_info_print(*) = 0");
461 return 0;
462}
463
464//ll
Note: See TracBrowser for help on using the repository browser.