Merge master; fix destruction of Server; some test cleanups.
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/config.h
21  *  @brief Class holding configuration.
22  */
23
24 #ifndef DCPOMATIC_CONFIG_H
25 #define DCPOMATIC_CONFIG_H
26
27 #include <vector>
28 #include <boost/shared_ptr.hpp>
29 #include <boost/signals2.hpp>
30 #include <boost/filesystem.hpp>
31 #include <dcp/metadata.h>
32 #include "isdcf_metadata.h"
33 #include "colour_conversion.h"
34
35 class ServerDescription;
36 class Scaler;
37 class Filter;
38 class SoundProcessor;
39 class DCPContentType;
40 class Ratio;
41 class Cinema;
42
43 /** @class Config
44  *  @brief A singleton class holding configuration.
45  */
46 class Config : public boost::noncopyable
47 {
48 public:
49
50         /** @return number of threads to use for J2K encoding on the local machine */
51         int num_local_encoding_threads () const {
52                 return _num_local_encoding_threads;
53         }
54
55         boost::filesystem::path default_directory () const {
56                 return _default_directory;
57         }
58
59         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
60
61         /** @return base port number to use for J2K encoding servers */
62         int server_port_base () const {
63                 return _server_port_base;
64         }
65
66         void set_use_any_servers (bool u) {
67                 _use_any_servers = u;
68                 changed ();
69         }
70
71         bool use_any_servers () const {
72                 return _use_any_servers;
73         }
74
75         /** @param s New list of servers */
76         void set_servers (std::vector<std::string> s) {
77                 _servers = s;
78                 changed ();
79         }
80
81         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
82         std::vector<std::string> servers () const {
83                 return _servers;
84         }
85
86         /** @return The IP address of a TMS that we can copy DCPs to */
87         std::string tms_ip () const {
88                 return _tms_ip;
89         }
90         
91         /** @return The path on a TMS that we should changed DCPs to */
92         std::string tms_path () const {
93                 return _tms_path;
94         }
95
96         /** @return User name to log into the TMS with */
97         std::string tms_user () const {
98                 return _tms_user;
99         }
100
101         /** @return Password to log into the TMS with */
102         std::string tms_password () const {
103                 return _tms_password;
104         }
105
106         /** @return The sound processor that we are using */
107         SoundProcessor const * sound_processor () const {
108                 return _sound_processor;
109         }
110
111         std::list<boost::shared_ptr<Cinema> > cinemas () const {
112                 return _cinemas;
113         }
114         
115         std::list<int> allowed_dcp_frame_rates () const {
116                 return _allowed_dcp_frame_rates;
117         }
118
119         bool allow_any_dcp_frame_rate () const {
120                 return _allow_any_dcp_frame_rate;
121         }
122         
123         ISDCFMetadata default_isdcf_metadata () const {
124                 return _default_isdcf_metadata;
125         }
126
127         boost::optional<std::string> language () const {
128                 return _language;
129         }
130
131         int default_still_length () const {
132                 return _default_still_length;
133         }
134
135         Ratio const * default_container () const {
136                 return _default_container;
137         }
138
139         DCPContentType const * default_dcp_content_type () const {
140                 return _default_dcp_content_type;
141         }
142
143         dcp::XMLMetadata dcp_metadata () const {
144                 return _dcp_metadata;
145         }
146
147         int default_j2k_bandwidth () const {
148                 return _default_j2k_bandwidth;
149         }
150
151         int default_audio_delay () const {
152                 return _default_audio_delay;
153         }
154
155         std::vector<PresetColourConversion> colour_conversions () const {
156                 return _colour_conversions;
157         }
158
159         std::string mail_server () const {
160                 return _mail_server;
161         }
162
163         std::string mail_user () const {
164                 return _mail_user;
165         }
166
167         std::string mail_password () const {
168                 return _mail_password;
169         }
170
171         std::string kdm_from () const {
172                 return _kdm_from;
173         }
174
175         std::string kdm_email () const {
176                 return _kdm_email;
177         }
178
179         bool check_for_updates () const {
180                 return _check_for_updates;
181         }
182
183         bool check_for_test_updates () const {
184                 return _check_for_test_updates;
185         }
186
187         int maximum_j2k_bandwidth () const {
188                 return _maximum_j2k_bandwidth;
189         }
190
191         int log_types () const {
192                 return _log_types;
193         }
194         
195         /** @param n New number of local encoding threads */
196         void set_num_local_encoding_threads (int n) {
197                 _num_local_encoding_threads = n;
198                 changed ();
199         }
200
201         void set_default_directory (boost::filesystem::path d) {
202                 _default_directory = d;
203                 changed ();
204         }
205
206         /** @param p New server port */
207         void set_server_port_base (int p) {
208                 _server_port_base = p;
209                 changed ();
210         }
211
212         /** @param i IP address of a TMS that we can copy DCPs to */
213         void set_tms_ip (std::string i) {
214                 _tms_ip = i;
215                 changed ();
216         }
217
218         /** @param p Path on a TMS that we should changed DCPs to */
219         void set_tms_path (std::string p) {
220                 _tms_path = p;
221                 changed ();
222         }
223
224         /** @param u User name to log into the TMS with */
225         void set_tms_user (std::string u) {
226                 _tms_user = u;
227                 changed ();
228         }
229
230         /** @param p Password to log into the TMS with */
231         void set_tms_password (std::string p) {
232                 _tms_password = p;
233                 changed ();
234         }
235
236         void add_cinema (boost::shared_ptr<Cinema> c) {
237                 _cinemas.push_back (c);
238                 changed ();
239         }
240
241         void remove_cinema (boost::shared_ptr<Cinema> c) {
242                 _cinemas.remove (c);
243                 changed ();
244         }
245
246         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
247                 _allowed_dcp_frame_rates = r;
248                 changed ();
249         }
250
251         void set_allow_any_dcp_frame_rate (bool a) {
252                 _allow_any_dcp_frame_rate = a;
253                 changed ();
254         }
255
256         void set_default_isdcf_metadata (ISDCFMetadata d) {
257                 _default_isdcf_metadata = d;
258                 changed ();
259         }
260
261         void set_language (std::string l) {
262                 _language = l;
263                 changed ();
264         }
265
266         void unset_language () {
267                 _language = boost::none;
268                 changed ();
269         }
270
271         void set_default_still_length (int s) {
272                 _default_still_length = s;
273                 changed ();
274         }
275
276         void set_default_container (Ratio const * c) {
277                 _default_container = c;
278                 changed ();
279         }
280
281         void set_default_dcp_content_type (DCPContentType const * t) {
282                 _default_dcp_content_type = t;
283                 changed ();
284         }
285
286         void set_dcp_metadata (dcp::XMLMetadata m) {
287                 _dcp_metadata = m;
288                 changed ();
289         }
290
291         void set_default_j2k_bandwidth (int b) {
292                 _default_j2k_bandwidth = b;
293                 changed ();
294         }
295
296         void set_default_audio_delay (int d) {
297                 _default_audio_delay = d;
298                 changed ();
299         }
300
301         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
302                 _colour_conversions = c;
303                 changed ();
304         }
305
306         void set_mail_server (std::string s) {
307                 _mail_server = s;
308                 changed ();
309         }
310
311         void set_mail_user (std::string u) {
312                 _mail_user = u;
313                 changed ();
314         }
315
316         void set_mail_password (std::string p) {
317                 _mail_password = p;
318                 changed ();
319         }
320
321         void set_kdm_from (std::string f) {
322                 _kdm_from = f;
323                 changed ();
324         }
325
326         void set_kdm_email (std::string e) {
327                 _kdm_email = e;
328                 changed ();
329         }
330
331         void set_check_for_updates (bool c) {
332                 _check_for_updates = c;
333                 changed ();
334         }
335
336         void set_check_for_test_updates (bool c) {
337                 _check_for_test_updates = c;
338                 changed ();
339         }
340
341         void set_maximum_j2k_bandwidth (int b) {
342                 _maximum_j2k_bandwidth = b;
343                 changed ();
344         }
345
346         void set_log_types (int t) {
347                 _log_types = t;
348                 changed ();
349         }
350         
351         boost::filesystem::path signer_chain_directory () const;
352
353         void changed ();
354         boost::signals2::signal<void ()> Changed;
355
356         static Config* instance ();
357         static void drop ();
358
359 private:
360         Config ();
361         boost::filesystem::path file (bool) const;
362         void read ();
363         void read_old_metadata ();
364         void write () const;
365
366         /** number of threads to use for J2K encoding on the local machine */
367         int _num_local_encoding_threads;
368         /** default directory to put new films in */
369         boost::filesystem::path _default_directory;
370         /** base port number to use for J2K encoding servers;
371          *  this port and the one above it will be used.
372          */
373         int _server_port_base;
374         /** true to broadcast on the `any' address to look for servers */
375         bool _use_any_servers;
376         /** J2K encoding servers that should definitely be used */
377         std::vector<std::string> _servers;
378         /** The IP address of a TMS that we can copy DCPs to */
379         std::string _tms_ip;
380         /** The path on a TMS that we should write DCPs to */
381         std::string _tms_path;
382         /** User name to log into the TMS with */
383         std::string _tms_user;
384         /** Password to log into the TMS with */
385         std::string _tms_password;
386         /** Our sound processor */
387         SoundProcessor const * _sound_processor;
388         std::list<int> _allowed_dcp_frame_rates;
389         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
390         bool _allow_any_dcp_frame_rate;
391         /** Default ISDCF metadata for newly-created Films */
392         ISDCFMetadata _default_isdcf_metadata;
393         boost::optional<std::string> _language;
394         int _default_still_length;
395         Ratio const * _default_container;
396         DCPContentType const * _default_dcp_content_type;
397         dcp::XMLMetadata _dcp_metadata;
398         int _default_j2k_bandwidth;
399         int _default_audio_delay;
400         std::vector<PresetColourConversion> _colour_conversions;
401         std::list<boost::shared_ptr<Cinema> > _cinemas;
402         std::string _mail_server;
403         std::string _mail_user;
404         std::string _mail_password;
405         std::string _kdm_from;
406         std::string _kdm_email;
407         /** true to check for updates on startup */
408         bool _check_for_updates;
409         bool _check_for_test_updates;
410         /** maximum allowed J2K bandwidth in bits per second */
411         int _maximum_j2k_bandwidth;
412         int _log_types;
413
414         /** Singleton instance, or 0 */
415         static Config* _instance;
416 };
417
418 #endif