source: roaraudio/roarclients/roarmon.c @ 2124:813ab24c3465

Last change on this file since 2124:813ab24c3465 was 2045:372a02360fff, checked in by phi, 15 years ago

added dstr support to roarmon

File size: 5.0 KB
RevLine 
[0]1//roarcat.c:
2
[669]3/*
[2045]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008, 2009
[669]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
[1507]34 printf("  --server   SERVER    - Set server hostname\n"
35        "  --rate  -R RATE      - Set sample rate\n"
36        "  --bits  -B BITS      - Set bits per sample\n"
37        "  --chans -C CHANNELS  - Set number of channels\n"
38        "  --codec    CODEC     - Set the codec\n"
[1808]39        "  --wave               - Output Wave Audio (PCM)\n"
40        "  --midi               - Output MIDI Audio\n"
41        "  --light              - Output light control\n"
42        "  --thru               - Output copy of other stream\n"
[1814]43        "  --rel-id ID          - Set ID of relative stream\n"
[1507]44        "  --help               - Show this help\n"
[0]45       );
46
47}
48
49int main (int argc, char * argv[]) {
[1195]50 int    rate     = ROAR_RATE_DEFAULT;
51 int    bits     = ROAR_BITS_DEFAULT;
52 int    channels = ROAR_CHANNELS_DEFAULT;
[0]53 int    codec    = ROAR_CODEC_DEFAULT;
[1808]54 int    dir      = ROAR_DIR_MONITOR;
[1814]55 int    rel_id   = -1;
[0]56 char * server   = NULL;
57 char * k;
58 int    i;
[2045]59 struct roar_connection    con;
60 struct roar_stream        s;
61 struct roar_vio_calls     file, stream;
62 struct roar_vio_defaults  def;
63 int file_opened = 0;
64
65 if ( roar_vio_open_fh(&file, ROAR_STDOUT) == -1 )
66  return 1;
67
68 if ( roar_vio_dstr_init_defaults(&def, ROAR_VIO_DEF_TYPE_NONE, O_CREAT|O_TRUNC|O_WRONLY, 0644) == -1 )
69  return 1;
[0]70
71 for (i = 1; i < argc; i++) {
72  k = argv[i];
73
[1195]74 //         esdmon [-s server ][-b] [-m] [-r freq] < file
75
76  if ( !strcmp(k, "--server") || !strcmp(k, "-s") ) {
[58]77   server = argv[++i];
[1507]78  } else if ( !strcmp(k, "--rate") || !strcmp(k, "-r") || !strcmp(k, "-R") ) {
[0]79   rate = atoi(argv[++i]);
[1507]80  } else if ( !strcmp(k, "--bits") || !strcmp(k, "-B") ) {
[0]81   bits = atoi(argv[++i]);
[1195]82  } else if ( !strcmp(k, "-b") ) {
83   bits = 8;
[1507]84  } else if ( !strcmp(k, "--channels") || !strcmp(k, "--chans") || !strcmp(k, "-C") ) {
[0]85   channels = atoi(argv[++i]);
[1195]86  } else if ( !strcmp(k, "-m") ) {
87   channels = 2;
88  } else if ( !strcmp(k, "--codec") ) {
[1897]89   if ( (codec = roar_str2codec(argv[++i])) == -1 ) {
90    fprintf(stderr, "Error: Unknown codec: %s\n", argv[i]);
91    return 1;
92   }
[1808]93
94  } else if ( !strcmp(k, "--wave") ) {
95   dir   = ROAR_DIR_MONITOR;
96  } else if ( !strcmp(k, "--midi") ) {
97   dir   = ROAR_DIR_MIDI_OUT;
[1897]98   if ( codec == ROAR_CODEC_DEFAULT )
99    codec = ROAR_CODEC_MIDI;
[1808]100  } else if ( !strcmp(k, "--light") ) {
101   dir   = ROAR_DIR_LIGHT_OUT;
[1897]102   if ( codec == ROAR_CODEC_DEFAULT )
103    codec = ROAR_CODEC_DMX512;
[1808]104  } else if ( !strcmp(k, "--thru") ) {
105   dir   = ROAR_DIR_THRU;
[1814]106  } else if ( !strcmp(k, "--rel-id") ) {
107   rel_id = atoi(argv[++i]);
[1808]108
[1635]109  } else if ( !strcmp(k, "--help") || !strcmp(k, "-h") ) {
[0]110   usage();
111   return 0;
[2045]112  } else if ( !file_opened ) {
113   file_opened = 1;
114   if ( roar_vio_open_dstr(&file, k, &def, 1) == -1 ) {
[991]115    fprintf(stderr, "Error: can not open file: %s: %s\n", k, strerror(errno));
116    return 1;
117   }
[0]118  } else {
119   fprintf(stderr, "Error: unknown argument: %s\n", k);
120   usage();
121   return 1;
122  }
123 }
124
[1814]125 if ( roar_simple_connect(&con, server, "roarmon") == -1 ) {
126  fprintf(stderr, "Error: can not connect to server\n");
127  return 10;
128 }
129
130 if ( roar_stream_new(&s, rate, channels, bits, codec) == -1 ) {
131  fprintf(stderr, "Error: can not create stream\n");
132  roar_disconnect(&con);
133  return 20;
134 }
135
136 if ( rel_id != -1 ) {
137  if ( roar_stream_set_rel_id(&s, rel_id) ) {
138   fprintf(stderr, "Error: can not set id or realative stream\n");
139   roar_disconnect(&con);
140   return 21;
141  }
[0]142 }
143
[1814]144 if ( roar_stream_connect(&con, &s, dir) == -1 ) {
145  fprintf(stderr, "Error: can not connect stream to server\n");
146  roar_disconnect(&con);
147  return 11;
148 }
149
150 if ( roar_stream_exec(&con, &s) == -1 ) {
151  fprintf(stderr, "Error: can not exec stream\n");
152  roar_disconnect(&con);
153  return 12;
154 }
155
[2045]156 if ( roar_get_connection_vio(&con, &stream) == -1 ) {
157  fprintf(stderr, "Error: can not get stream vio\n");
[1814]158  roar_disconnect(&con);
159  return 13;
160 }
161
[2045]162// TODO: FIXME:
163// ROAR_SHUTDOWN(fh, SHUT_WR); // we need to have something do do shutdowns here...
[1814]164
[2045]165 roar_vio_copy_data(&file, &stream);
[0]166
[2045]167 roar_vio_close(&stream);
168 roar_vio_close(&file);
[0]169
170 return 0;
171}
172
173//ll
Note: See TracBrowser for help on using the repository browser.