chiark / gitweb /
docs: typo
[disorder] / clients / disorder.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2004-2009 Richard Kettlewell
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 3 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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU 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, see <http://www.gnu.org/licenses/>.
17 */
18/** @file clients/disorder.c
19 * @brief Command-line client
20 */
21
22#include "common.h"
23
24#include <getopt.h>
25#include <sys/types.h>
26#include <sys/socket.h>
27#include <sys/un.h>
28#include <errno.h>
29#include <locale.h>
30#include <time.h>
31#include <stddef.h>
32#include <unistd.h>
33#include <pcre.h>
34#include <ctype.h>
35#include <gcrypt.h>
36#include <langinfo.h>
37
38#include "configuration.h"
39#include "syscalls.h"
40#include "log.h"
41#include "queue.h"
42#include "client.h"
43#include "wstat.h"
44#include "table.h"
45#include "charset.h"
46#include "kvp.h"
47#include "split.h"
48#include "sink.h"
49#include "mem.h"
50#include "defs.h"
51#include "authorize.h"
52#include "vector.h"
53#include "version.h"
54#include "dateparse.h"
55#include "trackdb.h"
56#include "inputline.h"
57
58static disorder_client *client;
59
60static const struct option options[] = {
61 { "help", no_argument, 0, 'h' },
62 { "version", no_argument, 0, 'V' },
63 { "config", required_argument, 0, 'c' },
64 { "debug", no_argument, 0, 'd' },
65 { "local", no_argument, 0, 'l' },
66 { "no-per-user-config", no_argument, 0, 'N' },
67 { "help-commands", no_argument, 0, 'H' },
68 { "user", required_argument, 0, 'u' },
69 { "password", required_argument, 0, 'p' },
70 { "wait-for-root", no_argument, 0, 'W' },
71 { 0, 0, 0, 0 }
72};
73
74/* display usage message and terminate */
75static void help(void) {
76 xprintf("Usage:\n"
77 " disorder [OPTIONS] COMMAND ...\n"
78 "Options:\n"
79 " --help, -h Display usage message\n"
80 " --help-commands, -H List commands\n"
81 " --version, -V Display version number\n"
82 " --config PATH, -c PATH Set configuration file\n"
83 " --local, -l Force connection to local server\n"
84 " --debug, -d Turn on debugging\n");
85 xfclose(stdout);
86 exit(0);
87}
88
89static disorder_client *getclient(void) {
90 if(!client) {
91 if(!(client = disorder_new(1))) exit(EXIT_FAILURE);
92 if(disorder_connect(client)) exit(EXIT_FAILURE);
93 }
94 return client;
95}
96
97static void cf_version(char attribute((unused)) **argv) {
98 char *v;
99
100 if(disorder_version(getclient(), &v)) exit(EXIT_FAILURE);
101 v = nullcheck(utf82mb_f(v));
102 xprintf("%s\n", v);
103 xfree(v);
104}
105
106static void print_queue_entry(const struct queue_entry *q) {
107 if(q->track) xprintf("track %s\n", nullcheck(utf82mb(q->track)));
108 if(q->id) xprintf(" id %s\n", nullcheck(utf82mb(q->id)));
109 switch(q->origin) {
110 case origin_adopted:
111 case origin_picked:
112 case origin_scheduled:
113 xprintf(" %s by %s at %s",
114 track_origins[q->origin],
115 nullcheck(utf82mb(q->submitter)), ctime(&q->when));
116 break;
117 default:
118 break;
119 }
120 if(q->played) xprintf(" played at %s", ctime(&q->played));
121 if(q->state == playing_started
122 || q->state == playing_paused) xprintf(" %lds so far", q->sofar);
123 else if(q->expected) xprintf(" might start at %s", ctime(&q->expected));
124 if(q->scratched) xprintf(" scratched by %s\n",
125 nullcheck(utf82mb(q->scratched)));
126 else xprintf(" %s\n", playing_states[q->state]);
127 if(q->wstat) xprintf(" %s\n", wstat(q->wstat));
128}
129
130static void cf_playing(char attribute((unused)) **argv) {
131 struct queue_entry *q;
132
133 if(disorder_playing(getclient(), &q)) exit(EXIT_FAILURE);
134 if(q)
135 print_queue_entry(q);
136 else
137 xprintf("nothing\n");
138}
139
140static void cf_play(char **argv) {
141 while(*argv)
142 if(disorder_play(getclient(), *argv++)) exit(EXIT_FAILURE);
143}
144
145static void cf_remove(char **argv) {
146 if(disorder_remove(getclient(), argv[0])) exit(EXIT_FAILURE);
147}
148
149static void cf_disable(char attribute((unused)) **argv) {
150 if(disorder_disable(getclient())) exit(EXIT_FAILURE);
151}
152
153static void cf_enable(char attribute((unused)) **argv) {
154 if(disorder_enable(getclient())) exit(EXIT_FAILURE);
155}
156
157static void cf_scratch(char **argv) {
158 if(disorder_scratch(getclient(), argv[0])) exit(EXIT_FAILURE);
159}
160
161static void cf_shutdown(char attribute((unused)) **argv) {
162 if(disorder_shutdown(getclient())) exit(EXIT_FAILURE);
163}
164
165static void cf_reconfigure(char attribute((unused)) **argv) {
166 /* Re-check configuration for server */
167 if(config_read(1, NULL))
168 disorder_fatal(0, "cannot read configuration");
169 if(disorder_reconfigure(getclient())) exit(EXIT_FAILURE);
170}
171
172static void cf_rescan(char attribute((unused)) **argv) {
173 if(disorder_rescan(getclient())) exit(EXIT_FAILURE);
174}
175
176static void cf_somequeue(int (*fn)(disorder_client *c,
177 struct queue_entry **qp)) {
178 struct queue_entry *q, *qbase;
179
180 if(fn(getclient(), &qbase)) exit(EXIT_FAILURE);
181 for(q = qbase; q; q = q->next)
182 print_queue_entry(q);
183 queue_free(qbase, 1);
184}
185
186static void cf_recent(char attribute((unused)) **argv) {
187 cf_somequeue(disorder_recent);
188}
189
190static void cf_queue(char attribute((unused)) **argv) {
191 cf_somequeue(disorder_queue);
192}
193
194static void cf_quack(char attribute((unused)) **argv) {
195 if(!strcasecmp(nl_langinfo(CODESET), "utf-8")) {
196#define TL "\xE2\x95\xAD"
197#define TR "\xE2\x95\xAE"
198#define BR "\xE2\x95\xAF"
199#define BL "\xE2\x95\xB0"
200#define H "\xE2\x94\x80"
201#define V "\xE2\x94\x82"
202#define T "\xE2\x94\xAC"
203 xprintf("\n"
204 " "TL H H H H H H H H H H H H H H H H H H TR"\n"
205 " "V" Naath is a babe! "V"\n"
206 " "BL H H H H H H H H H T H H H H H H H H BR"\n"
207 " \\\n"
208 " >0\n"
209 " (<)'\n"
210 "~~~~~~~~~~~~~~~~~~~~~~\n"
211 "\n");
212 } else {
213 xprintf("\n"
214 " .------------------.\n"
215 " | Naath is a babe! |\n"
216 " `---------+--------'\n"
217 " \\\n"
218 " >0\n"
219 " (<)'\n"
220 "~~~~~~~~~~~~~~~~~~~~~~\n"
221 "\n");
222 }
223}
224
225static void cf_somelist(char **argv,
226 int (*fn)(disorder_client *c,
227 const char *arg, const char *re,
228 char ***vecp, int *nvecp)) {
229 char **vec, **base;
230 const char *re;
231
232 if(argv[1])
233 re = xstrdup(argv[1] + 1);
234 else
235 re = 0;
236 if(fn(getclient(), argv[0], re, &base, 0)) exit(EXIT_FAILURE);
237 for(vec = base; *vec; ++vec)
238 xprintf("%s\n", nullcheck(utf82mb_f(*vec)));
239 xfree(base);
240}
241
242static int isarg_regexp(const char *s) {
243 return s[0] == '~';
244}
245
246static void cf_dirs(char **argv) {
247 cf_somelist(argv, disorder_directories);
248}
249
250static void cf_files(char **argv) {
251 cf_somelist(argv, disorder_files);
252}
253
254static void cf_allfiles(char **argv) {
255 cf_somelist(argv, disorder_allfiles);
256}
257
258static void cf_get(char **argv) {
259 char *value;
260
261 if(disorder_get(getclient(), argv[0], argv[1], &value)) exit(EXIT_FAILURE);
262 xprintf("%s\n", nullcheck(utf82mb_f(value)));
263}
264
265static void cf_length(char **argv) {
266 long length;
267
268 if(disorder_length(getclient(), argv[0], &length)) exit(EXIT_FAILURE);
269 xprintf("%ld\n", length);
270}
271
272static void cf_set(char **argv) {
273 if(disorder_set(getclient(), argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
274}
275
276static void cf_unset(char **argv) {
277 if(disorder_unset(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
278}
279
280static void cf_prefs(char **argv) {
281 struct kvp *k, *base;
282
283 if(disorder_prefs(getclient(), argv[0], &base)) exit(EXIT_FAILURE);
284 for(k = base; k; k = k->next)
285 xprintf("%s = %s\n",
286 nullcheck(utf82mb(k->name)), nullcheck(utf82mb(k->value)));
287 kvp_free(base);
288}
289
290static void cf_search(char **argv) {
291 char **results;
292 int nresults, n;
293
294 if(disorder_search(getclient(), *argv, &results, &nresults)) exit(EXIT_FAILURE);
295 for(n = 0; n < nresults; ++n)
296 xprintf("%s\n", nullcheck(utf82mb(results[n])));
297 free_strings(nresults, results);
298}
299
300static void cf_random_disable(char attribute((unused)) **argv) {
301 if(disorder_random_disable(getclient())) exit(EXIT_FAILURE);
302}
303
304static void cf_random_enable(char attribute((unused)) **argv) {
305 if(disorder_random_enable(getclient())) exit(EXIT_FAILURE);
306}
307
308static void cf_stats(char attribute((unused)) **argv) {
309 char **vec;
310 int nvec;
311
312 if(disorder_stats(getclient(), &vec, &nvec)) exit(EXIT_FAILURE);
313 for(int n = 0; n < nvec; ++n)
314 xprintf("%s\n", nullcheck(utf82mb(vec[n])));
315 free_strings(nvec, vec);
316}
317
318static void cf_get_volume(char attribute((unused)) **argv) {
319 int l, r;
320
321 if(disorder_get_volume(getclient(), &l, &r)) exit(EXIT_FAILURE);
322 xprintf("%d %d\n", l, r);
323}
324
325static void cf_set_volume(char **argv) {
326 if(disorder_set_volume(getclient(), atoi(argv[0]), atoi(argv[1]))) exit(EXIT_FAILURE);
327}
328
329static void cf_log(char attribute((unused)) **argv) {
330 if(disorder_log(getclient(), sink_stdio("stdout", stdout))) exit(EXIT_FAILURE);
331}
332
333static void cf_move(char **argv) {
334 long n;
335 int e;
336
337 if((e = xstrtol(&n, argv[1], 0, 10)))
338 disorder_fatal(e, "cannot convert '%s'", argv[1]);
339 if(n > INT_MAX || n < INT_MIN)
340 disorder_fatal(e, "%ld out of range", n);
341 if(disorder_move(getclient(), argv[0], (int)n)) exit(EXIT_FAILURE);
342}
343
344static void cf_part(char **argv) {
345 char *s;
346
347 if(disorder_part(getclient(), &s, argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
348 xprintf("%s\n", nullcheck(utf82mb_f(s)));
349}
350
351static int isarg_filename(const char *s) {
352 return s[0] == '/';
353}
354
355static void cf_authorize(char **argv) {
356 authorize(getclient(), argv[0], argv[1]);
357}
358
359static void cf_resolve(char **argv) {
360 char *track;
361
362 if(disorder_resolve(getclient(), &track, argv[0])) exit(EXIT_FAILURE);
363 xprintf("%s\n", nullcheck(utf82mb_f(track)));
364}
365
366static void cf_pause(char attribute((unused)) **argv) {
367 if(disorder_pause(getclient())) exit(EXIT_FAILURE);
368}
369
370static void cf_resume(char attribute((unused)) **argv) {
371 if(disorder_resume(getclient())) exit(EXIT_FAILURE);
372}
373
374static void cf_tags(char attribute((unused)) **argv) {
375 char **vec;
376
377 if(disorder_tags(getclient(), &vec, 0)) exit(EXIT_FAILURE);
378 while(*vec)
379 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
380}
381
382static void cf_users(char attribute((unused)) **argv) {
383 char **vec;
384
385 if(disorder_users(getclient(), &vec, 0)) exit(EXIT_FAILURE);
386 while(*vec)
387 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
388}
389
390static void cf_get_global(char **argv) {
391 char *value;
392
393 if(disorder_get_global(getclient(), argv[0], &value)) exit(EXIT_FAILURE);
394 xprintf("%s\n", nullcheck(utf82mb_f(value)));
395}
396
397static void cf_set_global(char **argv) {
398 if(disorder_set_global(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
399}
400
401static void cf_unset_global(char **argv) {
402 if(disorder_unset_global(getclient(), argv[0])) exit(EXIT_FAILURE);
403}
404
405static int isarg_integer(const char *s) {
406 if(!*s) return 0;
407 while(*s) {
408 if(!isdigit((unsigned char)*s))
409 return 0;
410 ++s;
411 }
412 return 1;
413}
414
415static void cf_new(char **argv) {
416 char **vec;
417
418 if(disorder_new_tracks(getclient(), &vec, 0, argv[0] ? atoi(argv[0]) : 0))
419 exit(EXIT_FAILURE);
420 while(*vec)
421 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
422}
423
424static void cf_rtp_address(char attribute((unused)) **argv) {
425 char *address, *port;
426
427 if(disorder_rtp_address(getclient(), &address, &port)) exit(EXIT_FAILURE);
428 xprintf("address: %s\nport: %s\n", address, port);
429}
430
431static int isarg_rights(const char *arg) {
432 return strchr(arg, ',') || !parse_rights(arg, 0, 0);
433}
434
435static void cf_adduser(char **argv) {
436 if(disorder_adduser(getclient(), argv[0], argv[1], argv[2]))
437 exit(EXIT_FAILURE);
438}
439
440static void cf_deluser(char **argv) {
441 if(disorder_deluser(getclient(), argv[0]))
442 exit(EXIT_FAILURE);
443}
444
445static void cf_edituser(char **argv) {
446 if(disorder_edituser(getclient(), argv[0], argv[1], argv[2]))
447 exit(EXIT_FAILURE);
448}
449
450static void cf_userinfo(char **argv) {
451 char *s;
452
453 if(disorder_userinfo(getclient(), argv[0], argv[1], &s))
454 exit(EXIT_FAILURE);
455 xprintf("%s\n", nullcheck(utf82mb_f(s)));
456}
457
458static int isarg_option(const char *arg) {
459 return arg[0] == '-';
460}
461
462static int argvlen(char **argv) {
463 char **start = argv;
464
465 while(*argv)
466 ++argv;
467 return argv - start;
468}
469
470static const struct option setup_guest_options[] = {
471 { "help", no_argument, 0, 'h' },
472 { "online-registration", no_argument, 0, 'r' },
473 { "no-online-registration", no_argument, 0, 'R' },
474 { 0, 0, 0, 0 }
475};
476
477static void help_setup_guest(void) {
478 xprintf("Usage:\n"
479 " disorder setup-guest [OPTIONS]\n"
480 "Options:\n"
481 " --help, -h Display usage message\n"
482 " --online-registration Enable online registration (default)\n"
483 " --no-online-registration Disable online registration\n");
484 xfclose(stdout);
485 exit(0);
486}
487
488static void cf_setup_guest(char **argv) {
489 int n, online_registration = 1;
490
491 while((n = getopt_long(argvlen(argv) + 1, argv - 1,
492 "hrR", setup_guest_options, 0)) >= 0) {
493 switch(n) {
494 case 'h': help_setup_guest();
495 case 'r': online_registration = 1; break;
496 case 'R': online_registration = 0; break;
497 default: disorder_fatal(0, "invalid option");
498 }
499 }
500 if(online_registration && !config->mail_sender)
501 disorder_fatal(0, "you MUST set mail_sender if you want online registration");
502 if(disorder_adduser(getclient(), "guest", "",
503 online_registration ? "read,register" : "read"))
504 exit(EXIT_FAILURE);
505}
506
507struct scheduled_event {
508 time_t when;
509 struct kvp *actiondata;
510 char *id;
511};
512
513static int compare_event(const void *av, const void *bv) {
514 struct scheduled_event *a = (void *)av, *b = (void *)bv;
515
516 /* Primary sort key is the trigger time */
517 if(a->when < b->when)
518 return -1;
519 else if(a->when > b->when)
520 return 1;
521 /* For events that go off at the same time just sort by ID */
522 return strcmp(a->id, b->id);
523}
524
525static void cf_schedule_list(char attribute((unused)) **argv) {
526 char **ids;
527 int nids, n;
528 struct scheduled_event *events;
529 char tb[128];
530 const char *action, *key, *value, *priority;
531 int prichar;
532
533 /* Get all known events */
534 if(disorder_schedule_list(getclient(), &ids, &nids))
535 exit(EXIT_FAILURE);
536 events = xcalloc(nids, sizeof *events);
537 for(n = 0; n < nids; ++n) {
538 events[n].id = ids[n];
539 if(disorder_schedule_get(getclient(), ids[n], &events[n].actiondata))
540 exit(EXIT_FAILURE);
541 events[n].when = atoll(kvp_get(events[n].actiondata, "when"));
542 }
543 /* Sort by trigger time */
544 qsort(events, nids, sizeof *events, compare_event);
545 /* Display them */
546 for(n = 0; n < nids; ++n) {
547 strftime(tb, sizeof tb, "%Y-%m-%d %H:%M:%S %Z", localtime(&events[n].when));
548 action = kvp_get(events[n].actiondata, "action");
549 priority = kvp_get(events[n].actiondata, "priority");
550 if(!strcmp(priority, "junk"))
551 prichar = 'J';
552 else if(!strcmp(priority, "normal"))
553 prichar = 'N';
554 else
555 prichar = '?';
556 xprintf("%11s %-25s %c %-8s %s",
557 events[n].id, tb, prichar, kvp_get(events[n].actiondata, "who"),
558 action);
559 if(!strcmp(action, "play"))
560 xprintf(" %s",
561 nullcheck(utf82mb(kvp_get(events[n].actiondata, "track"))));
562 else if(!strcmp(action, "set-global")) {
563 key = kvp_get(events[n].actiondata, "key");
564 value = kvp_get(events[n].actiondata, "value");
565 if(value)
566 xprintf(" %s=%s",
567 nullcheck(utf82mb(key)),
568 nullcheck(utf82mb(value)));
569 else
570 xprintf(" %s unset",
571 nullcheck(utf82mb(key)));
572 }
573 xprintf("\n");
574 }
575}
576
577static void cf_schedule_del(char **argv) {
578 if(disorder_schedule_del(getclient(), argv[0]))
579 exit(EXIT_FAILURE);
580}
581
582static void cf_schedule_play(char **argv) {
583 if(disorder_schedule_add(getclient(),
584 dateparse(argv[0]),
585 argv[1],
586 "play",
587 argv[2]))
588 exit(EXIT_FAILURE);
589}
590
591static void cf_schedule_set_global(char **argv) {
592 if(disorder_schedule_add(getclient(),
593 dateparse(argv[0]),
594 argv[1],
595 "set-global",
596 argv[2],
597 argv[3]))
598 exit(EXIT_FAILURE);
599}
600
601static void cf_schedule_unset_global(char **argv) {
602 if(disorder_schedule_add(getclient(),
603 dateparse(argv[0]),
604 argv[1],
605 "set-global",
606 argv[2],
607 (char *)0))
608 exit(EXIT_FAILURE);
609}
610
611static void cf_adopt(char **argv) {
612 if(disorder_adopt(getclient(), argv[0]))
613 exit(EXIT_FAILURE);
614}
615
616static void cf_playlists(char attribute((unused)) **argv) {
617 char **vec;
618 int nvec;
619
620 if(disorder_playlists(getclient(), &vec, &nvec))
621 exit(EXIT_FAILURE);
622 for(int n = 0; n < nvec; ++n)
623 xprintf("%s\n", nullcheck(utf82mb(vec[n])));
624 free_strings(nvec, vec);
625}
626
627static void cf_playlist_del(char **argv) {
628 if(disorder_playlist_delete(getclient(), argv[0]))
629 exit(EXIT_FAILURE);
630}
631
632static void cf_playlist_get(char **argv) {
633 char **vec;
634 int nvec;
635
636 if(disorder_playlist_get(getclient(), argv[0], &vec, &nvec))
637 exit(EXIT_FAILURE);
638 for(int n = 0; n < nvec; ++n)
639 xprintf("%s\n", nullcheck(utf82mb(vec[n])));
640 free_strings(nvec, vec);
641}
642
643static void cf_playlist_set(char **argv) {
644 struct vector v[1];
645 FILE *input;
646 const char *tag;
647 char *l;
648
649 if(argv[1]) {
650 // Read track list from file
651 if(!(input = fopen(argv[1], "r")))
652 disorder_fatal(errno, "opening %s", argv[1]);
653 tag = argv[1];
654 } else {
655 // Read track list from standard input
656 input = stdin;
657 tag = "stdin";
658 }
659 vector_init(v);
660 while(!inputline(tag, input, &l, '\n')) {
661 if(!strcmp(l, "."))
662 break;
663 vector_append(v, l);
664 }
665 if(ferror(input))
666 disorder_fatal(errno, "reading %s", tag);
667 if(input != stdin)
668 fclose(input);
669 if(disorder_playlist_lock(getclient(), argv[0])
670 || disorder_playlist_set(getclient(), argv[0], v->vec, v->nvec)
671 || disorder_playlist_unlock(getclient()))
672 exit(EXIT_FAILURE);
673}
674
675static const struct command {
676 const char *name;
677 int min, max;
678 void (*fn)(char **);
679 int (*isarg)(const char *);
680 const char *argstr, *desc;
681} commands[] = {
682 { "adduser", 2, 3, cf_adduser, isarg_rights, "USERNAME PASSWORD [RIGHTS]",
683 "Create a new user" },
684 { "adopt", 1, 1, cf_adopt, 0, "ID",
685 "Adopt a randomly picked track" },
686 { "allfiles", 1, 2, cf_allfiles, isarg_regexp, "DIR [~REGEXP]",
687 "List all files and directories in DIR" },
688 { "authorize", 1, 2, cf_authorize, isarg_rights, "USERNAME [RIGHTS]",
689 "Authorize user USERNAME to connect" },
690 { "deluser", 1, 1, cf_deluser, 0, "USERNAME",
691 "Delete user USERNAME" },
692 { "dirs", 1, 2, cf_dirs, isarg_regexp, "DIR [~REGEXP]",
693 "List directories in DIR" },
694 { "disable", 0, 0, cf_disable, 0, "",
695 "Disable play" },
696 { "disable-random", 0, 0, cf_random_disable, 0, "",
697 "Disable random play" },
698 { "edituser", 3, 3, cf_edituser, 0, "USERNAME PROPERTY VALUE",
699 "Set a property of user USERNAME" },
700 { "enable", 0, 0, cf_enable, 0, "",
701 "Enable play" },
702 { "enable-random", 0, 0, cf_random_enable, 0, "",
703 "Enable random play" },
704 { "files", 1, 2, cf_files, isarg_regexp, "DIR [~REGEXP]",
705 "List files in DIR" },
706 { "get", 2, 2, cf_get, 0, "TRACK NAME",
707 "Get a preference value" },
708 { "get-global", 1, 1, cf_get_global, 0, "NAME",
709 "Get a global preference value" },
710 { "get-volume", 0, 0, cf_get_volume, 0, "",
711 "Get the current volume" },
712 { "length", 1, 1, cf_length, 0, "TRACK",
713 "Get the length of TRACK in seconds" },
714 { "log", 0, 0, cf_log, 0, "",
715 "Copy event log to stdout" },
716 { "move", 2, 2, cf_move, 0, "TRACK DELTA",
717 "Move a track in the queue" },
718 { "new", 0, 1, cf_new, isarg_integer, "[MAX]",
719 "Get the most recently added MAX tracks" },
720 { "part", 3, 3, cf_part, 0, "TRACK CONTEXT PART",
721 "Find a track name part" },
722 { "pause", 0, 0, cf_pause, 0, "",
723 "Pause the currently playing track" },
724 { "play", 1, INT_MAX, cf_play, isarg_filename, "TRACKS...",
725 "Add TRACKS to the end of the queue" },
726 { "playing", 0, 0, cf_playing, 0, "",
727 "Report the playing track" },
728 { "playlist-del", 1, 1, cf_playlist_del, 0, "PLAYLIST",
729 "Delete a playlist" },
730 { "playlist-get", 1, 1, cf_playlist_get, 0, "PLAYLIST",
731 "Get the contents of a playlist" },
732 { "playlist-set", 1, 2, cf_playlist_set, isarg_filename, "PLAYLIST [PATH]",
733 "Set the contents of a playlist" },
734 { "playlists", 0, 0, cf_playlists, 0, "",
735 "List playlists" },
736 { "prefs", 1, 1, cf_prefs, 0, "TRACK",
737 "Display all the preferences for TRACK" },
738 { "quack", 0, 0, cf_quack, 0, 0, 0 },
739 { "queue", 0, 0, cf_queue, 0, "",
740 "Display the current queue" },
741 { "random-disable", 0, 0, cf_random_disable, 0, "",
742 "Disable random play" },
743 { "random-enable", 0, 0, cf_random_enable, 0, "",
744 "Enable random play" },
745 { "recent", 0, 0, cf_recent, 0, "",
746 "Display recently played track" },
747 { "reconfigure", 0, 0, cf_reconfigure, 0, "",
748 "Reconfigure the daemon" },
749 { "remove", 1, 1, cf_remove, 0, "TRACK",
750 "Remove a track from the queue" },
751 { "rescan", 0, 0, cf_rescan, 0, "",
752 "Rescan for new tracks" },
753 { "resolve", 1, 1, cf_resolve, 0, "TRACK",
754 "Resolve alias for TRACK" },
755 { "resume", 0, 0, cf_resume, 0, "",
756 "Resume after a pause" },
757 { "rtp-address", 0, 0, cf_rtp_address, 0, "",
758 "Report server's broadcast address" },
759 { "schedule-del", 1, 1, cf_schedule_del, 0, "EVENT",
760 "Delete a scheduled event" },
761 { "schedule-list", 0, 0, cf_schedule_list, 0, "",
762 "List scheduled events" },
763 { "schedule-play", 3, 3, cf_schedule_play, 0, "WHEN PRI TRACK",
764 "Play TRACK later" },
765 { "schedule-set-global", 4, 4, cf_schedule_set_global, 0, "WHEN PRI NAME VAL",
766 "Set a global preference later" },
767 { "schedule-unset-global", 3, 3, cf_schedule_unset_global, 0, "WHEN PRI NAME",
768 "Unset a global preference later" },
769 { "scratch", 0, 0, cf_scratch, 0, "",
770 "Scratch the currently playing track" },
771 { "scratch-id", 1, 1, cf_scratch, 0, "ID",
772 "Scratch the currently playing track" },
773 { "search", 1, 1, cf_search, 0, "WORDS",
774 "Display tracks matching all the words" },
775 { "set", 3, 3, cf_set, 0, "TRACK NAME VALUE",
776 "Set a preference value" },
777 { "set-global", 2, 2, cf_set_global, 0, "NAME VALUE",
778 "Set a global preference value" },
779 { "set-volume", 2, 2, cf_set_volume, 0, "LEFT RIGHT",
780 "Set the volume" },
781 { "setup-guest", 0, INT_MAX, cf_setup_guest, isarg_option, "[OPTIONS]",
782 "Create the guest login" },
783 { "shutdown", 0, 0, cf_shutdown, 0, "",
784 "Shut down the daemon" },
785 { "stats", 0, 0, cf_stats, 0, "",
786 "Display server statistics" },
787 { "tags", 0, 0, cf_tags, 0, "",
788 "List known tags" },
789 { "unset", 2, 2, cf_unset, 0, "TRACK NAME",
790 "Unset a preference" },
791 { "unset-global", 1, 1, cf_unset_global, 0, "NAME",
792 "Unset a global preference" },
793 { "userinfo", 2, 2, cf_userinfo, 0, "USERNAME PROPERTY",
794 "Get a property of a user" },
795 { "users", 0, 0, cf_users, 0, "",
796 "List all users" },
797 { "version", 0, 0, cf_version, 0, "",
798 "Display the server version" },
799};
800
801static void help_commands(void) {
802 unsigned n, max = 0, l;
803
804 xprintf("Command summary:\n");
805 for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
806 if(!commands[n].desc) continue;
807 l = strlen(commands[n].name);
808 if(*commands[n].argstr)
809 l += strlen(commands[n].argstr) + 1;
810 if(l > max)
811 max = l;
812 }
813 for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
814 if(!commands[n].desc) continue;
815 l = strlen(commands[n].name);
816 if(*commands[n].argstr)
817 l += strlen(commands[n].argstr) + 1;
818 xprintf(" %s%s%s%*s %s\n", commands[n].name,
819 *commands[n].argstr ? " " : "",
820 commands[n].argstr,
821 max - l, "",
822 commands[n].desc);
823 }
824 xfclose(stdout);
825 exit(0);
826}
827
828static void wait_for_root(void) {
829 const char *password;
830
831 while(!trackdb_readable()) {
832 disorder_info("waiting for trackdb...");
833 sleep(1);
834 }
835 trackdb_init(TRACKDB_NO_RECOVER|TRACKDB_NO_UPGRADE);
836 for(;;) {
837 trackdb_open(TRACKDB_READ_ONLY);
838 password = trackdb_get_password("root");
839 trackdb_close();
840 if(password)
841 break;
842 disorder_info("waiting for root user to be created...");
843 sleep(1);
844 }
845 trackdb_deinit(NULL);
846}
847
848int main(int argc, char **argv) {
849 int n, i, j, local = 0, wfr = 0;
850 int status = 0;
851 struct vector args;
852 const char *user = 0, *password = 0;
853
854 mem_init();
855 /* garbage-collect PCRE's memory */
856 pcre_malloc = xmalloc;
857 pcre_free = xfree;
858 if(!setlocale(LC_CTYPE, "")) disorder_fatal(errno, "error calling setlocale");
859 if(!setlocale(LC_TIME, "")) disorder_fatal(errno, "error calling setlocale");
860 while((n = getopt_long(argc, argv, "+hVc:dHlNu:p:W", options, 0)) >= 0) {
861 switch(n) {
862 case 'h': help();
863 case 'H': help_commands();
864 case 'V': version("disorder");
865 case 'c': configfile = optarg; break;
866 case 'd': debugging = 1; break;
867 case 'l': local = 1; break;
868 case 'N': config_per_user = 0; break;
869 case 'u': user = optarg; break;
870 case 'p': password = optarg; break;
871 case 'W': wfr = 1; break;
872 default: disorder_fatal(0, "invalid option");
873 }
874 }
875 if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration");
876 if(user) {
877 xfree(config->username);
878 config->username = xstrdup(user);
879 config->password = 0;
880 }
881 if(password) {
882 xfree(config->password);
883 config->password = xstrdup(password);
884 }
885 if(local)
886 config->connect.af = -1;
887 if(wfr)
888 wait_for_root();
889 n = optind;
890 optind = 1; /* for subsequent getopt calls */
891 /* gcrypt initialization */
892 if(!gcry_check_version(NULL))
893 disorder_fatal(0, "gcry_check_version failed");
894 gcry_control(GCRYCTL_INIT_SECMEM, 0);
895 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
896 /* accumulate command args */
897 while(n < argc) {
898 if((i = TABLE_FIND(commands, name, argv[n])) < 0)
899 disorder_fatal(0, "unknown command '%s'", argv[n]);
900 if(n + commands[i].min >= argc)
901 disorder_fatal(0, "missing arguments to '%s'", argv[n]);
902 vector_init(&args);
903 /* Include the command name in the args, but at element -1, for
904 * the benefit of subcommand getopt calls */
905 vector_append(&args, xstrdup(argv[n]));
906 n++;
907 for(j = 0; j < commands[i].min; ++j)
908 vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
909 for(; j < commands[i].max
910 && n + j < argc
911 && commands[i].isarg(argv[n + j]); ++j)
912 vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
913 vector_terminate(&args);
914 commands[i].fn(args.vec + 1);
915 vector_clear(&args);
916 n += j;
917 }
918 if(client && disorder_close(client)) exit(EXIT_FAILURE);
919 if(fclose(stdout) < 0) disorder_fatal(errno, "error closing stdout");
920 config_free(config);
921 xfree(client);
922 return status;
923}
924
925/*
926Local Variables:
927c-basic-offset:2
928comment-column:40
929End:
930*/