X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/1c6e0e45a6e14f63da5157b20bd504142560262c..e5a506cbce99738d12b4558714344e50744e142e:/server/choose.c diff --git a/server/choose.c b/server/choose.c index 138462c..405a95d 100644 --- a/server/choose.c +++ b/server/choose.c @@ -3,22 +3,20 @@ * Copyright (C) 2008 Richard Kettlewell * Copyright (C) 2008 Mark Wooding * - * 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 choose.c +/** @file server/choose.c * @brief Random track chooser * * Picks a track at random and writes it to standard output. If for @@ -94,12 +92,12 @@ static unsigned long compute_weight(const char *track, struct kvp *prefs) { const char *s; char **track_tags; - time_t last, now = time(0); + time_t last, now = xtime(0); /* Reject tracks not in any collection (race between edit config and * rescan) */ if(!find_track_root(track)) { - info("found track not in any collection: %s", track); + disorder_info("found track not in any collection: %s", track); return 0; } @@ -266,7 +264,7 @@ int main(int argc, char **argv) { set_progname(argv); mem_init(); - if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); + if(!setlocale(LC_CTYPE, "")) disorder_fatal(errno, "error calling setlocale"); while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) { switch(n) { case 'h': help(); @@ -276,14 +274,14 @@ int main(int argc, char **argv) { case 'D': debugging = 0; break; case 'S': logsyslog = 0; break; case 's': logsyslog = 1; break; - default: fatal(0, "invalid option"); + default: disorder_fatal(0, "invalid option"); } } if(logsyslog) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; } - if(config_read(0)) fatal(0, "cannot read configuration"); + if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration"); /* Find out current queue/recent list */ queue_read(); recent_read(); @@ -292,21 +290,23 @@ int main(int argc, char **argv) { trackdb_open(TRACKDB_NO_UPGRADE|TRACKDB_READ_ONLY); global_tid = trackdb_begin_transaction(); if((err = trackdb_get_global_tid("required-tags", global_tid, &tags))) - fatal(0, "error getting required-tags: %s", db_strerror(err)); + disorder_fatal(0, "error getting required-tags: %s", db_strerror(err)); required_tags = parsetags(tags); if((err = trackdb_get_global_tid("prohibited-tags", global_tid, &tags))) - fatal(0, "error getting prohibited-tags: %s", db_strerror(err)); + disorder_fatal(0, "error getting prohibited-tags: %s", db_strerror(err)); prohibited_tags = parsetags(tags); - if(trackdb_scan(0, collect_tracks_callback, 0, global_tid)) + if(trackdb_scan(0, collect_tracks_callback, 0, global_tid)) { + global_tid->abort(global_tid); exit(1); + } trackdb_commit_transaction(global_tid); trackdb_close(); - trackdb_deinit(); + trackdb_deinit(NULL); D(("ntracks=%ld total_weight=%lld", ntracks, total_weight)); if(!total_weight) - fatal(0, "no tracks match random choice criteria"); + disorder_fatal(0, "no tracks match random choice criteria"); if(!winning) - fatal(0, "internal: failed to pick a track"); + disorder_fatal(0, "internal: failed to pick a track"); /* Pick a track */ xprintf("%s", winning); xfclose(stdout);