chiark / gitweb /
disorder.h: more consistent approach to function attributes
[disorder] / lib / configuration.h
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2004-2011, 2013 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 3 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,
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 *
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/>.
17 */
18/** @file lib/configuration.h
19 * @brief Configuration file support
20 */
21
22#ifndef CONFIGURATION_H
23#define CONFIGURATION_H
24
25#if HAVE_PCRE_H
26# include <pcre.h>
27#endif
28
29#include "speaker-protocol.h"
30#include "rights.h"
31#include "addr.h"
32
33struct uaudio;
34
35/* Configuration is kept in a @struct config@; the live configuration
36 * is always pointed to by @config@. Values in @config@ are UTF-8 encoded.
37 */
38
39/** @brief A list of strings */
40struct stringlist {
41 /** @brief Number of strings */
42 int n;
43 /** @brief Array of strings */
44 char **s;
45};
46
47/** @brief A list of list of strings */
48struct stringlistlist {
49 /** @brief Number of string lists */
50 int n;
51 /** @brief Array of string lists */
52 struct stringlist *s;
53};
54
55/** @brief A collection of tracks */
56struct collection {
57 /** @brief Module that supports this collection */
58 char *module;
59 /** @brief Filename encoding */
60 char *encoding;
61 /** @brief Root directory */
62 char *root;
63};
64
65/** @brief A list of collections */
66struct collectionlist {
67 /** @brief Number of collections */
68 int n;
69 /** @brief Array of collections */
70 struct collection *s;
71};
72
73#if HAVE_PCRE_H
74/** @brief A track name part */
75struct namepart {
76 char *part; /* part */
77 pcre *re; /* compiled regexp */
78 char *res; /* regexp as a string */
79 char *replace; /* replacement string */
80 char *context; /* context glob */
81 unsigned reflags; /* regexp flags */
82};
83
84/** @brief A list of track name parts */
85struct namepartlist {
86 int n;
87 struct namepart *s;
88};
89
90/** @brief A track name transform */
91struct transform {
92 char *type; /* track or dir */
93 char *context; /* sort or choose */
94 char *replace; /* substitution string */
95 pcre *re; /* compiled re */
96 unsigned flags; /* regexp flags */
97};
98
99/** @brief A list of track name transforms */
100struct transformlist {
101 int n;
102 struct transform *t;
103};
104#endif
105
106/** @brief System configuration */
107struct config {
108 /* server config */
109
110 /** @brief Authorization algorithm */
111 char *authorization_algorithm;
112
113 /** @brief All players */
114 struct stringlistlist player;
115
116 /** @brief All tracklength plugins */
117 struct stringlistlist tracklength;
118
119 /** @brief Scratch tracks */
120 struct stringlist scratch;
121
122 /** @brief Maximum number of recent tracks to record in history */
123 long history;
124
125 /** @brief Expiry limit for noticed.db */
126 long noticed_history;
127
128 /** @brief User for server to run as */
129 const char *user;
130
131 /** @brief Nice value for rescan subprocess */
132 long nice_rescan;
133
134 /** @brief Paths to search for plugins */
135 struct stringlist plugins;
136
137 /** @brief List of stopwords */
138 struct stringlist stopword;
139
140 /** @brief List of collections */
141 struct collectionlist collection;
142
143 /** @brief Database checkpoint byte limit */
144 long checkpoint_kbyte;
145
146 /** @brief Databsase checkpoint minimum */
147 long checkpoint_min;
148
149 /** @brief Path to mixer device */
150 char *mixer;
151
152 /** @brief Mixer channel to use */
153 char *channel;
154
155 /** @brief Secondary listen address */
156 struct netaddress listen;
157
158 /** @brief Alias format string */
159 const char *alias;
160
161 /** @brief Nice value for server */
162 long nice_server;
163
164 /** @brief Nice value for speaker */
165 long nice_speaker;
166
167 /** @brief Command execute by speaker to play audio */
168 const char *speaker_command;
169
170 /** @brief Pause mode for command backend */
171 const char *pause_mode;
172
173 /** @brief Target sample format */
174 struct stream_header sample_format;
175
176 /** @brief Sox syntax generation */
177 long sox_generation;
178
179 /** @brief API used to play sound */
180 const char *api;
181
182 /** @brief Maximum size of a playlist */
183 long playlist_max;
184
185 /** @brief Maximum lifetime of a playlist lock */
186 long playlist_lock_timeout;
187
188#if !_WIN32
189 /** @brief Home directory for state files */
190 const char *home;
191#endif
192
193 /** @brief Login username */
194 char *username;
195
196 /** @brief Login password */
197 char *password;
198
199 /** @brief Address to connect to */
200 struct netaddress connect;
201
202 /** @brief Directories to search for web templates */
203 struct stringlist templates;
204
205 /** @brief Canonical URL of web interface */
206 char *url;
207
208 /** @brief Short display limit */
209 long short_display;
210
211 /** @brief Maximum refresh interval for web interface (seconds) */
212 long refresh;
213
214 /** @brief Minimum refresh interval for web interface (seconds) */
215 long refresh_min;
216
217 /** @brief Target queue length */
218 long queue_pad;
219
220 /** @brief Minimum time between a track being played again */
221 long replay_min;
222
223#if HAVE_PCRE_H
224 struct namepartlist namepart; /* transformations */
225#endif
226
227 /** @brief Termination signal for subprocesses */
228 int signal;
229
230 /** @brief ALSA output device */
231 const char *device;
232
233#if HAVE_PCRE_H
234 struct transformlist transform; /* path name transformations */
235#endif
236
237 /** @brief Address to send audio data to */
238 struct netaddress broadcast;
239
240 /** @brief Source address for network audio transmission */
241 struct netaddress broadcast_from;
242
243 /** @brief RTP delay threshold */
244 long rtp_delay_threshold;
245
246 /** @brief Verbose RTP transmission logging */
247 int rtp_verbose;
248
249 /** @brief TTL for multicast packets */
250 long multicast_ttl;
251
252 /** @brief Whether to loop back multicast packets */
253 int multicast_loop;
254
255 /** @brief Login lifetime in seconds */
256 long cookie_login_lifetime;
257
258 /** @brief Signing key lifetime in seconds */
259 long cookie_key_lifetime;
260
261 /** @brief Default rights for a new user */
262 char *default_rights;
263
264 /** @brief Path to sendmail executable */
265 char *sendmail;
266
267 /** @brief SMTP server for sending mail */
268 char *smtp_server;
269
270 /** @brief Origin address for outbound mail */
271 char *mail_sender;
272
273 /** @brief Maximum number of tracks in response to 'new' */
274 long new_max;
275
276 /** @brief Minimum interval between password reminder emails */
277 long reminder_interval;
278
279 /** @brief Whether to allow user management over TCP */
280 int remote_userman;
281
282 /** @brief Maximum age of biased-up tracks */
283 long new_bias_age;
284
285 /** @brief Maximum bias */
286 long new_bias;
287
288 /** @brief Rescan on (un)mount */
289 int mount_rescan;
290
291 /** @brief RTP mode */
292 const char *rtp_mode;
293
294 /* derived values: */
295 int nparts; /* number of distinct name parts */
296 char **parts; /* name part list */
297
298 /* undocumented, for testing only */
299 long dbversion;
300};
301
302extern struct config *config;
303/* the current configuration */
304
305int config_read(int server,
306 const struct config *oldconfig);
307/* re-read config, return 0 on success or non-0 on error.
308 * Only updates @config@ if the new configuration is valid. */
309
310char *config_get_file2(struct config *c, const char *name);
311char *config_get_file(const char *name);
312/* get a filename within the home directory */
313
314struct passwd;
315
316char *config_userconf(const char *home, const struct passwd *pw);
317/* get the user's own private conffile, assuming their home dir is
318 * @home@ if not null and using @pw@ otherwise */
319
320char *config_usersysconf(const struct passwd *pw );
321/* get the user's conffile in /etc */
322
323char *config_private(void);
324/* get the private config file */
325
326int config_verify(void);
327
328void config_free(struct config *c);
329
330extern char *configfile;
331extern int config_per_user;
332
333extern const struct uaudio *const *config_uaudio_apis;
334
335#endif /* CONFIGURATION_H */
336
337/*
338Local Variables:
339c-basic-offset:2
340comment-column:40
341End:
342*/