//roarcat.c: /* * Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008 * * This file is part of roarclients a part of RoarAudio, * a cross-platform sound system for both, home and professional use. * See README for details. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 * as published by the Free Software Foundation. * * RoarAudio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include #define BUFSIZE 1024 void usage (void) { printf("roarcat [OPTIONS]... [FILE]\n"); printf("\nOptions:\n\n"); printf(" --server SERVER - Set server hostname\n" " --rate -R RATE - Set sample rate\n" " --bits -B BITS - Set bits per sample\n" " --chans -C CHANNELS - Set number of channels\n" " --codec CODEC - Set the codec\n" " --wave - Use Wave Audio (PCM) as input\n" " --midi - Use MIDI Audio as input\n" " --light - Use light control input\n" " --help - Show this help\n" ); } int main (int argc, char * argv[]) { int rate = ROAR_RATE_DEFAULT; int bits = ROAR_BITS_DEFAULT; int channels = ROAR_CHANNELS_DEFAULT; int codec = ROAR_CODEC_DEFAULT; int dir = ROAR_DIR_PLAY; char * server = NULL; char * k; int fh; int i; int in = -1; char * name = "roarcat"; char buf[BUFSIZE]; for (i = 1; i < argc; i++) { k = argv[i]; if ( !strcmp(k, "--server") || !strcmp(k, "-s") ) { server = argv[++i]; } else if ( !strcmp(k, "-n") ) { name = argv[++i]; } else if ( !strcmp(k, "--rate") || !strcmp(k, "-r") || !strcmp(k, "-R") ) { rate = atoi(argv[++i]); } else if ( !strcmp(k, "--bits") || !strcmp(k, "-B") ) { bits = atoi(argv[++i]); } else if ( !strcmp(k, "-b") ) { bits = 8; } else if ( !strcmp(k, "--channels") || !strcmp(k, "--chans") || !strcmp(k, "-C") ) { channels = atoi(argv[++i]); } else if ( !strcmp(k, "-m") ) { channels = 1; } else if ( !strcmp(k, "--codec") ) { if ( (codec = roar_str2codec(argv[++i])) == -1 ) { fprintf(stderr, "Error: Unknown codec: %s\n", argv[i]); return 1; } } else if ( !strcmp(k, "--wave") ) { dir = ROAR_DIR_PLAY; } else if ( !strcmp(k, "--midi") ) { dir = ROAR_DIR_MIDI_IN; if ( codec == ROAR_CODEC_DEFAULT ) codec = ROAR_CODEC_MIDI; } else if ( !strcmp(k, "--light") ) { dir = ROAR_DIR_LIGHT_IN; if ( codec == ROAR_CODEC_DEFAULT ) codec = ROAR_CODEC_DMX512; } else if ( !strcmp(k, "--help") || !strcmp(k, "-h") ) { usage(); return 0; } else if ( in == -1 ) { if ( (in = open(k, O_RDONLY, 0644)) == -1 ) { fprintf(stderr, "Error: can not open file: %s: %s\n", k, strerror(errno)); return 1; } } else { fprintf(stderr, "Error: unknown argument: %s\n", k); usage(); return 1; } } if ( (fh = roar_simple_stream(rate, channels, bits, codec, server, dir, name)) == -1 ) { fprintf(stderr, "Error: can not start playback\n"); return 1; } if ( in == -1 ) in = ROAR_STDIN; while((i = read(in, buf, BUFSIZE))) if (write(fh, buf, i) != i) break; roar_simple_close(fh); close(in); return 0; } //ll