play command
[disorder] / scripts / protocol
CommitLineData
200adb00
RK
1#! /usr/bin/perl -w
2#
3# This file is part of DisOrder.
4# Copyright (C) 2010 Richard Kettlewell
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18#
19use strict;
20
21# Variables and utilities -----------------------------------------------------
22
23our @h = ();
24our @c = ();
25
26sub Write {
27 my $path = shift;
28 my $lines = shift;
29
30 (open(F, ">$path")
31 and print F @$lines
32 and close F)
7788b7c7 33 or die "$0: $path: $!\n";
200adb00
RK
34}
35
36# Command classes -------------------------------------------------------------
37
96b1cf08 38# simple(CMD, SUMMARY, DETAIL, [[NAME,DESCR], [NAME,DESCR], ...],)
200adb00
RK
39#
40# Response is simply success/failure
96b1cf08 41sub simple {
200adb00
RK
42 my $cmd = shift;
43 my $summary = shift;
44 my $detail = shift;
45 my $args = shift;
46
47 my $cmdc = $cmd;
48 $cmdc =~ s/-/_/g;
49 # Synchronous C API
50 push(@h, "/** \@brief $summary\n",
7788b7c7
RK
51 " *\n",
52 " * $detail\n",
53 " *\n",
54 map(" * \@param $_->[0] $_->[1]\n", @$args),
55 " * \@return 0 on success, non-0 on error\n",
56 " */\n",
57 "int disorder_$cmdc(disorder_client *c",
58 map(", const char *$_->[0]", @$args), ");\n",
59 "\n");
200adb00 60 push(@c, "int disorder_$cmdc(disorder_client *c",
7788b7c7
RK
61 map(", const char *$_->[0]", @$args), ") {\n",
62 " return disorder_simple(c, 0, \"$cmd\"",
63 map(", $_->[0]", @$args),
64 ", (char *)0);\n",
65 "}\n\n");
66
67 # Asynchronous C API
68 # TODO
69
70 # Python API
71 # TODO
72
73 # Java API
74 # TODO
75}
76
77# string(CMD, SUMMARY, DETAIL, [[NAME,DESCR], [NAME,DESCR], ...], [RETURN, DESCR])
78#
3680ef53 79# Response is a string, or failure, or 555 for "none".
7788b7c7
RK
80sub string {
81 my $cmd = shift;
82 my $summary = shift;
83 my $detail = shift;
84 my $args = shift;
85 my $return = shift;
86
87 my $cmdc = $cmd;
88 $cmdc =~ s/-/_/g;
89 # Synchronous C API
90 push(@h, "/** \@brief $summary\n",
91 " *\n",
92 " * $detail\n",
93 " *\n",
94 map(" * \@param $_->[0] $_->[1]\n", @$args),
95 " * \@param $return->[0]p $return->[1]\n",
96 " * \@return 0 on success, non-0 on error\n",
97 " */\n",
98 "int disorder_$cmdc(disorder_client *c",
99 map(", const char *$_->[0]", @$args),
100 ", char **$return->[0]p);\n",
101 "\n");
102 push(@c, "int disorder_$cmdc(disorder_client *c",
103 map(", const char *$_->[0]", @$args),
104 ", char **$return->[0]p) {\n",
105 " return dequote(disorder_simple(c, $return->[0]p, \"$cmd\"",
106 map(", $_->[0]", @$args),
107 ", (char *)0), $return->[0]p);\n",
108 "}\n\n");
109
110 # Asynchronous C API
111 # TODO
112
113 # Python API
114 # TODO
115
116 # Java API
117 # TODO
118}
119
3680ef53 120# string_login(CMD, SUMMARY, DETAIL, [[NAME,DESCR], [NAME,DESCR], ...])
7788b7c7 121#
3680ef53
RK
122# Like string(), but the server returns a username, which we squirrel
123# away rather than returning to the caller.
7788b7c7
RK
124sub string_login {
125 my $cmd = shift;
126 my $summary = shift;
127 my $detail = shift;
128 my $args = shift;
129 my $return = shift;
130
131 my $cmdc = $cmd;
132 $cmdc =~ s/-/_/g;
133 # Synchronous C API
134 push(@h, "/** \@brief $summary\n",
135 " *\n",
136 " * $detail\n",
137 " *\n",
138 map(" * \@param $_->[0] $_->[1]\n", @$args),
139 " * \@return 0 on success, non-0 on error\n",
140 " */\n",
141 "int disorder_$cmdc(disorder_client *c",
142 map(", const char *$_->[0]", @$args),
143 ");\n");
144 push(@c, "int disorder_$cmdc(disorder_client *c",
145 map(", const char *$_->[0]", @$args),
146 ") {\n",
147 " char *u;\n",
148 " int rc;\n",
149 " if((rc = disorder_simple(c, &u, \"$cmd\"",
150 map(", $_->[0]", @$args),
151 " )))\n",
152 " return rc;\n",
153 " c->user = u;\n",
154 " return 0;\n",
155 "}\n\n");
200adb00
RK
156
157 # Asynchronous C API
158 # TODO
159
160 # Python API
161 # TODO
162
163 # Java API
164 # TODO
165}
166
96b1cf08
RK
167# boolean(CMD, SUMMARY, DETAIL, [[NAME,DESCR], [NAME,DESCR], ...], [RETURN, DESCR])
168#
169# Response is yes/no or failure
170sub boolean {
171 my $cmd = shift;
172 my $summary = shift;
173 my $detail = shift;
174 my $args = shift;
175 my $return = shift;
176
177 my $cmdc = $cmd;
178 $cmdc =~ s/-/_/g;
179 # Synchronous C API
180 push(@h, "/** \@brief $summary\n",
7788b7c7
RK
181 " *\n",
182 " * $detail\n",
183 " *\n",
184 map(" * \@param $_->[0] $_->[1]\n", @$args),
185 " * \@param $return->[0]p $return->[1]\n",
186 " * \@return 0 on success, non-0 on error\n",
187 " */\n",
188 "int disorder_$cmdc(disorder_client *c",
189 map(", const char *$_->[0]", @$args),
190 ", int *$return->[0]p);\n",
191 "\n");
96b1cf08 192 push(@c, "int disorder_$cmdc(disorder_client *c",
7788b7c7
RK
193 map(", const char *$_->[0]", @$args),
194 ", int *$return->[0]p) {\n",
195 " char *v;\n",
196 " int rc;\n",
197 " if((rc = disorder_simple(c, &v, \"$cmd\"",
198 map(", $_->[0]", @$args),
199 ", (char *)0)))\n",
200 " return rc;\n",
201 " return boolean(\"$cmd\", v, $return->[0]p);\n",
202 "}\n\n");
96b1cf08
RK
203
204 # Asynchronous C API
205 # TODO
206
207 # Python API
208 # TODO
209
210 # Java API
211 # TODO
212}
213
3680ef53
RK
214# list(CMD, SUMMARY, DETAIL, [[NAME,DESCR], [NAME,DESCR], ...], [RETURN, DESCR])
215#
216# Response is a a list of strings in a dot-stuffed body
217sub list {
218 my $cmd = shift;
219 my $summary = shift;
220 my $detail = shift;
221 my $args = shift;
222 my $return = shift;
223
224 my $cmdc = $cmd;
225 $cmdc =~ s/-/_/g;
226 # Synchronous C API
227 push(@h, "/** \@brief $summary\n",
228 " *\n",
229 " * $detail\n",
230 " *\n",
231 map(" * \@param $_->[0] $_->[1]\n", @$args),
232 " * \@param $return->[0]p $return->[1]\n",
233 " * \@param n$return->[0]p Number of elements in $return->[0]p\n",
234 " * \@return 0 on success, non-0 on error\n",
235 " */\n",
236 "int disorder_$cmdc(disorder_client *c",
237 map(", const char *$_->[0]", @$args),
238 ", char ***$return->[0]p, int *n$return->[0]p);\n",
239 "\n");
240 push(@c, "int disorder_$cmdc(disorder_client *c",
241 map(", const char *$_->[0]", @$args),
242 ", char ***$return->[0]p, int *n$return->[0]p) {\n",
243 " return disorder_simple_list(c, $return->[0]p, n$return->[0]p, \"$cmd\"",
244 map(", $_->[0]", @$args),
245 ", (char *)0);\n",
246 "}\n\n");
247
248 # Asynchronous C API
249 # TODO
250
251 # Python API
252 # TODO
253
254 # Java API
255 # TODO
256}
257
200adb00
RK
258# TODO other command classes
259
260# Front matter ----------------------------------------------------------------
261
262our @gpl = ("/*\n",
7788b7c7
RK
263 " * This file is part of DisOrder.\n",
264 " * Copyright (C) 2010 Richard Kettlewell\n",
265 " *\n",
266 " * This program is free software: you can redistribute it and/or modify\n",
267 " * it under the terms of the GNU General Public License as published by\n",
268 " * the Free Software Foundation, either version 3 of the License, or\n",
269 " * (at your option) any later version.\n",
270 " *\n",
271 " * This program is distributed in the hope that it will be useful,\n",
272 " * but WITHOUT ANY WARRANTY; without even the implied warranty of\n",
273 " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n",
274 " * GNU General Public License for more details.\n",
275 " *\n",
276 " * You should have received a copy of the GNU General Public License\n",
277 " * along with this program. If not, see <http://www.gnu.org/licenses/>.\n",
278 " */\n");
200adb00
RK
279
280
281push(@h, @gpl,
282 "#ifndef CLIENT_STUBS_H\n",
283 "#define CLIENT_STUBS_H\n",
284 "\n");
285
286push(@c, @gpl,
287 "\n");
288
289# The protocol ----------------------------------------------------------------
290
96b1cf08
RK
291simple("adopt",
292 "Adopt a track",
293 "Makes the calling user owner of a randomly picked track.",
294 [["id", "Track ID"]]);
200adb00 295
96b1cf08
RK
296simple("adduser",
297 "Create a user",
298 "Create a new user. Requires the 'admin' right. Email addresses etc must be filled in in separate commands.",
299 [["user", "New username"],
7788b7c7
RK
300 ["password", "Initial password"],
301 ["rights", "Initial rights (optional)"]]);
200adb00 302
3680ef53
RK
303list("allfiles",
304 "List files and directories in a directory",
305 "See 'files' and 'dirs' for more specific lists.",
306 [["dir", "Directory to list (optional)"],
307 ["re", "Regexp that results must match (optional)"]],
308 ["files", "List of matching files and directories"]);
200adb00 309
7788b7c7
RK
310string_login("confirm",
311 "Confirm registration",
312 "The confirmation string must have been created with 'register'. The username is returned so the caller knows who they are.",
313 [["confirmation", "Confirmation string"]]);
200adb00 314
7788b7c7
RK
315string_login("cookie",
316 "Log in with a cookie",
317 "The cookie must have been created with 'make-cookie'. The username is returned so the caller knows who they are.",
318 [["cookie", "Cookie string"]]);
200adb00 319
96b1cf08
RK
320simple("deluser",
321 "Delete user",
322 "Requires the 'admin' right.",
323 [["user", "User to delete"]]);
200adb00 324
3680ef53
RK
325list("dirs",
326 "List directories in a directory",
327 "",
328 [["dir", "Directory to list (optional)"],
329 ["re", "Regexp that results must match (optional)"]],
330 ["files", "List of matching directories"]);
200adb00 331
96b1cf08
RK
332simple("disable",
333 "Disable play",
334 "Play will stop at the end of the current track, if one is playing. Requires the 'global prefs' right.",
335 []);
336
337simple("edituser",
338 "Set a user property",
339 "With the 'admin' right you can do anything. Otherwise you need the 'userinfo' right and can only set 'email' and 'password'.",
340 [["username", "User to modify"],
7788b7c7 341 ["property", "Property name"],
96b1cf08
RK
342 ["value", "New property value"]]);
343
344simple("enable",
345 "Enable play",
346 "Requires the 'global prefs' right.",
347 []);
348
349boolean("enabled",
7788b7c7
RK
350 "Detect whether play is enabled",
351 "",
352 [],
353 ["enabled", "1 if play is enabled and 0 otherwise"]);
96b1cf08
RK
354
355boolean("exists",
7788b7c7
RK
356 "Test whether a track exists",
357 "",
358 [["track", "Track name"]],
359 ["exists", "1 if the track exists and 0 otherwise"]);
200adb00 360
3680ef53
RK
361list("files",
362 "List files in a directory",
363 "",
364 [["dir", "Directory to list (optional)"],
365 ["re", "Regexp that results must match (optional)"]],
366 ["files", "List of matching files"]);
200adb00 367
7788b7c7
RK
368string("get",
369 "Get a track preference",
370 "If the track does not exist that is an error. If the track exists but the preference does not then a null value is returned.",
371 [["track", "Track name"],
372 ["pref", "Preference name"]],
373 ["value", "Preference value"]);
200adb00 374
7788b7c7
RK
375string("get-global",
376 "Get a global preference",
377 "If the preference does exist not then a null value is returned.",
378 [["pref", "Global preference name"]],
379 ["value", "Preference value"]);
200adb00
RK
380
381# TODO length
382
383# TODO log
384
7788b7c7
RK
385string("make-cookie",
386 "Create a login cookie for this user",
387 "The cookie may be redeemed via the 'cookie' command",
388 [],
389 ["cookie", "Newly created cookie"]);
200adb00
RK
390
391# TODO move
392
393# TODO moveafter
394
395# TODO new
396
96b1cf08
RK
397simple("nop",
398 "Do nothing",
399 "Used as a keepalive. No authentication required.",
400 []);
200adb00 401
7788b7c7
RK
402string("part",
403 "Get a track name part",
404 "If the name part cannot be constructed an empty string is returned.",
405 [["track", "Track name"],
406 ["context", "Context (\"sort\" or \"display\")"],
407 ["part", "Name part (\"artist\", \"album\" or \"title\")"]],
408 ["part", "Value of name part"]);
200adb00 409
96b1cf08
RK
410simple("pause",
411 "Pause the currently playing track",
412 "Requires the 'pause' right.",
413 []);
200adb00 414
00861dcb
RK
415string("play",
416 "Play a track",
417 "Requires the 'play' right.",
418 [["track", "Track to play"]],
419 ["id", "Queue ID of new track"]);
420
200adb00
RK
421# TODO playafter
422
423# TODO playing
424
96b1cf08
RK
425simple("playlist-delete",
426 "Delete a playlist",
427 "Requires the 'play' right and permission to modify the playlist.",
428 [["playlist", "Playlist to delete"]]);
200adb00 429
3680ef53
RK
430list("playlist-get",
431 "List the contents of a playlist",
432 "Requires the 'read' right and oermission to read the playlist.",
433 [["playlist", "Playlist name"]],
434 ["tracks", "List of tracks in playlist"]);
200adb00 435
7788b7c7
RK
436string("playlist-get-share",
437 "Get a playlist's sharing status",
438 "Requires the 'read' right and permission to read the playlist.",
439 [["playlist", "Playlist to read"]],
440 ["share", "Sharing status (\"public\", \"private\" or \"shared\")"]);
200adb00 441
3680ef53
RK
442simple("playlist-lock",
443 "Lock a playlist",
444 "Requires the 'play' right and permission to modify the playlist. A given connection may lock at most one playlist.",
445 [["playlist", "Playlist to delete"]]);
446
96b1cf08
RK
447simple("playlist-set-share",
448 "Set a playlist's sharing status",
7788b7c7 449 "Requires the 'play' right and permission to modify the playlist.",
96b1cf08 450 [["playlist", "Playlist to modify"],
7788b7c7 451 ["share", "New sharing status (\"public\", \"private\" or \"shared\")"]]);
200adb00 452
96b1cf08
RK
453simple("playlist-unlock",
454 "Unlock the locked playlist playlist",
455 "The playlist to unlock is implicit in the connection.",
456 []);
200adb00 457
3680ef53
RK
458list("playlists",
459 "List playlists",
460 "Requires the 'read' right. Only playlists that you have permission to read are returned.",
461 [],
462 ["playlists", "Playlist names"]);
200adb00
RK
463
464# TODO prefs
465
466# TODO queue
467
96b1cf08
RK
468simple("random-disable",
469 "Disable random play",
470 "Requires the 'global prefs' right.",
471 []);
472
473simple("random-enable",
474 "Enable random play",
475 "Requires the 'global prefs' right.",
476 []);
200adb00 477
96b1cf08 478boolean("random-enabled",
7788b7c7
RK
479 "Detect whether random play is enabled",
480 "Random play counts as enabled even if play is disabled.",
481 [],
482 ["enabled", "1 if random play is enabled and 0 otherwise"]);
200adb00
RK
483
484# TODO recent
485
96b1cf08
RK
486simple("reconfigure",
487 "Re-read configuraiton file.",
488 "Requires the 'admin' right.",
489 []);
200adb00 490
7788b7c7
RK
491string("register",
492 "Register a new user",
493 "Requires the 'register' right which is usually only available to the 'guest' user. Redeem the confirmation string via 'confirm' to complete registration.",
494 [["username", "Requested new username"],
495 ["password", "Requested initial password"],
496 ["email", "New user's email address"]],
497 ["confirmation", "Confirmation string"]);
200adb00 498
96b1cf08
RK
499simple("reminder",
500 "Send a password reminder.",
501 "If the user has no valid email address, or no password, or a reminder has been sent too recently, then no reminder will be sent.",
502 [["username", "User to remind"]]);
200adb00 503
96b1cf08
RK
504simple("remove",
505 "Remove a track form the queue.",
506 "Requires one of the 'remove mine', 'remove random' or 'remove any' rights depending on how the track came to be added to the queue.",
507 [["id", "Track ID"]]);
200adb00 508
96b1cf08
RK
509simple("rescan",
510 "Rescan all collections for new or obsolete tracks.",
511 "Requires the 'rescan' right.",
7788b7c7 512 []); # TODO wait/fresh flags
200adb00 513
7788b7c7
RK
514string("resolve",
515 "Resolve a track name",
516 "Converts aliases to non-alias track names",
517 [["track", "Track name (might be an alias)"]],
518 ["resolved", "Resolve track name (definitely not an alias)"]);
200adb00 519
96b1cf08
RK
520simple("resume",
521 "Resume the currently playing track",
522 "Requires the 'pause' right.",
523 []);
200adb00 524
96b1cf08
RK
525simple("revoke",
526 "Revoke a cookie.",
527 "It will not subsequently be possible to log in with the cookie.",
7788b7c7 528 []); # TODO fix docs!
200adb00
RK
529
530# TODO rtp-address
531
96b1cf08
RK
532simple("scratch",
533 "Terminate the playing track.",
534 "Requires one of the 'scratch mine', 'scratch random' or 'scratch any' rights depending on how the track came to be added to the queue.",
535 [["id", "Track ID (optional)"]]);
200adb00
RK
536
537# TODO schedule-add
538
96b1cf08
RK
539simple("schedule-del",
540 "Delete a scheduled event.",
541 "Users can always delete their own scheduled events; with the admin right you can delete any event.",
542 [["event", "ID of event to delete"]]);
200adb00
RK
543
544# TODO schedule-get
545
3680ef53
RK
546list("schedule-list",
547 "List scheduled events",
548 "This just lists IDs. Use 'schedule-get' to retrieve more detail",
549 [],
550 ["ids", "List of event IDs"]);
200adb00 551
3680ef53
RK
552list("search",
553 "Search for tracks",
554 "Terms are either keywords or tags formatted as 'tag:TAG-NAME'.",
555 [["terms", "List of search terms"]],
556 ["tracks", "List of matching tracks"]);
200adb00 557
96b1cf08
RK
558simple("set",
559 "Set a track preference",
560 "Requires the 'prefs' right.",
561 [["track", "Track name"],
7788b7c7 562 ["pref", "Preference name"],
96b1cf08 563 ["value", "New value"]]);
200adb00 564
96b1cf08
RK
565simple("set-global",
566 "Set a global preference",
567 "Requires the 'global prefs' right.",
568 [["pref", "Preference name"],
569 ["value", "New value"]]);
200adb00 570
eea34c08
RK
571simple("shutdown",
572 "Request server shutdown",
573 "Requires the 'admin' right.",
574 []);
7788b7c7 575
3680ef53
RK
576list("stats",
577 "Get server statistics",
578 "The details of what the server reports are not really defined. The returned strings are intended to be printed out one to a line..",
579 [],
580 ["stats", "List of server information strings."]);
200adb00 581
3680ef53
RK
582list("tags",
583 "Get a list of known tags",
584 "Only tags which apply to at least one track are returned.",
585 [],
586 ["tags", "List of tags"]);
200adb00 587
96b1cf08
RK
588simple("unset",
589 "Unset a track preference",
590 "Requires the 'prefs' right.",
591 [["track", "Track name"],
7788b7c7 592 ["pref", "Preference name"]]);
200adb00 593
96b1cf08
RK
594simple("unset-global",
595 "Set a global preference",
596 "Requires the 'global prefs' right.",
597 [["pref", "Preference name"]]);
200adb00 598
7788b7c7 599# TODO user?
200adb00 600
7788b7c7
RK
601string("userinfo",
602 "Get a user property.",
603 "If the user does not exist an error is returned, if the user exists but the property does not then a null value is returned.",
604 [["username", "User to read"],
605 ["property", "Property to read"]],
606 ["value", "Value of property"]);
200adb00 607
3680ef53
RK
608list("users",
609 "Get a list of users",
610 "",
611 [],
612 ["users", "List of users"]);
200adb00 613
7788b7c7
RK
614string("version",
615 "Get the server version",
616 "",
617 [],
618 ["version", "Server version string"]);
200adb00
RK
619
620# TODO volume
621
622# End matter ------------------------------------------------------------------
623
624push(@h, "#endif\n");
625
626# Write it all out ------------------------------------------------------------
627
7788b7c7
RK
628Write("lib/client-stubs.h", \@h);
629Write("lib/client-stubs.c", \@c);