source: roaraudio/roarclients/roarctl.c @ 1883:c22154cef3a2

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

added flag mute

File size: 22.0 KB
Line 
1//roarctl.c:
2
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
25#include <roaraudio.h>
26
27#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_SETUID)
28#define _POSIX_USERS
29#endif
30
31#ifdef _POSIX_USERS
32#include <pwd.h>
33#include <grp.h>
34#endif
35
36#include <sys/time.h>
37#include <time.h>
38
39int g_verbose = 0;
40
41int display_mixer (struct roar_connection * con, int stream);
42int show_meta_all (struct roar_connection * con, int id);
43
44void usage (void) {
45 printf("roarctl [OPTIONS]... COMMAND [OPTS] [COMMAND [OPTS] [COMMAND [OPTS] [...]]]\n");
46
47 printf("\nOptions:\n\n");
48
49 printf("  --server SERVER         - Set server hostname\n"
50        "  --help                  - Show this help\n"
51        "  --verbose   -v          - Show verbose output\n"
52       );
53
54 printf("\nCommands:\n\n");
55 printf(
56        "  help                    - Show this help\n"
57        "  sleep TIME              - Sleeps for TIME seconds\n"
58#ifdef ROAR_HAVE_GETTIMEOFDAY
59        "  ping  NUM               - Do NUM pings using NOOP commands\n"
60#endif
61        "\n"
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"
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"
69        "\n"
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"
78        "\n"
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"
83        "  kick TYPE ID            - Kicks object of TYPE with id ID\n"
84        "                            Types: client stream sample source\n"
85        "\n"
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"
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"
93       );
94}
95
96#ifdef ROAR_HAVE_GETTIMEOFDAY
97int ping (struct roar_connection * con, int num) {
98 struct timeval         try, ans;
99 struct roar_message    m;
100 register int           ret;
101 int                    i;
102 double                 cur, min = 3600*1000, max = 0, sum = 0;
103
104 if ( num == 0 )
105  return 0;
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
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;
131
132  if ( i != (num - 1) )
133   sleep(1);
134 }
135
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
140 return 0;
141}
142#endif
143
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);
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));
161}
162
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
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;
194#ifdef _POSIX_USERS
195 struct group  * grp = NULL;
196 struct passwd * pwd = NULL;
197#endif
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);
211  printf("Player PID            : %i(%s)\n", c.pid, proc_name(c.pid));
212  if ( c.uid != -1 ) {
213#ifdef _POSIX_USERS
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 : "?");
217#else
218   printf("Player UID/GID        : %i/%i\n", c.uid, c.gid);
219#endif
220  }
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;
236 struct roar_stream_info info;
237 char flags[1024];
238 char name[1024];
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));
253
254  if ( roar_stream_get_name(con, &s, name, 1024) == 0 )
255   printf("Stream name           : %s\n", name);
256
257  if ( s.pos_rel_id == -1 ) {
258   printf("Relativ position id   : none (stream not synchronized)\n");
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  }
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));
266
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     ) {
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
275  printf("Input codec           : %2i (%s%s)\n", s.info.codec, roar_codec2str(s.info.codec),
276                                       s.info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
277  if ( roar_stream_get_info(con, &s, &info) != -1 ) {
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
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);
286    if ( g_verbose > 1 )
287     printf("Stream delay          : %ims\n",   (int)info.delay/1000);
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 ");
298    if ( info.flags & ROAR_FLAG_META )
299     strcat(flags, "meta ");
300    if ( info.flags & ROAR_FLAG_AUTOCONF )
301     strcat(flags, "autoconf ");
302    if ( info.flags & ROAR_FLAG_CLEANMETA )
303     strcat(flags, "cleanmeta ");
304    if ( info.flags & ROAR_FLAG_HWMIXER )
305     strcat(flags, "hwmixer ");
306    if ( info.flags & ROAR_FLAG_PAUSE )
307     strcat(flags, "pause ");
308    if ( info.flags & ROAR_FLAG_MUTE )
309     strcat(flags, "mute ");
310
311    printf("Flags                 : %s\n", flags);
312   }
313  }
314
315  if ( s.dir != ROAR_DIR_THRU ) {
316   display_mixer(con, id[i]);
317   show_meta_all(con, id[i]);
318  }
319 }
320
321}
322
323int display_mixer (struct roar_connection * con, int stream) {
324 int channels;
325 struct roar_mixer_settings mixer;
326 int i;
327
328 if ( roar_get_vol(con, stream, &mixer, &channels) == -1 ) {
329  fprintf(stderr, "Error: can not get stream mixer info\n");
330  return -1;
331 }
332
333 for (i = 0; i < channels; i++)
334  printf("Mixer volume chan %2i  : %i (%.2f%%)\n", i, mixer.mixer[i], (float)mixer.mixer[i]/655.35);
335
336 return 0;
337}
338
339int set_mixer (struct roar_connection * con, int * cur, int max, char * arg[]) {
340 int chans = 0;
341 int id;
342 int i;
343 int len;
344 int old_chans;
345 int vol_l, vol_r;
346 char * k;
347 struct roar_mixer_settings mixer;
348 struct roar_mixer_settings old_mixer;
349
350 if (*cur + 2 > max)
351  return -1;
352
353 id = atoi(arg[++(*cur)]);
354
355 k = arg[++(*cur)];
356
357 if ( roar_get_vol(con, id, &old_mixer, &old_chans) == -1 ) {
358  fprintf(stderr, "Error: can not get stream mixer info\n");
359  return -1;
360 }
361
362
363// TODO: clean up code here as the % vs. abs code is very duplicate...
364
365 if ( strcmp(k, "mono") == 0 && old_chans != 1 ) {
366  chans = 1;
367
368  if ( *cur + 1 > max )
369   return -1;
370
371  k   = arg[++(*cur)];
372  len = strlen(k);
373
374  if ( k[len - 1] == '%' ) {
375   k[len - 1] = 0;
376   vol_l = (atof(k)*65535)/100;
377  } else {
378   vol_l = atoi(k);
379  }
380
381  for (i = 0; i < old_chans; i++)
382   mixer.mixer[i] = vol_l;
383
384  chans = old_chans;
385
386 } else if ( strcmp(k, "stereo") == 0 && old_chans == 4 ) {
387  chans = 4;
388
389  if ( *cur + 2 > max )
390   return -1;
391
392  k   = arg[++(*cur)];
393  len = strlen(k);
394
395  if ( k[len - 1] == '%' ) {
396   k[len - 1] = 0;
397   vol_l = (atof(k)*65535)/100;
398  } else {
399   vol_l = atoi(k);
400  }
401
402  k   = arg[++(*cur)];
403  len = strlen(k);
404
405  if ( k[len - 1] == '%' ) {
406   k[len - 1] = 0;
407   vol_r = (atof(k)*65535)/100;
408  } else {
409   vol_r = atoi(k);
410  }
411
412  mixer.mixer[0] = vol_l;
413  mixer.mixer[1] = vol_r;
414  mixer.mixer[2] = vol_l;
415  mixer.mixer[3] = vol_r;
416
417 } else if ( strcmp(k, "stereo") == 0 && old_chans != 2 ) {
418  chans = 2;
419//  printf("mode: stereo; chans=%i, old_chans=%i\n", chans, old_chans);
420  ROAR_ERR("mode stereo not supported");
421  return -1;
422 } else {
423  if ( strcmp(k, "mono") == 0 ) {
424   chans = 1;
425  } else if ( strcmp(k, "stereo") == 0 ) {
426   chans = 2;
427  } else {
428   chans = atoi(k);
429  }
430
431//  printf("mode: int; chans=%i, old_chans=%i\n", chans, old_chans);
432
433  if ( *cur + chans > max )
434   return -1;
435
436  for (i = 0; i < chans; i++) {
437   k   = arg[++(*cur)];
438   len = strlen(k);
439
440   if ( k[len - 1] == '%' ) {
441    k[len - 1] = 0;
442    mixer.mixer[i] = (atof(k)*(int)65535)/100;
443   } else {
444    mixer.mixer[i] = atoi(k);
445   }
446  }
447 }
448
449 mixer.scale = 65535;
450
451 return roar_set_vol(con, id, &mixer, chans);
452}
453
454int set_meta (struct roar_connection * con, int id, char * mode, char * type, char * val) {
455 struct roar_meta   meta;
456 struct roar_stream s;
457 int mode_i = ROAR_META_MODE_SET;
458
459 memset(&s, 0, sizeof(s));
460
461 s.id = id;
462
463// printf("set_meta(*): mode='%s', type='%s', val='%s'\n", mode, type, val);
464
465 if ( strcmp(mode, "add") == 0 ) {
466  mode_i = ROAR_META_MODE_ADD;
467 }
468
469 meta.type   = roar_meta_inttype(type);
470 meta.value  = val;
471 meta.key[0] = 0;
472
473 if ( meta.type == -1 ) {
474  fprintf(stderr, "Error: unknown type: %s\n", type);
475  return -1;
476 }
477
478// printf("D: type=%i, mode=%i\n", meta.type, mode_i);
479
480 if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
481  return -1;
482
483 meta.type  = ROAR_META_TYPE_NONE;
484 meta.value = NULL;
485
486 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
487}
488
489int load_meta (struct roar_connection * con, int id, char * file) {
490 struct roar_meta   meta;
491 struct roar_stream s;
492 int mode_i = ROAR_META_MODE_SET;
493 FILE * in;
494 char lion[1024];
495 char * v;
496
497 memset(&s, 0, sizeof(s));
498
499 s.id = id;
500
501 if ( (in = fopen(file, "r")) == NULL )
502  return -1;
503
504 while (fgets(lion, 1024, in) != NULL) {
505  if ( (v = strtok(lion, "\r\n")) != NULL )
506   if ( (v = strtok(NULL, "\r\n")) != NULL )
507    *(v-1) = 0;
508
509  if ( (v = strstr(lion, "=")) == NULL ) {
510   fprintf(stderr, "Error: can not parse meta data lion: %s\n", lion);
511   continue;
512  }
513
514  *v++ = 0;
515
516  meta.type   = roar_meta_inttype(lion);
517  meta.value  = v;
518  meta.key[0] = 0;
519
520  if ( meta.type == -1 ) {
521   fprintf(stderr, "Error: unknown type: %s\n", lion);
522   continue;
523  }
524
525  if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
526   return -1;
527 }
528
529 fclose(in);
530
531 meta.type  = ROAR_META_TYPE_NONE;
532 meta.value = NULL;
533
534 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
535}
536
537int show_meta_type (struct roar_connection * con, int id, char * type) {
538 struct roar_meta   meta;
539 struct roar_stream s;
540
541 memset(&s, 0, sizeof(s));
542
543 s.id = id;
544
545 meta.type  = roar_meta_inttype(type);
546
547 if ( meta.type == -1 ) {
548  fprintf(stderr, "Error: unknown type: %s\n", type);
549  return -1;
550 }
551
552 if ( roar_stream_meta_get(con, &s, &meta) == -1 )
553  return -1;
554
555 printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
556
557 roar_meta_free(&meta);
558
559 return 0;
560}
561
562int show_meta_all (struct roar_connection * con, int id) {
563 struct roar_stream s;
564 int types[ROAR_META_MAX_PER_STREAM];
565 int i;
566 int len;
567
568 memset(&s, 0, sizeof(s));
569
570 s.id = id;
571
572 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
573  return -1;
574
575 for (i = 0; i < len; i++)
576  show_meta_type(con, id, roar_meta_strtype(types[i]));
577
578 return 0;
579}
580
581int save_meta (struct roar_connection * con, int id, char * file) {
582 struct roar_stream s;
583 struct roar_meta   meta;
584 int types[ROAR_META_MAX_PER_STREAM];
585 int i;
586 int len;
587 FILE * out;
588
589 memset(&s, 0, sizeof(s));
590
591 s.id = id;
592
593 if ( (out = fopen(file, "w")) == NULL )
594  return -1;
595
596 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
597  return -1;
598
599 for (i = 0; i < len; i++) {
600/*
601  show_meta_type(con, id, roar_meta_strtype(types[i]));
602*/
603  meta.type  = types[i];
604
605  if ( roar_stream_meta_get(con, &s, &meta) == -1 )
606   continue;
607
608//  printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
609
610  fprintf(out, "%s=%s\n", roar_meta_strtype(meta.type), meta.value);
611
612  roar_meta_free(&meta);
613 }
614
615 fclose(out);
616
617 return 0;
618}
619
620int set_flags (struct roar_connection * con, int id, int reset, char * flags) {
621 int f = ROAR_FLAG_NONE;
622 char * c;
623 struct roar_stream s[1];
624
625 memset(s, 0, sizeof(struct roar_stream));
626
627 s->id = id;
628
629 c = strtok(flags, ",");
630 while (c != NULL) {
631  if ( !strcmp(c, "meta") ) {
632   f |= ROAR_FLAG_META;
633  } else if ( !strcmp(c, "primary") ) {
634   f |= ROAR_FLAG_PRIMARY;
635  } else if ( !strcmp(c, "sync") ) {
636   f |= ROAR_FLAG_SYNC;
637  } else if ( !strcmp(c, "cleanmeta") ) {
638   f |= ROAR_FLAG_CLEANMETA;
639  } else if ( !strcmp(c, "hwmixer") ) {
640   f |= ROAR_FLAG_HWMIXER;
641  } else if ( !strcmp(c, "pause") ) {
642   f |= ROAR_FLAG_PAUSE;
643  } else if ( !strcmp(c, "mute") ) {
644   f |= ROAR_FLAG_MUTE;
645  } else {
646   fprintf(stderr, "Error: unknown flag: %s\n", c);
647   return -1;
648  }
649
650  c = strtok(NULL, ",");
651 }
652
653 return roar_stream_set_flags(con, s, f, reset);
654}
655
656int main (int argc, char * argv[]) {
657 struct roar_connection con;
658 char * server   = NULL;
659 char * k = NULL;
660 int    i;
661 int    t = 0;
662
663 for (i = 1; i < argc; i++) {
664  k = argv[i];
665
666  if ( strcmp(k, "--server") == 0 ) {
667   server = argv[++i];
668  } else if ( strcmp(k, "-v") == 0 || strcmp(k, "--verbose") == 0 ) {
669   g_verbose++;
670  } else if ( strcmp(k, "--help") == 0 ) {
671   usage();
672   return 0;
673  } else if ( *k == '-' ) {
674   fprintf(stderr, "Error: unknown argument: %s\n", k);
675   usage();
676   return 1;
677  } else {
678   break;
679  }
680 }
681
682 // connect
683
684 if ( roar_connect(&con, server) == -1 ) {
685  fprintf(stderr, "Error: Can not connect to server\n");
686  return 1;
687 }
688
689 if ( roar_identify(&con, "roarctl") == -1 ) {
690  fprintf(stderr, "Error: Can not identify to server\n");
691  return 1;
692 }
693
694 if ( i == argc ) {
695  fprintf(stderr, "Error: No Commands given\n");
696  return 0; // this is not a fatal error...
697 }
698
699 for (; i < argc; i++) {
700  k = argv[i];
701  // cmd is in k
702
703  printf("--- [ %s ] ---\n", k);
704
705  if ( !strcmp(k, "help") ) {
706   usage();
707
708  } else if ( !strcmp(k, "sleep") ) {
709   sleep(atoi(argv[++i]));
710
711  } else if ( !strcmp(k, "ping") ) {
712#ifdef ROAR_HAVE_GETTIMEOFDAY
713   if ( ping(&con, atoi(argv[++i])) == -1 ) {
714    fprintf(stderr, "Error: can not ping\n");
715   }
716#else
717    fprintf(stderr, "Error: ping not supported.\n");
718    i++;
719#endif
720
721  } else if ( !strcmp(k, "standby") || !strcmp(k, "off") ) {
722   if ( roar_set_standby(&con, ROAR_STANDBY_ACTIVE) == -1 ) {
723    fprintf(stderr, "Error: can not set mode to standby\n");
724   } else {
725    printf("going into standby\n");
726   }
727  } else if ( !strcmp(k, "resume") || !strcmp(k, "on") ) {
728   if ( roar_set_standby(&con, ROAR_STANDBY_INACTIVE) == -1 ) {
729    fprintf(stderr, "Error: can not set mode to active\n");
730   } else {
731    printf("going into active mode\n");
732   }
733
734  } else if ( !strcmp(k, "exit") ) {
735   if ( roar_exit(&con) == -1 ) {
736    fprintf(stderr, "Error: can not quit server\n");
737   } else {
738    printf("Server quited\n");
739    break;
740   }
741  } else if ( !strcmp(k, "terminate") ) {
742   if ( roar_terminate(&con, 1) == -1 ) {
743    fprintf(stderr, "Error: can not terminate server\n");
744   } else {
745    printf("Server got asked to quited\n");
746    break;
747   }
748
749  } else if ( !strcmp(k, "standbymode") ) {
750   t = roar_get_standby(&con);
751   if ( t == -1 ) {
752    fprintf(stderr, "Error: can not get stanby mode\n");
753   } else if ( t == ROAR_STANDBY_ACTIVE ) {
754    printf("Server is in standby\n");
755   } else if ( t == ROAR_STANDBY_INACTIVE ) {
756    printf("Server is active\n");
757   } else {
758    fprintf(stderr, "Error: unknown standby mode: %i\n", t);
759   }
760
761  } else if ( !strcmp(k, "whoami") ) {
762   printf("My client ID is: %i\n", roar_get_clientid(&con));
763  } else if ( !strcmp(k, "serveroinfo") ) {
764   server_oinfo(&con);
765  } else if ( !strcmp(k, "listclients") ) {
766   list_clients(&con);
767  } else if ( !strcmp(k, "liststreams") ) {
768   list_streams(&con);
769  } else if ( !strcmp(k, "allinfo") ) {
770   server_oinfo(&con);
771   printf("\n");
772   list_clients(&con);
773   printf("\n");
774   list_streams(&con);
775
776  } else if ( !strcmp(k, "kick") ) {
777   k = argv[++i];
778   if ( !strcmp(k, "client") ) {
779    t = ROAR_OT_CLIENT;
780   } else if ( !strcmp(k, "stream") ) {
781    t = ROAR_OT_STREAM;
782   } else if ( !strcmp(k, "sample") ) {
783    t = ROAR_OT_SAMPLE;
784   } else if ( !strcmp(k, "source") ) {
785    t = ROAR_OT_SOURCE;
786   } else {
787    fprintf(stderr, "Error: unknown type: %s\n", k);
788    continue;
789   }
790   //t = atoi(argv[i++]);
791   if ( roar_kick(&con, t, atoi(argv[++i])) == -1 ) {
792    fprintf(stderr, "Error: can not kick %s\n", k);
793   } else {
794    printf("%s kicked\n", k);
795   }
796
797  } else if ( !strcmp(k, "volume") ) {
798   if ( set_mixer(&con, &i, argc, argv) == -1 ) {
799    fprintf(stderr, "Error: can not set volume\n");
800   } else {
801    printf("volume changed\n");
802   }
803
804  } else if ( !strcmp(k, "flag") ) {
805   i++;
806   if ( set_flags(&con, atoi(argv[i]), ROAR_SET_FLAG, argv[i+1]) == -1 ) {
807    fprintf(stderr, "Error: can not set flags\n");
808   } else {
809    printf("flags changed\n");
810   }
811   i++;
812  } else if ( !strcmp(k, "unflag") ) {
813   i++;
814   if ( set_flags(&con, atoi(argv[i]), ROAR_RESET_FLAG, argv[i+1]) == -1 ) {
815    fprintf(stderr, "Error: can not reset flags\n");
816   } else {
817    printf("flags changed\n");
818   }
819   i++;
820  } else if ( !strcmp(k, "metaset") ) {
821   i++;
822   if ( set_meta(&con, atoi(argv[i]), argv[i+1], argv[i+2], argv[i+3]) == -1 ) {
823    fprintf(stderr, "Error: can not set meta data\n");
824   } else {
825    printf("meta data changed\n");
826   }
827   i += 3;
828  } else if ( !strcmp(k, "metaget") ) {
829   i++;
830   if ( show_meta_type(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
831    fprintf(stderr, "Error: can not get meta data\n");
832   }
833   i++;
834  } else if ( !strcmp(k, "metasave") ) {
835   i++;
836   if ( save_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
837    fprintf(stderr, "Error: can not get meta data\n");
838   } else {
839    printf("meta data saved\n");
840   }
841   i++;
842  } else if ( !strcmp(k, "metaload") ) {
843   i++;
844   if ( load_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
845    fprintf(stderr, "Error: can not set meta data\n");
846   } else {
847    printf("meta data saved\n");
848   }
849   i++;
850
851  } else {
852   fprintf(stderr, "Error: invalid command: %s\n", k);
853  }
854
855 }
856
857 roar_disconnect(&con);
858
859 return 0;
860}
861
862//ll
Note: See TracBrowser for help on using the repository browser.