2 * This file is part of DisOrder.
3 * Copyright (C) 2004-2009 Richard Kettlewell
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.
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.
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/>.
18 /** @file lib/client.c
19 * @brief Simple C client
21 * See @ref lib/eclient.c for an asynchronous-capable client
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
44 #include "inputline.h"
51 #include "client-common.h"
56 /** @brief Client handle contents */
57 struct disorder_client {
58 /** @brief Stream to read from */
60 /** @brief Stream to write to */
62 /** @brief Peer description */
64 /** @brief Username */
66 /** @brief Report errors to @c stderr */
68 /** @brief Last error string */
72 /** @brief Create a new client
73 * @param verbose If nonzero, write extra junk to stderr
74 * @return Pointer to new client
76 * You must call disorder_connect(), disorder_connect_user() or
77 * disorder_connect_cookie() to connect it. Use disorder_close() to
78 * dispose of the client when finished with it.
80 disorder_client *disorder_new(int verbose) {
81 disorder_client *c = xmalloc(sizeof (struct disorder_client));
87 /** @brief Read a response line
89 * @param rp Where to store response, or NULL (UTF-8)
90 * @return Response code 0-999 or -1 on error
92 static int response(disorder_client *c, char **rp) {
95 if(inputline(c->ident, c->fpin, &r, '\n')) {
96 byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
99 D(("response: %s", r));
102 if(r[0] >= '0' && r[0] <= '9'
103 && r[1] >= '0' && r[1] <= '9'
104 && r[2] >= '0' && r[2] <= '9'
107 return (r[0] * 10 + r[1]) * 10 + r[2] - 111 * '0';
109 c->last = "invalid reply format";
110 disorder_error(0, "invalid reply format from %s", c->ident);
115 /** @brief Return last response string
117 * @return Last response string (UTF-8, English) or NULL
119 const char *disorder_last(disorder_client *c) {
123 /** @brief Read and partially parse a response
125 * @param rp Where to store response text (or NULL) (UTF-8)
126 * @return 0 on success, non-0 on error
128 * 5xx responses count as errors.
130 * @p rp will NOT be filled in for xx9 responses (where it is just
131 * commentary for a command where it would normally be meaningful).
133 * NB that the response will NOT be converted to the local encoding.
135 static int check_response(disorder_client *c, char **rp) {
139 if((rc = response(c, &r)) == -1)
141 else if(rc / 100 == 2) {
143 *rp = (rc % 10 == 9) ? 0 : xstrdup(r + 4);
148 disorder_error(0, "from %s: %s", c->ident, utf82mb(r));
154 /** @brief Issue a command and parse a simple response
156 * @param rp Where to store result, or NULL
158 * @param body Body or NULL
159 * @param nbody Length of body or -1
160 * @param ap Arguments (UTF-8), terminated by (char *)0
161 * @return 0 on success, non-0 on error
163 * 5xx responses count as errors.
165 * @p rp will NOT be filled in for xx9 responses (where it is just
166 * commentary for a command where it would normally be meaningful).
168 * NB that the response will NOT be converted to the local encoding
169 * nor will quotes be stripped. See dequote().
171 * If @p body is not NULL then the body is sent immediately after the
172 * command. @p nbody should be the number of lines or @c -1 to count
173 * them if @p body is NULL-terminated.
175 * Usually you would call this via one of the following interfaces:
176 * - disorder_simple()
177 * - disorder_simple_body()
178 * - disorder_simple_list()
180 static int disorder_simple_v(disorder_client *c,
183 char **body, int nbody,
189 c->last = "not connected";
190 disorder_error(0, "not connected to server");
195 dynstr_append_string(&d, cmd);
196 while((arg = va_arg(ap, const char *))) {
197 dynstr_append(&d, ' ');
198 dynstr_append_string(&d, quoteutf8(arg));
200 dynstr_append(&d, '\n');
201 dynstr_terminate(&d);
202 D(("command: %s", d.vec));
203 if(fputs(d.vec, c->fpout) < 0)
208 for(nbody = 0; body[nbody]; ++nbody)
210 for(int n = 0; n < nbody; ++n) {
211 if(body[n][0] == '.')
212 if(fputc('.', c->fpout) < 0)
214 if(fputs(body[n], c->fpout) < 0)
216 if(fputc('\n', c->fpout) < 0)
219 if(fputs(".\n", c->fpout) < 0)
225 return check_response(c, rp);
227 byte_xasprintf((char **)&c->last, "write error: %s", strerror(errno));
228 disorder_error(errno, "error writing to %s", c->ident);
232 /** @brief Issue a command and parse a simple response
234 * @param rp Where to store result, or NULL (UTF-8)
236 * @return 0 on success, non-0 on error
238 * The remaining arguments are command arguments, terminated by (char
239 * *)0. They should be in UTF-8.
241 * 5xx responses count as errors.
243 * @p rp will NOT be filled in for xx9 responses (where it is just
244 * commentary for a command where it would normally be meaningful).
246 * NB that the response will NOT be converted to the local encoding
247 * nor will quotes be stripped. See dequote().
249 static int disorder_simple(disorder_client *c,
251 const char *cmd, ...) {
256 ret = disorder_simple_v(c, rp, cmd, 0, 0, ap);
261 /** @brief Issue a command with a body and parse a simple response
263 * @param rp Where to store result, or NULL (UTF-8)
264 * @param body Pointer to body
265 * @param nbody Size of body
267 * @return 0 on success, non-0 on error
269 * See disorder_simple().
271 static int disorder_simple_body(disorder_client *c,
273 char **body, int nbody,
274 const char *cmd, ...) {
279 ret = disorder_simple_v(c, rp, cmd, body, nbody, ap);
284 /** @brief Dequote a result string
285 * @param rc 0 on success, non-0 on error
286 * @param rp Where result string is stored (UTF-8)
289 * This is used as a wrapper around disorder_simple() to dequote
292 static int dequote(int rc, char **rp) {
296 if((rr = split(*rp, 0, SPLIT_QUOTES, 0, 0)) && *rr) {
302 disorder_error(0, "invalid reply: %s", *rp);
307 /** @brief Generic connection routine
308 * @param conf Configuration to follow
310 * @param username Username to log in with or NULL
311 * @param password Password to log in with or NULL
312 * @param cookie Cookie to log in with or NULL
313 * @return 0 on success, non-0 on error
315 * @p cookie is tried first if not NULL. If it is NULL then @p
316 * username must not be. If @p username is not NULL then nor may @p
319 int disorder_connect_generic(struct config *conf,
321 const char *username,
322 const char *password,
323 const char *cookie) {
324 int fd = -1, fd2 = -1, nrvec = 0, rc;
325 unsigned char *nonce = NULL;
328 char *r = NULL, **rvec = NULL;
329 const char *protocol, *algorithm, *challenge;
330 struct sockaddr *sa = NULL;
333 if((salen = find_server(conf, &sa, &c->ident)) == (socklen_t)-1)
335 c->fpin = c->fpout = 0;
336 if((fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0) {
337 byte_xasprintf((char **)&c->last, "socket: %s", strerror(errno));
338 disorder_error(errno, "error calling socket");
341 if(connect(fd, sa, salen) < 0) {
342 byte_xasprintf((char **)&c->last, "connect: %s", strerror(errno));
343 disorder_error(errno, "error calling connect");
346 if((fd2 = dup(fd)) < 0) {
347 byte_xasprintf((char **)&c->last, "dup: %s", strerror(errno));
348 disorder_error(errno, "error calling dup");
351 if(!(c->fpin = fdopen(fd, "rb"))) {
352 byte_xasprintf((char **)&c->last, "fdopen: %s", strerror(errno));
353 disorder_error(errno, "error calling fdopen");
357 if(!(c->fpout = fdopen(fd2, "wb"))) {
358 byte_xasprintf((char **)&c->last, "fdopen: %s", strerror(errno));
359 disorder_error(errno, "error calling fdopen");
363 if((rc = disorder_simple(c, &r, 0, (const char *)0)))
365 if(!(rvec = split(r, &nrvec, SPLIT_QUOTES, 0, 0)))
368 c->last = "cannot parse server greeting";
369 disorder_error(0, "cannot parse server greeting %s", r);
373 if(strcmp(protocol, "2")) {
374 c->last = "unknown protocol version";
375 disorder_error(0, "unknown protocol version: %s", protocol);
380 if(!(nonce = unhex(challenge, &nl)))
383 if(!dequote(disorder_simple(c, &c->user, "cookie", cookie, (char *)0),
385 return 0; /* success */
387 c->last = "cookie failed and no username";
388 disorder_error(0, "cookie did not work and no username available");
392 if(!(res = authhash(nonce, nl, password, algorithm))) {
393 c->last = "error computing authorization hash";
396 if((rc = disorder_simple(c, 0, "user", username, res, (char *)0)))
398 c->user = xstrdup(username);
400 free_strings(nrvec, rvec);
416 if(fd2 != -1) close(fd2);
417 if(fd != -1) close(fd);
421 /** @brief Connect a client with a specified username and password
423 * @param username Username to log in with
424 * @param password Password to log in with
425 * @return 0 on success, non-0 on error
427 int disorder_connect_user(disorder_client *c,
428 const char *username,
429 const char *password) {
430 return disorder_connect_generic(config,
437 /** @brief Connect a client
439 * @return 0 on success, non-0 on error
441 * The connection will use the username and password found in @ref
442 * config, or directly from the database if no password is found and
443 * the database is readable (usually only for root).
445 int disorder_connect(disorder_client *c) {
446 const char *username, *password;
448 if(!(username = config->username)) {
449 c->last = "no username";
450 disorder_error(0, "no username configured");
453 password = config->password;
454 /* Maybe we can read the database */
455 if(!password && trackdb_readable()) {
456 trackdb_init(TRACKDB_NO_RECOVER|TRACKDB_NO_UPGRADE);
457 trackdb_open(TRACKDB_READ_ONLY);
458 password = trackdb_get_password(username);
463 c->last = "no password";
464 disorder_error(0, "no password configured for user '%s'", username);
467 return disorder_connect_generic(config,
474 /** @brief Connect a client
476 * @param cookie Cookie to log in with, or NULL
477 * @return 0 on success, non-0 on error
479 * If @p cookie is NULL or does not work then we attempt to log in as
480 * guest instead (so when the cookie expires only an extra round trip
481 * is needed rathre than a complete new login).
483 int disorder_connect_cookie(disorder_client *c,
484 const char *cookie) {
485 return disorder_connect_generic(config,
492 /** @brief Close a client
494 * @return 0 on succcess, non-0 on errior
496 * The client is still closed even on error. It might well be
497 * appropriate to ignore the return value.
499 int disorder_close(disorder_client *c) {
503 if(fclose(c->fpin) < 0) {
504 byte_xasprintf((char **)&c->last, "fclose: %s", strerror(errno));
505 disorder_error(errno, "error calling fclose");
511 if(fclose(c->fpout) < 0) {
512 byte_xasprintf((char **)&c->last, "fclose: %s", strerror(errno));
513 disorder_error(errno, "error calling fclose");
525 /** @brief Play a track
527 * @param track Track to play (UTF-8)
528 * @return 0 on success, non-0 on error
530 int disorder_play(disorder_client *c, const char *track) {
531 return disorder_simple(c, 0, "play", track, (char *)0);
534 /** @brief Remove a track
536 * @param track Track to remove (UTF-8)
537 * @return 0 on success, non-0 on error
539 int disorder_remove(disorder_client *c, const char *track) {
540 return disorder_simple(c, 0, "remove", track, (char *)0);
543 /** @brief Move a track
545 * @param track Track to move (UTF-8)
546 * @param delta Distance to move by
547 * @return 0 on success, non-0 on error
549 int disorder_move(disorder_client *c, const char *track, int delta) {
552 byte_snprintf(d, sizeof d, "%d", delta);
553 return disorder_simple(c, 0, "move", track, d, (char *)0);
556 /** @brief Enable play
558 * @return 0 on success, non-0 on error
560 int disorder_enable(disorder_client *c) {
561 return disorder_simple(c, 0, "enable", (char *)0);
564 /** @brief Disable play
566 * @return 0 on success, non-0 on error
568 int disorder_disable(disorder_client *c) {
569 return disorder_simple(c, 0, "disable", (char *)0);
572 /** @brief Scratch the currently playing track
573 * @param id Playing track ID or NULL (UTF-8)
575 * @return 0 on success, non-0 on error
577 int disorder_scratch(disorder_client *c, const char *id) {
578 return disorder_simple(c, 0, "scratch", id, (char *)0);
581 /** @brief Shut down the server
583 * @return 0 on success, non-0 on error
585 int disorder_shutdown(disorder_client *c) {
586 return disorder_simple(c, 0, "shutdown", (char *)0);
589 /** @brief Make the server re-read its configuration
591 * @return 0 on success, non-0 on error
593 int disorder_reconfigure(disorder_client *c) {
594 return disorder_simple(c, 0, "reconfigure", (char *)0);
597 /** @brief Rescan tracks
599 * @return 0 on success, non-0 on error
601 int disorder_rescan(disorder_client *c) {
602 return disorder_simple(c, 0, "rescan", (char *)0);
605 /** @brief Get server version number
607 * @param rp Where to store version string (UTF-8)
608 * @return 0 on success, non-0 on error
610 int disorder_version(disorder_client *c, char **rp) {
611 return dequote(disorder_simple(c, rp, "version", (char *)0), rp);
614 static void client_error(const char *msg,
615 void attribute((unused)) *u) {
616 disorder_error(0, "error parsing reply: %s", msg);
619 /** @brief Get currently playing track
621 * @param qp Where to store track information
622 * @return 0 on success, non-0 on error
624 * @p qp gets NULL if no track is playing.
626 int disorder_playing(disorder_client *c, struct queue_entry **qp) {
628 struct queue_entry *q;
631 if((rc = disorder_simple(c, &r, "playing", (char *)0)))
634 q = xmalloc(sizeof *q);
635 if(queue_unmarshall(q, r, client_error, 0))
643 /** @brief Fetch the queue, recent list, etc */
644 static int disorder_somequeue(disorder_client *c,
645 const char *cmd, struct queue_entry **qp) {
646 struct queue_entry *qh, **qt = &qh, *q;
650 if((rc = disorder_simple(c, 0, cmd, (char *)0)))
652 while(inputline(c->ident, c->fpin, &l, '\n') >= 0) {
653 if(!strcmp(l, ".")) {
658 q = xmalloc(sizeof *q);
659 if(!queue_unmarshall(q, l, client_error, 0)) {
664 if(ferror(c->fpin)) {
665 byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
666 disorder_error(errno, "error reading %s", c->ident);
668 c->last = "input error: unexpxected EOF";
669 disorder_error(0, "error reading %s: unexpected EOF", c->ident);
674 /** @brief Get recently played tracks
676 * @param qp Where to store track information
677 * @return 0 on success, non-0 on error
679 * The last entry in the list is the most recently played track.
681 int disorder_recent(disorder_client *c, struct queue_entry **qp) {
682 return disorder_somequeue(c, "recent", qp);
687 * @param qp Where to store track information
688 * @return 0 on success, non-0 on error
690 * The first entry in the list will be played next.
692 int disorder_queue(disorder_client *c, struct queue_entry **qp) {
693 return disorder_somequeue(c, "queue", qp);
696 /** @brief Read a dot-stuffed list
698 * @param vecp Where to store list (UTF-8)
699 * @param nvecp Where to store number of items, or NULL
700 * @return 0 on success, non-0 on error
702 * The list will have a final NULL not counted in @p nvecp.
704 static int readlist(disorder_client *c, char ***vecp, int *nvecp) {
709 while(inputline(c->ident, c->fpin, &l, '\n') >= 0) {
710 if(!strcmp(l, ".")) {
711 vector_terminate(&v);
717 vector_append(&v, l + (*l == '.'));
719 if(ferror(c->fpin)) {
720 byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
721 disorder_error(errno, "error reading %s", c->ident);
723 c->last = "input error: unexpxected EOF";
724 disorder_error(0, "error reading %s: unexpected EOF", c->ident);
729 /** @brief Issue a comamnd and get a list response
731 * @param vecp Where to store list (UTF-8)
732 * @param nvecp Where to store number of items, or NULL
734 * @return 0 on success, non-0 on error
736 * The remaining arguments are command arguments, terminated by (char
737 * *)0. They should be in UTF-8.
739 * 5xx responses count as errors.
741 * See disorder_simple().
743 static int disorder_simple_list(disorder_client *c,
744 char ***vecp, int *nvecp,
745 const char *cmd, ...) {
750 ret = disorder_simple_v(c, 0, cmd, 0, 0, ap);
753 return readlist(c, vecp, nvecp);
756 /** @brief List directories below @p dir
758 * @param dir Directory to list, or NULL for root (UTF-8)
759 * @param re Regexp that results must match, or NULL (UTF-8)
760 * @param vecp Where to store list (UTF-8)
761 * @param nvecp Where to store number of items, or NULL
762 * @return 0 on success, non-0 on error
764 int disorder_directories(disorder_client *c, const char *dir, const char *re,
765 char ***vecp, int *nvecp) {
766 return disorder_simple_list(c, vecp, nvecp, "dirs", dir, re, (char *)0);
769 /** @brief List files below @p dir
771 * @param dir Directory to list, or NULL for root (UTF-8)
772 * @param re Regexp that results must match, or NULL (UTF-8)
773 * @param vecp Where to store list (UTF-8)
774 * @param nvecp Where to store number of items, or NULL
775 * @return 0 on success, non-0 on error
777 int disorder_files(disorder_client *c, const char *dir, const char *re,
778 char ***vecp, int *nvecp) {
779 return disorder_simple_list(c, vecp, nvecp, "files", dir, re, (char *)0);
782 /** @brief List files and directories below @p dir
784 * @param dir Directory to list, or NULL for root (UTF-8)
785 * @param re Regexp that results must match, or NULL (UTF-8)
786 * @param vecp Where to store list (UTF-8)
787 * @param nvecp Where to store number of items, or NULL
788 * @return 0 on success, non-0 on error
790 int disorder_allfiles(disorder_client *c, const char *dir, const char *re,
791 char ***vecp, int *nvecp) {
792 return disorder_simple_list(c, vecp, nvecp, "allfiles", dir, re, (char *)0);
795 /** @brief Return the user we logged in with
797 * @return User name (owned by @p c, don't modify)
799 char *disorder_user(disorder_client *c) {
803 /** @brief Set a track preference
805 * @param track Track name (UTF-8)
806 * @param key Preference name (UTF-8)
807 * @param value Preference value (UTF-8)
808 * @return 0 on success, non-0 on error
810 int disorder_set(disorder_client *c, const char *track,
811 const char *key, const char *value) {
812 return disorder_simple(c, 0, "set", track, key, value, (char *)0);
815 /** @brief Unset a track preference
817 * @param track Track name (UTF-8)
818 * @param key Preference name (UTF-8)
819 * @return 0 on success, non-0 on error
821 int disorder_unset(disorder_client *c, const char *track,
823 return disorder_simple(c, 0, "unset", track, key, (char *)0);
826 /** @brief Get a track preference
828 * @param track Track name (UTF-8)
829 * @param key Preference name (UTF-8)
830 * @param valuep Where to store preference value (UTF-8)
831 * @return 0 on success, non-0 on error
833 int disorder_get(disorder_client *c,
834 const char *track, const char *key, char **valuep) {
835 return dequote(disorder_simple(c, valuep, "get", track, key, (char *)0),
839 static void pref_error_handler(const char *msg,
840 void attribute((unused)) *u) {
841 disorder_error(0, "error handling 'prefs' reply: %s", msg);
844 /** @brief Get all preferences for a trcak
846 * @param track Track name
847 * @param kp Where to store linked list of preferences
848 * @return 0 on success, non-0 on error
850 int disorder_prefs(disorder_client *c, const char *track, struct kvp **kp) {
852 int nvec, npvec, n, rc;
855 if((rc = disorder_simple_list(c, &vec, &nvec, "prefs", track, (char *)0)))
857 for(n = 0; n < nvec; ++n) {
858 if(!(pvec = split(vec[n], &npvec, SPLIT_QUOTES, pref_error_handler, 0)))
861 pref_error_handler("malformed response", 0);
864 *kp = k = xmalloc(sizeof *k);
873 /** @brief Parse a boolean response
874 * @param cmd Command for use in error messsage
875 * @param value Result from server
876 * @param flagp Where to store result
877 * @return 0 on success, non-0 on error
879 static int boolean(const char *cmd, const char *value,
881 if(!strcmp(value, "yes")) *flagp = 1;
882 else if(!strcmp(value, "no")) *flagp = 0;
884 disorder_error(0, "malformed response to '%s'", cmd);
890 /** @brief Test whether a track exists
892 * @param track Track name (UTF-8)
893 * @param existsp Where to store result (non-0 iff does exist)
894 * @return 0 on success, non-0 on error
896 int disorder_exists(disorder_client *c, const char *track, int *existsp) {
900 if((rc = disorder_simple(c, &v, "exists", track, (char *)0)))
902 return boolean("exists", v, existsp);
905 /** @brief Test whether playing is enabled
907 * @param enabledp Where to store result (non-0 iff enabled)
908 * @return 0 on success, non-0 on error
910 int disorder_enabled(disorder_client *c, int *enabledp) {
914 if((rc = disorder_simple(c, &v, "enabled", (char *)0)))
916 return boolean("enabled", v, enabledp);
919 /** @brief Get the length of a track
921 * @param track Track name (UTF-8)
922 * @param valuep Where to store length in seconds
923 * @return 0 on success, non-0 on error
925 * If the length is unknown 0 is returned.
927 int disorder_length(disorder_client *c, const char *track,
932 if((rc = disorder_simple(c, &value, "length", track, (char *)0)))
934 *valuep = atol(value);
938 /** @brief Search for tracks
940 * @param terms Search terms (UTF-8)
941 * @param vecp Where to store list (UTF-8)
942 * @param nvecp Where to store number of items, or NULL
943 * @return 0 on success, non-0 on error
945 int disorder_search(disorder_client *c, const char *terms,
946 char ***vecp, int *nvecp) {
947 return disorder_simple_list(c, vecp, nvecp, "search", terms, (char *)0);
950 /** @brief Enable random play
952 * @return 0 on success, non-0 on error
954 int disorder_random_enable(disorder_client *c) {
955 return disorder_simple(c, 0, "random-enable", (char *)0);
958 /** @brief Disable random play
960 * @return 0 on success, non-0 on error
962 int disorder_random_disable(disorder_client *c) {
963 return disorder_simple(c, 0, "random-disable", (char *)0);
966 /** @brief Test whether random play is enabled
968 * @param enabledp Where to store result (non-0 iff enabled)
969 * @return 0 on success, non-0 on error
971 int disorder_random_enabled(disorder_client *c, int *enabledp) {
975 if((rc = disorder_simple(c, &v, "random-enabled", (char *)0)))
977 return boolean("random-enabled", v, enabledp);
980 /** @brief Get server stats
982 * @param vecp Where to store list (UTF-8)
983 * @param nvecp Where to store number of items, or NULL
984 * @return 0 on success, non-0 on error
986 int disorder_stats(disorder_client *c,
987 char ***vecp, int *nvecp) {
988 return disorder_simple_list(c, vecp, nvecp, "stats", (char *)0);
991 /** @brief Set volume
993 * @param left New left channel value
994 * @param right New right channel value
995 * @return 0 on success, non-0 on error
997 int disorder_set_volume(disorder_client *c, int left, int right) {
1000 if(byte_asprintf(&ls, "%d", left) < 0
1001 || byte_asprintf(&rs, "%d", right) < 0)
1003 return disorder_simple(c, 0, "volume", ls, rs, (char *)0);
1006 /** @brief Get volume
1008 * @param left Where to store left channel value
1009 * @param right Where to store right channel value
1010 * @return 0 on success, non-0 on error
1012 int disorder_get_volume(disorder_client *c, int *left, int *right) {
1016 if((rc = disorder_simple(c, &r, "volume", (char *)0)))
1018 if(sscanf(r, "%d %d", left, right) != 2) {
1019 c->last = "malformed volume response";
1020 disorder_error(0, "error parsing response to 'volume': '%s'", r);
1026 /** @brief Log to a sink
1028 * @param s Sink to write log lines to
1029 * @return 0 on success, non-0 on error
1031 int disorder_log(disorder_client *c, struct sink *s) {
1035 if((rc = disorder_simple(c, 0, "log", (char *)0)))
1037 while(inputline(c->ident, c->fpin, &l, '\n') >= 0 && strcmp(l, "."))
1038 if(sink_printf(s, "%s\n", l) < 0) return -1;
1039 if(ferror(c->fpin) || feof(c->fpin)) {
1040 byte_xasprintf((char **)&c->last, "input error: %s",
1041 ferror(c->fpin) ? strerror(errno) : "unexpxected EOF");
1047 /** @brief Look up a track name part
1049 * @param partp Where to store result (UTF-8)
1050 * @param track Track name (UTF-8)
1051 * @param context Context (usually "sort" or "display") (UTF-8)
1052 * @param part Track part (UTF-8)
1053 * @return 0 on success, non-0 on error
1055 int disorder_part(disorder_client *c, char **partp,
1056 const char *track, const char *context, const char *part) {
1057 return dequote(disorder_simple(c, partp, "part",
1058 track, context, part, (char *)0), partp);
1061 /** @brief Resolve aliases
1063 * @param trackp Where to store canonical name (UTF-8)
1064 * @param track Track name (UTF-8)
1065 * @return 0 on success, non-0 on error
1067 int disorder_resolve(disorder_client *c, char **trackp, const char *track) {
1068 return dequote(disorder_simple(c, trackp, "resolve", track, (char *)0),
1072 /** @brief Pause the current track
1074 * @return 0 on success, non-0 on error
1076 int disorder_pause(disorder_client *c) {
1077 return disorder_simple(c, 0, "pause", (char *)0);
1080 /** @brief Resume the current track
1082 * @return 0 on success, non-0 on error
1084 int disorder_resume(disorder_client *c) {
1085 return disorder_simple(c, 0, "resume", (char *)0);
1088 /** @brief List all known tags
1090 * @param vecp Where to store list (UTF-8)
1091 * @param nvecp Where to store number of items, or NULL
1092 * @return 0 on success, non-0 on error
1094 int disorder_tags(disorder_client *c,
1095 char ***vecp, int *nvecp) {
1096 return disorder_simple_list(c, vecp, nvecp, "tags", (char *)0);
1099 /** @brief List all known users
1101 * @param vecp Where to store list (UTF-8)
1102 * @param nvecp Where to store number of items, or NULL
1103 * @return 0 on success, non-0 on error
1105 int disorder_users(disorder_client *c,
1106 char ***vecp, int *nvecp) {
1107 return disorder_simple_list(c, vecp, nvecp, "users", (char *)0);
1110 /** @brief Get recently added tracks
1112 * @param vecp Where to store pointer to list (UTF-8)
1113 * @param nvecp Where to store count
1114 * @param max Maximum tracks to fetch, or 0 for all available
1115 * @return 0 on success, non-0 on error
1117 int disorder_new_tracks(disorder_client *c,
1118 char ***vecp, int *nvecp,
1122 sprintf(limit, "%d", max);
1123 return disorder_simple_list(c, vecp, nvecp, "new", limit, (char *)0);
1126 /** @brief Set a global preference
1128 * @param key Preference name (UTF-8)
1129 * @param value Preference value (UTF-8)
1130 * @return 0 on success, non-0 on error
1132 int disorder_set_global(disorder_client *c,
1133 const char *key, const char *value) {
1134 return disorder_simple(c, 0, "set-global", key, value, (char *)0);
1137 /** @brief Unset a global preference
1139 * @param key Preference name (UTF-8)
1140 * @return 0 on success, non-0 on error
1142 int disorder_unset_global(disorder_client *c, const char *key) {
1143 return disorder_simple(c, 0, "unset-global", key, (char *)0);
1146 /** @brief Get a global preference
1148 * @param key Preference name (UTF-8)
1149 * @param valuep Where to store preference value (UTF-8)
1150 * @return 0 on success, non-0 on error
1152 int disorder_get_global(disorder_client *c, const char *key, char **valuep) {
1153 return dequote(disorder_simple(c, valuep, "get-global", key, (char *)0),
1157 /** @brief Get server's RTP address information
1159 * @param addressp Where to store address (UTF-8)
1160 * @param portp Where to store port (UTF-8)
1161 * @return 0 on success, non-0 on error
1163 int disorder_rtp_address(disorder_client *c, char **addressp, char **portp) {
1168 if((rc = disorder_simple(c, &r, "rtp-address", (char *)0)))
1170 vec = split(r, &n, SPLIT_QUOTES, 0, 0);
1172 c->last = "malformed RTP address";
1173 disorder_error(0, "malformed rtp-address reply");
1181 /** @brief Create a user
1183 * @param user Username
1184 * @param password Password
1185 * @param rights Initial rights or NULL to use default
1186 * @return 0 on success, non-0 on error
1188 int disorder_adduser(disorder_client *c,
1189 const char *user, const char *password,
1190 const char *rights) {
1191 return disorder_simple(c, 0, "adduser", user, password, rights, (char *)0);
1194 /** @brief Delete a user
1196 * @param user Username
1197 * @return 0 on success, non-0 on error
1199 int disorder_deluser(disorder_client *c, const char *user) {
1200 return disorder_simple(c, 0, "deluser", user, (char *)0);
1203 /** @brief Get user information
1205 * @param user Username
1206 * @param key Property name (UTF-8)
1207 * @param valuep Where to store value (UTF-8)
1208 * @return 0 on success, non-0 on error
1210 int disorder_userinfo(disorder_client *c, const char *user, const char *key,
1212 return dequote(disorder_simple(c, valuep, "userinfo", user, key, (char *)0),
1216 /** @brief Set user information
1218 * @param user Username
1219 * @param key Property name (UTF-8)
1220 * @param value New property value (UTF-8)
1221 * @return 0 on success, non-0 on error
1223 int disorder_edituser(disorder_client *c, const char *user,
1224 const char *key, const char *value) {
1225 return disorder_simple(c, 0, "edituser", user, key, value, (char *)0);
1228 /** @brief Register a user
1230 * @param user Username
1231 * @param password Password
1232 * @param email Email address (UTF-8)
1233 * @param confirmp Where to store confirmation string
1234 * @return 0 on success, non-0 on error
1236 int disorder_register(disorder_client *c, const char *user,
1237 const char *password, const char *email,
1239 return dequote(disorder_simple(c, confirmp, "register",
1240 user, password, email, (char *)0),
1244 /** @brief Confirm a user
1246 * @param confirm Confirmation string
1247 * @return 0 on success, non-0 on error
1249 int disorder_confirm(disorder_client *c, const char *confirm) {
1253 if(!(rc = dequote(disorder_simple(c, &u, "confirm", confirm, (char *)0),
1259 /** @brief Make a cookie for this login
1261 * @param cookiep Where to store cookie string
1262 * @return 0 on success, non-0 on error
1264 int disorder_make_cookie(disorder_client *c, char **cookiep) {
1265 return dequote(disorder_simple(c, cookiep, "make-cookie", (char *)0),
1269 /** @brief Revoke the cookie used by this session
1271 * @return 0 on success, non-0 on error
1273 int disorder_revoke(disorder_client *c) {
1274 return disorder_simple(c, 0, "revoke", (char *)0);
1277 /** @brief Request a password reminder email
1279 * @param user Username
1280 * @return 0 on success, non-0 on error
1282 int disorder_reminder(disorder_client *c, const char *user) {
1283 return disorder_simple(c, 0, "reminder", user, (char *)0);
1286 /** @brief List scheduled events
1288 * @param idsp Where to put list of event IDs
1289 * @param nidsp Where to put count of event IDs, or NULL
1290 * @return 0 on success, non-0 on error
1292 int disorder_schedule_list(disorder_client *c, char ***idsp, int *nidsp) {
1293 return disorder_simple_list(c, idsp, nidsp, "schedule-list", (char *)0);
1296 /** @brief Delete a scheduled event
1298 * @param id Event ID to delete
1299 * @return 0 on success, non-0 on error
1301 int disorder_schedule_del(disorder_client *c, const char *id) {
1302 return disorder_simple(c, 0, "schedule-del", id, (char *)0);
1305 /** @brief Get details of a scheduled event
1307 * @param id Event ID
1308 * @param actiondatap Where to put details
1309 * @return 0 on success, non-0 on error
1311 int disorder_schedule_get(disorder_client *c, const char *id,
1312 struct kvp **actiondatap) {
1313 char **lines, **bits;
1317 if((rc = disorder_simple_list(c, &lines, NULL,
1318 "schedule-get", id, (char *)0)))
1321 if(!(bits = split(*lines++, &nbits, SPLIT_QUOTES, 0, 0))) {
1322 disorder_error(0, "invalid schedule-get reply: cannot split line");
1326 disorder_error(0, "invalid schedule-get reply: wrong number of fields");
1329 kvp_set(actiondatap, bits[0], bits[1]);
1334 /** @brief Add a scheduled event
1336 * @param when When to trigger the event
1337 * @param priority Event priority ("normal" or "junk")
1338 * @param action What action to perform
1339 * @param ... Action-specific arguments
1340 * @return 0 on success, non-0 on error
1342 * For action @c "play" the next argument is the track.
1344 * For action @c "set-global" next argument is the global preference name
1345 * and the final argument the value to set it to, or (char *)0 to unset it.
1347 int disorder_schedule_add(disorder_client *c,
1349 const char *priority,
1356 snprintf(when_str, sizeof when_str, "%lld", (long long)when);
1357 va_start(ap, action);
1358 if(!strcmp(action, "play"))
1359 rc = disorder_simple(c, 0, "schedule-add", when_str, priority,
1360 action, va_arg(ap, char *),
1362 else if(!strcmp(action, "set-global")) {
1363 const char *key = va_arg(ap, char *);
1364 const char *value = va_arg(ap, char *);
1365 rc = disorder_simple(c, 0,"schedule-add", when_str, priority,
1369 disorder_fatal(0, "unknown action '%s'", action);
1374 /** @brief Adopt a track
1376 * @param id Track ID to adopt
1377 * @return 0 on success, non-0 on error
1379 int disorder_adopt(disorder_client *c, const char *id) {
1380 return disorder_simple(c, 0, "adopt", id, (char *)0);
1383 /** @brief Delete a playlist
1385 * @param playlist Playlist to delete
1386 * @return 0 on success, non-0 on error
1388 int disorder_playlist_delete(disorder_client *c,
1389 const char *playlist) {
1390 return disorder_simple(c, 0, "playlist-delete", playlist, (char *)0);
1393 /** @brief Get the contents of a playlist
1395 * @param playlist Playlist to get
1396 * @param tracksp Where to put list of tracks
1397 * @param ntracksp Where to put count of tracks
1398 * @return 0 on success, non-0 on error
1400 int disorder_playlist_get(disorder_client *c, const char *playlist,
1401 char ***tracksp, int *ntracksp) {
1402 return disorder_simple_list(c, tracksp, ntracksp,
1403 "playlist-get", playlist, (char *)0);
1406 /** @brief List all readable playlists
1408 * @param playlistsp Where to put list of playlists
1409 * @param nplaylistsp Where to put count of playlists
1410 * @return 0 on success, non-0 on error
1412 int disorder_playlists(disorder_client *c,
1413 char ***playlistsp, int *nplaylistsp) {
1414 return disorder_simple_list(c, playlistsp, nplaylistsp,
1415 "playlists", (char *)0);
1418 /** @brief Get the sharing status of a playlist
1420 * @param playlist Playlist to inspect
1421 * @param sharep Where to put sharing status
1422 * @return 0 on success, non-0 on error
1424 * Possible @p sharep values are @c public, @c private and @c shared.
1426 int disorder_playlist_get_share(disorder_client *c, const char *playlist,
1428 return disorder_simple(c, sharep,
1429 "playlist-get-share", playlist, (char *)0);
1432 /** @brief Get the sharing status of a playlist
1434 * @param playlist Playlist to modify
1435 * @param share New sharing status
1436 * @return 0 on success, non-0 on error
1438 * Possible @p share values are @c public, @c private and @c shared.
1440 int disorder_playlist_set_share(disorder_client *c, const char *playlist,
1441 const char *share) {
1442 return disorder_simple(c, 0,
1443 "playlist-set-share", playlist, share, (char *)0);
1446 /** @brief Lock a playlist for modifications
1448 * @param playlist Playlist to lock
1449 * @return 0 on success, non-0 on error
1451 int disorder_playlist_lock(disorder_client *c, const char *playlist) {
1452 return disorder_simple(c, 0,
1453 "playlist-lock", playlist, (char *)0);
1456 /** @brief Unlock the locked playlist
1458 * @return 0 on success, non-0 on error
1460 int disorder_playlist_unlock(disorder_client *c) {
1461 return disorder_simple(c, 0,
1462 "playlist-unlock", (char *)0);
1465 /** @brief Set the contents of a playlst
1467 * @param playlist Playlist to modify
1468 * @param tracks List of tracks
1469 * @param ntracks Length of @p tracks (or -1 to count up to the first NULL)
1470 * @return 0 on success, non-0 on error
1472 int disorder_playlist_set(disorder_client *c,
1473 const char *playlist,
1476 return disorder_simple_body(c, 0, tracks, ntracks,
1477 "playlist-set", playlist, (char *)0);