chiark / gitweb /
Support global prefs through eclient interface.
[disorder] / lib / eclient.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5c102112 3 * Copyright (C) 2006-2008 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
0e4472a0 18/** @file lib/eclient.h
19 * @brief Client code for event-driven programs
20 */
460b9539 21
22#ifndef ECLIENT_H
23#define ECLIENT_H
24
ad492e00
RK
25#include "rights.h"
26
5626f6d2 27/* Asynchronous client interface */
460b9539 28
0e4472a0 29/** @brief Handle type */
460b9539 30typedef struct disorder_eclient disorder_eclient;
31
32struct queue_entry;
33
0e4472a0 34/** @brief Set to read from the FD */
35#define DISORDER_POLL_READ 1u
36
37/** @brief Set to write to the FD */
38#define DISORDER_POLL_WRITE 2u
460b9539 39
0e4472a0 40/** @brief Callbacks for all clients
41 *
42 * These must all be valid.
43 */
460b9539 44typedef struct disorder_eclient_callbacks {
1f3ce240 45 /** @brief Called when a communication error occurs.
0e4472a0 46 * @param u from disorder_eclient_new()
47 * @param msg error message
1f3ce240
RK
48 *
49 * This might be called at any time, and indicates a low-level error,
50 * e.g. connection refused by the server. It does not mean that any requests
51 * made of the owning eclient will not be fulfilled at some point.
0e4472a0 52 */
460b9539 53 void (*comms_error)(void *u, const char *msg);
460b9539 54
0e4472a0 55 /** @brief Called when a command fails (including initial authorization).
56 * @param u from disorder_eclient_new()
57 * @param v from failed command, or NULL if during setup
58 * @param msg error message
1f3ce240
RK
59 *
60 * This call is obsolete at least in its current form, in which it is used to
61 * report most errors from most requests. Ultimately requests-specific
62 * errors will be reported in a request-specific way rather than via this
63 * generic callback.
0e4472a0 64 */
460b9539 65 void (*protocol_error)(void *u, void *v, int code, const char *msg);
0e4472a0 66
67 /** @brief Set poll/select flags
68 * @param u from disorder_eclient_new()
69 * @param c handle
70 * @param fd file descriptor
71 * @param mode bitmap (@ref DISORDER_POLL_READ and/or @ref DISORDER_POLL_WRITE)
72 *
73 * Before @p fd is closed you will always get a call with @p mode = 0.
74 */
460b9539 75 void (*poll)(void *u, disorder_eclient *c, int fd, unsigned mode);
460b9539 76
0e4472a0 77 /** @brief Report current activity
78 * @param u from disorder_eclient_new()
79 * @param msg Current activity or NULL
80 *
81 * Called with @p msg = NULL when there's nothing going on.
82 */
460b9539 83 void (*report)(void *u, const char *msg);
460b9539 84} disorder_eclient_callbacks;
85
0e4472a0 86/** @brief Callbacks for log clients
87 *
88 * All of these are allowed to be a null pointers in which case you don't get
89 * told about that log event.
90 *
91 * See disorder_protocol(5) for full documentation.
92 */
460b9539 93typedef struct disorder_eclient_log_callbacks {
0e4472a0 94 /** @brief Called on (re-)connection */
460b9539 95 void (*connected)(void *v);
58d2aad2
RK
96
97 /** @brief Called when @p track finished playing successfully */
460b9539 98 void (*completed)(void *v, const char *track);
58d2aad2
RK
99
100 /** @brief Called when @p track fails for some reason */
460b9539 101 void (*failed)(void *v, const char *track, const char *status);
58d2aad2
RK
102
103 /** @brief Called when @p user moves some track or tracks in the queue
104 *
105 * Fetch the queue again to find out what the new order is - the
106 * rearrangement could in principle be arbitrarily complicated.
107 */
460b9539 108 void (*moved)(void *v, const char *user);
58d2aad2
RK
109
110 /** @brief Called when @p track starts playing
111 *
112 * @p user might be 0.
113 */
460b9539 114 void (*playing)(void *v, const char *track, const char *user/*maybe 0*/);
58d2aad2
RK
115
116 /** @brief Called when @p q is added to the queue
117 *
118 * Fetch the queue again to find out where the in the queue it was added.
119 */
460b9539 120 void (*queue)(void *v, struct queue_entry *q);
58d2aad2
RK
121
122 /** @brief Called when @p q is added to the recent list */
460b9539 123 void (*recent_added)(void *v, struct queue_entry *q);
58d2aad2
RK
124
125 /** @brief Called when @p id is removed from the recent list */
460b9539 126 void (*recent_removed)(void *v, const char *id);
58d2aad2 127
59cf25c4 128 /** @brief Called when @p id is removed from the queue
58d2aad2
RK
129 *
130 * @p user might be 0.
131 */
460b9539 132 void (*removed)(void *v, const char *id, const char *user/*maybe 0*/);
58d2aad2
RK
133
134 /** @brief Called when @p track is scratched */
460b9539 135 void (*scratched)(void *v, const char *track, const char *user);
58d2aad2
RK
136
137 /** @brief Called with the current state whenever it changes
138 *
139 * State bits are:
140 * - @ref DISORDER_PLAYING_ENABLED
141 * - @ref DISORDER_RANDOM_ENABLED
142 * - @ref DISORDER_TRACK_PAUSED
143 * - @ref DISORDER_PLAYING
144 * - @ref DISORDER_CONNECTED
145 */
460b9539 146 void (*state)(void *v, unsigned long state);
58d2aad2
RK
147
148 /** @brief Called when the volume changes */
460b9539 149 void (*volume)(void *v, int left, int right);
58d2aad2
RK
150
151 /** @brief Called when a rescan completes */
e025abff 152 void (*rescanned)(void *v);
58d2aad2
RK
153
154 /** @brief Called when a user is created (admins only) */
155 void (*user_add)(void *v, const char *user);
156
157 /** @brief Called when a user is confirmed (admins only) */
158 void (*user_confirm)(void *v, const char *user);
159
160 /** @brief Called when a user is deleted (admins only) */
161 void (*user_delete)(void *v, const char *user);
162
163 /** @brief Called when a user is edited (admins only) */
164 void (*user_edit)(void *v, const char *user, const char *property);
ad492e00
RK
165
166 /** @brief Called when your rights change */
167 void (*rights_changed)(void *v, rights_type new_rights);
9433fabf
RK
168
169 /** @brief Called when a track is adopted */
170 void (*adopted)(void *v, const char *id, const char *who);
812b526d 171
5c102112
RK
172 /** @brief Called when a new playlist is created */
173 void (*playlist_created)(void *v, const char *playlist, const char *sharing);
174
175 /** @brief Called when a playlist is modified */
176 void (*playlist_modified)(void *v, const char *playlist, const char *sharing);
177
178 /** @brief Called when a new playlist is deleted */
179 void (*playlist_deleted)(void *v, const char *playlist);
ad0c0f36
RK
180
181 /** @brief Called when a global pref is changed or delete */
182 void (*global_pref)(void *v, const char *pref, const char *value/*or NULL*/);
460b9539 183} disorder_eclient_log_callbacks;
184
185/* State bits */
0e4472a0 186
187/** @brief Play is enabled */
188#define DISORDER_PLAYING_ENABLED 0x00000001
189
190/** @brief Random play is enabled */
191#define DISORDER_RANDOM_ENABLED 0x00000002
192
8f763f1b
RK
193/** @brief Track is paused
194 *
195 * This is only meaningful if @ref DISORDER_PLAYING is set
196 */
0e4472a0 197#define DISORDER_TRACK_PAUSED 0x00000004
460b9539 198
8f763f1b
RK
199/** @brief Track is playing
200 *
201 * This can be set even if the current track is paused (in which case @ref
202 * DISORDER_TRACK_PAUSED) will also be set.
203 */
204#define DISORDER_PLAYING 0x00000008
205
206/** @brief Connected to server
207 *
208 * By connected it is meant that commands have a reasonable chance of being
209 * processed soon, not merely that a TCP connection exists - for instance if
210 * the client is still authenticating then that does not count as connected.
211 */
212#define DISORDER_CONNECTED 0x00000010
213
00959300
RK
214char *disorder_eclient_interpret_state(unsigned long statebits);
215
460b9539 216struct queue_entry;
217struct kvp;
218struct sink;
219
220/* Completion callbacks. These provide the result of operations to the caller.
699517af 221 * Unlike in earlier releases, these are not allowed to be NULL. */
460b9539 222
53fa91bb
RK
223/** @brief Trivial completion callback
224 * @param v User data
e2717131 225 * @param err Error string or NULL on succes
53fa91bb
RK
226 */
227typedef void disorder_eclient_no_response(void *v,
e2717131 228 const char *err);
460b9539 229
1bd1b63c
RK
230/** @brief String result completion callback
231 * @param v User data
e2717131 232 * @param err Error string or NULL on succes
658c8a35 233 * @param value Result or NULL
1bd1b63c 234 *
06bfbba4
RK
235 * @p error will be NULL on success. In this case @p value will be the result
236 * (which might be NULL for disorder_eclient_get(),
53740beb
RK
237 * disorder_eclient_get_global(), disorder_eclient_userinfo() and
238 * disorder_eclient_playlist_get_share()).
06bfbba4
RK
239 *
240 * @p error will be non-NULL on failure. In this case @p value is always NULL.
1bd1b63c 241 */
06bfbba4 242typedef void disorder_eclient_string_response(void *v,
e2717131 243 const char *err,
06bfbba4 244 const char *value);
460b9539 245
658c8a35
RK
246/** @brief String result completion callback
247 * @param v User data
e2717131 248 * @param err Error string or NULL on succes
658c8a35
RK
249 * @param value Result or 0
250 *
251 * @p error will be NULL on success. In this case @p value will be the result.
252 *
253 * @p error will be non-NULL on failure. In this case @p value is always 0.
254 */
255typedef void disorder_eclient_integer_response(void *v,
e2717131 256 const char *err,
658c8a35 257 long value);
699517af
RK
258/** @brief Volume completion callback
259 * @param v User data
e2717131 260 * @param err Error string or NULL on success
699517af
RK
261 * @param l Left channel volume
262 * @param r Right channel volume
263 *
264 * @p error will be NULL on success. In this case @p l and @p r will be the
265 * result.
266 *
267 * @p error will be non-NULL on failure. In this case @p l and @p r are always
268 * 0.
269 */
270typedef void disorder_eclient_volume_response(void *v,
e2717131 271 const char *err,
699517af 272 int l, int r);
460b9539 273
3035257f
RK
274/** @brief Queue request completion callback
275 * @param v User data
e2717131 276 * @param err Error string or NULL on success
3035257f
RK
277 * @param q Head of queue data list
278 *
4190a4d9
RK
279 * @p error will be NULL on success. In this case @p q will be the (head of
280 * the) result.
3035257f
RK
281 *
282 * @p error will be non-NULL on failure. In this case @p q may be NULL but
283 * MIGHT also be some subset of the queue. For consistent behavior it should
284 * be ignored in the error case.
285 */
286typedef void disorder_eclient_queue_response(void *v,
e2717131 287 const char *err,
3035257f 288 struct queue_entry *q);
460b9539 289
4190a4d9
RK
290/** @brief List request completion callback
291 * @param v User data
e2717131 292 * @param err Error string or NULL on success
4190a4d9
RK
293 * @param nvec Number of elements in response list
294 * @param vec Pointer to response list
295 *
296 * @p error will be NULL on success. In this case @p nvec and @p vec will give
53740beb
RK
297 * the result, or be -1 and NULL respectively e.g. from
298 * disorder_eclient_playlist_get() if there is no such playlist.
4190a4d9
RK
299 *
300 * @p error will be non-NULL on failure. In this case @p nvec and @p vec will
301 * be 0 and NULL.
302 */
303typedef void disorder_eclient_list_response(void *v,
e2717131 304 const char *err,
4190a4d9 305 int nvec, char **vec);
460b9539 306
307disorder_eclient *disorder_eclient_new(const disorder_eclient_callbacks *cb,
308 void *u);
309/* Create a new client */
310
311void disorder_eclient_close(disorder_eclient *c);
312/* Close C */
313
8f763f1b 314unsigned long disorder_eclient_state(const disorder_eclient *c);
ad58ebcc 315
460b9539 316void disorder_eclient_polled(disorder_eclient *c, unsigned mode);
317/* Should be called when c's FD is readable and/or writable, and in any case
318 * from time to time (so that retries work). */
319
320int disorder_eclient_version(disorder_eclient *c,
321 disorder_eclient_string_response *completed,
322 void *v);
323/* fetch the server version */
324
325int disorder_eclient_play(disorder_eclient *c,
326 const char *track,
327 disorder_eclient_no_response *completed,
328 void *v);
329/* add a track to the queue */
330
7a853280
RK
331int disorder_eclient_playafter(disorder_eclient *c,
332 const char *target,
333 int ntracks,
334 const char **tracks,
335 disorder_eclient_no_response *completed,
336 void *v);
337/* insert multiple tracks to an arbitrary point in the queue */
338
460b9539 339int disorder_eclient_pause(disorder_eclient *c,
340 disorder_eclient_no_response *completed,
341 void *v);
342/* add a track to the queue */
343
344int disorder_eclient_resume(disorder_eclient *c,
345 disorder_eclient_no_response *completed,
346 void *v);
347/* add a track to the queue */
348
349int disorder_eclient_scratch(disorder_eclient *c,
350 const char *id,
351 disorder_eclient_no_response *completed,
352 void *v);
353/* scratch a track by ID */
354
355int disorder_eclient_scratch_playing(disorder_eclient *c,
356 disorder_eclient_no_response *completed,
357 void *v);
358/* scratch the playing track whatever it is */
359
360int disorder_eclient_remove(disorder_eclient *c,
361 const char *id,
362 disorder_eclient_no_response *completed,
363 void *v);
364/* remove a track from the queue */
365
366int disorder_eclient_moveafter(disorder_eclient *c,
367 const char *target,
368 int nids,
369 const char **ids,
370 disorder_eclient_no_response *completed,
371 void *v);
372/* move tracks within the queue */
373
374int disorder_eclient_playing(disorder_eclient *c,
375 disorder_eclient_queue_response *completed,
376 void *v);
377/* find the currently playing track (0 for none) */
378
379int disorder_eclient_queue(disorder_eclient *c,
380 disorder_eclient_queue_response *completed,
381 void *v);
382/* list recently played tracks */
383
384int disorder_eclient_recent(disorder_eclient *c,
385 disorder_eclient_queue_response *completed,
386 void *v);
387/* list recently played tracks */
388
389int disorder_eclient_files(disorder_eclient *c,
390 disorder_eclient_list_response *completed,
391 const char *dir,
392 const char *re,
393 void *v);
394/* list files in a directory, matching RE if not a null pointer */
395
396int disorder_eclient_dirs(disorder_eclient *c,
397 disorder_eclient_list_response *completed,
398 const char *dir,
399 const char *re,
400 void *v);
401/* list directories in a directory, matching RE if not a null pointer */
402
403int disorder_eclient_namepart(disorder_eclient *c,
404 disorder_eclient_string_response *completed,
405 const char *track,
406 const char *context,
407 const char *part,
408 void *v);
409/* look up a track name part */
410
411int disorder_eclient_length(disorder_eclient *c,
412 disorder_eclient_integer_response *completed,
413 const char *track,
414 void *v);
415/* look up a track name length */
416
417int disorder_eclient_volume(disorder_eclient *c,
418 disorder_eclient_volume_response *callback,
419 int l, int r,
420 void *v);
421/* If L and R are both -ve gets the volume.
422 * If neither are -ve then sets the volume.
423 * Otherwise asserts!
424 */
425
426int disorder_eclient_enable(disorder_eclient *c,
427 disorder_eclient_no_response *callback,
428 void *v);
429int disorder_eclient_disable(disorder_eclient *c,
430 disorder_eclient_no_response *callback,
431 void *v);
432int disorder_eclient_random_enable(disorder_eclient *c,
433 disorder_eclient_no_response *callback,
434 void *v);
435int disorder_eclient_random_disable(disorder_eclient *c,
436 disorder_eclient_no_response *callback,
437 void *v);
438/* Enable/disable play/random play */
439
440int disorder_eclient_resolve(disorder_eclient *c,
441 disorder_eclient_string_response *completed,
442 const char *track,
443 void *v);
444/* Resolve aliases */
445
446int disorder_eclient_log(disorder_eclient *c,
447 const disorder_eclient_log_callbacks *callbacks,
448 void *v);
449/* Make this a log client (forever - it automatically becomes one again upon
450 * reconnection) */
451
452int disorder_eclient_get(disorder_eclient *c,
453 disorder_eclient_string_response *completed,
454 const char *track, const char *pref,
455 void *v);
456int disorder_eclient_set(disorder_eclient *c,
457 disorder_eclient_no_response *completed,
458 const char *track, const char *pref,
459 const char *value,
460 void *v);
461int disorder_eclient_unset(disorder_eclient *c,
462 disorder_eclient_no_response *completed,
463 const char *track, const char *pref,
464 void *v);
465/* Get/set preference values */
466
ad0c0f36
RK
467int disorder_eclient_get_global(disorder_eclient *c,
468 disorder_eclient_string_response *completed,
469 const char *pref,
470 void *v);
471int disorder_eclient_set_global(disorder_eclient *c,
472 disorder_eclient_no_response *completed,
473 const char *pref,
474 const char *value,
475 void *v);
476int disorder_eclient_unset_global(disorder_eclient *c,
477 disorder_eclient_no_response *completed,
478 const char *pref,
479 void *v);
480/* Get/set global prefs */
481
460b9539 482int disorder_eclient_search(disorder_eclient *c,
483 disorder_eclient_list_response *completed,
484 const char *terms,
485 void *v);
486
7858930d 487int disorder_eclient_nop(disorder_eclient *c,
488 disorder_eclient_no_response *completed,
489 void *v);
490
2a10b70b
RK
491int disorder_eclient_new_tracks(disorder_eclient *c,
492 disorder_eclient_list_response *completed,
493 int max,
494 void *v);
a99c4e9a
RK
495
496int disorder_eclient_rtp_address(disorder_eclient *c,
497 disorder_eclient_list_response *completed,
498 void *v);
499
ffc4dbaf
RK
500int disorder_eclient_users(disorder_eclient *c,
501 disorder_eclient_list_response *completed,
502 void *v);
4aa8a0a4
RK
503int disorder_eclient_deluser(disorder_eclient *c,
504 disorder_eclient_no_response *completed,
505 const char *user,
506 void *v);
e61aef23
RK
507int disorder_eclient_userinfo(disorder_eclient *c,
508 disorder_eclient_string_response *completed,
509 const char *user,
510 const char *property,
511 void *v);
512int disorder_eclient_edituser(disorder_eclient *c,
513 disorder_eclient_no_response *completed,
514 const char *user,
515 const char *property,
516 const char *value,
517 void *v);
0d719587
RK
518int disorder_eclient_adduser(disorder_eclient *c,
519 disorder_eclient_no_response *completed,
520 const char *user,
521 const char *password,
522 const char *rights,
523 void *v);
68210888
RK
524void disorder_eclient_enable_connect(disorder_eclient *c);
525void disorder_eclient_disable_connect(disorder_eclient *c);
d42e98ca
RK
526int disorder_eclient_adopt(disorder_eclient *c,
527 disorder_eclient_no_response *completed,
528 const char *id,
529 void *v);
53740beb
RK
530int disorder_eclient_playlists(disorder_eclient *c,
531 disorder_eclient_list_response *completed,
532 void *v);
533int disorder_eclient_playlist_delete(disorder_eclient *c,
534 disorder_eclient_no_response *completed,
535 const char *playlist,
536 void *v);
537int disorder_eclient_playlist_lock(disorder_eclient *c,
538 disorder_eclient_no_response *completed,
539 const char *playlist,
540 void *v);
541int disorder_eclient_playlist_unlock(disorder_eclient *c,
542 disorder_eclient_no_response *completed,
543 void *v);
544int disorder_eclient_playlist_set_share(disorder_eclient *c,
545 disorder_eclient_no_response *completed,
546 const char *playlist,
547 const char *sharing,
548 void *v);
549int disorder_eclient_playlist_get_share(disorder_eclient *c,
550 disorder_eclient_string_response *completed,
551 const char *playlist,
552 void *v);
553int disorder_eclient_playlist_set(disorder_eclient *c,
554 disorder_eclient_no_response *completed,
555 const char *playlist,
556 char **tracks,
557 int ntracks,
558 void *v);
559int disorder_eclient_playlist_get(disorder_eclient *c,
560 disorder_eclient_list_response *completed,
561 const char *playlist,
562 void *v);
563
460b9539 564#endif
565
566/*
567Local Variables:
568c-basic-offset:2
569comment-column:40
570fill-column:79
571indent-tabs-mode:nil
572End:
573*/