source: roaraudio/roarclients/roarctl.c @ 1850:ac565cd518e6

Last change on this file since 1850:ac565cd518e6 was 1842:8c8a003773ca, checked in by phi, 15 years ago

support for names on server streams, added roar_stream_get_name()

File size: 21.9 KB
RevLine 
[0]1//roarctl.c:
2
[669]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roarclients 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 *  RoarAudio 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 */
24
[0]25#include <roaraudio.h>
[1782]26
27#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_SETUID)
28#define _POSIX_USERS
29#endif
30
31#ifdef _POSIX_USERS
[445]32#include <pwd.h>
33#include <grp.h>
[1782]34#endif
35
[1630]36#include <sys/time.h>
37#include <time.h>
[445]38
[963]39int g_verbose = 0;
[0]40
[25]41int display_mixer (struct roar_connection * con, int stream);
[112]42int show_meta_all (struct roar_connection * con, int id);
[25]43
[0]44void usage (void) {
[233]45 printf("roarctl [OPTIONS]... COMMAND [OPTS] [COMMAND [OPTS] [COMMAND [OPTS] [...]]]\n");
[0]46
47 printf("\nOptions:\n\n");
48
[86]49 printf("  --server SERVER         - Set server hostname\n"
50        "  --help                  - Show this help\n"
[963]51        "  --verbose   -v          - Show verbose output\n"
[0]52       );
53
54 printf("\nCommands:\n\n");
55 printf(
[86]56        "  help                    - Show this help\n"
[1204]57        "  sleep TIME              - Sleeps for TIME seconds\n"
[1781]58#ifdef ROAR_HAVE_GETTIMEOFDAY
[1630]59        "  ping  NUM               - Do NUM pings using NOOP commands\n"
[1781]60#endif
[0]61        "\n"
[86]62        "  standby, off            - Go into standby mode\n"
63        "  resume, on              - Go into active mode\n"
64        "  standbymode             - Show current standby mode\n"
65        "  exit                    - Quits the roard (must be used as last command)\n"
[577]66        "  terminate               - Like exit but let the server up to serve still connected clients,\n"
67        "                            new clients cann't connect and the server terminates after the last\n"
68        "                            client disconnected\n"
[0]69        "\n"
[86]70        "  volume ID CHAN V0 V1... - Sets volume for stream ID\n"
71        "                            CHAN is the number of channels or 'mono' or 'stereo'\n"
72        "                            if mono or stereo is chosen roarctl trys to set\n"
73        "                            sensfull values for all channels even if the output\n"
74        "                            is has more channels.\n"
75        "                            all other args are the volumes of the channels\n"
76        "                            you may use integer or percent values.\n"
77        "                            percent values can flooding points.\n"
[0]78        "\n"
[1123]79        "  flag   ID FLAGS         - Sets flags FLAGS on stream ID. FLAGS may be a comma\n"
80        "                            seperated list of flags.\n"
81        "  unflag ID FLAGS         - Unsets flags on a stream. See flag.\n"
82        "\n"
[86]83        "  kick TYPE ID            - Kicks object of TYPE with id ID\n"
84        "                            Types: client stream sample source\n"
85        "\n"
[1160]86        "  metasave ID FILE        - Saves meta data of stream ID to file FILE\n"
87        "  metaload ID FILE        - Loads meta data from file FILE and set it on stream ID\n"
88        "\n"
[86]89        "  serveroinfo             - Gets Informations about server output\n"
90        "  listclients             - Gets Informations about clients\n"
91        "  liststreams             - Gets Informations about streams\n"
92        "  allinfo                 - Get all infos\n"
[0]93       );
94}
95
[1781]96#ifdef ROAR_HAVE_GETTIMEOFDAY
[1630]97int ping (struct roar_connection * con, int num) {
98 struct timeval         try, ans;
99 struct roar_message    m;
100 register int           ret;
[1631]101 int                    i;
102 double                 cur, min = 3600*1000, max = 0, sum = 0;
103
104 if ( num == 0 )
105  return 0;
[1630]106
107 for (i = 0; i < num; i++) {
108  m.cmd = ROAR_CMD_NOOP;
109  m.datalen = 0;
110
111  gettimeofday(&try, NULL);
112  ret = roar_req(con, &m, NULL);
113  gettimeofday(&ans, NULL);
114
115  if ( ret == -1 )
116   return -1;
117
118  while (ans.tv_sec > try.tv_sec) {
119   ans.tv_sec--;
120   ans.tv_usec += 1000000;
121  }
122  ans.tv_usec -= try.tv_usec;
123
[1631]124  printf("Pong from server: seq=%i time=%.3fms\n", i, (cur = ans.tv_usec/1000.0));
125
126  sum += cur;
127  if ( min > cur )
128   min = cur;
129  if ( cur > max )
130   max = cur;
[1630]131
132  if ( i != (num - 1) )
133   sleep(1);
134 }
135
[1631]136 printf("\n--- ping statistics ---\n");
137 printf("%i packets transmitted\n", i);
138 printf("rtt min/avg/max = %.3f/%.3f/%.3f ms\n", min, sum/(double)i, max);
139
[1630]140 return 0;
141}
[1781]142#endif
[1630]143
[0]144void server_oinfo (struct roar_connection * con) {
145 struct roar_stream s;
146
147 if ( roar_server_oinfo(con, &s) == -1 ) {
148  fprintf(stderr, "Error: can not get server output info\n");
149  return;
150 }
151
152 printf("Stream direction      : %s\n", roar_dir2str(s.dir));
153 printf("Server Output rate    : %i\n", s.info.rate);
154 printf("Server Output bits    : %i\n", s.info.bits);
155 printf("Server Output channels: %i\n", s.info.channels);
156 printf("Server Output codec   : %i (%s%s)\n", s.info.codec, roar_codec2str(s.info.codec),
157                                     s.info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
158// printf("Server Output rate: %i", s.info.rate);
[984]159  if ( g_verbose > 1 )
160   printf("Server Position       : %lu S (%.3fs)\n", (unsigned long int) s.pos, (float)s.pos/(s.info.rate*s.info.channels));
[0]161}
162
[449]163const char * proc_name (pid_t pid) {
164 static char ret[80] = "?";
165#ifdef __linux__
166 char file[80], buf[80], *r;
167 int  i;
168
169 snprintf(file, 79, "/proc/%i/exe", pid);
170 file[79] = 0;
171
172 ret[0] = '?';
173 ret[1] = 0;
174
175 if ( (i = readlink(file, buf, 79)) != -1 ) {
176  buf[i] = 0;
177  if ( (r = strrchr(buf, '/')) != NULL ) {
178   r++;
179   if ( *r != 0 )
180    strcpy(ret, r);
181  }
182 }
183#endif
184
185 return ret;
186}
187
[0]188void list_clients (struct roar_connection * con) {
189 int i;
190 int num;
191 int h;
192 int id[ROAR_CLIENTS_MAX];
193 struct roar_client c;
[1782]194#ifdef _POSIX_USERS
[445]195 struct group  * grp = NULL;
196 struct passwd * pwd = NULL;
[1782]197#endif
[0]198
199 if ( (num = roar_list_clients(con, id, ROAR_CLIENTS_MAX)) == -1 ) {
200  fprintf(stderr, "Error: can not get client list\n");
201  return;
202 }
203
204 for (i = 0; i < num; i++) {
205  printf("client %i:\n", id[i]);
206  if ( roar_get_client(con, &c, id[i]) == -1 ) {
207   fprintf(stderr, "Error: can not get client info\n");
208   continue;
209  }
210  printf("Player name           : %s\n", c.name);
[449]211  printf("Player PID            : %i(%s)\n", c.pid, proc_name(c.pid));
[445]212  if ( c.uid != -1 ) {
[1782]213#ifdef _POSIX_USERS
[445]214   pwd = getpwuid(c.uid);
215   grp = getgrgid(c.gid);
216   printf("Player UID/GID        : %i(%s)/%i(%s)\n", c.uid, pwd ? pwd->pw_name : "?", c.gid, grp ? grp->gr_name : "?");
[1782]217#else
218   printf("Player UID/GID        : %i/%i\n", c.uid, c.gid);
219#endif
[445]220  }
[0]221  if ( c.execed != -1 )
222   printf("Execed stream         : %i\n", c.execed);
223
224  for (h = 0; h < ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT; h++)
225   if ( c.streams[h] != -1 )
226    printf("stream                : %i\n", c.streams[h]);
227 }
228
229}
230
231void list_streams (struct roar_connection * con) {
232 int i;
233 int num;
234 int id[ROAR_STREAMS_MAX];
235 struct roar_stream s;
[465]236 struct roar_stream_info info;
[1219]237 char flags[1024];
[1842]238 char name[1024];
[0]239
240
241 if ( (num = roar_list_streams(con, id, ROAR_STREAMS_MAX)) == -1 ) {
242  fprintf(stderr, "Error: can not get stream list\n");
243  return;
244 }
245
246 for (i = 0; i < num; i++) {
247  printf("stream %i:\n", id[i]);
248  if ( roar_get_stream(con, &s, id[i]) == -1 ) {
249   fprintf(stderr, "Error: can not get stream info\n");
250   continue;
251  }
252  printf("Stream direction      : %s\n", roar_dir2str(s.dir));
[1842]253
254  if ( roar_stream_get_name(con, &s, name, 1024) == 0 )
255   printf("Stream name           : %s\n", name);
256
[1201]257  if ( s.pos_rel_id == -1 ) {
[0]258   printf("Relativ position id   : none (stream not synchronized)\n");
[1201]259  } else if ( s.pos_rel_id == id[i] ) {
260   printf("Relativ position id   : %i (self synchronized)\n", s.pos_rel_id);
261  } else {
262   printf("Relativ position id   : %i (synchronized)\n", s.pos_rel_id);
263  }
[964]264  if ( g_verbose > 1 )
265   printf("Position              : %lu S (%.3fs)\n", (unsigned long int) s.pos, (float)s.pos/(s.info.rate*s.info.channels));
[1810]266
[1839]267  if ( s.dir != ROAR_DIR_LIGHT_IN && s.dir != ROAR_DIR_LIGHT_OUT &&
268       s.info.rate                && s.info.bits                 && s.info.channels
269     ) {
[1810]270   printf("Input rate            : %i\n", s.info.rate);
271   printf("Input bits            : %i\n", s.info.bits);
272   printf("Input channels        : %i\n", s.info.channels);
273  }
274
[540]275  printf("Input codec           : %2i (%s%s)\n", s.info.codec, roar_codec2str(s.info.codec),
276                                       s.info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
[465]277  if ( roar_stream_get_info(con, &s, &info) != -1 ) {
[1833]278   if ( info.codec != s.info.codec ) {
279    printf("Input codec (streamed): %2i (%s%s)\n", info.codec, roar_codec2str(info.codec),
280                                       info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
281   }
282
[963]283   if ( g_verbose ) {
284    printf("Input block size      : %i Byte\n", info.block_size);
285    printf("Underruns pre/post    : %i/%i\n",   info.pre_underruns, info.post_underruns);
[1137]286    if ( g_verbose > 1 )
287     printf("Stream delay          : %ims\n",   (int)info.delay/1000);
[963]288
289    *flags = 0;
290    if ( info.flags & ROAR_FLAG_PRIMARY )
291     strcat(flags, "primary ");
292    if ( info.flags & ROAR_FLAG_SYNC )
293     strcat(flags, "sync ");
294    if ( info.flags & ROAR_FLAG_OUTPUT )
295     strcat(flags, "output ");
296    if ( info.flags & ROAR_FLAG_SOURCE )
297     strcat(flags, "source ");
[1032]298    if ( info.flags & ROAR_FLAG_META )
299     strcat(flags, "meta ");
[1219]300    if ( info.flags & ROAR_FLAG_AUTOCONF )
301     strcat(flags, "autoconf ");
302    if ( info.flags & ROAR_FLAG_CLEANMETA )
303     strcat(flags, "cleanmeta ");
[1585]304    if ( info.flags & ROAR_FLAG_HWMIXER )
305     strcat(flags, "hwmixer ");
306    if ( info.flags & ROAR_FLAG_PAUSE )
307     strcat(flags, "pause ");
[963]308
309    printf("Flags                 : %s\n", flags);
310   }
[465]311  }
[1811]312
313  if ( s.dir != ROAR_DIR_THRU ) {
314   display_mixer(con, id[i]);
315   show_meta_all(con, id[i]);
316  }
[0]317 }
318
319}
320
[25]321int display_mixer (struct roar_connection * con, int stream) {
322 int channels;
323 struct roar_mixer_settings mixer;
324 int i;
325
326 if ( roar_get_vol(con, stream, &mixer, &channels) == -1 ) {
327  fprintf(stderr, "Error: can not get stream mixer info\n");
328  return -1;
329 }
330
331 for (i = 0; i < channels; i++)
332  printf("Mixer volume chan %2i  : %i (%.2f%%)\n", i, mixer.mixer[i], (float)mixer.mixer[i]/655.35);
333
334 return 0;
335}
[0]336
[85]337int set_mixer (struct roar_connection * con, int * cur, int max, char * arg[]) {
338 int chans = 0;
339 int id;
340 int i;
341 int len;
342 int old_chans;
343 int vol_l, vol_r;
344 char * k;
345 struct roar_mixer_settings mixer;
346 struct roar_mixer_settings old_mixer;
347
348 if (*cur + 2 > max)
349  return -1;
350
351 id = atoi(arg[++(*cur)]);
352
353 k = arg[++(*cur)];
354
355 if ( roar_get_vol(con, id, &old_mixer, &old_chans) == -1 ) {
356  fprintf(stderr, "Error: can not get stream mixer info\n");
357  return -1;
358 }
359
360
[1203]361// TODO: clean up code here as the % vs. abs code is very duplicate...
362
[85]363 if ( strcmp(k, "mono") == 0 && old_chans != 1 ) {
364  chans = 1;
365
366  if ( *cur + 1 > max )
367   return -1;
368
369  k   = arg[++(*cur)];
370  len = strlen(k);
371
372  if ( k[len - 1] == '%' ) {
373   k[len - 1] = 0;
374   vol_l = (atof(k)*65535)/100;
375  } else {
376   vol_l = atoi(k);
377  }
378
379  for (i = 0; i < old_chans; i++)
380   mixer.mixer[i] = vol_l;
381
382  chans = old_chans;
383
[1203]384 } else if ( strcmp(k, "stereo") == 0 && old_chans == 4 ) {
385  chans = 4;
386
387  if ( *cur + 2 > max )
388   return -1;
389
390  k   = arg[++(*cur)];
391  len = strlen(k);
392
393  if ( k[len - 1] == '%' ) {
394   k[len - 1] = 0;
395   vol_l = (atof(k)*65535)/100;
396  } else {
397   vol_l = atoi(k);
398  }
399
400  k   = arg[++(*cur)];
401  len = strlen(k);
402
403  if ( k[len - 1] == '%' ) {
404   k[len - 1] = 0;
405   vol_r = (atof(k)*65535)/100;
406  } else {
407   vol_r = atoi(k);
408  }
409
410  mixer.mixer[0] = vol_l;
411  mixer.mixer[1] = vol_r;
412  mixer.mixer[2] = vol_l;
413  mixer.mixer[3] = vol_r;
414
[85]415 } else if ( strcmp(k, "stereo") == 0 && old_chans != 2 ) {
416  chans = 2;
417//  printf("mode: stereo; chans=%i, old_chans=%i\n", chans, old_chans);
418  ROAR_ERR("mode stereo not supported");
419  return -1;
420 } else {
421  if ( strcmp(k, "mono") == 0 ) {
422   chans = 1;
423  } else if ( strcmp(k, "stereo") == 0 ) {
424   chans = 2;
425  } else {
426   chans = atoi(k);
427  }
428
429//  printf("mode: int; chans=%i, old_chans=%i\n", chans, old_chans);
430
431  if ( *cur + chans > max )
432   return -1;
433
434  for (i = 0; i < chans; i++) {
435   k   = arg[++(*cur)];
436   len = strlen(k);
437
438   if ( k[len - 1] == '%' ) {
439    k[len - 1] = 0;
440    mixer.mixer[i] = (atof(k)*(int)65535)/100;
441   } else {
442    mixer.mixer[i] = atoi(k);
443   }
444  }
445 }
446
447 mixer.scale = 65535;
448
449 return roar_set_vol(con, id, &mixer, chans);
450}
451
[99]452int set_meta (struct roar_connection * con, int id, char * mode, char * type, char * val) {
453 struct roar_meta   meta;
454 struct roar_stream s;
455 int mode_i = ROAR_META_MODE_SET;
456
[1127]457 memset(&s, 0, sizeof(s));
458
[99]459 s.id = id;
460
[106]461// printf("set_meta(*): mode='%s', type='%s', val='%s'\n", mode, type, val);
[99]462
463 if ( strcmp(mode, "add") == 0 ) {
464  mode_i = ROAR_META_MODE_ADD;
465 }
466
[109]467 meta.type   = roar_meta_inttype(type);
[106]468 meta.value  = val;
469 meta.key[0] = 0;
[99]470
[109]471 if ( meta.type == -1 ) {
472  fprintf(stderr, "Error: unknown type: %s\n", type);
473  return -1;
474 }
475
[106]476// printf("D: type=%i, mode=%i\n", meta.type, mode_i);
[99]477
[1127]478 if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
479  return -1;
480
481 meta.type  = ROAR_META_TYPE_NONE;
482 meta.value = NULL;
483
484 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
[99]485}
486
[1126]487int load_meta (struct roar_connection * con, int id, char * file) {
488 struct roar_meta   meta;
489 struct roar_stream s;
490 int mode_i = ROAR_META_MODE_SET;
491 FILE * in;
492 char lion[1024];
493 char * v;
494
495 memset(&s, 0, sizeof(s));
496
497 s.id = id;
498
499 if ( (in = fopen(file, "r")) == NULL )
500  return -1;
501
502 while (fgets(lion, 1024, in) != NULL) {
503  if ( (v = strtok(lion, "\r\n")) != NULL )
504   if ( (v = strtok(NULL, "\r\n")) != NULL )
505    *(v-1) = 0;
506
507  if ( (v = strstr(lion, "=")) == NULL ) {
508   fprintf(stderr, "Error: can not parse meta data lion: %s\n", lion);
509   continue;
510  }
511
512  *v++ = 0;
513
514  meta.type   = roar_meta_inttype(lion);
515  meta.value  = v;
516  meta.key[0] = 0;
517
518  if ( meta.type == -1 ) {
519   fprintf(stderr, "Error: unknown type: %s\n", lion);
520   continue;
521  }
522
523  if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
524   return -1;
525 }
526
527 fclose(in);
528
529 meta.type  = ROAR_META_TYPE_NONE;
530 meta.value = NULL;
531
532 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
533}
534
[106]535int show_meta_type (struct roar_connection * con, int id, char * type) {
536 struct roar_meta   meta;
537 struct roar_stream s;
538
[1127]539 memset(&s, 0, sizeof(s));
540
[106]541 s.id = id;
542
[109]543 meta.type  = roar_meta_inttype(type);
544
545 if ( meta.type == -1 ) {
546  fprintf(stderr, "Error: unknown type: %s\n", type);
547  return -1;
548 }
[106]549
550 if ( roar_stream_meta_get(con, &s, &meta) == -1 )
551  return -1;
552
[112]553 printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
[106]554
555 roar_meta_free(&meta);
556
557 return 0;
558}
559
[112]560int show_meta_all (struct roar_connection * con, int id) {
561 struct roar_stream s;
562 int types[ROAR_META_MAX_PER_STREAM];
563 int i;
564 int len;
565
[1127]566 memset(&s, 0, sizeof(s));
567
[112]568 s.id = id;
569
570 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
571  return -1;
572
573 for (i = 0; i < len; i++)
574  show_meta_type(con, id, roar_meta_strtype(types[i]));
575
576 return 0;
577}
578
[1126]579int save_meta (struct roar_connection * con, int id, char * file) {
580 struct roar_stream s;
581 struct roar_meta   meta;
582 int types[ROAR_META_MAX_PER_STREAM];
583 int i;
584 int len;
585 FILE * out;
586
587 memset(&s, 0, sizeof(s));
588
589 s.id = id;
590
591 if ( (out = fopen(file, "w")) == NULL )
592  return -1;
593
594 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
595  return -1;
596
597 for (i = 0; i < len; i++) {
598/*
599  show_meta_type(con, id, roar_meta_strtype(types[i]));
600*/
601  meta.type  = types[i];
602
603  if ( roar_stream_meta_get(con, &s, &meta) == -1 )
604   continue;
605
606//  printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
607
608  fprintf(out, "%s=%s\n", roar_meta_strtype(meta.type), meta.value);
609
610  roar_meta_free(&meta);
611 }
612
613 fclose(out);
614
615 return 0;
616}
617
[1043]618int set_flags (struct roar_connection * con, int id, int reset, char * flags) {
619 int f = ROAR_FLAG_NONE;
620 char * c;
621 struct roar_stream s[1];
622
623 memset(s, 0, sizeof(struct roar_stream));
624
625 s->id = id;
626
627 c = strtok(flags, ",");
628 while (c != NULL) {
629  if ( !strcmp(c, "meta") ) {
630   f |= ROAR_FLAG_META;
631  } else if ( !strcmp(c, "primary") ) {
632   f |= ROAR_FLAG_PRIMARY;
[1116]633  } else if ( !strcmp(c, "sync") ) {
634   f |= ROAR_FLAG_SYNC;
[1219]635  } else if ( !strcmp(c, "cleanmeta") ) {
636   f |= ROAR_FLAG_CLEANMETA;
[1585]637  } else if ( !strcmp(c, "hwmixer") ) {
638   f |= ROAR_FLAG_HWMIXER;
639  } else if ( !strcmp(c, "pause") ) {
640   f |= ROAR_FLAG_PAUSE;
[1043]641  } else {
642   fprintf(stderr, "Error: unknown flag: %s\n", c);
643   return -1;
644  }
645
646  c = strtok(NULL, ",");
647 }
648
649 return roar_stream_set_flags(con, s, f, reset);
650}
651
[0]652int main (int argc, char * argv[]) {
653 struct roar_connection con;
654 char * server   = NULL;
655 char * k = NULL;
656 int    i;
657 int    t = 0;
658
659 for (i = 1; i < argc; i++) {
660  k = argv[i];
661
662  if ( strcmp(k, "--server") == 0 ) {
[58]663   server = argv[++i];
[963]664  } else if ( strcmp(k, "-v") == 0 || strcmp(k, "--verbose") == 0 ) {
665   g_verbose++;
[0]666  } else if ( strcmp(k, "--help") == 0 ) {
667   usage();
668   return 0;
669  } else if ( *k == '-' ) {
670   fprintf(stderr, "Error: unknown argument: %s\n", k);
671   usage();
672   return 1;
673  } else {
674   break;
675  }
676 }
677
678 // connect
679
680 if ( roar_connect(&con, server) == -1 ) {
681  fprintf(stderr, "Error: Can not connect to server\n");
682  return 1;
683 }
684
685 if ( roar_identify(&con, "roarctl") == -1 ) {
686  fprintf(stderr, "Error: Can not identify to server\n");
687  return 1;
688 }
689
690 if ( i == argc ) {
691  fprintf(stderr, "Error: No Commands given\n");
692  return 0; // this is not a fatal error...
693 }
694
695 for (; i < argc; i++) {
696  k = argv[i];
697  // cmd is in k
698
699  printf("--- [ %s ] ---\n", k);
700
701  if ( !strcmp(k, "help") ) {
702   usage();
703
[1202]704  } else if ( !strcmp(k, "sleep") ) {
705   sleep(atoi(argv[++i]));
[0]706
[1630]707  } else if ( !strcmp(k, "ping") ) {
[1781]708#ifdef ROAR_HAVE_GETTIMEOFDAY
[1630]709   if ( ping(&con, atoi(argv[++i])) == -1 ) {
710    fprintf(stderr, "Error: can not ping\n");
711   }
[1781]712#else
713    fprintf(stderr, "Error: ping not supported.\n");
714    i++;
715#endif
[1630]716
[0]717  } else if ( !strcmp(k, "standby") || !strcmp(k, "off") ) {
718   if ( roar_set_standby(&con, ROAR_STANDBY_ACTIVE) == -1 ) {
719    fprintf(stderr, "Error: can not set mode to standby\n");
720   } else {
721    printf("going into standby\n");
722   }
723  } else if ( !strcmp(k, "resume") || !strcmp(k, "on") ) {
724   if ( roar_set_standby(&con, ROAR_STANDBY_INACTIVE) == -1 ) {
725    fprintf(stderr, "Error: can not set mode to active\n");
726   } else {
727    printf("going into active mode\n");
728   }
729
730  } else if ( !strcmp(k, "exit") ) {
731   if ( roar_exit(&con) == -1 ) {
732    fprintf(stderr, "Error: can not quit server\n");
733   } else {
734    printf("Server quited\n");
735    break;
736   }
[577]737  } else if ( !strcmp(k, "terminate") ) {
738   if ( roar_terminate(&con, 1) == -1 ) {
739    fprintf(stderr, "Error: can not terminate server\n");
740   } else {
741    printf("Server got asked to quited\n");
742    break;
743   }
[0]744
745  } else if ( !strcmp(k, "standbymode") ) {
746   t = roar_get_standby(&con);
747   if ( t == -1 ) {
748    fprintf(stderr, "Error: can not get stanby mode\n");
749   } else if ( t == ROAR_STANDBY_ACTIVE ) {
750    printf("Server is in standby\n");
751   } else if ( t == ROAR_STANDBY_INACTIVE ) {
752    printf("Server is active\n");
753   } else {
754    fprintf(stderr, "Error: unknown standby mode: %i\n", t);
755   }
756
[1162]757  } else if ( !strcmp(k, "whoami") ) {
758   printf("My client ID is: %i\n", roar_get_clientid(&con));
[0]759  } else if ( !strcmp(k, "serveroinfo") ) {
760   server_oinfo(&con);
761  } else if ( !strcmp(k, "listclients") ) {
762   list_clients(&con);
763  } else if ( !strcmp(k, "liststreams") ) {
764   list_streams(&con);
765  } else if ( !strcmp(k, "allinfo") ) {
766   server_oinfo(&con);
767   printf("\n");
768   list_clients(&con);
769   printf("\n");
770   list_streams(&con);
771
772  } else if ( !strcmp(k, "kick") ) {
773   k = argv[++i];
774   if ( !strcmp(k, "client") ) {
775    t = ROAR_OT_CLIENT;
776   } else if ( !strcmp(k, "stream") ) {
777    t = ROAR_OT_STREAM;
778   } else if ( !strcmp(k, "sample") ) {
779    t = ROAR_OT_SAMPLE;
780   } else if ( !strcmp(k, "source") ) {
781    t = ROAR_OT_SOURCE;
782   } else {
783    fprintf(stderr, "Error: unknown type: %s\n", k);
784    continue;
785   }
786   //t = atoi(argv[i++]);
787   if ( roar_kick(&con, t, atoi(argv[++i])) == -1 ) {
788    fprintf(stderr, "Error: can not kick %s\n", k);
789   } else {
790    printf("%s kicked\n", k);
791   }
792
[85]793  } else if ( !strcmp(k, "volume") ) {
794   if ( set_mixer(&con, &i, argc, argv) == -1 ) {
795    fprintf(stderr, "Error: can not set volume\n");
796   } else {
797    printf("volume changed\n");
798   }
799
[1043]800  } else if ( !strcmp(k, "flag") ) {
801   i++;
802   if ( set_flags(&con, atoi(argv[i]), ROAR_SET_FLAG, argv[i+1]) == -1 ) {
803    fprintf(stderr, "Error: can not set flags\n");
804   } else {
805    printf("flags changed\n");
806   }
807   i++;
808  } else if ( !strcmp(k, "unflag") ) {
809   i++;
810   if ( set_flags(&con, atoi(argv[i]), ROAR_RESET_FLAG, argv[i+1]) == -1 ) {
811    fprintf(stderr, "Error: can not reset flags\n");
812   } else {
813    printf("flags changed\n");
814   }
815   i++;
[106]816  } else if ( !strcmp(k, "metaset") ) {
[99]817   i++;
818   if ( set_meta(&con, atoi(argv[i]), argv[i+1], argv[i+2], argv[i+3]) == -1 ) {
819    fprintf(stderr, "Error: can not set meta data\n");
820   } else {
821    printf("meta data changed\n");
822   }
823   i += 3;
[106]824  } else if ( !strcmp(k, "metaget") ) {
825   i++;
826   if ( show_meta_type(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
827    fprintf(stderr, "Error: can not get meta data\n");
828   }
829   i++;
[1126]830  } else if ( !strcmp(k, "metasave") ) {
831   i++;
832   if ( save_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
833    fprintf(stderr, "Error: can not get meta data\n");
834   } else {
835    printf("meta data saved\n");
836   }
837   i++;
838  } else if ( !strcmp(k, "metaload") ) {
839   i++;
840   if ( load_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
841    fprintf(stderr, "Error: can not set meta data\n");
842   } else {
843    printf("meta data saved\n");
844   }
845   i++;
[99]846
[0]847  } else {
848   fprintf(stderr, "Error: invalid command: %s\n", k);
849  }
850
851 }
852
853 roar_disconnect(&con);
854
855 return 0;
856}
857
858//ll
Note: See TracBrowser for help on using the repository browser.