Add preference for the default number of DCP channels (#897).
[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         int default_dcp_audio_channels () const {
156                 return _default_dcp_audio_channels;
157         }
158
159         std::string dcp_issuer () const {
160                 return _dcp_issuer;
161         }
162
163         std::string dcp_creator () const {
164                 return _dcp_creator;
165         }
166
167         int default_j2k_bandwidth () const {
168                 return _default_j2k_bandwidth;
169         }
170
171         int default_audio_delay () const {
172                 return _default_audio_delay;
173         }
174
175         bool default_interop () const {
176                 return _default_interop;
177         }
178
179         std::string mail_server () const {
180                 return _mail_server;
181         }
182
183         int mail_port () const {
184                 return _mail_port;
185         }
186
187         std::string mail_user () const {
188                 return _mail_user;
189         }
190
191         std::string mail_password () const {
192                 return _mail_password;
193         }
194
195         std::string kdm_subject () const {
196                 return _kdm_subject;
197         }
198
199         std::string kdm_from () const {
200                 return _kdm_from;
201         }
202
203         std::vector<std::string> kdm_cc () const {
204                 return _kdm_cc;
205         }
206
207         std::string kdm_bcc () const {
208                 return _kdm_bcc;
209         }
210
211         std::string kdm_email () const {
212                 return _kdm_email;
213         }
214
215         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
216                 return _signer_chain;
217         }
218
219         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
220                 return _decryption_chain;
221         }
222
223         bool check_for_updates () const {
224                 return _check_for_updates;
225         }
226
227         bool check_for_test_updates () const {
228                 return _check_for_test_updates;
229         }
230
231         int maximum_j2k_bandwidth () const {
232                 return _maximum_j2k_bandwidth;
233         }
234
235         int log_types () const {
236                 return _log_types;
237         }
238
239         bool analyse_ebur128 () const {
240                 return _analyse_ebur128;
241         }
242
243         bool automatic_audio_analysis () const {
244                 return _automatic_audio_analysis;
245         }
246
247 #ifdef DCPOMATIC_WINDOWS
248         bool win32_console () const {
249                 return _win32_console;
250         }
251 #endif
252
253         std::vector<boost::filesystem::path> history () const {
254                 return _history;
255         }
256
257         std::vector<dcp::EncryptedKDM> dkdms () const {
258                 return _dkdms;
259         }
260
261         boost::filesystem::path cinemas_file () const {
262                 return _cinemas_file;
263         }
264
265         /** @param n New number of local encoding threads */
266         void set_num_local_encoding_threads (int n) {
267                 maybe_set (_num_local_encoding_threads, n);
268         }
269
270         void set_default_directory (boost::filesystem::path d) {
271                 maybe_set (_default_directory, d);
272         }
273
274         /** @param p New server port */
275         void set_server_port_base (int p) {
276                 maybe_set (_server_port_base, p);
277         }
278
279         void set_only_servers_encode (bool o) {
280                 maybe_set (_only_servers_encode, o);
281         }
282
283         void set_tms_protocol (Protocol p) {
284                 maybe_set (_tms_protocol, p);
285         }
286
287         /** @param i IP address of a TMS that we can copy DCPs to */
288         void set_tms_ip (std::string i) {
289                 maybe_set (_tms_ip, i);
290         }
291
292         /** @param p Path on a TMS that we should changed DCPs to */
293         void set_tms_path (std::string p) {
294                 maybe_set (_tms_path, p);
295         }
296
297         /** @param u User name to log into the TMS with */
298         void set_tms_user (std::string u) {
299                 maybe_set (_tms_user, u);
300         }
301
302         /** @param p Password to log into the TMS with */
303         void set_tms_password (std::string p) {
304                 maybe_set (_tms_password, p);
305         }
306
307         void add_cinema (boost::shared_ptr<Cinema> c) {
308                 _cinemas.push_back (c);
309                 changed ();
310         }
311
312         void remove_cinema (boost::shared_ptr<Cinema> c) {
313                 _cinemas.remove (c);
314                 changed ();
315         }
316
317         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
318                 maybe_set (_allowed_dcp_frame_rates, r);
319         }
320
321         void set_allow_any_dcp_frame_rate (bool a) {
322                 maybe_set (_allow_any_dcp_frame_rate, a);
323         }
324
325         void set_default_isdcf_metadata (ISDCFMetadata d) {
326                 maybe_set (_default_isdcf_metadata, d);
327         }
328
329         void set_language (std::string l) {
330                 if (_language && _language.get() == l) {
331                         return;
332                 }
333                 _language = l;
334                 changed ();
335         }
336
337         void unset_language () {
338                 if (!_language) {
339                         return;
340                 }
341
342                 _language = boost::none;
343                 changed ();
344         }
345
346         void set_default_still_length (int s) {
347                 maybe_set (_default_still_length, s);
348         }
349
350         void set_default_container (Ratio const * c) {
351                 maybe_set (_default_container, c);
352         }
353
354         void set_default_dcp_content_type (DCPContentType const * t) {
355                 maybe_set (_default_dcp_content_type, t);
356         }
357
358         void set_default_dcp_audio_channels (int c) {
359                 maybe_set (_default_dcp_audio_channels, c);
360         }
361
362         void set_dcp_issuer (std::string i) {
363                 maybe_set (_dcp_issuer, i);
364         }
365
366         void set_dcp_creator (std::string c) {
367                 maybe_set (_dcp_creator, c);
368         }
369
370         void set_default_j2k_bandwidth (int b) {
371                 maybe_set (_default_j2k_bandwidth, b);
372         }
373
374         void set_default_audio_delay (int d) {
375                 maybe_set (_default_audio_delay, d);
376         }
377
378         void set_default_interop (bool i) {
379                 maybe_set (_default_interop, i);
380         }
381
382         void set_mail_server (std::string s) {
383                 maybe_set (_mail_server, s);
384         }
385
386         void set_mail_port (int p) {
387                 maybe_set (_mail_port, p);
388         }
389
390         void set_mail_user (std::string u) {
391                 maybe_set (_mail_user, u);
392         }
393
394         void set_mail_password (std::string p) {
395                 maybe_set (_mail_password, p);
396         }
397
398         void set_kdm_subject (std::string s) {
399                 maybe_set (_kdm_subject, s);
400         }
401
402         void set_kdm_from (std::string f) {
403                 maybe_set (_kdm_from, f);
404         }
405
406         void set_kdm_cc (std::vector<std::string> f) {
407                 maybe_set (_kdm_cc, f);
408         }
409
410         void set_kdm_bcc (std::string f) {
411                 maybe_set (_kdm_bcc, f);
412         }
413
414         void set_kdm_email (std::string e) {
415                 maybe_set (_kdm_email, e);
416         }
417
418         void reset_kdm_email ();
419
420         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
421                 maybe_set (_signer_chain, s);
422         }
423
424         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
425                 maybe_set (_decryption_chain, c);
426         }
427
428         void set_check_for_updates (bool c) {
429                 maybe_set (_check_for_updates, c);
430                 if (!c) {
431                         set_check_for_test_updates (false);
432                 }
433         }
434
435         void set_check_for_test_updates (bool c) {
436                 maybe_set (_check_for_test_updates, c);
437         }
438
439         void set_maximum_j2k_bandwidth (int b) {
440                 maybe_set (_maximum_j2k_bandwidth, b);
441         }
442
443         void set_log_types (int t) {
444                 maybe_set (_log_types, t);
445         }
446
447         void set_analyse_ebur128 (bool a) {
448                 maybe_set (_analyse_ebur128, a);
449         }
450
451         void set_automatic_audio_analysis (bool a) {
452                 maybe_set (_automatic_audio_analysis, a);
453         }
454
455 #ifdef DCPOMATIC_WINDOWS
456         void set_win32_console (bool c) {
457                 maybe_set (_win32_console, c);
458         }
459 #endif
460
461         void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms)
462         {
463                 _dkdms = dkdms;
464                 changed ();
465         }
466
467         void set_cinemas_file (boost::filesystem::path file);
468
469         void clear_history () {
470                 _history.clear ();
471                 changed ();
472         }
473
474         void add_to_history (boost::filesystem::path p);
475
476         void changed (Property p = OTHER);
477         boost::signals2::signal<void (Property)> Changed;
478
479         void write () const;
480
481         static Config* instance ();
482         static void drop ();
483         static void restore_defaults ();
484         static bool have_existing (std::string);
485
486 private:
487         Config ();
488         static boost::filesystem::path path (std::string file, bool create_directories = true);
489         void read ();
490         void set_defaults ();
491         void set_kdm_email_to_default ();
492         void write_config_xml () const;
493         void write_cinemas_xml () const;
494         void read_cinemas (cxml::Document const & f);
495         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
496
497         template <class T>
498         void maybe_set (T& member, T new_value) {
499                 if (member == new_value) {
500                         return;
501                 }
502                 member = new_value;
503                 changed ();
504         }
505
506         /** number of threads to use for J2K encoding on the local machine */
507         int _num_local_encoding_threads;
508         /** default directory to put new films in */
509         boost::filesystem::path _default_directory;
510         /** base port number to use for J2K encoding servers;
511          *  this port and the two above it will be used.
512          */
513         int _server_port_base;
514         /** true to broadcast on the `any' address to look for servers */
515         bool _use_any_servers;
516         /** J2K encoding servers that should definitely be used */
517         std::vector<std::string> _servers;
518         bool _only_servers_encode;
519         Protocol _tms_protocol;
520         /** The IP address of a TMS that we can copy DCPs to */
521         std::string _tms_ip;
522         /** The path on a TMS that we should write DCPs to */
523         std::string _tms_path;
524         /** User name to log into the TMS with */
525         std::string _tms_user;
526         /** Password to log into the TMS with */
527         std::string _tms_password;
528         /** Our cinema sound processor */
529         CinemaSoundProcessor const * _cinema_sound_processor;
530         std::list<int> _allowed_dcp_frame_rates;
531         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
532         bool _allow_any_dcp_frame_rate;
533         /** Default ISDCF metadata for newly-created Films */
534         ISDCFMetadata _default_isdcf_metadata;
535         boost::optional<std::string> _language;
536         /** Default length of still image content (seconds) */
537         int _default_still_length;
538         Ratio const * _default_container;
539         DCPContentType const * _default_dcp_content_type;
540         int _default_dcp_audio_channels;
541         std::string _dcp_issuer;
542         std::string _dcp_creator;
543         int _default_j2k_bandwidth;
544         int _default_audio_delay;
545         bool _default_interop;
546         std::list<boost::shared_ptr<Cinema> > _cinemas;
547         std::string _mail_server;
548         int _mail_port;
549         std::string _mail_user;
550         std::string _mail_password;
551         std::string _kdm_subject;
552         std::string _kdm_from;
553         std::vector<std::string> _kdm_cc;
554         std::string _kdm_bcc;
555         std::string _kdm_email;
556         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
557         /** Chain used to decrypt KDMs; the leaf of this chain is the target
558          *  certificate for making KDMs given to DCP-o-matic.
559          */
560         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
561         /** true to check for updates on startup */
562         bool _check_for_updates;
563         bool _check_for_test_updates;
564         /** maximum allowed J2K bandwidth in bits per second */
565         int _maximum_j2k_bandwidth;
566         int _log_types;
567         bool _analyse_ebur128;
568         bool _automatic_audio_analysis;
569 #ifdef DCPOMATIC_WINDOWS
570         bool _win32_console;
571 #endif
572         std::vector<boost::filesystem::path> _history;
573         std::vector<dcp::EncryptedKDM> _dkdms;
574         boost::filesystem::path _cinemas_file;
575
576         /** Singleton instance, or 0 */
577         static Config* _instance;
578 };
579
580 #endif