chiark / gitweb /
disobedience docs update
[disorder] / lib / eclient.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2006 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 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 */
0e4472a0 20/** @file lib/eclient.c
21 * @brief Client code for event-driven programs
22 */
460b9539 23
24#include <config.h>
25#include "types.h"
26
27#include <sys/types.h>
28#include <sys/socket.h>
29#include <netinet/in.h>
30#include <sys/un.h>
31#include <string.h>
32#include <stdio.h>
33#include <unistd.h>
34#include <errno.h>
35#include <netdb.h>
36#include <stdlib.h>
37#include <assert.h>
38#include <inttypes.h>
39#include <stddef.h>
40
41#include "log.h"
42#include "mem.h"
43#include "configuration.h"
44#include "queue.h"
45#include "eclient.h"
46#include "charset.h"
47#include "hex.h"
48#include "split.h"
49#include "vector.h"
50#include "inputline.h"
51#include "kvp.h"
52#include "syscalls.h"
53#include "printf.h"
54#include "addr.h"
55#include "authhash.h"
56#include "table.h"
57#include "client-common.h"
58
59/* TODO: more commands */
60
61/* Types *********************************************************************/
62
0e4472a0 63/** @brief Client state */
460b9539 64enum client_state {
0e4472a0 65 state_disconnected, /**< @brief not connected */
66 state_connecting, /**< @brief waiting for connect() */
67 state_connected, /**< @brief connected but not authenticated */
68 state_idle, /**< @brief not doing anything */
69 state_cmdresponse, /**< @brief waiting for command resonse */
70 state_body, /**< @brief accumulating body */
71 state_log, /**< @brief monitoring log */
460b9539 72};
73
0e4472a0 74/** @brief Names for @ref client_state */
460b9539 75static const char *const states[] = {
76 "disconnected",
77 "connecting",
78 "connected",
79 "idle",
80 "cmdresponse",
81 "body",
82 "log"
83};
84
85struct operation; /* forward decl */
86
0e4472a0 87/** @brief Type of an operation callback */
460b9539 88typedef void operation_callback(disorder_eclient *c, struct operation *op);
89
0e4472a0 90/** @brief A pending operation.
91 *
92 * This can be either a command or part of the authentication protocol. In the
93 * former case new commands are appended to the list, in the latter case they
94 * are inserted at the front. */
460b9539 95struct operation {
0e4472a0 96 struct operation *next; /**< @brief next operation */
97 char *cmd; /**< @brief command to send or 0 */
98 operation_callback *opcallback; /**< @brief internal completion callback */
99 void (*completed)(); /**< @brief user completion callback or 0 */
100 void *v; /**< @brief data for COMPLETED */
101 disorder_eclient *client; /**< @brief owning client */
ad58ebcc 102
103 /** @brief true if sent to server
104 *
105 * This is cleared by disorder_eclient_close(), forcing all queued
106 * commands to be transparently resent.
107 */
108 int sent;
460b9539 109};
110
0e4472a0 111/** @brief Client structure */
460b9539 112struct disorder_eclient {
113 const char *ident;
0e4472a0 114 int fd; /**< @brief connection to server */
115 enum client_state state; /**< @brief current state */
116 int authenticated; /**< @brief true when authenicated */
117 struct dynstr output; /**< @brief output buffer */
118 struct dynstr input; /**< @brief input buffer */
119 int eof; /**< @brief input buffer is at EOF */
120 const disorder_eclient_callbacks *callbacks; /**< @brief error callbacks */
121 void *u; /**< @brief user data */
122 struct operation *ops; /**< @brief queue of operations */
123 struct operation **opstail; /**< @brief queue tail */
460b9539 124 /* accumulated response */
0e4472a0 125 int rc; /**< @brief response code */
126 char *line; /**< @brief complete line */
127 struct vector vec; /**< @brief body */
128 const disorder_eclient_log_callbacks *log_callbacks; /**< @brief log callbacks */
129 void *log_v; /**< @brief user data */
8f763f1b 130 unsigned long statebits; /**< @brief latest state */
460b9539 131};
132
133/* Forward declarations ******************************************************/
134
135static int start_connect(void *cc,
136 const struct sockaddr *sa,
137 socklen_t len,
138 const char *ident);
139static void process_line(disorder_eclient *c, char *line);
140static int start_connect(void *cc,
141 const struct sockaddr *sa,
142 socklen_t len,
143 const char *ident);
144static void maybe_connected(disorder_eclient *c);
145static void authbanner_opcallback(disorder_eclient *c,
146 struct operation *op);
147static void authuser_opcallback(disorder_eclient *c,
148 struct operation *op);
149static void complete(disorder_eclient *c);
150static void send_output(disorder_eclient *c);
151static void put(disorder_eclient *c, const char *s, size_t n);
152static void read_input(disorder_eclient *c);
153static void stash_command(disorder_eclient *c,
154 int queuejump,
155 operation_callback *opcallback,
156 void (*completed)(),
157 void *v,
158 const char *cmd,
159 ...);
160static void log_opcallback(disorder_eclient *c, struct operation *op);
161static void logline(disorder_eclient *c, const char *line);
162static void logentry_completed(disorder_eclient *c, int nvec, char **vec);
163static void logentry_failed(disorder_eclient *c, int nvec, char **vec);
164static void logentry_moved(disorder_eclient *c, int nvec, char **vec);
165static void logentry_playing(disorder_eclient *c, int nvec, char **vec);
166static void logentry_queue(disorder_eclient *c, int nvec, char **vec);
167static void logentry_recent_added(disorder_eclient *c, int nvec, char **vec);
168static void logentry_recent_removed(disorder_eclient *c, int nvec, char **vec);
169static void logentry_removed(disorder_eclient *c, int nvec, char **vec);
170static void logentry_scratched(disorder_eclient *c, int nvec, char **vec);
171static void logentry_state(disorder_eclient *c, int nvec, char **vec);
172static void logentry_volume(disorder_eclient *c, int nvec, char **vec);
173
174/* Tables ********************************************************************/
175
0e4472a0 176/** @brief One possible log entry */
177struct logentry_handler {
178 const char *name; /**< @brief Entry name */
179 int min; /**< @brief Minimum arguments */
180 int max; /**< @brief Maximum arguments */
460b9539 181 void (*handler)(disorder_eclient *c,
182 int nvec,
0e4472a0 183 char **vec); /**< @brief Handler function */
184};
185
186/** @brief Table for parsing log entries */
187static const struct logentry_handler logentry_handlers[] = {
460b9539 188#define LE(X, MIN, MAX) { #X, MIN, MAX, logentry_##X }
189 LE(completed, 1, 1),
190 LE(failed, 2, 2),
191 LE(moved, 1, 1),
192 LE(playing, 1, 2),
193 LE(queue, 2, INT_MAX),
194 LE(recent_added, 2, INT_MAX),
195 LE(recent_removed, 1, 1),
196 LE(removed, 1, 2),
197 LE(scratched, 2, 2),
198 LE(state, 1, 1),
199 LE(volume, 2, 2)
200};
201
202/* Setup and teardown ********************************************************/
203
0e4472a0 204/** @brief Create a new client
205 *
206 * Does NOT connect the client - connections are made (and re-made) on demand.
207 */
460b9539 208disorder_eclient *disorder_eclient_new(const disorder_eclient_callbacks *cb,
209 void *u) {
210 disorder_eclient *c = xmalloc(sizeof *c);
211 D(("disorder_eclient_new"));
212 c->fd = -1;
213 c->callbacks = cb;
214 c->u = u;
215 c->opstail = &c->ops;
216 vector_init(&c->vec);
217 dynstr_init(&c->input);
218 dynstr_init(&c->output);
1c0d78bd
RK
219 if(!config->password) {
220 error(0, "no password set");
221 return 0;
222 }
460b9539 223 return c;
224}
225
ad58ebcc 226/** @brief Disconnect a client
227 * @param c Client to disconnect
228 *
229 * NB that this routine just disconnnects the TCP connection. It does not
230 * destroy the client! If you continue to use it then it will attempt to
231 * reconnect.
232 */
460b9539 233void disorder_eclient_close(disorder_eclient *c) {
234 struct operation *op;
235
236 D(("disorder_eclient_close"));
237 if(c->fd != -1) {
238 D(("disorder_eclient_close closing fd %d", c->fd));
239 c->callbacks->poll(c->u, c, c->fd, 0);
240 xclose(c->fd);
241 c->fd = -1;
242 c->state = state_disconnected;
8f763f1b 243 c->statebits = 0;
460b9539 244 }
245 c->output.nvec = 0;
246 c->input.nvec = 0;
247 c->eof = 0;
248 c->authenticated = 0;
249 /* We'll need to resend all operations */
250 for(op = c->ops; op; op = op->next)
251 op->sent = 0;
6d1302f0
RK
252 /* Drop our use a hint that we're disconnected */
253 if(c->log_callbacks && c->log_callbacks->state)
254 c->log_callbacks->state(c->log_v, c->statebits);
460b9539 255}
256
8f763f1b
RK
257/** @brief Return current state */
258unsigned long disorder_eclient_state(const disorder_eclient *c) {
259 return c->statebits | (c->state > state_connected ? DISORDER_CONNECTED : 0);
ad58ebcc 260}
261
460b9539 262/* Error reporting ***********************************************************/
263
ad58ebcc 264/** @brief called when a connection error occurs
265 *
266 * After this called we will be disconnected (by disorder_eclient_close()),
267 * so there will be a reconnection before any commands can be sent.
268 */
460b9539 269static int comms_error(disorder_eclient *c, const char *fmt, ...) {
270 va_list ap;
271 char *s;
272
273 D(("comms_error"));
274 va_start(ap, fmt);
275 byte_xvasprintf(&s, fmt, ap);
276 va_end(ap);
277 disorder_eclient_close(c);
278 c->callbacks->comms_error(c->u, s);
279 return -1;
280}
281
0e4472a0 282/** @brief called when the server reports an error */
460b9539 283static int protocol_error(disorder_eclient *c, struct operation *op,
284 int code, const char *fmt, ...) {
285 va_list ap;
286 char *s;
287
288 D(("protocol_error"));
289 va_start(ap, fmt);
290 byte_xvasprintf(&s, fmt, ap);
291 va_end(ap);
292 c->callbacks->protocol_error(c->u, op->v, code, s);
293 return -1;
294}
295
296/* State machine *************************************************************/
297
0e4472a0 298/** @brief Called when there's something to do
299 * @param c Client
300 * @param mode bitmap of @ref DISORDER_POLL_READ and/or @ref DISORDER_POLL_WRITE.
301 *
302 * This should be called from by your code when the file descriptor is readable
303 * or writable (as requested by the @c poll callback, see @ref
304 * disorder_eclient_callbacks) and in any case from time to time (with @p mode
305 * = 0) to allow for retries to work.
306 */
460b9539 307void disorder_eclient_polled(disorder_eclient *c, unsigned mode) {
308 struct operation *op;
ad58ebcc 309
460b9539 310 D(("disorder_eclient_polled fd=%d state=%s mode=[%s %s]",
311 c->fd, states[c->state],
312 mode & DISORDER_POLL_READ ? "READ" : "",
313 mode & DISORDER_POLL_WRITE ? "WRITE" : ""));
314 /* The pattern here is to check each possible state in turn and try to
315 * advance (though on error we might go back). If we advance we leave open
316 * the possibility of falling through to the next state, but we set the mode
317 * bits to 0, to avoid false positives (which matter more in some cases than
318 * others). */
319
320 if(c->state == state_disconnected) {
321 D(("state_disconnected"));
322 with_sockaddr(c, start_connect);
323 /* might now be state_disconnected (on error), state_connecting (slow
324 * connect) or state_connected (fast connect). If state_disconnected then
325 * we just rely on a periodic callback from the event loop sometime. */
326 mode = 0;
327 }
328
329 if(c->state == state_connecting && mode) {
330 D(("state_connecting"));
331 maybe_connected(c);
332 /* Might be state_disconnected (on error) or state_connected (on success).
333 * In the former case we rely on the event loop for a periodic callback to
334 * retry. */
335 mode = 0;
336 }
337
338 if(c->state == state_connected) {
339 D(("state_connected"));
340 /* We just connected. Initiate the authentication protocol. */
341 stash_command(c, 1/*queuejump*/, authbanner_opcallback,
342 0/*completed*/, 0/*v*/, 0/*cmd*/);
343 /* We never stay is state_connected very long. We could in principle jump
344 * straight to state_cmdresponse since there's actually no command to
345 * send, but that would arguably be cheating. */
346 c->state = state_idle;
347 }
348
349 if(c->state == state_idle) {
350 D(("state_idle"));
351 /* We are connected, and have finished any command we set off, look for
352 * some work to do */
353 if(c->ops) {
354 D(("have ops"));
355 if(c->authenticated) {
356 /* Transmit all unsent operations */
357 for(op = c->ops; op; op = op->next) {
358 if(!op->sent) {
359 put(c, op->cmd, strlen(op->cmd));
360 op->sent = 1;
361 }
362 }
363 } else {
364 /* Just send the head operation */
365 if(c->ops->cmd && !c->ops->sent) {
366 put(c, c->ops->cmd, strlen(c->ops->cmd));
367 c->ops->sent = 1;
368 }
369 }
370 /* Awaiting response for the operation at the head of the list */
371 c->state = state_cmdresponse;
372 } else
373 /* genuinely idle */
374 c->callbacks->report(c->u, 0);
375 }
376
377 if(c->state == state_cmdresponse
378 || c->state == state_body
379 || c->state == state_log) {
380 D(("state_%s", states[c->state]));
381 /* We are awaiting a response */
382 if(mode & DISORDER_POLL_WRITE) send_output(c);
383 if(mode & DISORDER_POLL_READ) read_input(c);
384 /* There are a couple of reasons we might want to re-enter the state
385 * machine from the top. state_idle is obvious: there may be further
386 * commands to process. Re-entering on state_disconnected means that we
387 * immediately retry connection if a comms error occurs during a command.
388 * This is different to the case where a connection fails, where we await a
389 * spontaneous call to initiate the retry. */
390 switch(c->state) {
391 case state_disconnected: /* lost connection */
392 case state_idle: /* completed a command */
393 D(("retrying"));
394 disorder_eclient_polled(c, 0);
395 return;
396 default:
397 break;
398 }
399 }
400
401 /* Figure out what to set the mode to */
402 switch(c->state) {
403 case state_disconnected:
404 D(("state_disconnected (2)"));
405 /* Probably an error occurred. Await a retry. */
406 mode = 0;
407 break;
408 case state_connecting:
409 D(("state_connecting (2)"));
410 /* Waiting for connect to complete */
411 mode = DISORDER_POLL_READ|DISORDER_POLL_WRITE;
412 break;
413 case state_connected:
414 D(("state_connected (2)"));
415 assert(!"should never be in state_connected here");
416 break;
417 case state_idle:
418 D(("state_idle (2)"));
419 /* Connected but nothing to do. */
420 mode = 0;
421 break;
422 case state_cmdresponse:
423 case state_body:
424 case state_log:
425 D(("state_%s (2)", states[c->state]));
426 /* Gathering a response. Wait for input. */
427 mode = DISORDER_POLL_READ;
428 /* Flush any pending output. */
429 if(c->output.nvec) mode |= DISORDER_POLL_WRITE;
430 break;
431 }
432 D(("fd=%d new mode [%s %s]",
433 c->fd,
434 mode & DISORDER_POLL_READ ? "READ" : "",
435 mode & DISORDER_POLL_WRITE ? "WRITE" : ""));
436 if(c->fd != -1) c->callbacks->poll(c->u, c, c->fd, mode);
437}
438
0e4472a0 439/** @brief Called to start connecting */
460b9539 440static int start_connect(void *cc,
441 const struct sockaddr *sa,
442 socklen_t len,
443 const char *ident) {
444 disorder_eclient *c = cc;
445
446 D(("start_connect"));
447 c->ident = xstrdup(ident);
448 if(c->fd != -1) {
449 xclose(c->fd);
450 c->fd = -1;
451 }
452 if((c->fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0)
453 return comms_error(c, "socket: %s", strerror(errno));
454 c->eof = 0;
455 nonblock(c->fd);
456 if(connect(c->fd, sa, len) < 0) {
457 switch(errno) {
458 case EINTR:
459 case EINPROGRESS:
460 c->state = state_connecting;
461 /* We are called from _polled so the state machine will get to do its
462 * thing */
463 return 0;
464 default:
465 /* Signal the error to the caller. */
466 return comms_error(c, "connecting to %s: %s", ident, strerror(errno));
467 }
468 } else
469 c->state = state_connected;
470 return 0;
471}
472
ad58ebcc 473/** @brief Called when poll triggers while waiting for a connection */
460b9539 474static void maybe_connected(disorder_eclient *c) {
475 /* We either connected, or got an error. */
476 int err;
477 socklen_t len = sizeof err;
478
479 D(("maybe_connected"));
480 /* Work around over-enthusiastic error slippage */
481 if(getsockopt(c->fd, SOL_SOCKET, SO_ERROR, &err, &len) < 0)
482 err = errno;
483 if(err) {
484 /* The connection failed */
485 comms_error(c, "connecting to %s: %s", c->ident, strerror(err));
486 /* sets state_disconnected */
487 } else {
e836b1aa 488 char *r;
489
460b9539 490 /* The connection succeeded */
491 c->state = state_connected;
e836b1aa 492 byte_xasprintf(&r, "connected to %s", c->ident);
493 c->callbacks->report(c->u, r);
6d1302f0
RK
494 /* If this is a log client we expect to get a bunch of updates from the
495 * server straight away */
460b9539 496 }
497}
498
499/* Authentication ************************************************************/
500
501static void authbanner_opcallback(disorder_eclient *c,
502 struct operation *op) {
503 size_t nonce_len;
504 const unsigned char *nonce;
505 const char *res;
506
507 D(("authbanner_opcallback"));
508 if(c->rc / 100 != 2) {
509 /* Banner told us to go away. We cannot proceed. */
510 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
511 disorder_eclient_close(c);
512 return;
513 }
514 nonce = unhex(c->line + 4, &nonce_len);
515 res = authhash(nonce, nonce_len, config->password);
516 stash_command(c, 1/*queuejump*/, authuser_opcallback, 0/*completed*/, 0/*v*/,
517 "user", quoteutf8(config->username), quoteutf8(res),
518 (char *)0);
519}
520
521static void authuser_opcallback(disorder_eclient *c,
522 struct operation *op) {
e836b1aa 523 char *r;
524
460b9539 525 D(("authuser_opcallback"));
526 if(c->rc / 100 != 2) {
527 /* Wrong password or something. We cannot proceed. */
528 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
529 disorder_eclient_close(c);
530 return;
531 }
532 /* OK, we're authenticated now. */
533 c->authenticated = 1;
e836b1aa 534 byte_xasprintf(&r, "authenticated with %s", c->ident);
535 c->callbacks->report(c->u, r);
460b9539 536 if(c->log_callbacks && !(c->ops && c->ops->opcallback == log_opcallback))
537 /* We are a log client, switch to logging mode */
538 stash_command(c, 0/*queuejump*/, log_opcallback, 0/*completed*/, c->log_v,
539 "log", (char *)0);
540}
541
542/* Output ********************************************************************/
543
544/* Chop N bytes off the front of a dynstr */
545static void consume(struct dynstr *d, int n) {
546 D(("consume %d", n));
547 assert(d->nvec >= n);
548 memmove(d->vec, d->vec + n, d->nvec - n);
549 d->nvec -= n;
550}
551
552/* Write some bytes */
553static void put(disorder_eclient *c, const char *s, size_t n) {
554 D(("put %d %.*s", c->fd, (int)n, s));
555 dynstr_append_bytes(&c->output, s, n);
556}
557
558/* Called when we can write to our FD, or at any other time */
559static void send_output(disorder_eclient *c) {
560 int n;
561
562 D(("send_output %d bytes pending", c->output.nvec));
563 if(c->state > state_connecting && c->output.nvec) {
564 n = write(c->fd, c->output.vec, c->output.nvec);
565 if(n < 0) {
566 switch(errno) {
567 case EINTR:
568 case EAGAIN:
569 break;
570 default:
571 comms_error(c, "writing to %s: %s", c->ident, strerror(errno));
572 break;
573 }
574 } else
575 consume(&c->output, n);
576 }
577}
578
579/* Input *********************************************************************/
580
581/* Called when c->fd might be readable, or at any other time */
582static void read_input(disorder_eclient *c) {
583 char *nl;
584 int n;
585 char buffer[512];
586
587 D(("read_input in state %s", states[c->state]));
588 if(c->state <= state_connected) return; /* ignore bogus calls */
589 /* read some more input */
590 n = read(c->fd, buffer, sizeof buffer);
591 if(n < 0) {
592 switch(errno) {
593 case EINTR:
594 case EAGAIN:
595 break;
596 default:
597 comms_error(c, "reading from %s: %s", c->ident, strerror(errno));
598 break;
599 }
600 return; /* no new input to process */
601 } else if(n) {
602 D(("read %d bytes: [%.*s]", n, n, buffer));
603 dynstr_append_bytes(&c->input, buffer, n);
604 } else
605 c->eof = 1;
606 /* might have more than one line to process */
607 while(c->state > state_connecting
608 && (nl = memchr(c->input.vec, '\n', c->input.nvec))) {
609 process_line(c, xstrndup(c->input.vec, nl - c->input.vec));
610 /* we might have disconnected along the way, which zogs the input buffer */
611 if(c->state > state_connecting)
612 consume(&c->input, (nl - c->input.vec) + 1);
613 }
346ba8d5 614 if(c->eof) {
460b9539 615 comms_error(c, "reading from %s: server disconnected", c->ident);
346ba8d5 616 c->authenticated = 0;
617 }
460b9539 618}
619
620/* called with a line that has just been read */
621static void process_line(disorder_eclient *c, char *line) {
622 D(("process_line %d [%s]", c->fd, line));
623 switch(c->state) {
624 case state_cmdresponse:
625 /* This is the first line of a response */
626 if(!(line[0] >= '0' && line[0] <= '9'
627 && line[1] >= '0' && line[1] <= '9'
628 && line[2] >= '0' && line[2] <= '9'
629 && line[3] == ' '))
630 fatal(0, "invalid response from server: %s", line);
631 c->rc = (line[0] * 10 + line[1]) * 10 + line[2] - 111 * '0';
632 c->line = line;
633 switch(c->rc % 10) {
634 case 3:
635 /* We need to collect the body. */
636 c->state = state_body;
637 c->vec.nvec = 0;
638 break;
639 case 4:
640 assert(c->log_callbacks != 0);
641 if(c->log_callbacks->connected)
642 c->log_callbacks->connected(c->log_v);
643 c->state = state_log;
644 break;
645 default:
646 /* We've got the whole response. Go into the idle state so the state
647 * machine knows we're done and then call the operation callback. */
648 complete(c);
649 break;
650 }
651 break;
652 case state_body:
653 if(strcmp(line, ".")) {
654 /* A line from the body */
655 vector_append(&c->vec, line + (line[0] == '.'));
656 } else {
657 /* End of the body. */
658 vector_terminate(&c->vec);
659 complete(c);
660 }
661 break;
662 case state_log:
663 if(strcmp(line, ".")) {
664 logline(c, line + (line[0] == '.'));
665 } else
666 complete(c);
667 break;
668 default:
669 assert(!"wrong state for location");
670 break;
671 }
672}
673
674/* Called when an operation completes */
675static void complete(disorder_eclient *c) {
676 struct operation *op;
677
678 D(("complete"));
679 /* Pop the operation off the queue */
680 op = c->ops;
681 c->ops = op->next;
682 if(c->opstail == &op->next)
683 c->opstail = &c->ops;
684 /* If we've pipelined a command ahead then we go straight to cmdresponser.
685 * Otherwise we go to idle, which will arrange further sends. */
686 c->state = c->ops && c->ops->sent ? state_cmdresponse : state_idle;
687 op->opcallback(c, op);
688 /* Note that we always call the opcallback even on error, though command
689 * opcallbacks generally always do the same error handling, i.e. just call
690 * protocol_error(). It's the auth* opcallbacks that have different
691 * behaviour. */
692}
693
694/* Operation setup ***********************************************************/
695
696static void stash_command_vector(disorder_eclient *c,
697 int queuejump,
698 operation_callback *opcallback,
699 void (*completed)(),
700 void *v,
701 int ncmd,
702 char **cmd) {
703 struct operation *op = xmalloc(sizeof *op);
704 struct dynstr d;
705 int n;
706
707 if(cmd) {
708 dynstr_init(&d);
709 for(n = 0; n < ncmd; ++n) {
710 if(n)
711 dynstr_append(&d, ' ');
712 dynstr_append_string(&d, quoteutf8(cmd[n]));
713 }
714 dynstr_append(&d, '\n');
715 dynstr_terminate(&d);
716 op->cmd = d.vec;
717 } else
718 op->cmd = 0; /* usually, awaiting challenge */
719 op->opcallback = opcallback;
720 op->completed = completed;
721 op->v = v;
722 op->next = 0;
723 op->client = c;
724 assert(op->sent == 0);
725 if(queuejump) {
726 /* Authentication operations jump the queue of useful commands */
727 op->next = c->ops;
728 c->ops = op;
729 if(c->opstail == &c->ops)
730 c->opstail = &op->next;
731 for(op = c->ops; op; op = op->next)
732 assert(!op->sent);
733 } else {
734 *c->opstail = op;
735 c->opstail = &op->next;
736 }
737}
738
739static void vstash_command(disorder_eclient *c,
740 int queuejump,
741 operation_callback *opcallback,
742 void (*completed)(),
743 void *v,
744 const char *cmd, va_list ap) {
745 char *arg;
746 struct vector vec;
747
748 D(("vstash_command %s", cmd ? cmd : "NULL"));
749 if(cmd) {
750 vector_init(&vec);
751 vector_append(&vec, (char *)cmd);
752 while((arg = va_arg(ap, char *)))
753 vector_append(&vec, arg);
754 stash_command_vector(c, queuejump, opcallback, completed, v,
755 vec.nvec, vec.vec);
756 } else
757 stash_command_vector(c, queuejump, opcallback, completed, v, 0, 0);
758}
759
760static void stash_command(disorder_eclient *c,
761 int queuejump,
762 operation_callback *opcallback,
763 void (*completed)(),
764 void *v,
765 const char *cmd,
766 ...) {
767 va_list ap;
768
769 va_start(ap, cmd);
770 vstash_command(c, queuejump, opcallback, completed, v, cmd, ap);
771 va_end(ap);
772}
773
774/* Command support ***********************************************************/
775
776/* for commands with a simple string response */
777static void string_response_opcallback(disorder_eclient *c,
778 struct operation *op) {
779 D(("string_response_callback"));
780 if(c->rc / 100 == 2) {
781 if(op->completed)
782 ((disorder_eclient_string_response *)op->completed)(op->v, c->line + 4);
783 } else
784 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
785}
786
787/* for commands with a simple integer response */
788static void integer_response_opcallback(disorder_eclient *c,
789 struct operation *op) {
790 D(("string_response_callback"));
791 if(c->rc / 100 == 2) {
792 if(op->completed)
793 ((disorder_eclient_integer_response *)op->completed)
794 (op->v, strtol(c->line + 4, 0, 10));
795 } else
796 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
797}
798
799/* for commands with no response */
800static void no_response_opcallback(disorder_eclient *c,
801 struct operation *op) {
802 D(("no_response_callback"));
803 if(c->rc / 100 == 2) {
804 if(op->completed)
805 ((disorder_eclient_no_response *)op->completed)(op->v);
806 } else
807 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
808}
809
810/* error callback for queue_unmarshall */
811static void eclient_queue_error(const char *msg,
812 void *u) {
813 struct operation *op = u;
814
815 protocol_error(op->client, op, -1, "error parsing queue entry: %s", msg);
816}
817
818/* for commands that expect a queue dump */
819static void queue_response_opcallback(disorder_eclient *c,
820 struct operation *op) {
821 int n;
822 struct queue_entry *q, *qh = 0, **qtail = &qh, *qlast = 0;
823
824 D(("queue_response_callback"));
825 if(c->rc / 100 == 2) {
826 /* parse the queue */
827 for(n = 0; n < c->vec.nvec; ++n) {
828 q = xmalloc(sizeof *q);
829 D(("queue_unmarshall %s", c->vec.vec[n]));
830 if(!queue_unmarshall(q, c->vec.vec[n], eclient_queue_error, op)) {
831 q->prev = qlast;
832 *qtail = q;
833 qtail = &q->next;
834 qlast = q;
835 }
836 }
837 if(op->completed)
838 ((disorder_eclient_queue_response *)op->completed)(op->v, qh);
839 } else
840 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
841}
842
843/* for 'playing' */
844static void playing_response_opcallback(disorder_eclient *c,
845 struct operation *op) {
846 struct queue_entry *q;
847
848 D(("playing_response_callback"));
849 if(c->rc / 100 == 2) {
850 switch(c->rc % 10) {
851 case 2:
852 if(queue_unmarshall(q = xmalloc(sizeof *q), c->line + 4,
853 eclient_queue_error, c))
854 return;
855 break;
856 case 9:
857 q = 0;
858 break;
859 default:
860 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
861 return;
862 }
863 if(op->completed)
864 ((disorder_eclient_queue_response *)op->completed)(op->v, q);
865 } else
866 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
867}
868
869/* for commands that expect a list of some sort */
870static void list_response_opcallback(disorder_eclient *c,
871 struct operation *op) {
872 D(("list_response_callback"));
873 if(c->rc / 100 == 2) {
874 if(op->completed)
875 ((disorder_eclient_list_response *)op->completed)(op->v,
876 c->vec.nvec,
877 c->vec.vec);
878 } else
879 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
880}
881
882/* for volume */
883static void volume_response_opcallback(disorder_eclient *c,
884 struct operation *op) {
885 int l, r;
886
887 D(("volume_response_callback"));
888 if(c->rc / 100 == 2) {
889 if(op->completed) {
890 if(sscanf(c->line + 4, "%d %d", &l, &r) != 2 || l < 0 || r < 0)
891 protocol_error(c, op, -1, "%s: invalid volume response: %s",
892 c->ident, c->line);
893 else
894 ((disorder_eclient_volume_response *)op->completed)(op->v, l, r);
895 }
896 } else
897 protocol_error(c, op, c->rc, "%s: %s", c->ident, c->line);
898}
899
900static int simple(disorder_eclient *c,
901 operation_callback *opcallback,
902 void (*completed)(),
903 void *v,
904 const char *cmd, ...) {
905 va_list ap;
906
907 va_start(ap, cmd);
908 vstash_command(c, 0/*queuejump*/, opcallback, completed, v, cmd, ap);
909 va_end(ap);
910 /* Give the state machine a kick, since we might be in state_idle */
911 disorder_eclient_polled(c, 0);
912 return 0;
913}
914
915/* Commands ******************************************************************/
916
917int disorder_eclient_version(disorder_eclient *c,
918 disorder_eclient_string_response *completed,
919 void *v) {
920 return simple(c, string_response_opcallback, (void (*)())completed, v,
921 "version", (char *)0);
922}
923
924int disorder_eclient_namepart(disorder_eclient *c,
925 disorder_eclient_string_response *completed,
926 const char *track,
927 const char *context,
928 const char *part,
929 void *v) {
930 return simple(c, string_response_opcallback, (void (*)())completed, v,
931 "part", track, context, part, (char *)0);
932}
933
934int disorder_eclient_play(disorder_eclient *c,
935 const char *track,
936 disorder_eclient_no_response *completed,
937 void *v) {
938 return simple(c, no_response_opcallback, (void (*)())completed, v,
939 "play", track, (char *)0);
940}
941
942int disorder_eclient_pause(disorder_eclient *c,
943 disorder_eclient_no_response *completed,
944 void *v) {
945 return simple(c, no_response_opcallback, (void (*)())completed, v,
946 "pause", (char *)0);
947}
948
949int disorder_eclient_resume(disorder_eclient *c,
950 disorder_eclient_no_response *completed,
951 void *v) {
952 return simple(c, no_response_opcallback, (void (*)())completed, v,
953 "resume", (char *)0);
954}
955
956int disorder_eclient_scratch(disorder_eclient *c,
957 const char *id,
958 disorder_eclient_no_response *completed,
959 void *v) {
960 return simple(c, no_response_opcallback, (void (*)())completed, v,
961 "scratch", id, (char *)0);
962}
963
964int disorder_eclient_scratch_playing(disorder_eclient *c,
965 disorder_eclient_no_response *completed,
966 void *v) {
967 return disorder_eclient_scratch(c, 0, completed, v);
968}
969
970int disorder_eclient_remove(disorder_eclient *c,
971 const char *id,
972 disorder_eclient_no_response *completed,
973 void *v) {
974 return simple(c, no_response_opcallback, (void (*)())completed, v,
975 "remove", id, (char *)0);
976}
977
978int disorder_eclient_moveafter(disorder_eclient *c,
979 const char *target,
980 int nids,
981 const char **ids,
982 disorder_eclient_no_response *completed,
983 void *v) {
984 struct vector vec;
985 int n;
986
987 vector_init(&vec);
988 vector_append(&vec, (char *)"moveafter");
989 vector_append(&vec, (char *)target);
990 for(n = 0; n < nids; ++n)
991 vector_append(&vec, (char *)ids[n]);
992 stash_command_vector(c, 0/*queuejump*/, no_response_opcallback, completed, v,
993 vec.nvec, vec.vec);
994 disorder_eclient_polled(c, 0);
995 return 0;
996}
997
998int disorder_eclient_recent(disorder_eclient *c,
999 disorder_eclient_queue_response *completed,
1000 void *v) {
1001 return simple(c, queue_response_opcallback, (void (*)())completed, v,
1002 "recent", (char *)0);
1003}
1004
1005int disorder_eclient_queue(disorder_eclient *c,
1006 disorder_eclient_queue_response *completed,
1007 void *v) {
1008 return simple(c, queue_response_opcallback, (void (*)())completed, v,
1009 "queue", (char *)0);
1010}
1011
1012int disorder_eclient_files(disorder_eclient *c,
1013 disorder_eclient_list_response *completed,
1014 const char *dir,
1015 const char *re,
1016 void *v) {
1017 return simple(c, list_response_opcallback, (void (*)())completed, v,
1018 "files", dir, re, (char *)0);
1019}
1020
1021int disorder_eclient_dirs(disorder_eclient *c,
1022 disorder_eclient_list_response *completed,
1023 const char *dir,
1024 const char *re,
1025 void *v) {
1026 return simple(c, list_response_opcallback, (void (*)())completed, v,
1027 "dirs", dir, re, (char *)0);
1028}
1029
1030int disorder_eclient_playing(disorder_eclient *c,
1031 disorder_eclient_queue_response *completed,
1032 void *v) {
1033 return simple(c, playing_response_opcallback, (void (*)())completed, v,
1034 "playing", (char *)0);
1035}
1036
1037int disorder_eclient_length(disorder_eclient *c,
1038 disorder_eclient_integer_response *completed,
1039 const char *track,
1040 void *v) {
1041 return simple(c, integer_response_opcallback, (void (*)())completed, v,
1042 "length", track, (char *)0);
1043}
1044
1045int disorder_eclient_volume(disorder_eclient *c,
1046 disorder_eclient_volume_response *completed,
1047 int l, int r,
1048 void *v) {
1049 char sl[64], sr[64];
1050
1051 if(l < 0 && r < 0) {
1052 return simple(c, volume_response_opcallback, (void (*)())completed, v,
1053 "volume", (char *)0);
1054 } else if(l >= 0 && r >= 0) {
1055 assert(l <= 100);
1056 assert(r <= 100);
1057 byte_snprintf(sl, sizeof sl, "%d", l);
1058 byte_snprintf(sr, sizeof sr, "%d", r);
1059 return simple(c, volume_response_opcallback, (void (*)())completed, v,
1060 "volume", sl, sr, (char *)0);
1061 } else {
1062 assert(!"invalid arguments to disorder_eclient_volume");
1063 return -1; /* gcc is being dim */
1064 }
1065}
1066
1067int disorder_eclient_enable(disorder_eclient *c,
1068 disorder_eclient_no_response *completed,
1069 void *v) {
1070 return simple(c, no_response_opcallback, (void (*)())completed, v,
1071 "enable", (char *)0);
1072}
1073
1074int disorder_eclient_disable(disorder_eclient *c,
1075 disorder_eclient_no_response *completed,
1076 void *v){
1077 return simple(c, no_response_opcallback, (void (*)())completed, v,
1078 "disable", (char *)0);
1079}
1080
1081int disorder_eclient_random_enable(disorder_eclient *c,
1082 disorder_eclient_no_response *completed,
1083 void *v){
1084 return simple(c, no_response_opcallback, (void (*)())completed, v,
1085 "random-enable", (char *)0);
1086}
1087
1088int disorder_eclient_random_disable(disorder_eclient *c,
1089 disorder_eclient_no_response *completed,
1090 void *v){
1091 return simple(c, no_response_opcallback, (void (*)())completed, v,
1092 "random-disable", (char *)0);
1093}
1094
1095int disorder_eclient_get(disorder_eclient *c,
1096 disorder_eclient_string_response *completed,
1097 const char *track, const char *pref,
1098 void *v) {
1099 return simple(c, string_response_opcallback, (void (*)())completed, v,
1100 "get", track, pref, (char *)0);
1101}
1102
1103int disorder_eclient_set(disorder_eclient *c,
1104 disorder_eclient_no_response *completed,
1105 const char *track, const char *pref,
1106 const char *value,
1107 void *v) {
1108 return simple(c, no_response_opcallback, (void (*)())completed, v,
1109 "set", track, pref, value, (char *)0);
1110}
1111
1112int disorder_eclient_unset(disorder_eclient *c,
1113 disorder_eclient_no_response *completed,
1114 const char *track, const char *pref,
1115 void *v) {
1116 return simple(c, no_response_opcallback, (void (*)())completed, v,
1117 "unset", track, pref, (char *)0);
1118}
1119
1120int disorder_eclient_resolve(disorder_eclient *c,
1121 disorder_eclient_string_response *completed,
1122 const char *track,
1123 void *v) {
1124 return simple(c, string_response_opcallback, (void (*)())completed, v,
1125 "resolve", track, (char *)0);
1126}
1127
1128int disorder_eclient_search(disorder_eclient *c,
1129 disorder_eclient_list_response *completed,
1130 const char *terms,
1131 void *v) {
1132 if(!split(terms, 0, SPLIT_QUOTES, 0, 0)) return -1;
1133 return simple(c, list_response_opcallback, (void (*)())completed, v,
1134 "search", terms, (char *)0);
1135}
1136
7858930d 1137int disorder_eclient_nop(disorder_eclient *c,
1138 disorder_eclient_no_response *completed,
1139 void *v) {
1140 return simple(c, no_response_opcallback, (void (*)())completed, v,
1141 "nop", (char *)0);
1142}
1143
460b9539 1144/* Log clients ***************************************************************/
1145
60b95b6e 1146/** @brief Monitor the server log
1147 * @param c Client
1148 * @param callbacks Functions to call when anything happens
1149 * @param v Passed to @p callbacks functions
1150 *
1151 * Once a client is being used for logging it cannot be used for anything else.
1152 * There is magic in authuser_opcallback() to re-submit the @c log command
1153 * after reconnection.
6d1302f0
RK
1154 *
1155 * NB that the @c state callback may be called from within this function,
1156 * i.e. not solely later on from the event loop callback.
60b95b6e 1157 */
460b9539 1158int disorder_eclient_log(disorder_eclient *c,
1159 const disorder_eclient_log_callbacks *callbacks,
1160 void *v) {
1161 if(c->log_callbacks) return -1;
1162 c->log_callbacks = callbacks;
1163 c->log_v = v;
6d1302f0
RK
1164 /* Repoort initial state */
1165 if(c->log_callbacks->state)
1166 c->log_callbacks->state(c->log_v, c->statebits);
460b9539 1167 stash_command(c, 0/*queuejump*/, log_opcallback, 0/*completed*/, v,
1168 "log", (char *)0);
1169 return 0;
1170}
1171
1172/* If we get here we've stopped being a log client */
1173static void log_opcallback(disorder_eclient *c,
1174 struct operation attribute((unused)) *op) {
1175 D(("log_opcallback"));
1176 c->log_callbacks = 0;
1177 c->log_v = 0;
1178}
1179
1180/* error callback for log line parsing */
1181static void logline_error(const char *msg, void *u) {
1182 disorder_eclient *c = u;
1183 protocol_error(c, c->ops, -1, "error parsing log line: %s", msg);
1184}
1185
1186/* process a single log line */
1187static void logline(disorder_eclient *c, const char *line) {
1188 int nvec, n;
1189 char **vec;
1190 uintmax_t when;
1191
7b73a310 1192 D(("log_opcallback [%s]", line));
460b9539 1193 vec = split(line, &nvec, SPLIT_QUOTES, logline_error, c);
1194 if(nvec < 2) return; /* probably an error, already
1195 * reported */
1196 if(sscanf(vec[0], "%"SCNxMAX, &when) != 1) {
1197 /* probably the wrong side of a format change */
1198 protocol_error(c, c->ops, -1, "invalid log timestamp '%s'", vec[0]);
1199 return;
1200 }
1201 /* TODO: do something with the time */
1202 n = TABLE_FIND(logentry_handlers, struct logentry_handler, name, vec[1]);
1203 if(n < 0) return; /* probably a future command */
1204 vec += 2;
1205 nvec -= 2;
1206 if(nvec < logentry_handlers[n].min || nvec > logentry_handlers[n].max)
1207 return;
1208 logentry_handlers[n].handler(c, nvec, vec);
1209}
1210
1211static void logentry_completed(disorder_eclient *c,
1212 int attribute((unused)) nvec, char **vec) {
1213 if(!c->log_callbacks->completed) return;
277f7f59 1214 c->statebits &= ~DISORDER_PLAYING;
460b9539 1215 c->log_callbacks->completed(c->log_v, vec[0]);
8f763f1b
RK
1216 if(c->log_callbacks->state)
1217 c->log_callbacks->state(c->log_v, c->statebits | DISORDER_CONNECTED);
460b9539 1218}
1219
1220static void logentry_failed(disorder_eclient *c,
1221 int attribute((unused)) nvec, char **vec) {
1222 if(!c->log_callbacks->failed)return;
277f7f59 1223 c->statebits &= ~DISORDER_PLAYING;
460b9539 1224 c->log_callbacks->failed(c->log_v, vec[0], vec[1]);
8f763f1b
RK
1225 if(c->log_callbacks->state)
1226 c->log_callbacks->state(c->log_v, c->statebits | DISORDER_CONNECTED);
460b9539 1227}
1228
1229static void logentry_moved(disorder_eclient *c,
1230 int attribute((unused)) nvec, char **vec) {
1231 if(!c->log_callbacks->moved) return;
1232 c->log_callbacks->moved(c->log_v, vec[0]);
1233}
1234
1235static void logentry_playing(disorder_eclient *c,
1236 int attribute((unused)) nvec, char **vec) {
1237 if(!c->log_callbacks->playing) return;
277f7f59 1238 c->statebits |= DISORDER_PLAYING;
460b9539 1239 c->log_callbacks->playing(c->log_v, vec[0], vec[1]);
8f763f1b
RK
1240 if(c->log_callbacks->state)
1241 c->log_callbacks->state(c->log_v, c->statebits | DISORDER_CONNECTED);
460b9539 1242}
1243
1244static void logentry_queue(disorder_eclient *c,
1245 int attribute((unused)) nvec, char **vec) {
1246 struct queue_entry *q;
1247
1248 if(!c->log_callbacks->completed) return;
1249 q = xmalloc(sizeof *q);
1250 if(queue_unmarshall_vec(q, nvec, vec, eclient_queue_error, c))
1251 return; /* bogus */
1252 c->log_callbacks->queue(c->log_v, q);
1253}
1254
1255static void logentry_recent_added(disorder_eclient *c,
1256 int attribute((unused)) nvec, char **vec) {
1257 struct queue_entry *q;
1258
1259 if(!c->log_callbacks->recent_added) return;
1260 q = xmalloc(sizeof *q);
1261 if(queue_unmarshall_vec(q, nvec, vec, eclient_queue_error, c))
1262 return; /* bogus */
1263 c->log_callbacks->recent_added(c->log_v, q);
1264}
1265
1266static void logentry_recent_removed(disorder_eclient *c,
1267 int attribute((unused)) nvec, char **vec) {
1268 if(!c->log_callbacks->recent_removed) return;
1269 c->log_callbacks->recent_removed(c->log_v, vec[0]);
1270}
1271
1272static void logentry_removed(disorder_eclient *c,
1273 int attribute((unused)) nvec, char **vec) {
1274 if(!c->log_callbacks->removed) return;
1275 c->log_callbacks->removed(c->log_v, vec[0], vec[1]);
1276}
1277
1278static void logentry_scratched(disorder_eclient *c,
1279 int attribute((unused)) nvec, char **vec) {
1280 if(!c->log_callbacks->scratched) return;
277f7f59 1281 c->statebits &= ~DISORDER_PLAYING;
460b9539 1282 c->log_callbacks->scratched(c->log_v, vec[0], vec[1]);
8f763f1b
RK
1283 if(c->log_callbacks->state)
1284 c->log_callbacks->state(c->log_v, c->statebits | DISORDER_CONNECTED);
460b9539 1285}
1286
1287static const struct {
1288 unsigned long bit;
1289 const char *enable;
1290 const char *disable;
1291} statestrings[] = {
1292 { DISORDER_PLAYING_ENABLED, "enable_play", "disable_play" },
1293 { DISORDER_RANDOM_ENABLED, "enable_random", "disable_random" },
1294 { DISORDER_TRACK_PAUSED, "pause", "resume" },
1295};
1296#define NSTATES (int)(sizeof states / sizeof *states)
1297
1298static void logentry_state(disorder_eclient *c,
1299 int attribute((unused)) nvec, char **vec) {
1300 int n;
1301
1302 for(n = 0; n < NSTATES; ++n)
1303 if(!strcmp(vec[0], statestrings[n].enable)) {
1304 c->statebits |= statestrings[n].bit;
1305 break;
1306 } else if(!strcmp(vec[0], statestrings[n].disable)) {
1307 c->statebits &= ~statestrings[n].bit;
1308 break;
1309 }
1310 if(!c->log_callbacks->state) return;
8f763f1b 1311 c->log_callbacks->state(c->log_v, c->statebits | DISORDER_CONNECTED);
460b9539 1312}
1313
1314static void logentry_volume(disorder_eclient *c,
1315 int attribute((unused)) nvec, char **vec) {
1316 long l, r;
1317
1318 if(!c->log_callbacks->volume) return;
1319 if(xstrtol(&l, vec[0], 0, 10)
1320 || xstrtol(&r, vec[1], 0, 10)
1321 || l < 0 || l > INT_MAX
1322 || r < 0 || r > INT_MAX)
1323 return; /* bogus */
1324 c->log_callbacks->volume(c->log_v, (int)l, (int)r);
1325}
1326
00959300
RK
1327/** @brief Convert @p statebits to a string */
1328char *disorder_eclient_interpret_state(unsigned long statebits) {
1329 struct dynstr d[1];
1330 size_t n;
1331
1332 static const struct {
1333 unsigned long bit;
1334 const char *name;
1335 } bits[] = {
1336 { DISORDER_PLAYING_ENABLED, "playing_enabled" },
1337 { DISORDER_RANDOM_ENABLED, "random_enabled" },
1338 { DISORDER_TRACK_PAUSED, "track_paused" },
1339 { DISORDER_PLAYING, "playing" },
1340 { DISORDER_CONNECTED, "connected" },
1341 };
1342#define NBITS (sizeof bits / sizeof *bits)
1343
1344 dynstr_init(d);
6d1302f0
RK
1345 if(!statebits)
1346 dynstr_append(d, '0');
00959300
RK
1347 for(n = 0; n < NBITS; ++n)
1348 if(statebits & bits[n].bit) {
1349 if(d->nvec)
1350 dynstr_append(d, '|');
1351 dynstr_append_string(d, bits[n].name);
1352 statebits ^= bits[n].bit;
1353 }
1354 if(statebits) {
1355 char s[20];
1356
1357 if(d->nvec)
1358 dynstr_append(d, '|');
1359 sprintf(s, "%#lx", statebits);
1360 dynstr_append_string(d, s);
1361 }
1362 dynstr_terminate(d);
1363 return d->vec;
1364}
1365
460b9539 1366/*
1367Local Variables:
1368c-basic-offset:2
1369comment-column:40
1370fill-column:79
1371indent-tabs-mode:nil
1372End:
1373*/