source: roaraudio/roarclients/roarcat.c @ 2242:01acf25aaeb5

Last change on this file since 2242:01acf25aaeb5 was 2242:01acf25aaeb5, checked in by phi, 15 years ago

added --rel-id from roarmon

File size: 4.7 KB
Line 
1//roarcat.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008, 2009
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#define BUFSIZE 1024
28
29void usage (void) {
30 printf("roarcat [OPTIONS]... [FILE]\n");
31
32 printf("\nOptions:\n\n");
33
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"
39        "  --wave                - Use Wave Audio (PCM) as input\n"
40        "  --midi                - Use MIDI Audio as input\n"
41        "  --light               - Use light control input\n"
42        "  --raw                 - Use raw input\n"
43        "  --rel-id ID          - Set ID of relative stream\n"
44        "  --help                - Show this help\n"
45       );
46
47}
48
49int main (int argc, char * argv[]) {
50 int    rate     = ROAR_RATE_DEFAULT;
51 int    bits     = ROAR_BITS_DEFAULT;
52 int    channels = ROAR_CHANNELS_DEFAULT;
53 int    codec    = ROAR_CODEC_DEFAULT;
54 int    dir      = ROAR_DIR_PLAY;
55 int    rel_id   = -1;
56 char * server   = NULL;
57 char * k;
58 int    i;
59 char * name = "roarcat";
60 struct roar_connection    con;
61 struct roar_stream        s;
62 struct roar_vio_calls     file, stream;
63 struct roar_vio_defaults  def;
64 int file_opened = 0;
65
66 for (i = 1; i < argc; i++) {
67  k = argv[i];
68
69  if ( !strcmp(k, "--server") || !strcmp(k, "-s") ) {
70   server = argv[++i];
71  } else if ( !strcmp(k, "-n") ) {
72   name = argv[++i];
73  } else if ( !strcmp(k, "--rate") || !strcmp(k, "-r") || !strcmp(k, "-R") ) {
74   rate = atoi(argv[++i]);
75  } else if ( !strcmp(k, "--bits") || !strcmp(k, "-B") ) {
76   bits = atoi(argv[++i]);
77  } else if ( !strcmp(k, "-b") ) {
78   bits = 8;
79  } else if ( !strcmp(k, "--channels") || !strcmp(k, "--chans") || !strcmp(k, "-C") ) {
80   channels = atoi(argv[++i]);
81  } else if ( !strcmp(k, "-m") ) {
82   channels = 1;
83  } else if ( !strcmp(k, "--codec") ) {
84   if ( (codec = roar_str2codec(argv[++i])) == -1 ) {
85    fprintf(stderr, "Error: Unknown codec: %s\n", argv[i]);
86    return 1;
87   }
88
89  } else if ( !strcmp(k, "--wave") ) {
90   dir   = ROAR_DIR_PLAY;
91  } else if ( !strcmp(k, "--midi") ) {
92   dir   = ROAR_DIR_MIDI_IN;
93   if ( codec == ROAR_CODEC_DEFAULT )
94    codec = ROAR_CODEC_MIDI;
95  } else if ( !strcmp(k, "--light") ) {
96   dir   = ROAR_DIR_LIGHT_IN;
97   if ( codec == ROAR_CODEC_DEFAULT )
98    codec = ROAR_CODEC_DMX512;
99  } else if ( !strcmp(k, "--raw") ) {
100   dir   = ROAR_DIR_RAW_IN;
101
102  } else if ( !strcmp(k, "--rel-id") ) {
103   rel_id = atoi(argv[++i]);
104
105  } else if ( !strcmp(k, "--help") || !strcmp(k, "-h") ) {
106   usage();
107   return 0;
108  } else if ( !file_opened ) {
109   file_opened = 1;
110   if ( roar_vio_open_dstr(&file, k, &def, 1) == -1 ) {
111    fprintf(stderr, "Error: can not open file: %s: %s\n", k, strerror(errno));
112    return 1;
113   }
114  } else {
115   fprintf(stderr, "Error: unknown argument: %s\n", k);
116   usage();
117   return 1;
118  }
119 }
120
121 if ( roar_simple_connect(&con, server, "roarmon") == -1 ) {
122  fprintf(stderr, "Error: can not connect to server\n");
123  return 10;
124 }
125
126 if ( roar_stream_new(&s, rate, channels, bits, codec) == -1 ) {
127  fprintf(stderr, "Error: can not create stream\n");
128  roar_disconnect(&con);
129  return 20;
130 }
131
132 if ( rel_id != -1 ) {
133  if ( roar_stream_set_rel_id(&s, rel_id) ) {
134   fprintf(stderr, "Error: can not set id or realative stream\n");
135   roar_disconnect(&con);
136   return 21;
137  }
138 }
139
140 if ( roar_stream_connect(&con, &s, dir) == -1 ) {
141  fprintf(stderr, "Error: can not connect stream to server\n");
142  roar_disconnect(&con);
143  return 11;
144 }
145
146 if ( roar_stream_exec(&con, &s) == -1 ) {
147  fprintf(stderr, "Error: can not exec stream\n");
148  roar_disconnect(&con);
149  return 12;
150 }
151
152 if ( roar_get_connection_vio(&con, &stream) == -1 ) {
153  fprintf(stderr, "Error: can not get stream vio\n");
154  roar_disconnect(&con);
155  return 13;
156 }
157
158 roar_vio_copy_data(&stream, &file);
159
160 roar_vio_close(&stream);
161 roar_vio_close(&file);
162
163 return 0;
164}
165
166//ll
Note: See TracBrowser for help on using the repository browser.