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