chiark / gitweb /
Merge more 3.0 branch changes
[disorder] / server / dcgi.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
21#ifndef DCGI_H
22#define DCGI_H
23
24typedef struct dcgi_global {
25 disorder_client *client;
26 unsigned flags;
27#define DC_QUEUE 0x0001
28#define DC_PLAYING 0x0002
29#define DC_RECENT 0x0004
30#define DC_VOLUME 0x0008
31#define DC_DIRS 0x0010
32#define DC_FILES 0x0020
78efa64e 33#define DC_NEW 0x0040
938d8157 34#define DC_RIGHTS 0x0080
460b9539 35 struct queue_entry *queue, *playing, *recent;
36 int volume_left, volume_right;
37 char **files, **dirs;
38 int nfiles, ndirs;
78efa64e
RK
39 char **new;
40 int nnew;
938d8157 41 rights_type rights;
460b9539 42} dcgi_global;
43
44typedef struct dcgi_state {
45 dcgi_global *g;
46 struct queue_entry *track;
47 struct kvp *pref;
48 int index;
49 int first, last;
50 struct entry *entry;
51 /* for searching */
52 int ntracks;
53 char **tracks;
54 /* for @navigate@ */
55 const char *nav_path;
56 int nav_len, nav_dirlen;
57} dcgi_state;
58
59void disorder_cgi(cgi_sink *output, dcgi_state *ds);
60void disorder_cgi_error(cgi_sink *output, dcgi_state *ds,
61 const char *msg);
938d8157 62void disorder_cgi_login(dcgi_state *ds, cgi_sink *output);
460b9539 63
fdf98378 64extern char *login_cookie;
65
460b9539 66#endif /* DCGI_H */
67
68/*
69Local Variables:
70c-basic-offset:2
71comment-column:40
72End:
73*/