chiark / gitweb /
disobedience: don't crash if no password
[disorder] / lib / disorder.h
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2004, 2005, 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 */
20
21#ifndef DISORDER_H
22#define DISORDER_H
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28/* memory allocation **********************************************************/
29
30void *disorder_malloc(size_t);
31void *disorder_realloc(void *, size_t);
32/* As malloc/realloc, but
33 * 1) succeed or call fatal
34 * 2) always clear (the unused part of) the new allocation
35 * 3) are garbage-collected
36 */
37
38void *disorder_malloc_noptr(size_t);
39void *disorder_realloc_noptr(void *, size_t);
40char *disorder_strdup(const char *);
41char *disorder_strndup(const char *, size_t);
42/* As malloc/realloc/strdup, but
43 * 1) succeed or call fatal
44 * 2) are garbage-collected
45 * 3) allocated space must not contain any pointers
46 *
47 * {xmalloc,xrealloc}_noptr don't promise to clear the new space
48 */
49
50#ifdef __GNUC__
51
52int disorder_snprintf(char buffer[], size_t bufsize, const char *fmt, ...)
53 __attribute__((format (printf, 3, 4)));
54/* like snprintf */
55
56int disorder_asprintf(char **rp, const char *fmt, ...)
57 __attribute__((format (printf, 2, 3)));
58/* like asprintf but uses xmalloc_noptr() */
59
60#else
61
62int disorder_snprintf(char buffer[], size_t bufsize, const char *fmt, ...);
63/* like snprintf */
64
65int disorder_asprintf(char **rp, const char *fmt, ...);
66/* like asprintf but uses xmalloc_noptr() */
67
68#endif
69
70
71/* logging ********************************************************************/
72
73void disorder_error(int errno_value, const char *fmt, ...);
74/* report an error. If errno_value is nonzero then the errno string
75 * is included. */
76
77void disorder_fatal(int errno_value, const char *fmt, ...);
78/* report an error and terminate. If errno_value is nonzero then the
79 * errno string is included. This is the only safe way to terminate
80 * the process. */
81
82void disorder_info(const char *fmt, ...);
83/* log a message. */
84
85/* track database *************************************************************/
86
87int disorder_track_exists(const char *track);
88/* return true if the track exists. */
89
90const char *disorder_track_get_data(const char *track, const char *key);
91/* get the value for @key@ (xstrdup'd) */
92
93int disorder_track_set_data(const char *track,
94 const char *key, const char *value);
95/* set the value of @key@ to @value@, or remove it if @value@ is a null
96 * pointer. Return 0 on success, -1 on error. */
97
98const char *disorder_track_random(void); /* server plugins only */
99/* return the name of a random track */
100
101/* plugin interfaces **********************************************************/
102
103long disorder_tracklength(const char *track, const char *path);
104/* compute the length of the track. @track@ is the UTF-8 name of the
105 * track, @path@ is the file system name (or 0 for tracks that don't
106 * exist in the filesystem). The return value should be a positive
107 * number of seconds, 0 for unknown or -1 if an error occurred. */
108
109void disorder_scan(const char *root);
110/* write a list of path names below @root@ to standard output. */
111
112int disorder_check(const char *root, const char *path);
113/* Recheck a track, given its root and path name. Return 1 if it
114 * exists, 0 if it does not exist and -1 if an error occurred. */
115
116void disorder_notify_play(const char *track,
117 const char *submitter);
118/* we're going to play @track@. It was submitted by @submitter@
119 * (might be a null pointer) */
120
121void disorder_notify_scratch(const char *track,
122 const char *submitter,
123 const char *scratcher,
124 int seconds);
125/* @scratcher@ scratched @track@ after @seconds@. It was submitted by
126 * @submitter@ (might be a null pointer) */
127
128void disorder_notify_not_scratched(const char *track,
129 const char *submitter);
130/* @track@ (submitted by @submitter@, which might be a null pointer)
131 * was not scratched. */
132
133void disorder_notify_queue(const char *track,
134 const char *submitter);
135/* @track@ added to the queue by @submitter@ (never a null pointer) */
136
137void disorder_notify_queue_remove(const char *track,
138 const char *remover);
139/* @track@ removed from the queue by @remover@ (never a null pointer) */
140
141void disorder_notify_queue_move(const char *track,
142 const char *mover);
143/* @track@ moved in the queue by @mover@ (never a null pointer) */
144
145void disorder_notify_pause(const char *track,
146 const char *pauser);
147/* TRACK was paused by PAUSER (might be a null pointer) */
148
149void disorder_notify_resume(const char *track,
150 const char *resumer);
151/* TRACK was resumed by PAUSER (might be a null pointer) */
152
153/* player plugin interface ****************************************************/
154
155extern const unsigned long disorder_player_type;
156
157#define DISORDER_PLAYER_STANDALONE 0x00000000
158/* this player plays sound directly */
159
160#define DISORDER_PLAYER_RAW 0x00000001
161/* player that sends raw samples to $DISORDER_RAW_FD */
162
163#define DISORDER_PLAYER_TYPEMASK 0x000000ff
164/* mask for player types */
165
166#define DISORDER_PLAYER_PREFORK 0x00000100
167/* call prefork function */
168
169#define DISORDER_PLAYER_PAUSES 0x00000200
170/* supports pausing */
171
172void *disorder_play_prefork(const char *track);
173/* Called outside the fork. Should not block. Returns a null pointer
174 * on error.
175 *
176 * If _play_prefork is called then its return value is used as the
177 * DATA argument to the following functions. Otherwise the value of
178 * DATA argument is indeterminate and must not be used. */
179
180void disorder_play_track(const char *const *parameters,
181 int nparameters,
182 const char *path,
183 const char *track,
184 void *data);
185/* Called to play a track. Should either exec or only return when the
186 * track has finished. Should not call exit() (except after a
187 * succesful exec). Allowed to call _Exit(). */
188
189int disorder_play_pause(long *playedp, void *data);
190/* Pauses the playing track. If the track can be paused returns 0 and
191 * stores the number of seconds so far played via PLAYEDP, or sets it
192 * to -1 if this is not known. If the track cannot be paused then
193 * returns -1. Should not block.
194 */
195
196void disorder_play_resume(void *data);
197/* Restarts play after a pause. PLAYED is the value returned from the
198 * original pause operation. Should not block. */
199
200void disorder_play_cleanup(void *data);
201/* called to clean up DATA. Should not block. */
202
203#ifdef __cplusplus
204};
205#endif
206
207#endif /* DISORDER_H */
208
209/*
210Local Variables:
211c-basic-offset:2
212comment-column:40
213End:
214*/