source: roaraudio/roarclients/roarmon.c @ 1195:66d00542e9a7

Last change on this file since 1195:66d00542e9a7 was 1195:66d00542e9a7, checked in by phi, 15 years ago

updated roarmon code, now conforms the esdmon parameters, set compile time defaulst for stream defaults.

File size: 2.9 KB
RevLine 
[0]1//roarcat.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>
26
27#define BUFSIZE 1024
28
29void usage (void) {
[991]30 printf("roarmon [OPTIONS]... [FILE]\n");
[0]31
32 printf("\nOptions:\n\n");
33
34 printf("  --server SERVER    - Set server hostname\n"
35        "  --rate   RATE      - Set sample rate\n"
36        "  --bits   BITS      - Set bits per sample\n"
37        "  --chans  CHANNELS  - Set number of channels\n"
[570]38        "  --codec  CODEC     - Set the codec\n"
[0]39        "  --help             - Show this help\n"
40       );
41
42}
43
44int main (int argc, char * argv[]) {
[1195]45 int    rate     = ROAR_RATE_DEFAULT;
46 int    bits     = ROAR_BITS_DEFAULT;
47 int    channels = ROAR_CHANNELS_DEFAULT;
[0]48 int    codec    = ROAR_CODEC_DEFAULT;
49 char * server   = NULL;
50 char * k;
51 int    fh;
52 int    i;
[991]53 int    out = -1;
[0]54 char buf[BUFSIZE];
55
56 for (i = 1; i < argc; i++) {
57  k = argv[i];
58
[1195]59 //         esdmon [-s server ][-b] [-m] [-r freq] < file
60
61  if ( !strcmp(k, "--server") || !strcmp(k, "-s") ) {
[58]62   server = argv[++i];
[1195]63  } else if ( !strcmp(k, "--rate") || !strcmp(k, "-r") ) {
[0]64   rate = atoi(argv[++i]);
[1195]65  } else if ( !strcmp(k, "--bits") ) {
[0]66   bits = atoi(argv[++i]);
[1195]67  } else if ( !strcmp(k, "-b") ) {
68   bits = 8;
69  } else if ( !strcmp(k, "--channels") ) {
[0]70   channels = atoi(argv[++i]);
[1195]71  } else if ( !strcmp(k, "-m") ) {
72   channels = 2;
73  } else if ( !strcmp(k, "--codec") ) {
[570]74   codec = roar_str2codec(argv[++i]);
[1195]75  } else if ( !strcmp(k, "--help") ) {
[0]76   usage();
77   return 0;
[991]78  } else if ( out == -1 ) {
79   if ( (out = open(k, O_CREAT|O_TRUNC|O_WRONLY, 0644)) == -1 ) {
80    fprintf(stderr, "Error: can not open file: %s: %s\n", k, strerror(errno));
81    return 1;
82   }
[0]83  } else {
84   fprintf(stderr, "Error: unknown argument: %s\n", k);
85   usage();
86   return 1;
87  }
88 }
89
[991]90 if ( out == -1 )
91  out = ROAR_STDOUT;
92
[0]93 if ( (fh = roar_simple_monitor(rate, channels, bits, codec, server, "roarmon")) == -1 ) {
[991]94  fprintf(stderr, "Error: can not start monitoring\n");
[0]95  return 1;
96 }
97
98 while((i = read(fh, buf, BUFSIZE)))
[991]99  if (write(out, buf, i) != i)
[0]100   break;
101
102 roar_simple_close(fh);
103
104 return 0;
105}
106
107//ll
Note: See TracBrowser for help on using the repository browser.