chiark / gitweb /
make client.c return status code on error
[disorder] / clients / disorder.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
8ae47ac8 3 * Copyright (C) 2004, 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 <sys/types.h>
26#include <sys/socket.h>
27#include <sys/un.h>
28#include <stdio.h>
29#include <errno.h>
30#include <stdlib.h>
31#include <string.h>
32#include <locale.h>
33#include <time.h>
34#include <stddef.h>
35#include <unistd.h>
36#include <assert.h>
fe8f8518 37#include <pcre.h>
2a10b70b 38#include <ctype.h>
460b9539 39
40#include "configuration.h"
41#include "syscalls.h"
42#include "log.h"
43#include "queue.h"
44#include "client.h"
45#include "wstat.h"
46#include "table.h"
47#include "charset.h"
48#include "kvp.h"
49#include "split.h"
50#include "sink.h"
51#include "plugin.h"
52#include "mem.h"
53#include "defs.h"
54#include "authorize.h"
55#include "vector.h"
56
0f55e905 57static disorder_client *client;
460b9539 58
59static const struct option options[] = {
60 { "help", no_argument, 0, 'h' },
61 { "version", no_argument, 0, 'V' },
62 { "config", required_argument, 0, 'c' },
63 { "debug", no_argument, 0, 'd' },
af66d051 64 { "local", no_argument, 0, 'l' },
63ad732f 65 { "no-per-user-config", no_argument, 0, 'N' },
460b9539 66 { "help-commands", no_argument, 0, 'H' },
f0feb22e
RK
67 { "user", required_argument, 0, 'u' },
68 { "password", required_argument, 0, 'p' },
460b9539 69 { 0, 0, 0, 0 }
70};
71
72/* display usage message and terminate */
73static void help(void) {
74 xprintf("Usage:\n"
75 " disorder [OPTIONS] COMMAND ...\n"
76 "Options:\n"
77 " --help, -h Display usage message\n"
78 " --help-commands, -H List commands\n"
79 " --version, -V Display version number\n"
80 " --config PATH, -c PATH Set configuration file\n"
af66d051 81 " --local, -l Force connection to local server\n"
460b9539 82 " --debug, -d Turn on debugging\n");
83 xfclose(stdout);
84 exit(0);
85}
86
87/* display version number and terminate */
88static void version(void) {
a05e4467 89 xprintf("%s", disorder_version_string);
460b9539 90 xfclose(stdout);
91 exit(0);
92}
93
0f55e905
RK
94static disorder_client *getclient(void) {
95 if(!client) {
96 if(!(client = disorder_new(1))) exit(EXIT_FAILURE);
97 if(disorder_connect(client)) exit(EXIT_FAILURE);
98 }
99 return client;
100}
101
102static void cf_version(char attribute((unused)) **argv) {
460b9539 103 char *v;
104
0f55e905 105 if(disorder_version(getclient(), &v)) exit(EXIT_FAILURE);
460b9539 106 xprintf("%s\n", nullcheck(utf82mb(v)));
107}
108
109static void print_queue_entry(const struct queue_entry *q) {
110 if(q->track) xprintf("track %s\n", nullcheck(utf82mb(q->track)));
111 if(q->id) xprintf(" id %s\n", nullcheck(utf82mb(q->id)));
112 if(q->submitter) xprintf(" submitted by %s at %s",
113 nullcheck(utf82mb(q->submitter)), ctime(&q->when));
114 if(q->played) xprintf(" played at %s", ctime(&q->played));
115 if(q->state == playing_started
116 || q->state == playing_paused) xprintf(" %lds so far", q->sofar);
117 else if(q->expected) xprintf(" might start at %s", ctime(&q->expected));
118 if(q->scratched) xprintf(" scratched by %s\n",
119 nullcheck(utf82mb(q->scratched)));
120 else xprintf(" %s\n", playing_states[q->state]);
121 if(q->wstat) xprintf(" %s\n", wstat(q->wstat));
122}
123
0f55e905 124static void cf_playing(char attribute((unused)) **argv) {
460b9539 125 struct queue_entry *q;
126
0f55e905 127 if(disorder_playing(getclient(), &q)) exit(EXIT_FAILURE);
460b9539 128 if(q)
129 print_queue_entry(q);
130 else
131 xprintf("nothing\n");
132}
133
0f55e905 134static void cf_play(char **argv) {
460b9539 135 while(*argv)
0f55e905 136 if(disorder_play(getclient(), *argv++)) exit(EXIT_FAILURE);
460b9539 137}
138
0f55e905
RK
139static void cf_remove(char **argv) {
140 if(disorder_remove(getclient(), argv[0])) exit(EXIT_FAILURE);
460b9539 141}
142
0f55e905
RK
143static void cf_disable(char attribute((unused)) **argv) {
144 if(disorder_disable(getclient())) exit(EXIT_FAILURE);
460b9539 145}
146
0f55e905
RK
147static void cf_enable(char attribute((unused)) **argv) {
148 if(disorder_enable(getclient())) exit(EXIT_FAILURE);
460b9539 149}
150
0f55e905
RK
151static void cf_scratch(char **argv) {
152 if(disorder_scratch(getclient(), argv[0])) exit(EXIT_FAILURE);
460b9539 153}
154
0f55e905
RK
155static void cf_shutdown(char attribute((unused)) **argv) {
156 if(disorder_shutdown(getclient())) exit(EXIT_FAILURE);
460b9539 157}
158
0f55e905 159static void cf_reconfigure(char attribute((unused)) **argv) {
c00fce3a
RK
160 /* Re-check configuration for server */
161 if(config_read(1)) fatal(0, "cannot read configuration");
0f55e905 162 if(disorder_reconfigure(getclient())) exit(EXIT_FAILURE);
460b9539 163}
164
0f55e905
RK
165static void cf_rescan(char attribute((unused)) **argv) {
166 if(disorder_rescan(getclient())) exit(EXIT_FAILURE);
460b9539 167}
168
0f55e905 169static void cf_somequeue(int (*fn)(disorder_client *c,
460b9539 170 struct queue_entry **qp)) {
171 struct queue_entry *q;
172
0f55e905 173 if(fn(getclient(), &q)) exit(EXIT_FAILURE);
460b9539 174 while(q) {
175 print_queue_entry(q);
176 q = q->next;
177 }
178}
179
0f55e905
RK
180static void cf_recent(char attribute((unused)) **argv) {
181 cf_somequeue(disorder_recent);
460b9539 182}
183
0f55e905
RK
184static void cf_queue(char attribute((unused)) **argv) {
185 cf_somequeue(disorder_queue);
460b9539 186}
187
0f55e905 188static void cf_quack(char attribute((unused)) **argv) {
460b9539 189 xprintf("\n"
190 " .------------------.\n"
191 " | Naath is a babe! |\n"
192 " `---------+--------'\n"
193 " \\\n"
194 " >0\n"
195 " (<)'\n"
196 "~~~~~~~~~~~~~~~~~~~~~~\n"
197 "\n");
198}
199
0f55e905 200static void cf_somelist(char **argv,
460b9539 201 int (*fn)(disorder_client *c,
202 const char *arg, const char *re,
203 char ***vecp, int *nvecp)) {
204 char **vec;
205 const char *re;
206
207 if(argv[1])
208 re = xstrdup(argv[1] + 1);
209 else
210 re = 0;
0f55e905 211 if(fn(getclient(), argv[0], re, &vec, 0)) exit(EXIT_FAILURE);
460b9539 212 while(*vec)
213 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
214}
215
216static int isarg_regexp(const char *s) {
217 return s[0] == '~';
218}
219
0f55e905
RK
220static void cf_dirs(char **argv) {
221 cf_somelist(argv, disorder_directories);
460b9539 222}
223
0f55e905
RK
224static void cf_files(char **argv) {
225 cf_somelist(argv, disorder_files);
460b9539 226}
227
0f55e905
RK
228static void cf_allfiles(char **argv) {
229 cf_somelist(argv, disorder_allfiles);
460b9539 230}
231
0f55e905 232static void cf_get(char **argv) {
460b9539 233 char *value;
234
0f55e905 235 if(disorder_get(getclient(), argv[0], argv[1], &value)) exit(EXIT_FAILURE);
460b9539 236 xprintf("%s\n", nullcheck(utf82mb(value)));
237}
238
0f55e905 239static void cf_length(char **argv) {
460b9539 240 long length;
241
0f55e905 242 if(disorder_length(getclient(), argv[0], &length)) exit(EXIT_FAILURE);
460b9539 243 xprintf("%ld\n", length);
244}
245
0f55e905
RK
246static void cf_set(char **argv) {
247 if(disorder_set(getclient(), argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
460b9539 248}
249
0f55e905
RK
250static void cf_unset(char **argv) {
251 if(disorder_unset(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
460b9539 252}
253
0f55e905 254static void cf_prefs(char **argv) {
460b9539 255 struct kvp *k;
256
0f55e905 257 if(disorder_prefs(getclient(), argv[0], &k)) exit(EXIT_FAILURE);
460b9539 258 for(; k; k = k->next)
259 xprintf("%s = %s\n",
260 nullcheck(utf82mb(k->name)), nullcheck(utf82mb(k->value)));
261}
262
0f55e905 263static void cf_search(char **argv) {
460b9539 264 char **results;
265 int nresults, n;
266
0f55e905 267 if(disorder_search(getclient(), *argv, &results, &nresults)) exit(EXIT_FAILURE);
460b9539 268 for(n = 0; n < nresults; ++n)
269 xprintf("%s\n", nullcheck(utf82mb(results[n])));
270}
271
0f55e905
RK
272static void cf_random_disable(char attribute((unused)) **argv) {
273 if(disorder_random_disable(getclient())) exit(EXIT_FAILURE);
460b9539 274}
275
0f55e905
RK
276static void cf_random_enable(char attribute((unused)) **argv) {
277 if(disorder_random_enable(getclient())) exit(EXIT_FAILURE);
460b9539 278}
279
0f55e905 280static void cf_stats(char attribute((unused)) **argv) {
460b9539 281 char **vec;
282
0f55e905 283 if(disorder_stats(getclient(), &vec, 0)) exit(EXIT_FAILURE);
460b9539 284 while(*vec)
285 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
286}
287
0f55e905 288static void cf_get_volume(char attribute((unused)) **argv) {
460b9539 289 int l, r;
290
0f55e905 291 if(disorder_get_volume(getclient(), &l, &r)) exit(EXIT_FAILURE);
460b9539 292 xprintf("%d %d\n", l, r);
293}
294
0f55e905
RK
295static void cf_set_volume(char **argv) {
296 if(disorder_set_volume(getclient(), atoi(argv[0]), atoi(argv[1]))) exit(EXIT_FAILURE);
460b9539 297}
298
0f55e905
RK
299static void cf_log(char attribute((unused)) **argv) {
300 if(disorder_log(getclient(), sink_stdio("stdout", stdout))) exit(EXIT_FAILURE);
460b9539 301}
302
0f55e905 303static void cf_move(char **argv) {
460b9539 304 long n;
305 int e;
306
307 if((e = xstrtol(&n, argv[1], 0, 10)))
308 fatal(e, "cannot convert '%s'", argv[1]);
309 if(n > INT_MAX || n < INT_MIN)
310 fatal(e, "%ld out of range", n);
0f55e905 311 if(disorder_move(getclient(), argv[0], (int)n)) exit(EXIT_FAILURE);
460b9539 312}
313
0f55e905 314static void cf_part(char **argv) {
460b9539 315 char *s;
316
0f55e905 317 if(disorder_part(getclient(), &s, argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
460b9539 318 xprintf("%s\n", nullcheck(utf82mb(s)));
319}
320
321static int isarg_filename(const char *s) {
322 return s[0] == '/';
323}
324
0f55e905
RK
325static void cf_authorize(char **argv) {
326 authorize(getclient(), argv[0], argv[1]);
460b9539 327}
328
0f55e905 329static void cf_resolve(char **argv) {
460b9539 330 char *track;
331
0f55e905 332 if(disorder_resolve(getclient(), &track, argv[0])) exit(EXIT_FAILURE);
460b9539 333 xprintf("%s\n", nullcheck(utf82mb(track)));
334}
335
0f55e905
RK
336static void cf_pause(char attribute((unused)) **argv) {
337 if(disorder_pause(getclient())) exit(EXIT_FAILURE);
460b9539 338}
339
0f55e905
RK
340static void cf_resume(char attribute((unused)) **argv) {
341 if(disorder_resume(getclient())) exit(EXIT_FAILURE);
460b9539 342}
343
0f55e905 344static void cf_tags(char attribute((unused)) **argv) {
460b9539 345 char **vec;
346
0f55e905 347 if(disorder_tags(getclient(), &vec, 0)) exit(EXIT_FAILURE);
460b9539 348 while(*vec)
349 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
350}
351
0f55e905 352static void cf_users(char attribute((unused)) **argv) {
c3be4f19
RK
353 char **vec;
354
0f55e905 355 if(disorder_users(getclient(), &vec, 0)) exit(EXIT_FAILURE);
c3be4f19
RK
356 while(*vec)
357 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
358}
359
0f55e905 360static void cf_get_global(char **argv) {
460b9539 361 char *value;
362
0f55e905 363 if(disorder_get_global(getclient(), argv[0], &value)) exit(EXIT_FAILURE);
460b9539 364 xprintf("%s\n", nullcheck(utf82mb(value)));
365}
366
0f55e905
RK
367static void cf_set_global(char **argv) {
368 if(disorder_set_global(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
460b9539 369}
370
0f55e905
RK
371static void cf_unset_global(char **argv) {
372 if(disorder_unset_global(getclient(), argv[0])) exit(EXIT_FAILURE);
460b9539 373}
374
2a10b70b
RK
375static int isarg_integer(const char *s) {
376 if(!*s) return 0;
377 while(*s) {
378 if(!isdigit((unsigned char)*s))
379 return 0;
380 ++s;
381 }
382 return 1;
383}
384
0f55e905 385static void cf_new(char **argv) {
2a10b70b
RK
386 char **vec;
387
0f55e905 388 if(disorder_new_tracks(getclient(), &vec, 0, argv[0] ? atoi(argv[0]) : 0))
2a10b70b
RK
389 exit(EXIT_FAILURE);
390 while(*vec)
391 xprintf("%s\n", nullcheck(utf82mb(*vec++)));
392}
393
0f55e905 394static void cf_rtp_address(char attribute((unused)) **argv) {
ca831831
RK
395 char *address, *port;
396
0f55e905 397 if(disorder_rtp_address(getclient(), &address, &port)) exit(EXIT_FAILURE);
ca831831
RK
398 xprintf("address: %s\nport: %s\n", address, port);
399}
400
0f55e905
RK
401static int isarg_rights(const char *arg) {
402 return strchr(arg, ',') || !parse_rights(arg, 0, 0);
403}
404
405static void cf_adduser(char **argv) {
406 if(disorder_adduser(getclient(), argv[0], argv[1], argv[2]))
f0feb22e
RK
407 exit(EXIT_FAILURE);
408}
409
0f55e905
RK
410static void cf_deluser(char **argv) {
411 if(disorder_deluser(getclient(), argv[0]))
a55c70c7
RK
412 exit(EXIT_FAILURE);
413}
414
0f55e905
RK
415static void cf_edituser(char **argv) {
416 if(disorder_edituser(getclient(), argv[0], argv[1], argv[2]))
eb5dc014
RK
417 exit(EXIT_FAILURE);
418}
419
0f55e905 420static void cf_userinfo(char **argv) {
a55c70c7
RK
421 char *s;
422
0f55e905 423 if(disorder_userinfo(getclient(), argv[0], argv[1], &s))
a55c70c7
RK
424 exit(EXIT_FAILURE);
425 xprintf("%s\n", nullcheck(utf82mb(s)));
426}
eb5dc014 427
0f55e905
RK
428static int isarg_option(const char *arg) {
429 return arg[0] == '-';
430}
431
432static int argvlen(char **argv) {
433 char **start = argv;
434
435 while(*argv)
436 ++argv;
437 return argv - start;
438}
439
440static const struct option setup_guest_options[] = {
441 { "help", no_argument, 0, 'h' },
442 { "online-registration", no_argument, 0, 'r' },
443 { "no-online-registration", no_argument, 0, 'R' },
444 { 0, 0, 0, 0 }
445};
446
447static void help_setup_guest(void) {
448 xprintf("Usage:\n"
449 " disorder setup-guest [OPTIONS]\n"
450 "Options:\n"
451 " --help, -h Display usage message\n"
452 " --online-registration Enable online registration (default)\n"
453 " --no-online-registration Disable online registration\n");
454 xfclose(stdout);
455 exit(0);
456}
457
458static void cf_setup_guest(char **argv) {
459 int n, online_registration = 1;
460
461 while((n = getopt_long(argvlen(argv) + 1, argv - 1,
462 "hrR", setup_guest_options, 0)) >= 0) {
463 switch(n) {
464 case 'h': help_setup_guest();
465 case 'r': online_registration = 1; break;
466 case 'R': online_registration = 0; break;
467 default: fatal(0, "invalid option");
468 }
469 }
470 if(disorder_adduser(getclient(), "guest", "",
471 online_registration ? "read,register" : "read"))
472 exit(EXIT_FAILURE);
473}
474
460b9539 475static const struct command {
476 const char *name;
477 int min, max;
0f55e905 478 void (*fn)(char **);
460b9539 479 int (*isarg)(const char *);
480 const char *argstr, *desc;
481} commands[] = {
0f55e905 482 { "adduser", 2, 3, cf_adduser, isarg_rights, "USER PASSWORD [RIGHTS]",
f0feb22e 483 "Create a new user" },
460b9539 484 { "allfiles", 1, 2, cf_allfiles, isarg_regexp, "DIR [~REGEXP]",
485 "List all files and directories in DIR" },
0f55e905 486 { "authorize", 1, 2, cf_authorize, isarg_rights, "USER [RIGHTS]",
460b9539 487 "Authorize USER to connect to the server" },
a55c70c7
RK
488 { "deluser", 1, 1, cf_deluser, 0, "USER",
489 "Delete a user" },
460b9539 490 { "dirs", 1, 2, cf_dirs, isarg_regexp, "DIR [~REGEXP]",
491 "List directories in DIR" },
492 { "disable", 0, 0, cf_disable, 0, "",
493 "Disable play" },
494 { "disable-random", 0, 0, cf_random_disable, 0, "",
495 "Disable random play" },
a55c70c7 496 { "edituser", 3, 3, cf_edituser, 0, "USER PROPERTY VALUE",
eb5dc014 497 "Set a property of a user" },
460b9539 498 { "enable", 0, 0, cf_enable, 0, "",
499 "Enable play" },
500 { "enable-random", 0, 0, cf_random_enable, 0, "",
501 "Enable random play" },
502 { "files", 1, 2, cf_files, isarg_regexp, "DIR [~REGEXP]",
503 "List files in DIR" },
504 { "get", 2, 2, cf_get, 0, "TRACK NAME",
505 "Get a preference value" },
506 { "get-global", 1, 1, cf_get_global, 0, "NAME",
507 "Get a global preference value" },
508 { "get-volume", 0, 0, cf_get_volume, 0, "",
509 "Get the current volume" },
510 { "length", 1, 1, cf_length, 0, "TRACK",
511 "Get the length of TRACK in seconds" },
512 { "log", 0, 0, cf_log, 0, "",
513 "Copy event log to stdout" },
514 { "move", 2, 2, cf_move, 0, "TRACK DELTA",
515 "Move a track in the queue" },
2a10b70b
RK
516 { "new", 0, 1, cf_new, isarg_integer, "[MAX]",
517 "Get the most recently added MAX tracks" },
460b9539 518 { "part", 3, 3, cf_part, 0, "TRACK CONTEXT PART",
519 "Find a track name part" },
520 { "pause", 0, 0, cf_pause, 0, "",
521 "Pause the currently playing track" },
522 { "play", 1, INT_MAX, cf_play, isarg_filename, "TRACKS...",
523 "Add TRACKS to the end of the queue" },
524 { "playing", 0, 0, cf_playing, 0, "",
525 "Report the playing track" },
526 { "prefs", 1, 1, cf_prefs, 0, "TRACK",
527 "Display all the preferences for TRACK" },
528 { "quack", 0, 0, cf_quack, 0, 0, 0 },
529 { "queue", 0, 0, cf_queue, 0, "",
530 "Display the current queue" },
531 { "random-disable", 0, 0, cf_random_disable, 0, "",
532 "Disable random play" },
533 { "random-enable", 0, 0, cf_random_enable, 0, "",
534 "Enable random play" },
535 { "recent", 0, 0, cf_recent, 0, "",
536 "Display recently played track" },
537 { "reconfigure", 0, 0, cf_reconfigure, 0, "",
538 "Reconfigure the daemon" },
539 { "remove", 1, 1, cf_remove, 0, "TRACK",
540 "Remove a track from the queue" },
541 { "rescan", 0, 0, cf_rescan, 0, "",
542 "Rescan for new tracks" },
543 { "resolve", 1, 1, cf_resolve, 0, "TRACK",
544 "Resolve alias for TRACK" },
545 { "resume", 0, 0, cf_resume, 0, "",
546 "Resume after a pause" },
ca831831
RK
547 { "rtp-address", 0, 0, cf_rtp_address, 0, "",
548 "Report server's broadcast address" },
460b9539 549 { "scratch", 0, 0, cf_scratch, 0, "",
550 "Scratch the currently playing track" },
551 { "scratch-id", 1, 1, cf_scratch, 0, "ID",
552 "Scratch the currently playing track" },
553 { "search", 1, 1, cf_search, 0, "WORDS",
554 "Display tracks matching all the words" },
555 { "set", 3, 3, cf_set, 0, "TRACK NAME VALUE",
556 "Set a preference value" },
557 { "set-global", 2, 2, cf_set_global, 0, "NAME VALUE",
558 "Set a global preference value" },
559 { "set-volume", 2, 2, cf_set_volume, 0, "LEFT RIGHT",
560 "Set the volume" },
0f55e905
RK
561 { "setup-guest", 0, INT_MAX, cf_setup_guest, isarg_option, "[OPTIONS]",
562 "Create the guest login" },
460b9539 563 { "shutdown", 0, 0, cf_shutdown, 0, "",
564 "Shut down the daemon" },
565 { "stats", 0, 0, cf_stats, 0, "",
566 "Display server statistics" },
567 { "tags", 0, 0, cf_tags, 0, "",
568 "List known tags" },
569 { "unset", 2, 2, cf_unset, 0, "TRACK NAME",
570 "Unset a preference" },
571 { "unset-global", 1, 1, cf_unset_global, 0, "NAME",
572 "Unset a global preference" },
a55c70c7
RK
573 { "userinfo", 2, 2, cf_userinfo, 0, "USER PROPERTY",
574 "Get a property of as user" },
c3be4f19
RK
575 { "users", 0, 0, cf_users, 0, "",
576 "List all users" },
460b9539 577 { "version", 0, 0, cf_version, 0, "",
578 "Display the server version" },
579};
580
581static void help_commands(void) {
582 unsigned n, max = 0, l;
583
584 xprintf("Command summary:\n");
585 for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
586 if(!commands[n].desc) continue;
587 l = strlen(commands[n].name);
588 if(*commands[n].argstr)
589 l += strlen(commands[n].argstr) + 1;
590 if(l > max)
591 max = l;
592 }
593 for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
594 if(!commands[n].desc) continue;
595 l = strlen(commands[n].name);
596 if(*commands[n].argstr)
597 l += strlen(commands[n].argstr) + 1;
598 xprintf(" %s%s%s%*s %s\n", commands[n].name,
599 *commands[n].argstr ? " " : "",
600 commands[n].argstr,
601 max - l, "",
602 commands[n].desc);
603 }
604 xfclose(stdout);
605 exit(0);
606}
607
608int main(int argc, char **argv) {
af66d051 609 int n, i, j, local = 0;
460b9539 610 int status = 0;
611 struct vector args;
f0feb22e 612 const char *user = 0, *password = 0;
460b9539 613
320598d4 614 mem_init();
fe8f8518
RK
615 /* garbage-collect PCRE's memory */
616 pcre_malloc = xmalloc;
617 pcre_free = xfree;
460b9539 618 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
f0feb22e 619 while((n = getopt_long(argc, argv, "hVc:dHlNu:p:", options, 0)) >= 0) {
460b9539 620 switch(n) {
621 case 'h': help();
622 case 'H': help_commands();
623 case 'V': version();
624 case 'c': configfile = optarg; break;
625 case 'd': debugging = 1; break;
af66d051 626 case 'l': local = 1; break;
63ad732f 627 case 'N': config_per_user = 0; break;
f0feb22e
RK
628 case 'u': user = optarg; break;
629 case 'p': password = optarg; break;
460b9539 630 default: fatal(0, "invalid option");
631 }
632 }
c00fce3a 633 if(config_read(0)) fatal(0, "cannot read configuration");
f0feb22e
RK
634 if(user) {
635 config->username = user;
636 config->password = 0;
637 }
638 if(password)
639 config->password = password;
af66d051 640 if(local)
641 config->connect.n = 0;
460b9539 642 n = optind;
0f55e905 643 optind = 1; /* for subsequent getopt calls */
460b9539 644 /* accumulate command args */
645 while(n < argc) {
646 if((i = TABLE_FIND(commands, struct command, name, argv[n])) < 0)
647 fatal(0, "unknown command '%s'", argv[n]);
648 if(n + commands[i].min >= argc)
649 fatal(0, "missing arguments to '%s'", argv[n]);
460b9539 650 vector_init(&args);
0f55e905
RK
651 /* Include the command name in the args, but at element -1, for
652 * the benefit of subcommand getopt calls */
653 vector_append(&args, argv[n]);
654 n++;
460b9539 655 for(j = 0; j < commands[i].min; ++j)
656 vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
657 for(; j < commands[i].max
658 && n + j < argc
659 && commands[i].isarg(argv[n + j]); ++j)
660 vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
661 vector_terminate(&args);
0f55e905 662 commands[i].fn(args.vec + 1);
460b9539 663 n += j;
664 }
0f55e905 665 if(client && disorder_close(client)) exit(EXIT_FAILURE);
460b9539 666 if(fclose(stdout) < 0) fatal(errno, "error closing stdout");
667 return status;
668}
669
670/*
671Local Variables:
672c-basic-offset:2
673comment-column:40
674End:
675*/