2 * This file is part of DisOrder
3 * Copyright (C) 2005, 2006, 2007 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
30 #include <sys/types.h>
39 #include "configuration.h"
45 #include "inputline.h"
51 #include "trackdb-int.h"
52 #include "trackname.h"
55 static DB_TXN *global_tid;
57 static const struct option options[] = {
58 { "help", no_argument, 0, 'h' },
59 { "version", no_argument, 0, 'V' },
60 { "config", required_argument, 0, 'c' },
61 { "debug", no_argument, 0, 'd' },
62 { "no-debug", no_argument, 0, 'D' },
63 { "syslog", no_argument, 0, 's' },
64 { "no-syslog", no_argument, 0, 'S' },
68 /* display usage message and terminate */
69 static void help(void) {
71 " disorder-rescan [OPTIONS] [PATH...]\n"
73 " --help, -h Display usage message\n"
74 " --version, -V Display version number\n"
75 " --config PATH, -c PATH Set configuration file\n"
76 " --debug, -d Turn on debugging\n"
77 " --[no-]syslog Force logging\n"
79 "Rescanner for DisOrder. Not intended to be run\n"
85 /* display version number and terminate */
86 static void version(void) {
87 xprintf("disorder-rescan version %s\n", disorder_version_string);
92 static volatile sig_atomic_t signalled;
94 static void signal_handler(int sig) {
95 if(sig == 0) _exit(-1); /* "Cannot happen" */
99 static int aborted(void) {
100 return signalled || getppid() == 1;
103 /* Exit if our parent has gone away or we have been told to stop. */
104 static void checkabort(void) {
106 info("parent has terminated");
107 trackdb_abort_transaction(global_tid);
111 info("received signal %d", signalled);
112 trackdb_abort_transaction(global_tid);
117 /* rescan a collection */
118 static void rescan_collection(const struct collection *c) {
123 long ntracks = 0, nnew = 0;
126 info("rescanning %s with %s", c->root, c->module);
127 /* plugin runs in a subprocess */
129 if(!(pid = xfork())) {
134 scan(c->module, c->root);
135 if(fflush(stdout) < 0)
136 fatal(errno, "error writing to scanner pipe");
140 if(!(fp = fdopen(p[0], "r")))
141 fatal(errno, "error calling fdopen");
142 /* read tracks from the plugin */
143 while(!inputline("rescanner", fp, &path, 0)) {
145 /* actually we can cope relatively well within the server, but they'll go
146 * wrong in track listings */
147 if(strchr(path, '\n')) {
148 error(0, "cannot cope with tracks with newlines in the name");
151 if(!(track = any2utf8(c->encoding, path))) {
152 error(0, "cannot convert track path to UTF-8: %s", path);
155 /* We use NFC track names */
156 if(!(track = utf8_compose_canon(track, strlen(track), 0))) {
157 error(0, "cannot convert track path to NFC: %s", path);
160 D(("track %s", track));
161 /* only tracks with a known player are admitted */
162 for(n = 0; (n < config->player.n
163 && fnmatch(config->player.s[n].s[0], track, 0) != 0); ++n)
165 if(n < config->player.n) {
166 nnew += !!trackdb_notice(track, path);
168 if(ntracks % 1000 == 0)
169 info("rescanning %s, %ld tracks so far", c->root, ntracks);
174 error(errno, "error reading from scanner pipe");
179 while((r = waitpid(pid, &w, 0)) == -1 && errno == EINTR)
181 if(r < 0) fatal(errno, "error calling waitpid");
184 error(0, "scanner subprocess: %s", wstat(w));
187 info("rescanned %s, %ld tracks, %ld new", c->root, ntracks, nnew);
192 while((r = waitpid(pid, &w, 0)) == -1 && errno == EINTR)
196 struct recheck_state {
197 const struct collection *c;
198 long nobsolete, nnocollection, nlength;
201 /* called for each non-alias track */
202 static int recheck_callback(const char *track,
206 struct recheck_state *cs = u;
207 const struct collection *c = cs->c;
208 const char *path = kvp_get(data, "_path");
213 if(aborted()) return EINTR;
214 D(("rechecking %s", track));
215 /* if we're not checking a specific collection, find the right collection */
217 if(!(c = find_track_collection(track))) {
218 D(("obsoleting %s", track));
219 if((err = trackdb_obsolete(track, tid))) return err;
224 /* see if the track has evaporated */
225 if(check(c->module, c->root, path) == 0) {
226 D(("obsoleting %s", track));
227 if((err = trackdb_obsolete(track, tid))) return err;
231 /* make sure we know the length */
232 if(!kvp_get(data, "_length")) {
233 D(("recalculating length of %s", track));
234 for(n = 0; n < config->tracklength.n; ++n)
235 if(fnmatch(config->tracklength.s[n].s[0], track, 0) == 0)
237 if(n >= config->tracklength.n)
238 error(0, "no tracklength plugin found for %s", track);
240 length = tracklength(config->tracklength.s[n].s[1], track, path);
242 byte_snprintf(buffer, sizeof buffer, "%ld", length);
243 kvp_set(&data, "_length", buffer);
244 if((err = trackdb_putdata(trackdb_tracksdb, track, data, tid, 0)))
253 /* recheck a collection */
254 static void recheck_collection(const struct collection *c) {
255 struct recheck_state cs;
258 info("rechecking %s", c->root);
260 info("rechecking all tracks");
263 global_tid = trackdb_begin_transaction();
264 memset(&cs, 0, sizeof cs);
266 if(trackdb_scan(c ? c->root : 0, recheck_callback, &cs, global_tid))
270 /* Maybe we need to shut down */
272 /* Abort the transaction and try again in a bit. */
273 trackdb_abort_transaction(global_tid);
275 /* Let anything else that is going on get out of the way. */
279 info("resuming recheck of %s", c->root);
281 info("resuming global recheck");
283 trackdb_commit_transaction(global_tid);
286 info("rechecked %s, %ld obsoleted, %ld lengths calculated",
287 c->root, cs.nobsolete, cs.nlength);
289 info("rechecked all tracks, %ld no collection, %ld obsoleted, %ld lengths calculated",
290 cs.nnocollection, cs.nobsolete, cs.nlength);
293 /* rescan/recheck a collection by name */
294 static void do_directory(const char *s,
295 void (*fn)(const struct collection *c)) {
298 for(n = 0; (n < config->collection.n
299 && strcmp(config->collection.s[n].root, s)); ++n)
301 if(n < config->collection.n)
302 fn(&config->collection.s[n]);
304 error(0, "no collection has root '%s'", s);
307 /* rescan/recheck all collections */
308 static void do_all(void (*fn)(const struct collection *c)) {
311 for(n = 0; n < config->collection.n; ++n)
312 fn(&config->collection.s[n]);
313 /* TODO: we need to tidy up tracks from collections now removed. We could do
314 * this two ways: either remember collections we think there are and spot
315 * their disappearance, or iterate over all tracks and gc any that don't fit
316 * into some collection.
318 * Having a way to rename collections would be rather convenient too but
319 * that's another kettle of monkeys.
323 /** @brief Expire noticed.db */
324 static void expire_noticed(void) {
328 trackdb_expire_noticed(now - config->noticed_history * 86400);
331 int main(int argc, char **argv) {
332 int n, logsyslog = !isatty(2);
337 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
338 while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) {
342 case 'c': configfile = optarg; break;
343 case 'd': debugging = 1; break;
344 case 'D': debugging = 0; break;
345 case 'S': logsyslog = 0; break;
346 case 's': logsyslog = 1; break;
347 default: fatal(0, "invalid option");
351 openlog(progname, LOG_PID, LOG_DAEMON);
352 log_default = &log_syslog;
354 if(config_read(0)) fatal(0, "cannot read configuration");
355 xnice(config->nice_rescan);
356 sa.sa_handler = signal_handler;
357 sa.sa_flags = SA_RESTART;
358 sigemptyset(&sa.sa_mask);
359 xsigaction(SIGTERM, &sa, 0);
360 xsigaction(SIGINT, &sa, 0);
365 /* Rescan all collections */
366 do_all(rescan_collection);
367 /* Check that every track still exists */
368 recheck_collection(0);
369 /* Expire noticed.db */
373 /* Rescan specified collections */
374 for(n = optind; n < argc; ++n)
375 do_directory(argv[n], rescan_collection);
376 /* Check specified collections for tracks that have gone */
377 for(n = optind; n < argc; ++n)
378 do_directory(argv[n], recheck_collection);