X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e7fd161254656759e3e9cd25bf18ec9d2f0c1aac..237413906dcdf4b1ba1e5809bb7510bae71b1956:/server/normalize.c diff --git a/server/normalize.c b/server/normalize.c index 073b869..8b871c8 100644 --- a/server/normalize.c +++ b/server/normalize.c @@ -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; } @@ -134,11 +175,15 @@ int main(int argc, char attribute((unused)) **argv) { if(r < 0) { if(errno != EINTR) fatal(errno, "error reading header"); - } else if(r == 0) - fatal(0, "EOF reading header"); - else + } else if(r == 0) { + if(n) + fatal(0, "EOF reading header"); + break; + } else n += r; } + if(!n) + break; /* Sanity check the header */ if(header.rate < 100 || header.rate > 1000000) fatal(0, "implausible rate %"PRId32"Hz (%#"PRIx32")", @@ -198,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; }