X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/2e9ba080dd30434f3e8f88e63029280889586a32..00861dcb1b67a282893f3d30187459c6384cbee7:/clients/disorder.c diff --git a/clients/disorder.c b/clients/disorder.c index 1d55b8d..6e2ec14 100644 --- a/clients/disorder.c +++ b/clients/disorder.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009 Richard Kettlewell * * 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 @@ -98,7 +98,9 @@ static void cf_version(char attribute((unused)) **argv) { char *v; if(disorder_version(getclient(), &v)) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(v))); + v = nullcheck(utf82mb_f(v)); + xprintf("%s\n", v); + xfree(v); } static void print_queue_entry(const struct queue_entry *q) { @@ -136,8 +138,9 @@ static void cf_playing(char attribute((unused)) **argv) { } static void cf_play(char **argv) { + char *id; while(*argv) - if(disorder_play(getclient(), *argv++)) exit(EXIT_FAILURE); + if(disorder_play(getclient(), *argv++, &id)) exit(EXIT_FAILURE); } static void cf_remove(char **argv) { @@ -173,13 +176,12 @@ static void cf_rescan(char attribute((unused)) **argv) { static void cf_somequeue(int (*fn)(disorder_client *c, struct queue_entry **qp)) { - struct queue_entry *q; + struct queue_entry *q, *qbase; - if(fn(getclient(), &q)) exit(EXIT_FAILURE); - while(q) { + if(fn(getclient(), &qbase)) exit(EXIT_FAILURE); + for(q = qbase; q; q = q->next) print_queue_entry(q); - q = q->next; - } + queue_free(qbase, 1); } static void cf_recent(char attribute((unused)) **argv) { @@ -225,16 +227,17 @@ static void cf_somelist(char **argv, int (*fn)(disorder_client *c, const char *arg, const char *re, char ***vecp, int *nvecp)) { - char **vec; + char **vec, **base; const char *re; if(argv[1]) re = xstrdup(argv[1] + 1); else re = 0; - if(fn(getclient(), argv[0], re, &vec, 0)) exit(EXIT_FAILURE); - while(*vec) - xprintf("%s\n", nullcheck(utf82mb(*vec++))); + if(fn(getclient(), argv[0], re, &base, 0)) exit(EXIT_FAILURE); + for(vec = base; *vec; ++vec) + xprintf("%s\n", nullcheck(utf82mb_f(*vec))); + xfree(base); } static int isarg_regexp(const char *s) { @@ -242,7 +245,7 @@ static int isarg_regexp(const char *s) { } static void cf_dirs(char **argv) { - cf_somelist(argv, disorder_directories); + cf_somelist(argv, disorder_dirs); } static void cf_files(char **argv) { @@ -257,7 +260,7 @@ static void cf_get(char **argv) { char *value; if(disorder_get(getclient(), argv[0], argv[1], &value)) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(value))); + xprintf("%s\n", nullcheck(utf82mb_f(value))); } static void cf_length(char **argv) { @@ -276,12 +279,13 @@ static void cf_unset(char **argv) { } static void cf_prefs(char **argv) { - struct kvp *k; + struct kvp *k, *base; - if(disorder_prefs(getclient(), argv[0], &k)) exit(EXIT_FAILURE); - for(; k; k = k->next) + if(disorder_prefs(getclient(), argv[0], &base)) exit(EXIT_FAILURE); + for(k = base; k; k = k->next) xprintf("%s = %s\n", nullcheck(utf82mb(k->name)), nullcheck(utf82mb(k->value))); + kvp_free(base); } static void cf_search(char **argv) { @@ -291,6 +295,7 @@ static void cf_search(char **argv) { if(disorder_search(getclient(), *argv, &results, &nresults)) exit(EXIT_FAILURE); for(n = 0; n < nresults; ++n) xprintf("%s\n", nullcheck(utf82mb(results[n]))); + free_strings(nresults, results); } static void cf_random_disable(char attribute((unused)) **argv) { @@ -303,10 +308,12 @@ static void cf_random_enable(char attribute((unused)) **argv) { static void cf_stats(char attribute((unused)) **argv) { char **vec; + int nvec; - if(disorder_stats(getclient(), &vec, 0)) exit(EXIT_FAILURE); - while(*vec) - xprintf("%s\n", nullcheck(utf82mb(*vec++))); + if(disorder_stats(getclient(), &vec, &nvec)) exit(EXIT_FAILURE); + for(int n = 0; n < nvec; ++n) + xprintf("%s\n", nullcheck(utf82mb(vec[n]))); + free_strings(nvec, vec); } static void cf_get_volume(char attribute((unused)) **argv) { @@ -338,8 +345,8 @@ static void cf_move(char **argv) { static void cf_part(char **argv) { char *s; - if(disorder_part(getclient(), &s, argv[0], argv[1], argv[2])) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(s))); + if(disorder_part(getclient(), argv[0], argv[1], argv[2], &s)) exit(EXIT_FAILURE); + xprintf("%s\n", nullcheck(utf82mb_f(s))); } static int isarg_filename(const char *s) { @@ -353,8 +360,8 @@ static void cf_authorize(char **argv) { static void cf_resolve(char **argv) { char *track; - if(disorder_resolve(getclient(), &track, argv[0])) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(track))); + if(disorder_resolve(getclient(), argv[0], &track)) exit(EXIT_FAILURE); + xprintf("%s\n", nullcheck(utf82mb_f(track))); } static void cf_pause(char attribute((unused)) **argv) { @@ -385,7 +392,7 @@ static void cf_get_global(char **argv) { char *value; if(disorder_get_global(getclient(), argv[0], &value)) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(value))); + xprintf("%s\n", nullcheck(utf82mb_f(value))); } static void cf_set_global(char **argv) { @@ -446,7 +453,7 @@ static void cf_userinfo(char **argv) { if(disorder_userinfo(getclient(), argv[0], argv[1], &s)) exit(EXIT_FAILURE); - xprintf("%s\n", nullcheck(utf82mb(s))); + xprintf("%s\n", nullcheck(utf82mb_f(s))); } static int isarg_option(const char *arg) { @@ -609,11 +616,13 @@ static void cf_adopt(char **argv) { static void cf_playlists(char attribute((unused)) **argv) { char **vec; + int nvec; - if(disorder_playlists(getclient(), &vec, 0)) + if(disorder_playlists(getclient(), &vec, &nvec)) exit(EXIT_FAILURE); - while(*vec) - xprintf("%s\n", nullcheck(utf82mb(*vec++))); + for(int n = 0; n < nvec; ++n) + xprintf("%s\n", nullcheck(utf82mb(vec[n]))); + free_strings(nvec, vec); } static void cf_playlist_del(char **argv) { @@ -623,11 +632,13 @@ static void cf_playlist_del(char **argv) { static void cf_playlist_get(char **argv) { char **vec; + int nvec; - if(disorder_playlist_get(getclient(), argv[0], &vec, 0)) + if(disorder_playlist_get(getclient(), argv[0], &vec, &nvec)) exit(EXIT_FAILURE); - while(*vec) - xprintf("%s\n", nullcheck(utf82mb(*vec++))); + for(int n = 0; n < nvec; ++n) + xprintf("%s\n", nullcheck(utf82mb(vec[n]))); + free_strings(nvec, vec); } static void cf_playlist_set(char **argv) { @@ -864,11 +875,14 @@ int main(int argc, char **argv) { } if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration"); if(user) { - config->username = user; + xfree(config->username); + config->username = xstrdup(user); config->password = 0; } - if(password) - config->password = password; + if(password) { + xfree(config->password); + config->password = xstrdup(password); + } if(local) config->connect.af = -1; if(wfr) @@ -889,7 +903,7 @@ int main(int argc, char **argv) { vector_init(&args); /* Include the command name in the args, but at element -1, for * the benefit of subcommand getopt calls */ - vector_append(&args, argv[n]); + vector_append(&args, xstrdup(argv[n])); n++; for(j = 0; j < commands[i].min; ++j) vector_append(&args, nullcheck(mb2utf8(argv[n + j]))); @@ -899,10 +913,13 @@ int main(int argc, char **argv) { vector_append(&args, nullcheck(mb2utf8(argv[n + j]))); vector_terminate(&args); commands[i].fn(args.vec + 1); + vector_clear(&args); n += j; } if(client && disorder_close(client)) exit(EXIT_FAILURE); if(fclose(stdout) < 0) disorder_fatal(errno, "error closing stdout"); + config_free(config); + xfree(client); return status; }