No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/config.h
22  *  @brief Class holding configuration.
23  */
24
25 #ifndef DCPOMATIC_CONFIG_H
26 #define DCPOMATIC_CONFIG_H
27
28 #include "isdcf_metadata.h"
29 #include "types.h"
30 #include <dcp/certificate_chain.h>
31 #include <dcp/encrypted_kdm.h>
32 #include <boost/shared_ptr.hpp>
33 #include <boost/signals2.hpp>
34 #include <boost/filesystem.hpp>
35 #include <vector>
36
37 class CinemaSoundProcessor;
38 class DCPContentType;
39 class Ratio;
40 class Cinema;
41
42 /** @class Config
43  *  @brief A singleton class holding configuration.
44  */
45 class Config : public boost::noncopyable
46 {
47 public:
48         /** @return number of threads to use for J2K encoding on the local machine */
49         int num_local_encoding_threads () const {
50                 return _num_local_encoding_threads;
51         }
52
53         boost::filesystem::path default_directory () const {
54                 return _default_directory;
55         }
56
57         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
58
59         enum Property {
60                 USE_ANY_SERVERS,
61                 SERVERS,
62                 OTHER
63         };
64
65         /** @return base port number to use for J2K encoding servers */
66         int server_port_base () const {
67                 return _server_port_base;
68         }
69
70         void set_use_any_servers (bool u) {
71                 _use_any_servers = u;
72                 changed (USE_ANY_SERVERS);
73         }
74
75         bool use_any_servers () const {
76                 return _use_any_servers;
77         }
78
79         /** @param s New list of servers */
80         void set_servers (std::vector<std::string> s) {
81                 _servers = s;
82                 changed (SERVERS);
83         }
84
85         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
86         std::vector<std::string> servers () const {
87                 return _servers;
88         }
89
90         bool only_servers_encode () const {
91                 return _only_servers_encode;
92         }
93
94         Protocol tms_protocol () const {
95                 return _tms_protocol;
96         }
97
98         /** @return The IP address of a TMS that we can copy DCPs to */
99         std::string tms_ip () const {
100                 return _tms_ip;
101         }
102
103         /** @return The path on a TMS that we should changed DCPs to */
104         std::string tms_path () const {
105                 return _tms_path;
106         }
107
108         /** @return User name to log into the TMS with */
109         std::string tms_user () const {
110                 return _tms_user;
111         }
112
113         /** @return Password to log into the TMS with */
114         std::string tms_password () const {
115                 return _tms_password;
116         }
117
118         /** @return The cinema sound processor that we are using */
119         CinemaSoundProcessor const * cinema_sound_processor () const {
120                 return _cinema_sound_processor;
121         }
122
123         std::list<boost::shared_ptr<Cinema> > cinemas () const {
124                 return _cinemas;
125         }
126
127         std::list<int> allowed_dcp_frame_rates () const {
128                 return _allowed_dcp_frame_rates;
129         }
130
131         bool allow_any_dcp_frame_rate () const {
132                 return _allow_any_dcp_frame_rate;
133         }
134
135         ISDCFMetadata default_isdcf_metadata () const {
136                 return _default_isdcf_metadata;
137         }
138
139         boost::optional<std::string> language () const {
140                 return _language;
141         }
142
143         int default_still_length () const {
144                 return _default_still_length;
145         }
146
147         Ratio const * default_container () const {
148                 return _default_container;
149         }
150
151         DCPContentType const * default_dcp_content_type () const {
152                 return _default_dcp_content_type;
153         }
154
155         std::string dcp_issuer () const {
156                 return _dcp_issuer;
157         }
158
159         std::string dcp_creator () const {
160                 return _dcp_creator;
161         }
162
163         int default_j2k_bandwidth () const {
164                 return _default_j2k_bandwidth;
165         }
166
167         int default_audio_delay () const {
168                 return _default_audio_delay;
169         }
170
171         bool default_interop () const {
172                 return _default_interop;
173         }
174
175         std::string mail_server () const {
176                 return _mail_server;
177         }
178
179         int mail_port () const {
180                 return _mail_port;
181         }
182
183         std::string mail_user () const {
184                 return _mail_user;
185         }
186
187         std::string mail_password () const {
188                 return _mail_password;
189         }
190
191         std::string kdm_subject () const {
192                 return _kdm_subject;
193         }
194
195         std::string kdm_from () const {
196                 return _kdm_from;
197         }
198
199         std::vector<std::string> kdm_cc () const {
200                 return _kdm_cc;
201         }
202
203         std::string kdm_bcc () const {
204                 return _kdm_bcc;
205         }
206
207         std::string kdm_email () const {
208                 return _kdm_email;
209         }
210
211         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
212                 return _signer_chain;
213         }
214
215         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
216                 return _decryption_chain;
217         }
218
219         bool check_for_updates () const {
220                 return _check_for_updates;
221         }
222
223         bool check_for_test_updates () const {
224                 return _check_for_test_updates;
225         }
226
227         int maximum_j2k_bandwidth () const {
228                 return _maximum_j2k_bandwidth;
229         }
230
231         int log_types () const {
232                 return _log_types;
233         }
234
235         bool analyse_ebur128 () const {
236                 return _analyse_ebur128;
237         }
238
239         bool automatic_audio_analysis () const {
240                 return _automatic_audio_analysis;
241         }
242
243 #ifdef DCPOMATIC_WINDOWS
244         bool win32_console () const {
245                 return _win32_console;
246         }
247 #endif
248
249         std::vector<boost::filesystem::path> history () const {
250                 return _history;
251         }
252
253         std::vector<dcp::EncryptedKDM> dkdms () const {
254                 return _dkdms;
255         }
256
257         boost::filesystem::path cinemas_file () const {
258                 return _cinemas_file;
259         }
260
261         /** @param n New number of local encoding threads */
262         void set_num_local_encoding_threads (int n) {
263                 maybe_set (_num_local_encoding_threads, n);
264         }
265
266         void set_default_directory (boost::filesystem::path d) {
267                 maybe_set (_default_directory, d);
268         }
269
270         /** @param p New server port */
271         void set_server_port_base (int p) {
272                 maybe_set (_server_port_base, p);
273         }
274
275         void set_only_servers_encode (bool o) {
276                 maybe_set (_only_servers_encode, o);
277         }
278
279         void set_tms_protocol (Protocol p) {
280                 maybe_set (_tms_protocol, p);
281         }
282
283         /** @param i IP address of a TMS that we can copy DCPs to */
284         void set_tms_ip (std::string i) {
285                 maybe_set (_tms_ip, i);
286         }
287
288         /** @param p Path on a TMS that we should changed DCPs to */
289         void set_tms_path (std::string p) {
290                 maybe_set (_tms_path, p);
291         }
292
293         /** @param u User name to log into the TMS with */
294         void set_tms_user (std::string u) {
295                 maybe_set (_tms_user, u);
296         }
297
298         /** @param p Password to log into the TMS with */
299         void set_tms_password (std::string p) {
300                 maybe_set (_tms_password, p);
301         }
302
303         void add_cinema (boost::shared_ptr<Cinema> c) {
304                 _cinemas.push_back (c);
305                 changed ();
306         }
307
308         void remove_cinema (boost::shared_ptr<Cinema> c) {
309                 _cinemas.remove (c);
310                 changed ();
311         }
312
313         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
314                 maybe_set (_allowed_dcp_frame_rates, r);
315         }
316
317         void set_allow_any_dcp_frame_rate (bool a) {
318                 maybe_set (_allow_any_dcp_frame_rate, a);
319         }
320
321         void set_default_isdcf_metadata (ISDCFMetadata d) {
322                 maybe_set (_default_isdcf_metadata, d);
323         }
324
325         void set_language (std::string l) {
326                 if (_language && _language.get() == l) {
327                         return;
328                 }
329                 _language = l;
330                 changed ();
331         }
332
333         void unset_language () {
334                 if (!_language) {
335                         return;
336                 }
337
338                 _language = boost::none;
339                 changed ();
340         }
341
342         void set_default_still_length (int s) {
343                 maybe_set (_default_still_length, s);
344         }
345
346         void set_default_container (Ratio const * c) {
347                 maybe_set (_default_container, c);
348         }
349
350         void set_default_dcp_content_type (DCPContentType const * t) {
351                 maybe_set (_default_dcp_content_type, t);
352         }
353
354         void set_dcp_issuer (std::string i) {
355                 maybe_set (_dcp_issuer, i);
356         }
357
358         void set_dcp_creator (std::string c) {
359                 maybe_set (_dcp_creator, c);
360         }
361
362         void set_default_j2k_bandwidth (int b) {
363                 maybe_set (_default_j2k_bandwidth, b);
364         }
365
366         void set_default_audio_delay (int d) {
367                 maybe_set (_default_audio_delay, d);
368         }
369
370         void set_default_interop (bool i) {
371                 maybe_set (_default_interop, i);
372         }
373
374         void set_mail_server (std::string s) {
375                 maybe_set (_mail_server, s);
376         }
377
378         void set_mail_port (int p) {
379                 maybe_set (_mail_port, p);
380         }
381
382         void set_mail_user (std::string u) {
383                 maybe_set (_mail_user, u);
384         }
385
386         void set_mail_password (std::string p) {
387                 maybe_set (_mail_password, p);
388         }
389
390         void set_kdm_subject (std::string s) {
391                 maybe_set (_kdm_subject, s);
392         }
393
394         void set_kdm_from (std::string f) {
395                 maybe_set (_kdm_from, f);
396         }
397
398         void set_kdm_cc (std::vector<std::string> f) {
399                 maybe_set (_kdm_cc, f);
400         }
401
402         void set_kdm_bcc (std::string f) {
403                 maybe_set (_kdm_bcc, f);
404         }
405
406         void set_kdm_email (std::string e) {
407                 maybe_set (_kdm_email, e);
408         }
409
410         void reset_kdm_email ();
411
412         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
413                 maybe_set (_signer_chain, s);
414         }
415
416         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
417                 maybe_set (_decryption_chain, c);
418         }
419
420         void set_check_for_updates (bool c) {
421                 maybe_set (_check_for_updates, c);
422                 if (!c) {
423                         set_check_for_test_updates (false);
424                 }
425         }
426
427         void set_check_for_test_updates (bool c) {
428                 maybe_set (_check_for_test_updates, c);
429         }
430
431         void set_maximum_j2k_bandwidth (int b) {
432                 maybe_set (_maximum_j2k_bandwidth, b);
433         }
434
435         void set_log_types (int t) {
436                 maybe_set (_log_types, t);
437         }
438
439         void set_analyse_ebur128 (bool a) {
440                 maybe_set (_analyse_ebur128, a);
441         }
442
443         void set_automatic_audio_analysis (bool a) {
444                 maybe_set (_automatic_audio_analysis, a);
445         }
446
447 #ifdef DCPOMATIC_WINDOWS
448         void set_win32_console (bool c) {
449                 maybe_set (_win32_console, c);
450         }
451 #endif
452
453         void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms)
454         {
455                 _dkdms = dkdms;
456                 changed ();
457         }
458
459         void set_cinemas_file (boost::filesystem::path file);
460
461         void clear_history () {
462                 _history.clear ();
463                 changed ();
464         }
465
466         void add_to_history (boost::filesystem::path p);
467
468         void changed (Property p = OTHER);
469         boost::signals2::signal<void (Property)> Changed;
470
471         void write () const;
472
473         static Config* instance ();
474         static void drop ();
475         static void restore_defaults ();
476         static bool have_existing (std::string);
477
478 private:
479         Config ();
480         static boost::filesystem::path path (std::string file, bool create_directories = true);
481         void read ();
482         void set_defaults ();
483         void set_kdm_email_to_default ();
484         void write_config_xml () const;
485         void write_cinemas_xml () const;
486         void read_cinemas (cxml::Document const & f);
487         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
488
489         template <class T>
490         void maybe_set (T& member, T new_value) {
491                 if (member == new_value) {
492                         return;
493                 }
494                 member = new_value;
495                 changed ();
496         }
497
498         /** number of threads to use for J2K encoding on the local machine */
499         int _num_local_encoding_threads;
500         /** default directory to put new films in */
501         boost::filesystem::path _default_directory;
502         /** base port number to use for J2K encoding servers;
503          *  this port and the two above it will be used.
504          */
505         int _server_port_base;
506         /** true to broadcast on the `any' address to look for servers */
507         bool _use_any_servers;
508         /** J2K encoding servers that should definitely be used */
509         std::vector<std::string> _servers;
510         bool _only_servers_encode;
511         Protocol _tms_protocol;
512         /** The IP address of a TMS that we can copy DCPs to */
513         std::string _tms_ip;
514         /** The path on a TMS that we should write DCPs to */
515         std::string _tms_path;
516         /** User name to log into the TMS with */
517         std::string _tms_user;
518         /** Password to log into the TMS with */
519         std::string _tms_password;
520         /** Our cinema sound processor */
521         CinemaSoundProcessor const * _cinema_sound_processor;
522         std::list<int> _allowed_dcp_frame_rates;
523         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
524         bool _allow_any_dcp_frame_rate;
525         /** Default ISDCF metadata for newly-created Films */
526         ISDCFMetadata _default_isdcf_metadata;
527         boost::optional<std::string> _language;
528         /** Default length of still image content (seconds) */
529         int _default_still_length;
530         Ratio const * _default_container;
531         DCPContentType const * _default_dcp_content_type;
532         std::string _dcp_issuer;
533         std::string _dcp_creator;
534         int _default_j2k_bandwidth;
535         int _default_audio_delay;
536         bool _default_interop;
537         std::list<boost::shared_ptr<Cinema> > _cinemas;
538         std::string _mail_server;
539         int _mail_port;
540         std::string _mail_user;
541         std::string _mail_password;
542         std::string _kdm_subject;
543         std::string _kdm_from;
544         std::vector<std::string> _kdm_cc;
545         std::string _kdm_bcc;
546         std::string _kdm_email;
547         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
548         /** Chain used to decrypt KDMs; the leaf of this chain is the target
549          *  certificate for making KDMs given to DCP-o-matic.
550          */
551         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
552         /** true to check for updates on startup */
553         bool _check_for_updates;
554         bool _check_for_test_updates;
555         /** maximum allowed J2K bandwidth in bits per second */
556         int _maximum_j2k_bandwidth;
557         int _log_types;
558         bool _analyse_ebur128;
559         bool _automatic_audio_analysis;
560 #ifdef DCPOMATIC_WINDOWS
561         bool _win32_console;
562 #endif
563         std::vector<boost::filesystem::path> _history;
564         std::vector<dcp::EncryptedKDM> _dkdms;
565         boost::filesystem::path _cinemas_file;
566
567         /** Singleton instance, or 0 */
568         static Config* _instance;
569 };
570
571 #endif