source: roaraudio/libroar/basic.c @ 5185:9c42709e2c89

Last change on this file since 5185:9c42709e2c89 was 5185:9c42709e2c89, checked in by phi, 13 years ago

added server type +invalid

File size: 12.0 KB
RevLine 
[0]1//basic.c:
2
[690]3/*
[4708]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
[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
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[690]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
[0]36#include "libroar.h"
37
[5114]38int roar_connect_raw (const char * server) {
[4806]39 return roar_connect_raw2(server, 0, 0);
40}
41
[5114]42int roar_connect_raw2 (const char * server, int flags, uint_least32_t timeout) {
[4780]43#ifdef ROAR_HAVE_LIBSLP
[4653]44 struct roar_libroar_config * config = roar_libroar_get_config();
[4780]45#endif
[5114]46 char user_sock[128];
[0]47 char * roar_server;
[701]48 int i = 0;
[0]49 int port = 0;
50 int fh = -1;
[501]51 int is_decnet = 0;
[5114]52 const char * obj = NULL;
[1475]53#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[1026]54 struct passwd * pwd;
[1393]55#endif
[828]56#ifdef ROAR_HAVE_LIBDNET
57 struct stat decnet_stat;
58#endif
[3372]59#ifdef ROAR_HAVE_LIBX11
60 struct roar_x11_connection * x11con;
61#endif
[4945]62#ifdef ROAR_HAVE_LIBSLP
[4806]63 struct roar_server * list;
64 int workarounds_store;
[4945]65#endif
[0]66
[4873]67 roar_err_set(ROAR_ERROR_UNKNOWN);
[807]68
[4806]69 if ( timeout != 0 ) {
[4873]70  roar_err_set(ROAR_ERROR_INVAL);
[4806]71  return -1;
72 }
73
74 if ( flags & ROAR_ENUM_FLAG_HARDNONBLOCK )
75  flags |= ROAR_ENUM_FLAG_NONBLOCK;
76
77
[2567]78 if ( server == NULL )
79  server = roar_libroar_get_server();
80
[61]81 if ( server == NULL && (roar_server = getenv("ROAR_SERVER")) != NULL )
[0]82  server = roar_server;
83
[3372]84#ifdef ROAR_HAVE_LIBX11
85 if ( server == NULL ) {
86  if ( (x11con = roar_x11_connect(NULL)) != NULL ) {
87   server = roar_x11_get_prop(x11con, "ROAR_SERVER");
88   roar_x11_disconnect(x11con);
89  }
90 }
91#endif
92
[1436]93#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[5114]94 if ( server == NULL && (i = readlink("/etc/roarserver", user_sock, sizeof(user_sock)-1)) != -1 ) {
[448]95   user_sock[i] = 0;
96   server = user_sock;
97 }
[1093]98#endif
[448]99
[3077]100 if ( server != NULL && !strcasecmp(server, "+slp") ) {
[3076]101  server = roar_slp_find_roard(0);
102  if ( server == NULL ) {
103   return -1;
104  }
105 }
106
[61]107 if ( server == NULL || *server == 0 ) {
[0]108  /* connect via defaults */
109
[1764]110#ifdef ROAR_HAVE_UNIX
[1436]111#ifndef ROAR_TARGET_MICROCONTROLLER
[1026]112  roar_server = getenv("HOME");
[1435]113#else
114  roar_server = NULL;
115#endif
[1026]116
117  if ( roar_server == NULL ) {
[1436]118#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[1026]119   if ( (pwd = getpwuid(getuid())) == NULL ) {
120    roar_server = "/NX-HOME-DIR";
121   } else {
122    roar_server = pwd->pw_dir;
123   }
[1078]124#else
125   roar_server = "/WIN32-SUCKS";
126#endif
[1026]127  }
128
[5114]129  snprintf(user_sock, sizeof(user_sock)-1, "%s/%s", roar_server, ROAR_DEFAULT_SOCK_USER);
130  user_sock[sizeof(user_sock)-1] = 0;
[0]131
132  if ( (fh = roar_socket_connect(user_sock, 0)) != -1 )
133   return fh;
134
[237]135  if ( (fh = roar_socket_connect(ROAR_DEFAULT_SOCK_GLOBAL, 0)) != -1 )
136   return fh;
[1764]137#endif
[237]138
[0]139  if ( (fh = roar_socket_connect(ROAR_DEFAULT_HOST, ROAR_DEFAULT_PORT)) != -1 )
140   return fh;
141
[828]142#ifdef ROAR_HAVE_LIBDNET
143  if ( stat(ROAR_PROC_NET_DECNET, &decnet_stat) == 0 ) {
144   if ( roar_socket_get_local_nodename() ) {
145    snprintf(user_sock, 79, "%s::%s", roar_socket_get_local_nodename(), ROAR_DEFAULT_OBJECT);
[2010]146    if ( (fh = roar_socket_connect(user_sock, ROAR_DEFAULT_NUM)) != -1 )
147     return fh;
[828]148   }
[522]149  }
[828]150#endif
[2007]151
[4109]152  if ( (fh = roar_socket_connect("+abstract", 0)) != -1 )
153   return fh;
154
[2007]155#ifdef ROAR_HAVE_LIBSLP
[4806]156 if ( !(config->workaround.workarounds & ROAR_LIBROAR_CONFIG_WAS_NO_SLP) &&
157      !(flags & ROAR_ENUM_FLAG_NONBLOCK)
158    ) {
159  if ( (server = roar_slp_find_roard(0)) != NULL ) {
[5109]160   if ( (fh = roar_connect_raw2(server, 0, 0)) != -1 )
[4653]161    return fh;
[2014]162
[4806]163   /* in case we can not connect to the server given this may be a cache problem,
164      we do a new lookup with the cache disabled in this case                     */
[5109]165   ROAR_WARN("roar_connect_raw2(*): Can not connect to SLP located server, disabling cache");
[4806]166   if ( (server = roar_slp_find_roard(1)) != NULL )
[5109]167    if ( (fh = roar_connect_raw2(server, 0, 0)) != -1 )
[4806]168     return fh;
169  }
170 }
171
172 workarounds_store = config->workaround.workarounds;
173 config->workaround.workarounds |= ROAR_LIBROAR_CONFIG_WAS_NO_SLP;
174 list = roar_enum_servers(flags, -1, -1);
175 config->workaround.workarounds = workarounds_store;
176 if ( list != NULL ) {
177  for (i = 0; list[i].server != NULL; i++) {
[5109]178   if ( (fh = roar_connect_raw2((char*)list[i].server, 0, 0)) != -1 ) {
[4806]179    roar_enum_servers_free(list);
[4653]180    return fh;
[4806]181   }
182  }
183  roar_enum_servers_free(list);
[4653]184 }
[2007]185#endif
[522]186
[2014]187 return -1;
188
[0]189 } else {
190  /* connect via (char*)server */
[501]191  // find a port:
[5114]192
[5185]193  if ( !strcmp(server, "+invalid") ) {
194   roar_err_set(ROAR_ERROR_CANCELED);
195   return -1;
196  }
197
[5120]198  strncpy(user_sock, server, sizeof(user_sock)-1);
[5114]199  user_sock[sizeof(user_sock)-1] = 0;
200
201  if ( *user_sock != '/' ) { // don't test AF_UNIX sockets for ports
202   for (i = 0; user_sock[i] != 0; i++) {
203    if ( user_sock[i] == ':' ) {
204     if ( user_sock[i+1] == ':' ) { // DECnet, leave unchanged
[501]205      is_decnet = 1;
[5114]206      obj = &user_sock[i+2];
[501]207      break;
208     }
209
[5114]210     port = atoi(&(user_sock[i+1]));
211     user_sock[i] = 0;
[501]212     break;
213    }
[0]214   }
215  }
216
[521]217  if ( is_decnet ) {
[5114]218   if ( *user_sock == ':' ) {
[5120]219    if ( roar_socket_get_local_nodename() != NULL ) {
220     strncpy(user_sock, roar_socket_get_local_nodename(), sizeof(user_sock)-1);
[5114]221     user_sock[sizeof(user_sock)-1] = 0;
[5120]222     roar_mm_strlcat(user_sock, server, sizeof(user_sock)-1);
223     user_sock[sizeof(user_sock)-1] = 0;
224     obj  = strstr(user_sock, "::");
225     obj += 2;
226    }
[521]227   }
228
229   if ( *obj == 0 ) {
[1066]230#ifdef DN_MAXOBJL
[5114]231    roar_mm_strlcat(user_sock, ROAR_DEFAULT_OBJECT, sizeof(user_sock)-1);
232    user_sock[sizeof(user_sock)-1] = 0;
[1066]233#else
[5109]234    ROAR_ERR("roar_connect_raw2(*): size of DECnet object unknown.");
[1066]235#endif
[521]236   }
[5120]237    ROAR_DBG("roar_connect_raw2(*): user_sock='%s'", user_sock);
[516]238  }
239
[501]240  if ( port || is_decnet ) {
[5114]241   fh = roar_socket_connect(user_sock, port);
[0]242   // restore the original string
[5114]243   user_sock[i] = ':';
[0]244  } else {
[5114]245   fh = roar_socket_connect(user_sock, ROAR_DEFAULT_PORT);
[0]246  }
247 }
248
[5109]249 ROAR_DBG("roar_connect_raw2(*) = %i", fh);
[0]250
251 return fh;
252}
253
[5114]254int roar_connect    (struct roar_connection * con, const char * server) {
[4806]255 return roar_connect2(con, server, 0, 0);
256}
257
[5114]258int roar_connect2     (struct roar_connection * con, const char * server, int flags, uint_least32_t timeout) {
[1315]259 int fh;
260
261 if ( con == NULL ) {
[4873]262  roar_err_set(ROAR_ERROR_FAULT);
[1315]263  return -1;
264 }
265
[4873]266 roar_err_set(ROAR_ERROR_UNKNOWN);
[4806]267 fh = roar_connect_raw2(server, flags, timeout);
[0]268
[1315]269 if ( fh == -1 )
[0]270  return -1;
271
[1315]272 return roar_connect_fh(con, fh);
273}
274
275int roar_connect_fh (struct roar_connection * con, int fh) {
276
277 if ( con == NULL || fh == -1 ) {
[4873]278  roar_err_set(ROAR_ERROR_INVAL);
[1315]279  return -1;
280 }
281
282 // specal hack to set an ilegal value used internaly in libroar:
283 if ( fh == -2 )
284  fh = -1;
285
286 memset(con, 0, sizeof(struct roar_connection));
287
[3869]288 con->flags = ROAR_CON_FLAGS_FH;
289 con->__fh  = fh;
290
291 if ( roar_vio_open_fh_socket(&(con->viocon), fh) != -1 )
292  con->flags |= ROAR_CON_FLAGS_VIO;
[1315]293
[4873]294 roar_err_set(ROAR_ERROR_NONE);
[0]295 return 0;
296}
297
[1660]298int roar_get_connection_fh (struct roar_connection * con) {
[3869]299 roar_debug_warn_sysio("roar_get_connection_fh", "roar_get_connection_vio2", NULL);
[2809]300
[2043]301 if ( con == NULL )
302  return -1;
303
[3869]304 if ( !(con->flags & ROAR_CON_FLAGS_FH) )
305  return -1;
306
[1660]307 return con->__fh;
308}
309
[2043]310int roar_get_connection_vio (struct roar_connection * con, struct roar_vio_calls * vio) {
[3869]311 roar_debug_warn_obsolete("roar_get_connection_vio", "roar_get_connection_vio2", NULL);
312
[2043]313 if ( con == NULL || vio == NULL )
314  return -1;
315
[3869]316 if ( !(con->flags & ROAR_CON_FLAGS_FH) )
317  return -1;
318
[2809]319 return roar_vio_open_fh_socket(vio, con->__fh);
[2043]320}
321
[3869]322struct roar_vio_calls * roar_get_connection_vio2 (struct roar_connection * con) {
323 if ( con == NULL )
324  return NULL;
325
326 if ( con->flags & ROAR_CON_FLAGS_VIO )
327  return &(con->viocon);
328
329// TODO: try to open the VIO.
330
331 return NULL;
332}
333
[0]334int roar_disconnect (struct roar_connection * con) {
[3869]335 struct roar_vio_calls * vio;
[0]336 struct roar_message m;
337
[3875]338 memset(&m, 0, sizeof(m));
339
[5144]340 m.datalen =  0;
341 m.stream  = -1;
342 m.pos     =  0;
[0]343 m.cmd     = ROAR_CMD_QUIT;
344
345 roar_req(con, &m, NULL);
346
[3869]347 if ( (vio = roar_get_connection_vio2(con)) != NULL ) {
348  roar_vio_close(vio);
[2809]349 }
[0]350
[1660]351 roar_connect_fh(con, -2);
[0]352
[4873]353 roar_err_set(ROAR_ERROR_NONE);
[807]354
[0]355 return 0;
356}
357
[3913]358int roar_set_connection_callback(struct roar_connection * con,
359                                 void (*cb)(struct roar_connection * con,
360                                            struct roar_message    * mes,
361                                            void                   * userdata),
362                                 void * userdata) {
363 if ( con == NULL )
364  return -1;
365
366 con->cb       = cb;
367 con->userdata = userdata;
368
369 return 0;
370}
371
[3914]372int roar_sync         (struct roar_connection * con) {
373 // wait for any non-client reqs
374 return roar_wait_msg(con, 0x0000, 0x8000);
375}
376
377int roar_wait_msg     (struct roar_connection * con, int16_t seq, int16_t seqmask) {
[5148]378 roar_err_set(ROAR_ERROR_NOSYS);
[3914]379 return -1;
380}
[3913]381
[3836]382int roar_noop         (struct roar_connection * con) {
383 struct roar_message mes;
384
385 if ( con == NULL ) {
[5148]386  roar_err_set(ROAR_ERROR_FAULT);
[3836]387  return -1;
388 }
389
390 memset(&mes, 0, sizeof(mes));
391
392 mes.cmd = ROAR_CMD_NOOP;
[5144]393 mes.stream = -1;
[3836]394
[5146]395 return roar_req3(con, &mes, NULL);
[3836]396}
397
[5114]398int roar_identify   (struct roar_connection * con, const char * name) {
[0]399 struct roar_message mes;
[5132]400 uint32_t pid;
[0]401 int max_len;
402
[4873]403 roar_err_set(ROAR_ERROR_UNKNOWN);
[807]404
[0]405 ROAR_DBG("roar_identify(*): try to identify myself...");
406
[3875]407 memset(&mes, 0, sizeof(mes));
408
[0]409 mes.cmd    = ROAR_CMD_IDENTIFY;
[5144]410 mes.stream = -1;
411 mes.pos    =  0;
[0]412
413 ROAR_DBG("roar_identify(*): name=%p", name);
414
415 if ( name == NULL )
416  name = "libroar client";
417
418 ROAR_DBG("roar_identify(*): name=%p", name);
419
[5114]420 max_len = roar_mm_strlen(name);
[0]421 ROAR_DBG("roar_identify(*): strlen(name) = %i", max_len);
422
423 if ( max_len > (LIBROAR_BUFFER_MSGDATA - 5) )
424  max_len = LIBROAR_BUFFER_MSGDATA - 5;
425
426 mes.datalen = 5 + max_len;
427 mes.data[0] = 1;
428
429 pid = getpid();
[5132]430 mes.data[1] = (pid & 0xFF000000UL) >> 24;
431 mes.data[2] = (pid & 0x00FF0000UL) >> 16;
432 mes.data[3] = (pid & 0x0000FF00UL) >>  8;
433 mes.data[4] = (pid & 0x000000FFUL) >>  0;
434 ROAR_DBG("roar_identify(*): pid = %i", (int)pid);
[0]435
436 strncpy(mes.data+5, name, max_len);
437
[5146]438 return roar_req3(con, &mes, NULL);
[0]439}
440
441int roar_debug_message_print (struct roar_message * mes) {
[5148]442 roar_debug_warn_obsolete("roar_debug_message_print", NULL, NULL);
443
444 if ( mes == NULL ) {
445  roar_err_set(ROAR_ERROR_FAULT);
[0]446  return -1;
[5148]447 }
[0]448
449 ROAR_DBG("roar_debug_message_print(*): Command: %i", mes->cmd);
450 ROAR_DBG("roar_debug_message_print(*): Stream : %u", mes->stream);
451 ROAR_DBG("roar_debug_message_print(*): Pos    : %u", mes->pos);
452 ROAR_DBG("roar_debug_message_print(*): Datalen: %i", mes->datalen);
453
454 ROAR_DBG("roar_debug_message_print(*) = 0");
455 return 0;
456}
457
458int roar_debug_audio_info_print (struct roar_audio_info * info) {
[5148]459 if ( info == NULL ) {
460  roar_err_set(ROAR_ERROR_FAULT);
[0]461  return -1;
[5148]462 }
[0]463
464 ROAR_DBG("roar_debug_audio_info_print(*): Rate    : %i", info->rate);
465 ROAR_DBG("roar_debug_audio_info_print(*): Channels: %i", info->channels);
466 ROAR_DBG("roar_debug_audio_info_print(*): Bits    : %i", info->bits);
467 ROAR_DBG("roar_debug_audio_info_print(*): Codec   : %i", info->codec);
468
469 ROAR_DBG("roar_debug_audio_info_print(*) = 0");
470 return 0;
471}
472
473//ll
Note: See TracBrowser for help on using the repository browser.