source: roaraudio/roarclients/roarctl.c @ 1926:4522f8bfab00

Last change on this file since 1926:4522f8bfab00 was 1926:4522f8bfab00, checked in by phi, 15 years ago

added sill dummy stream flag MMAP :)

File size: 22.4 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   if ( s.info.rate && s.info.channels ) {
266    printf("Position              : %lu S (%.3fs)\n", (unsigned long int) s.pos,
267                                    (float)s.pos/(s.info.rate*s.info.channels));
268   } else {
269    printf("Position              : %lu S\n", (unsigned long int) s.pos);
270   }
271  }
272
273  if ( s.dir != ROAR_DIR_LIGHT_IN && s.dir != ROAR_DIR_LIGHT_OUT &&
274       s.info.rate                && s.info.bits                 && s.info.channels
275     ) {
276   printf("Input rate            : %i\n", s.info.rate);
277   printf("Input bits            : %i\n", s.info.bits);
278   printf("Input channels        : %i\n", s.info.channels);
279  }
280
281  printf("Input codec           : %2i (%s%s)\n", s.info.codec, roar_codec2str(s.info.codec),
282                                       s.info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
283  if ( roar_stream_get_info(con, &s, &info) != -1 ) {
284   if ( info.codec != s.info.codec ) {
285    printf("Input codec (streamed): %2i (%s%s)\n", info.codec, roar_codec2str(info.codec),
286                                       info.codec == ROAR_CODEC_DEFAULT ? " native" : "");
287   }
288
289   if ( g_verbose ) {
290    if ( info.block_size )
291     printf("Input block size      : %i Byte\n", info.block_size);
292
293    printf("Underruns pre/post    : %i/%i\n",   info.pre_underruns, info.post_underruns);
294    if ( g_verbose > 1 )
295     printf("Stream delay          : %ims\n",   (int)info.delay/1000);
296
297    *flags = 0;
298    if ( info.flags & ROAR_FLAG_PRIMARY )
299     strcat(flags, "primary ");
300    if ( info.flags & ROAR_FLAG_SYNC )
301     strcat(flags, "sync ");
302    if ( info.flags & ROAR_FLAG_OUTPUT )
303     strcat(flags, "output ");
304    if ( info.flags & ROAR_FLAG_SOURCE )
305     strcat(flags, "source ");
306    if ( info.flags & ROAR_FLAG_META )
307     strcat(flags, "meta ");
308    if ( info.flags & ROAR_FLAG_AUTOCONF )
309     strcat(flags, "autoconf ");
310    if ( info.flags & ROAR_FLAG_CLEANMETA )
311     strcat(flags, "cleanmeta ");
312    if ( info.flags & ROAR_FLAG_HWMIXER )
313     strcat(flags, "hwmixer ");
314    if ( info.flags & ROAR_FLAG_PAUSE )
315     strcat(flags, "pause ");
316    if ( info.flags & ROAR_FLAG_MUTE )
317     strcat(flags, "mute ");
318    if ( info.flags & ROAR_FLAG_MMAP )
319     strcat(flags, "mmap ");
320
321    printf("Flags                 : %s\n", flags);
322   }
323  }
324
325  if ( s.dir != ROAR_DIR_THRU ) {
326   display_mixer(con, id[i]);
327   show_meta_all(con, id[i]);
328  }
329 }
330
331}
332
333int display_mixer (struct roar_connection * con, int stream) {
334 int channels;
335 struct roar_mixer_settings mixer;
336 int i;
337
338 if ( roar_get_vol(con, stream, &mixer, &channels) == -1 ) {
339  fprintf(stderr, "Error: can not get stream mixer info\n");
340  return -1;
341 }
342
343 for (i = 0; i < channels; i++)
344  printf("Mixer volume chan %2i  : %i (%.2f%%)\n", i, mixer.mixer[i], (float)mixer.mixer[i]/655.35);
345
346 return 0;
347}
348
349int set_mixer (struct roar_connection * con, int * cur, int max, char * arg[]) {
350 int chans = 0;
351 int id;
352 int i;
353 int len;
354 int old_chans;
355 int vol_l, vol_r;
356 char * k;
357 struct roar_mixer_settings mixer;
358 struct roar_mixer_settings old_mixer;
359
360 if (*cur + 2 > max)
361  return -1;
362
363 id = atoi(arg[++(*cur)]);
364
365 k = arg[++(*cur)];
366
367 if ( roar_get_vol(con, id, &old_mixer, &old_chans) == -1 ) {
368  fprintf(stderr, "Error: can not get stream mixer info\n");
369  return -1;
370 }
371
372
373// TODO: clean up code here as the % vs. abs code is very duplicate...
374
375 if ( strcmp(k, "mono") == 0 && old_chans != 1 ) {
376  chans = 1;
377
378  if ( *cur + 1 > max )
379   return -1;
380
381  k   = arg[++(*cur)];
382  len = strlen(k);
383
384  if ( k[len - 1] == '%' ) {
385   k[len - 1] = 0;
386   vol_l = (atof(k)*65535)/100;
387  } else {
388   vol_l = atoi(k);
389  }
390
391  for (i = 0; i < old_chans; i++)
392   mixer.mixer[i] = vol_l;
393
394  chans = old_chans;
395
396 } else if ( strcmp(k, "stereo") == 0 && old_chans == 4 ) {
397  chans = 4;
398
399  if ( *cur + 2 > max )
400   return -1;
401
402  k   = arg[++(*cur)];
403  len = strlen(k);
404
405  if ( k[len - 1] == '%' ) {
406   k[len - 1] = 0;
407   vol_l = (atof(k)*65535)/100;
408  } else {
409   vol_l = atoi(k);
410  }
411
412  k   = arg[++(*cur)];
413  len = strlen(k);
414
415  if ( k[len - 1] == '%' ) {
416   k[len - 1] = 0;
417   vol_r = (atof(k)*65535)/100;
418  } else {
419   vol_r = atoi(k);
420  }
421
422  mixer.mixer[0] = vol_l;
423  mixer.mixer[1] = vol_r;
424  mixer.mixer[2] = vol_l;
425  mixer.mixer[3] = vol_r;
426
427 } else if ( strcmp(k, "stereo") == 0 && old_chans != 2 ) {
428  chans = 2;
429//  printf("mode: stereo; chans=%i, old_chans=%i\n", chans, old_chans);
430  ROAR_ERR("mode stereo not supported");
431  return -1;
432 } else {
433  if ( strcmp(k, "mono") == 0 ) {
434   chans = 1;
435  } else if ( strcmp(k, "stereo") == 0 ) {
436   chans = 2;
437  } else {
438   chans = atoi(k);
439  }
440
441//  printf("mode: int; chans=%i, old_chans=%i\n", chans, old_chans);
442
443  if ( *cur + chans > max )
444   return -1;
445
446  for (i = 0; i < chans; i++) {
447   k   = arg[++(*cur)];
448   len = strlen(k);
449
450   if ( k[len - 1] == '%' ) {
451    k[len - 1] = 0;
452    mixer.mixer[i] = (atof(k)*(int)65535)/100;
453   } else {
454    mixer.mixer[i] = atoi(k);
455   }
456  }
457 }
458
459 mixer.scale = 65535;
460
461 return roar_set_vol(con, id, &mixer, chans);
462}
463
464int set_meta (struct roar_connection * con, int id, char * mode, char * type, char * val) {
465 struct roar_meta   meta;
466 struct roar_stream s;
467 int mode_i = ROAR_META_MODE_SET;
468
469 memset(&s, 0, sizeof(s));
470
471 s.id = id;
472
473// printf("set_meta(*): mode='%s', type='%s', val='%s'\n", mode, type, val);
474
475 if ( strcmp(mode, "add") == 0 ) {
476  mode_i = ROAR_META_MODE_ADD;
477 }
478
479 meta.type   = roar_meta_inttype(type);
480 meta.value  = val;
481 meta.key[0] = 0;
482
483 if ( meta.type == -1 ) {
484  fprintf(stderr, "Error: unknown type: %s\n", type);
485  return -1;
486 }
487
488// printf("D: type=%i, mode=%i\n", meta.type, mode_i);
489
490 if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
491  return -1;
492
493 meta.type  = ROAR_META_TYPE_NONE;
494 meta.value = NULL;
495
496 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
497}
498
499int load_meta (struct roar_connection * con, int id, char * file) {
500 struct roar_meta   meta;
501 struct roar_stream s;
502 int mode_i = ROAR_META_MODE_SET;
503 FILE * in;
504 char lion[1024];
505 char * v;
506
507 memset(&s, 0, sizeof(s));
508
509 s.id = id;
510
511 if ( (in = fopen(file, "r")) == NULL )
512  return -1;
513
514 while (fgets(lion, 1024, in) != NULL) {
515  if ( (v = strtok(lion, "\r\n")) != NULL )
516   if ( (v = strtok(NULL, "\r\n")) != NULL )
517    *(v-1) = 0;
518
519  if ( (v = strstr(lion, "=")) == NULL ) {
520   fprintf(stderr, "Error: can not parse meta data lion: %s\n", lion);
521   continue;
522  }
523
524  *v++ = 0;
525
526  meta.type   = roar_meta_inttype(lion);
527  meta.value  = v;
528  meta.key[0] = 0;
529
530  if ( meta.type == -1 ) {
531   fprintf(stderr, "Error: unknown type: %s\n", lion);
532   continue;
533  }
534
535  if ( roar_stream_meta_set(con, &s, mode_i, &meta) == -1 )
536   return -1;
537 }
538
539 fclose(in);
540
541 meta.type  = ROAR_META_TYPE_NONE;
542 meta.value = NULL;
543
544 return roar_stream_meta_set(con, &s, ROAR_META_MODE_FINALIZE, &meta);
545}
546
547int show_meta_type (struct roar_connection * con, int id, char * type) {
548 struct roar_meta   meta;
549 struct roar_stream s;
550
551 memset(&s, 0, sizeof(s));
552
553 s.id = id;
554
555 meta.type  = roar_meta_inttype(type);
556
557 if ( meta.type == -1 ) {
558  fprintf(stderr, "Error: unknown type: %s\n", type);
559  return -1;
560 }
561
562 if ( roar_stream_meta_get(con, &s, &meta) == -1 )
563  return -1;
564
565 printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
566
567 roar_meta_free(&meta);
568
569 return 0;
570}
571
572int show_meta_all (struct roar_connection * con, int id) {
573 struct roar_stream s;
574 int types[ROAR_META_MAX_PER_STREAM];
575 int i;
576 int len;
577
578 memset(&s, 0, sizeof(s));
579
580 s.id = id;
581
582 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
583  return -1;
584
585 for (i = 0; i < len; i++)
586  show_meta_type(con, id, roar_meta_strtype(types[i]));
587
588 return 0;
589}
590
591int save_meta (struct roar_connection * con, int id, char * file) {
592 struct roar_stream s;
593 struct roar_meta   meta;
594 int types[ROAR_META_MAX_PER_STREAM];
595 int i;
596 int len;
597 FILE * out;
598
599 memset(&s, 0, sizeof(s));
600
601 s.id = id;
602
603 if ( (out = fopen(file, "w")) == NULL )
604  return -1;
605
606 if ( (len = roar_stream_meta_list(con, &s, types, ROAR_META_MAX_PER_STREAM)) == -1 )
607  return -1;
608
609 for (i = 0; i < len; i++) {
610/*
611  show_meta_type(con, id, roar_meta_strtype(types[i]));
612*/
613  meta.type  = types[i];
614
615  if ( roar_stream_meta_get(con, &s, &meta) == -1 )
616   continue;
617
618//  printf("Meta %-17s: %s\n", roar_meta_strtype(meta.type), meta.value);
619
620  fprintf(out, "%s=%s\n", roar_meta_strtype(meta.type), meta.value);
621
622  roar_meta_free(&meta);
623 }
624
625 fclose(out);
626
627 return 0;
628}
629
630int set_flags (struct roar_connection * con, int id, int reset, char * flags) {
631 int f = ROAR_FLAG_NONE;
632 char * c;
633 struct roar_stream s[1];
634
635 memset(s, 0, sizeof(struct roar_stream));
636
637 s->id = id;
638
639 c = strtok(flags, ",");
640 while (c != NULL) {
641  if ( !strcmp(c, "meta") ) {
642   f |= ROAR_FLAG_META;
643  } else if ( !strcmp(c, "primary") ) {
644   f |= ROAR_FLAG_PRIMARY;
645  } else if ( !strcmp(c, "sync") ) {
646   f |= ROAR_FLAG_SYNC;
647  } else if ( !strcmp(c, "cleanmeta") ) {
648   f |= ROAR_FLAG_CLEANMETA;
649  } else if ( !strcmp(c, "hwmixer") ) {
650   f |= ROAR_FLAG_HWMIXER;
651  } else if ( !strcmp(c, "pause") ) {
652   f |= ROAR_FLAG_PAUSE;
653  } else if ( !strcmp(c, "mute") ) {
654   f |= ROAR_FLAG_MUTE;
655  } else if ( !strcmp(c, "mmap") ) {
656   f |= ROAR_FLAG_MMAP;
657  } else {
658   fprintf(stderr, "Error: unknown flag: %s\n", c);
659   return -1;
660  }
661
662  c = strtok(NULL, ",");
663 }
664
665 return roar_stream_set_flags(con, s, f, reset);
666}
667
668int main (int argc, char * argv[]) {
669 struct roar_connection con;
670 char * server   = NULL;
671 char * k = NULL;
672 int    i;
673 int    t = 0;
674
675 for (i = 1; i < argc; i++) {
676  k = argv[i];
677
678  if ( strcmp(k, "--server") == 0 ) {
679   server = argv[++i];
680  } else if ( strcmp(k, "-v") == 0 || strcmp(k, "--verbose") == 0 ) {
681   g_verbose++;
682  } else if ( strcmp(k, "--help") == 0 ) {
683   usage();
684   return 0;
685  } else if ( *k == '-' ) {
686   fprintf(stderr, "Error: unknown argument: %s\n", k);
687   usage();
688   return 1;
689  } else {
690   break;
691  }
692 }
693
694 // connect
695
696 if ( roar_connect(&con, server) == -1 ) {
697  fprintf(stderr, "Error: Can not connect to server\n");
698  return 1;
699 }
700
701 if ( roar_identify(&con, "roarctl") == -1 ) {
702  fprintf(stderr, "Error: Can not identify to server\n");
703  return 1;
704 }
705
706 if ( i == argc ) {
707  fprintf(stderr, "Error: No Commands given\n");
708  return 0; // this is not a fatal error...
709 }
710
711 for (; i < argc; i++) {
712  k = argv[i];
713  // cmd is in k
714
715  printf("--- [ %s ] ---\n", k);
716
717  if ( !strcmp(k, "help") ) {
718   usage();
719
720  } else if ( !strcmp(k, "sleep") ) {
721   sleep(atoi(argv[++i]));
722
723  } else if ( !strcmp(k, "ping") ) {
724#ifdef ROAR_HAVE_GETTIMEOFDAY
725   if ( ping(&con, atoi(argv[++i])) == -1 ) {
726    fprintf(stderr, "Error: can not ping\n");
727   }
728#else
729    fprintf(stderr, "Error: ping not supported.\n");
730    i++;
731#endif
732
733  } else if ( !strcmp(k, "standby") || !strcmp(k, "off") ) {
734   if ( roar_set_standby(&con, ROAR_STANDBY_ACTIVE) == -1 ) {
735    fprintf(stderr, "Error: can not set mode to standby\n");
736   } else {
737    printf("going into standby\n");
738   }
739  } else if ( !strcmp(k, "resume") || !strcmp(k, "on") ) {
740   if ( roar_set_standby(&con, ROAR_STANDBY_INACTIVE) == -1 ) {
741    fprintf(stderr, "Error: can not set mode to active\n");
742   } else {
743    printf("going into active mode\n");
744   }
745
746  } else if ( !strcmp(k, "exit") ) {
747   if ( roar_exit(&con) == -1 ) {
748    fprintf(stderr, "Error: can not quit server\n");
749   } else {
750    printf("Server quited\n");
751    break;
752   }
753  } else if ( !strcmp(k, "terminate") ) {
754   if ( roar_terminate(&con, 1) == -1 ) {
755    fprintf(stderr, "Error: can not terminate server\n");
756   } else {
757    printf("Server got asked to quited\n");
758    break;
759   }
760
761  } else if ( !strcmp(k, "standbymode") ) {
762   t = roar_get_standby(&con);
763   if ( t == -1 ) {
764    fprintf(stderr, "Error: can not get stanby mode\n");
765   } else if ( t == ROAR_STANDBY_ACTIVE ) {
766    printf("Server is in standby\n");
767   } else if ( t == ROAR_STANDBY_INACTIVE ) {
768    printf("Server is active\n");
769   } else {
770    fprintf(stderr, "Error: unknown standby mode: %i\n", t);
771   }
772
773  } else if ( !strcmp(k, "whoami") ) {
774   printf("My client ID is: %i\n", roar_get_clientid(&con));
775  } else if ( !strcmp(k, "serveroinfo") ) {
776   server_oinfo(&con);
777  } else if ( !strcmp(k, "listclients") ) {
778   list_clients(&con);
779  } else if ( !strcmp(k, "liststreams") ) {
780   list_streams(&con);
781  } else if ( !strcmp(k, "allinfo") ) {
782   server_oinfo(&con);
783   printf("\n");
784   list_clients(&con);
785   printf("\n");
786   list_streams(&con);
787
788  } else if ( !strcmp(k, "kick") ) {
789   k = argv[++i];
790   if ( !strcmp(k, "client") ) {
791    t = ROAR_OT_CLIENT;
792   } else if ( !strcmp(k, "stream") ) {
793    t = ROAR_OT_STREAM;
794   } else if ( !strcmp(k, "sample") ) {
795    t = ROAR_OT_SAMPLE;
796   } else if ( !strcmp(k, "source") ) {
797    t = ROAR_OT_SOURCE;
798   } else {
799    fprintf(stderr, "Error: unknown type: %s\n", k);
800    continue;
801   }
802   //t = atoi(argv[i++]);
803   if ( roar_kick(&con, t, atoi(argv[++i])) == -1 ) {
804    fprintf(stderr, "Error: can not kick %s\n", k);
805   } else {
806    printf("%s kicked\n", k);
807   }
808
809  } else if ( !strcmp(k, "volume") ) {
810   if ( set_mixer(&con, &i, argc, argv) == -1 ) {
811    fprintf(stderr, "Error: can not set volume\n");
812   } else {
813    printf("volume changed\n");
814   }
815
816  } else if ( !strcmp(k, "flag") ) {
817   i++;
818   if ( set_flags(&con, atoi(argv[i]), ROAR_SET_FLAG, argv[i+1]) == -1 ) {
819    fprintf(stderr, "Error: can not set flags\n");
820   } else {
821    printf("flags changed\n");
822   }
823   i++;
824  } else if ( !strcmp(k, "unflag") ) {
825   i++;
826   if ( set_flags(&con, atoi(argv[i]), ROAR_RESET_FLAG, argv[i+1]) == -1 ) {
827    fprintf(stderr, "Error: can not reset flags\n");
828   } else {
829    printf("flags changed\n");
830   }
831   i++;
832  } else if ( !strcmp(k, "metaset") ) {
833   i++;
834   if ( set_meta(&con, atoi(argv[i]), argv[i+1], argv[i+2], argv[i+3]) == -1 ) {
835    fprintf(stderr, "Error: can not set meta data\n");
836   } else {
837    printf("meta data changed\n");
838   }
839   i += 3;
840  } else if ( !strcmp(k, "metaget") ) {
841   i++;
842   if ( show_meta_type(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
843    fprintf(stderr, "Error: can not get meta data\n");
844   }
845   i++;
846  } else if ( !strcmp(k, "metasave") ) {
847   i++;
848   if ( save_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
849    fprintf(stderr, "Error: can not get meta data\n");
850   } else {
851    printf("meta data saved\n");
852   }
853   i++;
854  } else if ( !strcmp(k, "metaload") ) {
855   i++;
856   if ( load_meta(&con, atoi(argv[i]), argv[i+1]) == -1 ) {
857    fprintf(stderr, "Error: can not set meta data\n");
858   } else {
859    printf("meta data saved\n");
860   }
861   i++;
862
863  } else {
864   fprintf(stderr, "Error: invalid command: %s\n", k);
865  }
866
867 }
868
869 roar_disconnect(&con);
870
871 return 0;
872}
873
874//ll
Note: See TracBrowser for help on using the repository browser.