X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/24fc5e58815081a7062d236e9b53d50e36402ef1..d0b6635eee6d656502d129e88c65a5014c8e042f:/server/normalize.c diff --git a/server/normalize.c b/server/normalize.c index f8c7df7..6d8823e 100644 --- a/server/normalize.c +++ b/server/normalize.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007 Richard Kettlewell + * Copyright (C) 2007, 2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,6 +28,7 @@ #include #include "types.h" +#include #include #include #include @@ -40,6 +41,36 @@ #include "log.h" #include "configuration.h" #include "speaker-protocol.h" +#include "defs.h" +#include "version.h" + +static const struct option options[] = { + { "help", no_argument, 0, 'h' }, + { "version", no_argument, 0, 'V' }, + { "config", required_argument, 0, 'c' }, + { "debug", no_argument, 0, 'd' }, + { "no-debug", no_argument, 0, 'D' }, + { "syslog", no_argument, 0, 's' }, + { "no-syslog", no_argument, 0, 'S' }, + { 0, 0, 0, 0 } +}; + +/* display usage message and terminate */ +static void help(void) { + xprintf("Usage:\n" + " disorder-normalize [OPTIONS]\n" + "Options:\n" + " --help, -h Display usage message\n" + " --version, -V Display version number\n" + " --config PATH, -c PATH Set configuration file\n" + " --debug, -d Turn on debugging\n" + " --[no-]syslog Force logging\n" + "\n" + "Audio format normalizer for DisOrder. Not intended to be run\n" + "directly.\n"); + xfclose(stdout); + exit(0); +} /** @brief Copy bytes from one file descriptor to another * @param infd File descriptor read from @@ -111,17 +142,27 @@ static void soxargs(const char ***pp, char **qq, int main(int argc, char attribute((unused)) **argv) { struct stream_header header, latest_format; - int n, p[2], outfd = -1; + int n, p[2], outfd = -1, logsyslog = !isatty(2); pid_t pid = -1; set_progname(argv); if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); - if(argc > 1) - fatal(0, "not intended to be invoked by users"); + while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) { + switch(n) { + case 'h': help(); + case 'V': version("disorder-normalize"); + case 'c': configfile = optarg; break; + case 'd': debugging = 1; break; + case 'D': debugging = 0; break; + case 'S': logsyslog = 0; break; + case 's': logsyslog = 1; break; + default: fatal(0, "invalid option"); + } + } if(config_read(1)) fatal(0, "cannot read configuration"); - if(!isatty(2)) { + if(logsyslog) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; } @@ -202,6 +243,13 @@ int main(int argc, char attribute((unused)) **argv) { } if(outfd != -1) xclose(outfd); + if(pid != -1) { + /* There's still a converter running */ + if(waitpid(pid, &n, 0) < 0) + fatal(errno, "error calling waitpid"); + if(n) + fatal(0, "sox failed: %#x", n); + } return 0; }