chiark / gitweb /
lib/configuration.c, lib/uaudio-rtp.c: Allow tweaking MTU-discovery.
[disorder] / lib / configuration.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
cca89d7c 3 * Copyright (C) 2004-2011, 2013 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/configuration.h
19 * @brief Configuration file support
20 */
460b9539 21
22#ifndef CONFIGURATION_H
23#define CONFIGURATION_H
24
6d2d327c 25#include "speaker-protocol.h"
a2e9d147 26#include "regexp.h"
04e1fa7c 27#include "rights.h"
76e72f65 28#include "addr.h"
9d5da576 29
b50cfb8a
RK
30struct uaudio;
31
460b9539 32/* Configuration is kept in a @struct config@; the live configuration
33 * is always pointed to by @config@. Values in @config@ are UTF-8 encoded.
34 */
35
3f3bb97b 36/** @brief A list of strings */
460b9539 37struct stringlist {
3f3bb97b 38 /** @brief Number of strings */
460b9539 39 int n;
3f3bb97b 40 /** @brief Array of strings */
460b9539 41 char **s;
42};
43
3f3bb97b 44/** @brief A list of list of strings */
460b9539 45struct stringlistlist {
3f3bb97b 46 /** @brief Number of string lists */
460b9539 47 int n;
3f3bb97b 48 /** @brief Array of string lists */
460b9539 49 struct stringlist *s;
50};
51
3f3bb97b 52/** @brief A collection of tracks */
460b9539 53struct collection {
3f3bb97b 54 /** @brief Module that supports this collection */
460b9539 55 char *module;
3f3bb97b 56 /** @brief Filename encoding */
460b9539 57 char *encoding;
3f3bb97b 58 /** @brief Root directory */
460b9539 59 char *root;
60};
61
3f3bb97b 62/** @brief A list of collections */
460b9539 63struct collectionlist {
3f3bb97b 64 /** @brief Number of collections */
460b9539 65 int n;
3f3bb97b 66 /** @brief Array of collections */
460b9539 67 struct collection *s;
68};
69
598b07b7 70/** @brief A track name part */
460b9539 71struct namepart {
72 char *part; /* part */
a2e9d147 73 regexp *re; /* compiled regexp */
9417e1a3 74 char *res; /* regexp as a string */
460b9539 75 char *replace; /* replacement string */
76 char *context; /* context glob */
77 unsigned reflags; /* regexp flags */
78};
79
598b07b7 80/** @brief A list of track name parts */
460b9539 81struct namepartlist {
82 int n;
83 struct namepart *s;
84};
85
598b07b7 86/** @brief A track name transform */
460b9539 87struct transform {
88 char *type; /* track or dir */
89 char *context; /* sort or choose */
90 char *replace; /* substitution string */
a2e9d147 91 regexp *re; /* compiled re */
460b9539 92 unsigned flags; /* regexp flags */
93};
94
598b07b7 95/** @brief A list of track name transforms */
460b9539 96struct transformlist {
97 int n;
98 struct transform *t;
99};
100
3f3bb97b 101/** @brief System configuration */
460b9539 102struct config {
103 /* server config */
3f3bb97b 104
637fdea3
RK
105 /** @brief Authorization algorithm */
106 char *authorization_algorithm;
107
3f3bb97b
RK
108 /** @brief All players */
109 struct stringlistlist player;
110
62dc3748
RK
111 /** @brief All tracklength plugins */
112 struct stringlistlist tracklength;
113
3f3bb97b
RK
114 /** @brief Scratch tracks */
115 struct stringlist scratch;
116
3f3bb97b
RK
117 /** @brief Maximum number of recent tracks to record in history */
118 long history;
119
2a10b70b
RK
120 /** @brief Expiry limit for noticed.db */
121 long noticed_history;
122
3f3bb97b
RK
123 /** @brief User for server to run as */
124 const char *user;
125
126 /** @brief Nice value for rescan subprocess */
127 long nice_rescan;
128
129 /** @brief Paths to search for plugins */
130 struct stringlist plugins;
131
132 /** @brief List of stopwords */
133 struct stringlist stopword;
134
135 /** @brief List of collections */
136 struct collectionlist collection;
137
138 /** @brief Database checkpoint byte limit */
460b9539 139 long checkpoint_kbyte;
3f3bb97b
RK
140
141 /** @brief Databsase checkpoint minimum */
460b9539 142 long checkpoint_min;
3f3bb97b
RK
143
144 /** @brief Path to mixer device */
145 char *mixer;
146
147 /** @brief Mixer channel to use */
148 char *channel;
149
3f3bb97b 150 /** @brief Secondary listen address */
80dc2c5f 151 struct netaddress listen;
3f3bb97b
RK
152
153 /** @brief Alias format string */
154 const char *alias;
155
3f3bb97b
RK
156 /** @brief Nice value for server */
157 long nice_server;
158
159 /** @brief Nice value for speaker */
160 long nice_speaker;
161
162 /** @brief Command execute by speaker to play audio */
163 const char *speaker_command;
164
f75ab9d3
RK
165 /** @brief Pause mode for command backend */
166 const char *pause_mode;
167
3f3bb97b 168 /** @brief Target sample format */
6d2d327c 169 struct stream_header sample_format;
3f3bb97b
RK
170
171 /** @brief Sox syntax generation */
172 long sox_generation;
173
b50cfb8a
RK
174 /** @brief API used to play sound */
175 const char *api;
3c499fe7 176
2563dc1f
RK
177 /** @brief Maximum size of a playlist */
178 long playlist_max;
179
ddbf05c8
RK
180 /** @brief Maximum lifetime of a playlist lock */
181 long playlist_lock_timeout;
182
9e42afcd 183#if !_WIN32
3f3bb97b
RK
184 /** @brief Home directory for state files */
185 const char *home;
9e42afcd 186#endif
3f3bb97b
RK
187
188 /** @brief Login username */
47854c5f 189 char *username;
3f3bb97b
RK
190
191 /** @brief Login password */
47854c5f 192 char *password;
3f3bb97b
RK
193
194 /** @brief Address to connect to */
e41a9999 195 struct netaddress connect;
3f3bb97b
RK
196
197 /** @brief Directories to search for web templates */
198 struct stringlist templates;
199
200 /** @brief Canonical URL of web interface */
b64c2805 201 char *url;
3f3bb97b 202
61507e3c
RK
203 /** @brief Short display limit */
204 long short_display;
205
3f3bb97b
RK
206 /** @brief Maximum refresh interval for web interface (seconds) */
207 long refresh;
208
533272be
RK
209 /** @brief Minimum refresh interval for web interface (seconds) */
210 long refresh_min;
211
3f3bb97b
RK
212 /** @brief Target queue length */
213 long queue_pad;
214
cebe3127
RK
215 /** @brief Minimum time between a track being played again */
216 long replay_min;
217
460b9539 218 struct namepartlist namepart; /* transformations */
3f3bb97b
RK
219
220 /** @brief Termination signal for subprocesses */
221 int signal;
222
223 /** @brief ALSA output device */
224 const char *device;
cca89d7c 225
460b9539 226 struct transformlist transform; /* path name transformations */
227
23205f9c 228 /** @brief Address to send audio data to */
76e72f65 229 struct netaddress broadcast;
23205f9c
RK
230
231 /** @brief Source address for network audio transmission */
76e72f65 232 struct netaddress broadcast_from;
23205f9c 233
ba70caca
RK
234 /** @brief RTP delay threshold */
235 long rtp_delay_threshold;
87864f77 236
14b5913c
MW
237 /** @brief Whether to ignore the server's suggested RTP arrangement and
238 * always request a unicast stream */
239 int rtp_always_request;
240
241 /** @brief RTP buffer low-water mark */
242 long rtp_minbuffer;
243
244 /** @brief RTP buffer maximum size */
245 long rtp_maxbuffer;
246
247 /* @brief RTP receive buffer size */
248 long rtp_rcvbuf;
249
250 /** @brief Fixed RTP listening address */
251 struct netaddress rtp_request_address;
252
87864f77
RK
253 /** @brief Verbose RTP transmission logging */
254 int rtp_verbose;
ba70caca 255
23205f9c
RK
256 /** @brief TTL for multicast packets */
257 long multicast_ttl;
e83d0967 258
61941295
RK
259 /** @brief Whether to loop back multicast packets */
260 int multicast_loop;
b12be54a 261
2a2b84aa
MW
262 /** @brief Maximum size of RTP payload to send
263 *
264 * This is the maximum number of bytes we pass to write(2); to determine
265 * actual packet sizes, add a UDP header and an IP header (and a link layer
266 * header if it's the link layer size you care about).
267 *
268 * Don't make this too big or arithmetic will start to overflow.
269 */
270 long rtp_max_payload;
271
10511fad
MW
272 /** @brief Whether to allow MTU discovery
273 *
274 * This is `yes' to force it on, `no' to force it off, or `default' to do
275 * whatever the system is configured to do. Note that this only has a
276 * useful effect in IPv4, since IPv6 doesn't permit hop-by-hop
277 * fragmentation.
278 */
279 char *rtp_mtu_discovery;
280
b12be54a
RK
281 /** @brief Login lifetime in seconds */
282 long cookie_login_lifetime;
283
284 /** @brief Signing key lifetime in seconds */
285 long cookie_key_lifetime;
04e1fa7c
RK
286
287 /** @brief Default rights for a new user */
0f55e905 288 char *default_rights;
bb6ae3fb 289
2eee4b0c
RK
290 /** @brief Path to sendmail executable */
291 char *sendmail;
292
bb6ae3fb 293 /** @brief SMTP server for sending mail */
294 char *smtp_server;
295
296 /** @brief Origin address for outbound mail */
297 char *mail_sender;
d742bb47
RK
298
299 /** @brief Maximum number of tracks in response to 'new' */
300 long new_max;
6207d2f3 301
302 /** @brief Minimum interval between password reminder emails */
303 long reminder_interval;
810b8083
RK
304
305 /** @brief Whether to allow user management over TCP */
306 int remote_userman;
05dcfac6
RK
307
308 /** @brief Maximum age of biased-up tracks */
309 long new_bias_age;
310
311 /** @brief Maximum bias */
312 long new_bias;
8488cf7d
RK
313
314 /** @brief Rescan on (un)mount */
315 int mount_rescan;
316
b0116b5c
RK
317 /** @brief RTP mode */
318 const char *rtp_mode;
319
460b9539 320 /* derived values: */
321 int nparts; /* number of distinct name parts */
322 char **parts; /* name part list */
8818b7fc
RK
323
324 /* undocumented, for testing only */
325 long dbversion;
460b9539 326};
327
328extern struct config *config;
329/* the current configuration */
330
02ba7921
RK
331int config_read(int server,
332 const struct config *oldconfig);
460b9539 333/* re-read config, return 0 on success or non-0 on error.
334 * Only updates @config@ if the new configuration is valid. */
335
319d7107 336char *config_get_file2(struct config *c, const char *name);
460b9539 337char *config_get_file(const char *name);
338/* get a filename within the home directory */
339
340struct passwd;
341
342char *config_userconf(const char *home, const struct passwd *pw);
343/* get the user's own private conffile, assuming their home dir is
344 * @home@ if not null and using @pw@ otherwise */
345
346char *config_usersysconf(const struct passwd *pw );
347/* get the user's conffile in /etc */
348
349char *config_private(void);
350/* get the private config file */
351
2a1c84fb
RK
352int config_verify(void);
353
47854c5f
RK
354void config_free(struct config *c);
355
460b9539 356extern char *configfile;
63ad732f 357extern int config_per_user;
460b9539 358
b50cfb8a
RK
359extern const struct uaudio *const *config_uaudio_apis;
360
460b9539 361#endif /* CONFIGURATION_H */
362
363/*
364Local Variables:
365c-basic-offset:2
366comment-column:40
367End:
368*/