X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/62dc37489c39c8d20046b4d5e323707239491df6..f9635e06947ec6bc61c7977e7a3f9dba2c43d784:/server/rescan.c diff --git a/server/rescan.c b/server/rescan.c index aaa5f93..b9be72d 100644 --- a/server/rescan.c +++ b/server/rescan.c @@ -50,6 +50,7 @@ #include "trackdb.h" #include "trackdb-int.h" #include "trackname.h" +#include "unicode.h" static DB_TXN *global_tid; @@ -59,6 +60,8 @@ static const struct option options[] = { { "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 } }; @@ -71,6 +74,7 @@ static void help(void) { " --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" "Rescanner for DisOrder. Not intended to be run\n" "directly.\n"); @@ -148,6 +152,11 @@ static void rescan_collection(const struct collection *c) { error(0, "cannot convert track path to UTF-8: %s", path); continue; } + /* We use NFC track names */ + if(!(track = utf8_compose_canon(track, strlen(track), 0))) { + error(0, "cannot convert track path to NFC: %s", path); + continue; + } D(("track %s", track)); /* only tracks with a known player are admitted */ for(n = 0; (n < config->player.n @@ -320,24 +329,25 @@ static void expire_noticed(void) { } int main(int argc, char **argv) { - int n; + int n, logsyslog = !isatty(2); struct sigaction sa; set_progname(argv); mem_init(); if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); - while((n = getopt_long(argc, argv, "hVc:dD", options, 0)) >= 0) { + while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) { switch(n) { case 'h': help(); case 'V': version(); 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 stderr is a TTY then log there, otherwise to syslog. */ - if(!isatty(2)) { + if(logsyslog) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; }