Keep signing certificates / keys in config.xml rather than on disk; allow configuration.
[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 <dcp/certificates.h>
33 #include <dcp/signer.h>
34 #include "isdcf_metadata.h"
35 #include "colour_conversion.h"
36
37 class ServerDescription;
38 class Scaler;
39 class Filter;
40 class CinemaSoundProcessor;
41 class DCPContentType;
42 class Ratio;
43 class Cinema;
44
45 /** @class Config
46  *  @brief A singleton class holding configuration.
47  */
48 class Config : public boost::noncopyable
49 {
50 public:
51
52         /** @return number of threads to use for J2K encoding on the local machine */
53         int num_local_encoding_threads () const {
54                 return _num_local_encoding_threads;
55         }
56
57         boost::filesystem::path default_directory () const {
58                 return _default_directory;
59         }
60
61         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
62
63         /** @return base port number to use for J2K encoding servers */
64         int server_port_base () const {
65                 return _server_port_base;
66         }
67
68         void set_use_any_servers (bool u) {
69                 _use_any_servers = u;
70                 changed ();
71         }
72
73         bool use_any_servers () const {
74                 return _use_any_servers;
75         }
76
77         /** @param s New list of servers */
78         void set_servers (std::vector<std::string> s) {
79                 _servers = s;
80                 changed ();
81         }
82
83         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
84         std::vector<std::string> servers () const {
85                 return _servers;
86         }
87
88         /** @return The IP address of a TMS that we can copy DCPs to */
89         std::string tms_ip () const {
90                 return _tms_ip;
91         }
92         
93         /** @return The path on a TMS that we should changed DCPs to */
94         std::string tms_path () const {
95                 return _tms_path;
96         }
97
98         /** @return User name to log into the TMS with */
99         std::string tms_user () const {
100                 return _tms_user;
101         }
102
103         /** @return Password to log into the TMS with */
104         std::string tms_password () const {
105                 return _tms_password;
106         }
107
108         /** @return The cinema sound processor that we are using */
109         CinemaSoundProcessor const * cinema_sound_processor () const {
110                 return _cinema_sound_processor;
111         }
112
113         std::list<boost::shared_ptr<Cinema> > cinemas () const {
114                 return _cinemas;
115         }
116         
117         std::list<int> allowed_dcp_frame_rates () const {
118                 return _allowed_dcp_frame_rates;
119         }
120
121         bool allow_any_dcp_frame_rate () const {
122                 return _allow_any_dcp_frame_rate;
123         }
124         
125         ISDCFMetadata default_isdcf_metadata () const {
126                 return _default_isdcf_metadata;
127         }
128
129         boost::optional<std::string> language () const {
130                 return _language;
131         }
132
133         int default_still_length () const {
134                 return _default_still_length;
135         }
136
137         Ratio const * default_scale () const {
138                 return _default_scale;
139         }
140
141         Ratio const * default_container () const {
142                 return _default_container;
143         }
144
145         DCPContentType const * default_dcp_content_type () const {
146                 return _default_dcp_content_type;
147         }
148
149         dcp::XMLMetadata dcp_metadata () const {
150                 return _dcp_metadata;
151         }
152
153         int default_j2k_bandwidth () const {
154                 return _default_j2k_bandwidth;
155         }
156
157         int default_audio_delay () const {
158                 return _default_audio_delay;
159         }
160
161         std::vector<PresetColourConversion> colour_conversions () const {
162                 return _colour_conversions;
163         }
164
165         std::string mail_server () const {
166                 return _mail_server;
167         }
168
169         std::string mail_user () const {
170                 return _mail_user;
171         }
172
173         std::string mail_password () const {
174                 return _mail_password;
175         }
176
177         std::string kdm_subject () const {
178                 return _kdm_subject;
179         }
180
181         std::string kdm_from () const {
182                 return _kdm_from;
183         }
184
185         std::string kdm_cc () const {
186                 return _kdm_cc;
187         }
188         
189         std::string kdm_email () const {
190                 return _kdm_email;
191         }
192
193         boost::shared_ptr<const dcp::Signer> signer () const {
194                 return _signer;
195         }
196
197         dcp::Certificate decryption_certificate () const {
198                 return _decryption_certificate;
199         }
200
201         std::string decryption_private_key () const {
202                 return _decryption_private_key;
203         }
204
205         bool check_for_updates () const {
206                 return _check_for_updates;
207         }
208
209         bool check_for_test_updates () const {
210                 return _check_for_test_updates;
211         }
212
213         int maximum_j2k_bandwidth () const {
214                 return _maximum_j2k_bandwidth;
215         }
216
217         int log_types () const {
218                 return _log_types;
219         }
220         
221         /** @param n New number of local encoding threads */
222         void set_num_local_encoding_threads (int n) {
223                 _num_local_encoding_threads = n;
224                 changed ();
225         }
226
227         void set_default_directory (boost::filesystem::path d) {
228                 _default_directory = d;
229                 changed ();
230         }
231
232         /** @param p New server port */
233         void set_server_port_base (int p) {
234                 _server_port_base = p;
235                 changed ();
236         }
237
238         /** @param i IP address of a TMS that we can copy DCPs to */
239         void set_tms_ip (std::string i) {
240                 _tms_ip = i;
241                 changed ();
242         }
243
244         /** @param p Path on a TMS that we should changed DCPs to */
245         void set_tms_path (std::string p) {
246                 _tms_path = p;
247                 changed ();
248         }
249
250         /** @param u User name to log into the TMS with */
251         void set_tms_user (std::string u) {
252                 _tms_user = u;
253                 changed ();
254         }
255
256         /** @param p Password to log into the TMS with */
257         void set_tms_password (std::string p) {
258                 _tms_password = p;
259                 changed ();
260         }
261
262         void add_cinema (boost::shared_ptr<Cinema> c) {
263                 _cinemas.push_back (c);
264                 changed ();
265         }
266
267         void remove_cinema (boost::shared_ptr<Cinema> c) {
268                 _cinemas.remove (c);
269                 changed ();
270         }
271
272         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
273                 _allowed_dcp_frame_rates = r;
274                 changed ();
275         }
276
277         void set_allow_any_dcp_frame_rate (bool a) {
278                 _allow_any_dcp_frame_rate = a;
279                 changed ();
280         }
281
282         void set_default_isdcf_metadata (ISDCFMetadata d) {
283                 _default_isdcf_metadata = d;
284                 changed ();
285         }
286
287         void set_language (std::string l) {
288                 _language = l;
289                 changed ();
290         }
291
292         void unset_language () {
293                 _language = boost::none;
294                 changed ();
295         }
296
297         void set_default_still_length (int s) {
298                 _default_still_length = s;
299                 changed ();
300         }
301
302         void set_default_scale (Ratio const * s) {
303                 _default_scale = s;
304                 changed ();
305         }
306
307         void set_default_container (Ratio const * c) {
308                 _default_container = c;
309                 changed ();
310         }
311
312         void set_default_dcp_content_type (DCPContentType const * t) {
313                 _default_dcp_content_type = t;
314                 changed ();
315         }
316
317         void set_dcp_metadata (dcp::XMLMetadata m) {
318                 _dcp_metadata = m;
319                 changed ();
320         }
321
322         void set_default_j2k_bandwidth (int b) {
323                 _default_j2k_bandwidth = b;
324                 changed ();
325         }
326
327         void set_default_audio_delay (int d) {
328                 _default_audio_delay = d;
329                 changed ();
330         }
331
332         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
333                 _colour_conversions = c;
334                 changed ();
335         }
336
337         void set_mail_server (std::string s) {
338                 _mail_server = s;
339                 changed ();
340         }
341
342         void set_mail_user (std::string u) {
343                 _mail_user = u;
344                 changed ();
345         }
346
347         void set_mail_password (std::string p) {
348                 _mail_password = p;
349                 changed ();
350         }
351
352         void set_kdm_subject (std::string s) {
353                 _kdm_subject = s;
354                 changed ();
355         }
356
357         void set_kdm_from (std::string f) {
358                 _kdm_from = f;
359                 changed ();
360         }
361
362         void set_kdm_cc (std::string f) {
363                 _kdm_cc = f;
364                 changed ();
365         }
366         
367         void set_kdm_email (std::string e) {
368                 _kdm_email = e;
369                 changed ();
370         }
371
372         void reset_kdm_email ();
373
374         void set_signer (boost::shared_ptr<const dcp::Signer> s) {
375                 _signer = s;
376                 changed ();
377         }
378
379         void set_decryption_certificate (dcp::Certificate c) {
380                 _decryption_certificate = c;
381                 changed ();
382         }
383
384         void set_decryption_private_key (std::string k) {
385                 _decryption_private_key = k;
386                 changed ();
387         }
388
389         void set_check_for_updates (bool c) {
390                 _check_for_updates = c;
391                 changed ();
392         }
393
394         void set_check_for_test_updates (bool c) {
395                 _check_for_test_updates = c;
396                 changed ();
397         }
398
399         void set_maximum_j2k_bandwidth (int b) {
400                 _maximum_j2k_bandwidth = b;
401                 changed ();
402         }
403
404         void set_log_types (int t) {
405                 _log_types = t;
406                 changed ();
407         }
408         
409         void changed ();
410         boost::signals2::signal<void ()> Changed;
411
412         static Config* instance ();
413         static void drop ();
414
415 private:
416         Config ();
417         boost::filesystem::path file (bool) const;
418         void read ();
419         void write () const;
420
421         /** number of threads to use for J2K encoding on the local machine */
422         int _num_local_encoding_threads;
423         /** default directory to put new films in */
424         boost::filesystem::path _default_directory;
425         /** base port number to use for J2K encoding servers;
426          *  this port and the one above it will be used.
427          */
428         int _server_port_base;
429         /** true to broadcast on the `any' address to look for servers */
430         bool _use_any_servers;
431         /** J2K encoding servers that should definitely be used */
432         std::vector<std::string> _servers;
433         /** The IP address of a TMS that we can copy DCPs to */
434         std::string _tms_ip;
435         /** The path on a TMS that we should write DCPs to */
436         std::string _tms_path;
437         /** User name to log into the TMS with */
438         std::string _tms_user;
439         /** Password to log into the TMS with */
440         std::string _tms_password;
441         /** Our cinema sound processor */
442         CinemaSoundProcessor const * _cinema_sound_processor;
443         std::list<int> _allowed_dcp_frame_rates;
444         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
445         bool _allow_any_dcp_frame_rate;
446         /** Default ISDCF metadata for newly-created Films */
447         ISDCFMetadata _default_isdcf_metadata;
448         boost::optional<std::string> _language;
449         int _default_still_length;
450         Ratio const * _default_scale;
451         Ratio const * _default_container;
452         DCPContentType const * _default_dcp_content_type;
453         dcp::XMLMetadata _dcp_metadata;
454         int _default_j2k_bandwidth;
455         int _default_audio_delay;
456         std::vector<PresetColourConversion> _colour_conversions;
457         std::list<boost::shared_ptr<Cinema> > _cinemas;
458         std::string _mail_server;
459         std::string _mail_user;
460         std::string _mail_password;
461         std::string _kdm_subject;
462         std::string _kdm_from;
463         std::string _kdm_cc;
464         std::string _kdm_email;
465         boost::shared_ptr<const dcp::Signer> _signer;
466         dcp::Certificate _decryption_certificate;
467         std::string _decryption_private_key;
468         /** true to check for updates on startup */
469         bool _check_for_updates;
470         bool _check_for_test_updates;
471         /** maximum allowed J2K bandwidth in bits per second */
472         int _maximum_j2k_bandwidth;
473         int _log_types;
474
475         /** Singleton instance, or 0 */
476         static Config* _instance;
477 };
478
479 #endif