X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/c00fce3ab1dc8b810a439e81e419d7b8ae1d97b9..ca6b4a12640792d416b9fcbeb4baa8a3b84285ff:/server/normalize.c
diff --git a/server/normalize.c b/server/normalize.c
index c16c70f..db5b9d5 100644
--- a/server/normalize.c
+++ b/server/normalize.c
@@ -1,21 +1,19 @@
/*
* 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
+ * 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
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program 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.
- *
+ * This program 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 program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- * USA
+ * along with this program. If not, see .
*/
/** @file server/normalize.c
* @brief Convert "raw" format output to the configured format
@@ -25,21 +23,35 @@
* and eliminate the dependency on sox.
*/
-#include
-#include "types.h"
+#include "disorder-server.h"
-#include
-#include
-#include
-#include
-#include
-#include
-#include
+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 }
+};
-#include "syscalls.h"
-#include "log.h"
-#include "configuration.h"
-#include "speaker-protocol.h"
+/* 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,28 +123,48 @@ 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;
}
memset(&latest_format, 0, sizeof latest_format);
for(;;) {
- if((n = read(0, &header, sizeof header)) < 0)
- fatal(errno, "read error");
- else if(n == 0)
- exit(0);
- else if((size_t)n < sizeof header)
- fatal(0, "short header");
+ n = 0;
+ while((size_t)n < sizeof header) {
+ int r = read(0, (char *)&header + n, sizeof header - n);
+
+ if(r < 0) {
+ if(errno != EINTR)
+ fatal(errno, "error reading header");
+ } 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")",
@@ -192,6 +224,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;
}