chiark / gitweb /
skeletal test infrastructure
[disorder] / server / rescan.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
eb525fcd 3 * Copyright (C) 2005, 2006, 2007 Richard Kettlewell
460b9539 4 *
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.
9 *
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.
14 *
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
18 * USA
19 */
20
21#include <config.h>
22#include "types.h"
23
24#include <getopt.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <db.h>
28#include <locale.h>
29#include <errno.h>
30#include <sys/types.h>
31#include <unistd.h>
32#include <pcre.h>
33#include <fnmatch.h>
34#include <sys/wait.h>
35#include <string.h>
36#include <syslog.h>
37
38#include "configuration.h"
39#include "syscalls.h"
40#include "log.h"
41#include "defs.h"
42#include "mem.h"
43#include "plugin.h"
44#include "inputline.h"
45#include "charset.h"
46#include "wstat.h"
47#include "kvp.h"
48#include "printf.h"
49#include "trackdb.h"
50#include "trackdb-int.h"
d1694464 51#include "trackname.h"
460b9539 52
53static DB_TXN *global_tid;
54
55static const struct option options[] = {
56 { "help", no_argument, 0, 'h' },
57 { "version", no_argument, 0, 'V' },
58 { "config", required_argument, 0, 'c' },
59 { "debug", no_argument, 0, 'd' },
60 { "no-debug", no_argument, 0, 'D' },
61 { 0, 0, 0, 0 }
62};
63
64/* display usage message and terminate */
65static void help(void) {
66 xprintf("Usage:\n"
67 " disorder-rescan [OPTIONS] [PATH...]\n"
68 "Options:\n"
69 " --help, -h Display usage message\n"
70 " --version, -V Display version number\n"
71 " --config PATH, -c PATH Set configuration file\n"
72 " --debug, -d Turn on debugging\n"
73 "\n"
74 "Rescanner for DisOrder. Not intended to be run\n"
75 "directly.\n");
76 xfclose(stdout);
77 exit(0);
78}
79
80/* display version number and terminate */
81static void version(void) {
82 xprintf("disorder-rescan version %s\n", disorder_version_string);
83 xfclose(stdout);
84 exit(0);
85}
86
87static volatile sig_atomic_t signalled;
88
89static void signal_handler(int sig) {
90 if(sig == 0) _exit(-1); /* "Cannot happen" */
91 signalled = sig;
92}
93
94static int aborted(void) {
95 return signalled || getppid() == 1;
96}
97
98/* Exit if our parent has gone away or we have been told to stop. */
99static void checkabort(void) {
100 if(getppid() == 1) {
101 info("parent has terminated");
102 trackdb_abort_transaction(global_tid);
103 exit(0);
104 }
105 if(signalled) {
106 info("received signal %d", signalled);
107 trackdb_abort_transaction(global_tid);
108 exit(0);
109 }
110}
111
112/* rescan a collection */
113static void rescan_collection(const struct collection *c) {
114 pid_t pid, r;
115 int p[2], n, w;
116 FILE *fp = 0;
117 char *path, *track;
118 long ntracks = 0, nnew = 0;
119
120 checkabort();
121 info("rescanning %s with %s", c->root, c->module);
122 /* plugin runs in a subprocess */
123 xpipe(p);
124 if(!(pid = xfork())) {
125 exitfn = _exit;
126 xclose(p[0]);
127 xdup2(p[1], 1);
128 xclose(p[1]);
129 scan(c->module, c->root);
130 if(fflush(stdout) < 0)
131 fatal(errno, "error writing to scanner pipe");
132 _exit(0);
133 }
134 xclose(p[1]);
135 if(!(fp = fdopen(p[0], "r")))
136 fatal(errno, "error calling fdopen");
137 /* read tracks from the plugin */
138 while(!inputline("rescanner", fp, &path, 0)) {
139 checkabort();
140 /* actually we can cope relatively well within the server, but they'll go
141 * wrong in track listings */
142 if(strchr(path, '\n')) {
143 error(0, "cannot cope with tracks with newlines in the name");
144 continue;
145 }
146 if(!(track = any2utf8(c->encoding, path))) {
147 error(0, "cannot convert track path to UTF-8: %s", path);
148 continue;
149 }
150 D(("track %s", track));
151 /* only tracks with a known player are admitted */
152 for(n = 0; (n < config->player.n
153 && fnmatch(config->player.s[n].s[0], track, 0) != 0); ++n)
154 ;
155 if(n < config->player.n) {
156 nnew += !!trackdb_notice(track, path);
157 ++ntracks;
158 }
159 }
160 /* tidy up */
161 if(ferror(fp)) {
162 error(errno, "error reading from scanner pipe");
163 goto done;
164 }
165 xfclose(fp);
166 fp = 0;
167 while((r = waitpid(pid, &w, 0)) == -1 && errno == EINTR)
168 ;
169 if(r < 0) fatal(errno, "error calling waitpid");
170 pid = 0;
171 if(w) {
172 error(0, "scanner subprocess: %s", wstat(w));
173 goto done;
174 }
175 info("rescanned %s, %ld tracks, %ld new", c->root, ntracks, nnew);
176done:
177 if(fp)
178 xfclose(fp);
179 if(pid)
180 while((r = waitpid(pid, &w, 0)) == -1 && errno == EINTR)
181 ;
182}
183
184struct recheck_state {
185 const struct collection *c;
d1694464 186 long nobsolete, nnocollection, nlength;
460b9539 187};
188
189/* called for each non-alias track */
190static int recheck_callback(const char *track,
191 struct kvp *data,
192 void *u,
193 DB_TXN *tid) {
194 struct recheck_state *cs = u;
195 const struct collection *c = cs->c;
196 const char *path = kvp_get(data, "_path");
197 char buffer[20];
198 int err;
199 long n;
200
201 if(aborted()) return EINTR;
202 D(("rechecking %s", track));
d1694464 203 /* if we're not checking a specific collection, find the right collection */
204 if(!c) {
205 if(!(c = find_track_collection(track))) {
206 D(("obsoleting %s", track));
207 if((err = trackdb_obsolete(track, tid))) return err;
208 ++cs->nnocollection;
209 return 0;
210 }
211 }
460b9539 212 /* see if the track has evaporated */
213 if(check(c->module, c->root, path) == 0) {
214 D(("obsoleting %s", track));
215 if((err = trackdb_obsolete(track, tid))) return err;
216 ++cs->nobsolete;
217 return 0;
218 }
219 /* make sure we know the length */
220 if(!kvp_get(data, "_length")) {
221 D(("recalculating length of %s", track));
222 n = tracklength(track, path);
223 if(n > 0) {
224 byte_snprintf(buffer, sizeof buffer, "%ld", n);
225 kvp_set(&data, "_length", buffer);
226 if((err = trackdb_putdata(trackdb_tracksdb, track, data, tid, 0)))
227 return err;
228 ++cs->nlength;
229 }
230 }
231 return 0;
232}
233
234/* recheck a collection */
235static void recheck_collection(const struct collection *c) {
236 struct recheck_state cs;
237
d1694464 238 if(c)
239 info("rechecking %s", c->root);
240 else
241 info("rechecking all tracks");
460b9539 242 for(;;) {
243 checkabort();
244 global_tid = trackdb_begin_transaction();
245 memset(&cs, 0, sizeof cs);
246 cs.c = c;
d1694464 247 if(trackdb_scan(c ? c->root : 0, recheck_callback, &cs, global_tid))
248 goto fail;
460b9539 249 break;
250 fail:
251 /* Maybe we need to shut down */
252 checkabort();
253 /* Abort the transaction and try again in a bit. */
254 trackdb_abort_transaction(global_tid);
255 global_tid = 0;
256 /* Let anything else that is going on get out of the way. */
257 sleep(10);
258 checkabort();
d1694464 259 if(c)
260 info("resuming recheck of %s", c->root);
261 else
262 info("resuming global recheck");
460b9539 263 }
264 trackdb_commit_transaction(global_tid);
265 global_tid = 0;
d1694464 266 if(c)
267 info("rechecked %s, %ld obsoleted, %ld lengths calculated",
268 c->root, cs.nobsolete, cs.nlength);
269 else
270 info("rechecked all tracks, %ld no collection, %ld obsoleted, %ld lengths calculated",
271 cs.nnocollection, cs.nobsolete, cs.nlength);
460b9539 272}
273
274/* rescan/recheck a collection by name */
275static void do_directory(const char *s,
276 void (*fn)(const struct collection *c)) {
277 int n;
278
279 for(n = 0; (n < config->collection.n
280 && strcmp(config->collection.s[n].root, s)); ++n)
281 ;
282 if(n < config->collection.n)
283 fn(&config->collection.s[n]);
284 else
285 error(0, "no collection has root '%s'", s);
286}
287
288/* rescan/recheck all collections */
289static void do_all(void (*fn)(const struct collection *c)) {
290 int n;
291
292 for(n = 0; n < config->collection.n; ++n)
293 fn(&config->collection.s[n]);
6aba3f6c
RK
294 /* TODO: we need to tidy up tracks from collections now removed. We could do
295 * this two ways: either remember collections we think there are and spot
296 * their disappearance, or iterate over all tracks and gc any that don't fit
297 * into some collection.
298 *
299 * Having a way to rename collections would be rather convenient too but
300 * that's another kettle of monkeys.
301 */
460b9539 302}
303
304int main(int argc, char **argv) {
305 int n;
306 struct sigaction sa;
307
308 set_progname(argv);
320598d4 309 mem_init();
460b9539 310 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
311 while((n = getopt_long(argc, argv, "hVc:dD", options, 0)) >= 0) {
312 switch(n) {
313 case 'h': help();
314 case 'V': version();
315 case 'c': configfile = optarg; break;
316 case 'd': debugging = 1; break;
317 case 'D': debugging = 0; break;
318 default: fatal(0, "invalid option");
319 }
320 }
321 /* If stderr is a TTY then log there, otherwise to syslog. */
322 if(!isatty(2)) {
323 openlog(progname, LOG_PID, LOG_DAEMON);
324 log_default = &log_syslog;
325 }
326 if(config_read()) fatal(0, "cannot read configuration");
327 xnice(config->nice_rescan);
328 sa.sa_handler = signal_handler;
329 sa.sa_flags = SA_RESTART;
330 sigemptyset(&sa.sa_mask);
331 xsigaction(SIGTERM, &sa, 0);
332 xsigaction(SIGINT, &sa, 0);
333 info("started");
334 trackdb_init(0);
335 trackdb_open();
336 if(optind == argc) {
d1694464 337 /* Rescan all collections */
460b9539 338 do_all(rescan_collection);
d1694464 339 /* Check that every track still exists */
340 recheck_collection(0);
460b9539 341 }
342 else {
d1694464 343 /* Rescan specified collections */
460b9539 344 for(n = optind; n < argc; ++n)
345 do_directory(argv[n], rescan_collection);
d1694464 346 /* Check specified collections for tracks that have gone */
460b9539 347 for(n = optind; n < argc; ++n)
348 do_directory(argv[n], recheck_collection);
349 }
350 trackdb_close();
351 trackdb_deinit();
352 info("completed");
353 return 0;
354}
355
356/*
357Local Variables:
358c-basic-offset:2
359comment-column:40
360fill-column:79
361indent-tabs-mode:nil
362End:
363*/