Merge.
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2016 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/name_format.h>
31 #include <dcp/certificate_chain.h>
32 #include <dcp/encrypted_kdm.h>
33 #include <boost/shared_ptr.hpp>
34 #include <boost/signals2.hpp>
35 #include <boost/filesystem.hpp>
36 #include <vector>
37
38 class CinemaSoundProcessor;
39 class DCPContentType;
40 class Ratio;
41 class Cinema;
42 class Film;
43
44 /** @class Config
45  *  @brief A singleton class holding configuration.
46  */
47 class Config : public boost::noncopyable
48 {
49 public:
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::optional<boost::filesystem::path> default_directory () const {
56                 return _default_directory;
57         }
58
59         boost::optional<boost::filesystem::path> default_kdm_directory () const {
60                 return _default_kdm_directory;
61         }
62
63         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
64         boost::filesystem::path default_kdm_directory_or (boost::filesystem::path a) const;
65
66         enum Property {
67                 USE_ANY_SERVERS,
68                 SERVERS,
69                 CINEMAS,
70                 OTHER
71         };
72
73         /** @return base port number to use for J2K encoding servers */
74         int server_port_base () const {
75                 return _server_port_base;
76         }
77
78         void set_use_any_servers (bool u) {
79                 _use_any_servers = u;
80                 changed (USE_ANY_SERVERS);
81         }
82
83         bool use_any_servers () const {
84                 return _use_any_servers;
85         }
86
87         /** @param s New list of servers */
88         void set_servers (std::vector<std::string> s) {
89                 _servers = s;
90                 changed (SERVERS);
91         }
92
93         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
94         std::vector<std::string> servers () const {
95                 return _servers;
96         }
97
98         bool only_servers_encode () const {
99                 return _only_servers_encode;
100         }
101
102         Protocol tms_protocol () const {
103                 return _tms_protocol;
104         }
105
106         /** @return The IP address of a TMS that we can copy DCPs to */
107         std::string tms_ip () const {
108                 return _tms_ip;
109         }
110
111         /** @return The path on a TMS that we should changed DCPs to */
112         std::string tms_path () const {
113                 return _tms_path;
114         }
115
116         /** @return User name to log into the TMS with */
117         std::string tms_user () const {
118                 return _tms_user;
119         }
120
121         /** @return Password to log into the TMS with */
122         std::string tms_password () const {
123                 return _tms_password;
124         }
125
126         /** @return The cinema sound processor that we are using */
127         CinemaSoundProcessor const * cinema_sound_processor () const {
128                 return _cinema_sound_processor;
129         }
130
131         std::list<boost::shared_ptr<Cinema> > cinemas () const {
132                 return _cinemas;
133         }
134
135         std::list<int> allowed_dcp_frame_rates () const {
136                 return _allowed_dcp_frame_rates;
137         }
138
139         bool allow_any_dcp_frame_rate () const {
140                 return _allow_any_dcp_frame_rate;
141         }
142
143         ISDCFMetadata default_isdcf_metadata () const {
144                 return _default_isdcf_metadata;
145         }
146
147         boost::optional<std::string> language () const {
148                 return _language;
149         }
150
151         int default_still_length () const {
152                 return _default_still_length;
153         }
154
155         Ratio const * default_container () const {
156                 return _default_container;
157         }
158
159         DCPContentType const * default_dcp_content_type () const {
160                 return _default_dcp_content_type;
161         }
162
163         int default_dcp_audio_channels () const {
164                 return _default_dcp_audio_channels;
165         }
166
167         std::string dcp_issuer () const {
168                 return _dcp_issuer;
169         }
170
171         std::string dcp_creator () const {
172                 return _dcp_creator;
173         }
174
175         int default_j2k_bandwidth () const {
176                 return _default_j2k_bandwidth;
177         }
178
179         int default_audio_delay () const {
180                 return _default_audio_delay;
181         }
182
183         bool default_interop () const {
184                 return _default_interop;
185         }
186
187         void set_default_kdm_directory (boost::filesystem::path d) {
188                 if (_default_kdm_directory && _default_kdm_directory.get() == d) {
189                         return;
190                 }
191                 _default_kdm_directory = d;
192                 changed ();
193         }
194
195         std::string mail_server () const {
196                 return _mail_server;
197         }
198
199         int mail_port () const {
200                 return _mail_port;
201         }
202
203         std::string mail_user () const {
204                 return _mail_user;
205         }
206
207         std::string mail_password () const {
208                 return _mail_password;
209         }
210
211         std::string kdm_subject () const {
212                 return _kdm_subject;
213         }
214
215         std::string kdm_from () const {
216                 return _kdm_from;
217         }
218
219         std::vector<std::string> kdm_cc () const {
220                 return _kdm_cc;
221         }
222
223         std::string kdm_bcc () const {
224                 return _kdm_bcc;
225         }
226
227         std::string kdm_email () const {
228                 return _kdm_email;
229         }
230
231         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
232                 return _signer_chain;
233         }
234
235         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
236                 return _decryption_chain;
237         }
238
239         bool check_for_updates () const {
240                 return _check_for_updates;
241         }
242
243         bool check_for_test_updates () const {
244                 return _check_for_test_updates;
245         }
246
247         int maximum_j2k_bandwidth () const {
248                 return _maximum_j2k_bandwidth;
249         }
250
251         int log_types () const {
252                 return _log_types;
253         }
254
255         bool analyse_ebur128 () const {
256                 return _analyse_ebur128;
257         }
258
259         bool automatic_audio_analysis () const {
260                 return _automatic_audio_analysis;
261         }
262
263 #ifdef DCPOMATIC_WINDOWS
264         bool win32_console () const {
265                 return _win32_console;
266         }
267 #endif
268
269         std::vector<boost::filesystem::path> history () const {
270                 return _history;
271         }
272
273         std::vector<dcp::EncryptedKDM> dkdms () const {
274                 return _dkdms;
275         }
276
277         boost::filesystem::path cinemas_file () const {
278                 return _cinemas_file;
279         }
280
281         bool show_hints_before_make_dcp () const {
282                 return _show_hints_before_make_dcp;
283         }
284
285         bool confirm_kdm_email () const {
286                 return _confirm_kdm_email;
287         }
288
289         dcp::NameFormat kdm_container_name_format () const {
290                 return _kdm_container_name_format;
291         }
292
293         dcp::NameFormat kdm_filename_format () const {
294                 return _kdm_filename_format;
295         }
296
297         dcp::NameFormat dcp_metadata_filename_format () const {
298                 return _dcp_metadata_filename_format;
299         }
300
301         dcp::NameFormat dcp_asset_filename_format () const {
302                 return _dcp_asset_filename_format;
303         }
304
305         /** @param n New number of local encoding threads */
306         void set_num_local_encoding_threads (int n) {
307                 maybe_set (_num_local_encoding_threads, n);
308         }
309
310         void set_default_directory (boost::filesystem::path d) {
311                 if (_default_directory && *_default_directory == d) {
312                         return;
313                 }
314                 _default_directory = d;
315                 changed ();
316         }
317
318         /** @param p New server port */
319         void set_server_port_base (int p) {
320                 maybe_set (_server_port_base, p);
321         }
322
323         void set_only_servers_encode (bool o) {
324                 maybe_set (_only_servers_encode, o);
325         }
326
327         void set_tms_protocol (Protocol p) {
328                 maybe_set (_tms_protocol, p);
329         }
330
331         /** @param i IP address of a TMS that we can copy DCPs to */
332         void set_tms_ip (std::string i) {
333                 maybe_set (_tms_ip, i);
334         }
335
336         /** @param p Path on a TMS that we should changed DCPs to */
337         void set_tms_path (std::string p) {
338                 maybe_set (_tms_path, p);
339         }
340
341         /** @param u User name to log into the TMS with */
342         void set_tms_user (std::string u) {
343                 maybe_set (_tms_user, u);
344         }
345
346         /** @param p Password to log into the TMS with */
347         void set_tms_password (std::string p) {
348                 maybe_set (_tms_password, p);
349         }
350
351         void add_cinema (boost::shared_ptr<Cinema> c) {
352                 _cinemas.push_back (c);
353                 changed (CINEMAS);
354         }
355
356         void remove_cinema (boost::shared_ptr<Cinema> c) {
357                 _cinemas.remove (c);
358                 changed (CINEMAS);
359         }
360
361         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
362                 maybe_set (_allowed_dcp_frame_rates, r);
363         }
364
365         void set_allow_any_dcp_frame_rate (bool a) {
366                 maybe_set (_allow_any_dcp_frame_rate, a);
367         }
368
369         void set_default_isdcf_metadata (ISDCFMetadata d) {
370                 maybe_set (_default_isdcf_metadata, d);
371         }
372
373         void set_language (std::string l) {
374                 if (_language && _language.get() == l) {
375                         return;
376                 }
377                 _language = l;
378                 changed ();
379         }
380
381         void unset_language () {
382                 if (!_language) {
383                         return;
384                 }
385
386                 _language = boost::none;
387                 changed ();
388         }
389
390         void set_default_still_length (int s) {
391                 maybe_set (_default_still_length, s);
392         }
393
394         void set_default_container (Ratio const * c) {
395                 maybe_set (_default_container, c);
396         }
397
398         void set_default_dcp_content_type (DCPContentType const * t) {
399                 maybe_set (_default_dcp_content_type, t);
400         }
401
402         void set_default_dcp_audio_channels (int c) {
403                 maybe_set (_default_dcp_audio_channels, c);
404         }
405
406         void set_dcp_issuer (std::string i) {
407                 maybe_set (_dcp_issuer, i);
408         }
409
410         void set_dcp_creator (std::string c) {
411                 maybe_set (_dcp_creator, c);
412         }
413
414         void set_default_j2k_bandwidth (int b) {
415                 maybe_set (_default_j2k_bandwidth, b);
416         }
417
418         void set_default_audio_delay (int d) {
419                 maybe_set (_default_audio_delay, d);
420         }
421
422         void set_default_interop (bool i) {
423                 maybe_set (_default_interop, i);
424         }
425
426         void set_mail_server (std::string s) {
427                 maybe_set (_mail_server, s);
428         }
429
430         void set_mail_port (int p) {
431                 maybe_set (_mail_port, p);
432         }
433
434         void set_mail_user (std::string u) {
435                 maybe_set (_mail_user, u);
436         }
437
438         void set_mail_password (std::string p) {
439                 maybe_set (_mail_password, p);
440         }
441
442         void set_kdm_subject (std::string s) {
443                 maybe_set (_kdm_subject, s);
444         }
445
446         void set_kdm_from (std::string f) {
447                 maybe_set (_kdm_from, f);
448         }
449
450         void set_kdm_cc (std::vector<std::string> f) {
451                 maybe_set (_kdm_cc, f);
452         }
453
454         void set_kdm_bcc (std::string f) {
455                 maybe_set (_kdm_bcc, f);
456         }
457
458         void set_kdm_email (std::string e) {
459                 maybe_set (_kdm_email, e);
460         }
461
462         void reset_kdm_email ();
463
464         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
465                 maybe_set (_signer_chain, s);
466         }
467
468         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
469                 maybe_set (_decryption_chain, c);
470         }
471
472         void set_check_for_updates (bool c) {
473                 maybe_set (_check_for_updates, c);
474                 if (!c) {
475                         set_check_for_test_updates (false);
476                 }
477         }
478
479         void set_check_for_test_updates (bool c) {
480                 maybe_set (_check_for_test_updates, c);
481         }
482
483         void set_maximum_j2k_bandwidth (int b) {
484                 maybe_set (_maximum_j2k_bandwidth, b);
485         }
486
487         void set_log_types (int t) {
488                 maybe_set (_log_types, t);
489         }
490
491         void set_analyse_ebur128 (bool a) {
492                 maybe_set (_analyse_ebur128, a);
493         }
494
495         void set_automatic_audio_analysis (bool a) {
496                 maybe_set (_automatic_audio_analysis, a);
497         }
498
499 #ifdef DCPOMATIC_WINDOWS
500         void set_win32_console (bool c) {
501                 maybe_set (_win32_console, c);
502         }
503 #endif
504
505         void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms) {
506                 _dkdms = dkdms;
507                 changed ();
508         }
509
510         void set_cinemas_file (boost::filesystem::path file);
511
512         void set_show_hints_before_make_dcp (bool s) {
513                 maybe_set (_show_hints_before_make_dcp, s);
514         }
515
516         void set_confirm_kdm_email (bool s) {
517                 maybe_set (_confirm_kdm_email, s);
518         }
519
520         void set_kdm_container_name_format (dcp::NameFormat n) {
521                 maybe_set (_kdm_container_name_format, n);
522         }
523
524         void set_kdm_filename_format (dcp::NameFormat n) {
525                 maybe_set (_kdm_filename_format, n);
526         }
527
528         void set_dcp_metadata_filename_format (dcp::NameFormat n) {
529                 maybe_set (_dcp_metadata_filename_format, n);
530         }
531
532         void set_dcp_asset_filename_format (dcp::NameFormat n) {
533                 maybe_set (_dcp_asset_filename_format, n);
534         }
535
536         void clear_history () {
537                 _history.clear ();
538                 changed ();
539         }
540
541         void add_to_history (boost::filesystem::path p);
542
543         void changed (Property p = OTHER);
544         boost::signals2::signal<void (Property)> Changed;
545         /** Emitted if ::read() failed on an existing Config file.  There is nothing
546             a listener can do about it: this is just for information.
547         */
548         static boost::signals2::signal<void ()> FailedToLoad;
549
550         void write () const;
551         void write_config () const;
552         void write_cinemas () const;
553
554         void save_template (boost::shared_ptr<const Film> film, std::string name) const;
555         bool existing_template (std::string name) const;
556         std::list<std::string> templates () const;
557         boost::filesystem::path template_path (std::string name) const;
558         void rename_template (std::string old_name, std::string new_name) const;
559         void delete_template (std::string name) const;
560
561         static Config* instance ();
562         static void drop ();
563         static void restore_defaults ();
564         static bool have_existing (std::string);
565
566 private:
567         Config ();
568         static boost::filesystem::path path (std::string file, bool create_directories = true);
569         void read ();
570         void set_defaults ();
571         void set_kdm_email_to_default ();
572         void read_cinemas (cxml::Document const & f);
573         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
574         boost::filesystem::path directory_or (boost::optional<boost::filesystem::path> dir, boost::filesystem::path a) const;
575
576         template <class T>
577         void maybe_set (T& member, T new_value) {
578                 if (member == new_value) {
579                         return;
580                 }
581                 member = new_value;
582                 changed ();
583         }
584
585         /** number of threads to use for J2K encoding on the local machine */
586         int _num_local_encoding_threads;
587         /** default directory to put new films in */
588         boost::optional<boost::filesystem::path> _default_directory;
589         /** base port number to use for J2K encoding servers;
590          *  this port and the two above it will be used.
591          */
592         int _server_port_base;
593         /** true to broadcast on the `any' address to look for servers */
594         bool _use_any_servers;
595         /** J2K encoding servers that should definitely be used */
596         std::vector<std::string> _servers;
597         bool _only_servers_encode;
598         Protocol _tms_protocol;
599         /** The IP address of a TMS that we can copy DCPs to */
600         std::string _tms_ip;
601         /** The path on a TMS that we should write DCPs to */
602         std::string _tms_path;
603         /** User name to log into the TMS with */
604         std::string _tms_user;
605         /** Password to log into the TMS with */
606         std::string _tms_password;
607         /** Our cinema sound processor */
608         CinemaSoundProcessor const * _cinema_sound_processor;
609         std::list<int> _allowed_dcp_frame_rates;
610         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
611         bool _allow_any_dcp_frame_rate;
612         /** Default ISDCF metadata for newly-created Films */
613         ISDCFMetadata _default_isdcf_metadata;
614         boost::optional<std::string> _language;
615         /** Default length of still image content (seconds) */
616         int _default_still_length;
617         Ratio const * _default_container;
618         DCPContentType const * _default_dcp_content_type;
619         int _default_dcp_audio_channels;
620         std::string _dcp_issuer;
621         std::string _dcp_creator;
622         int _default_j2k_bandwidth;
623         int _default_audio_delay;
624         bool _default_interop;
625         /** Default directory to offer to write KDMs to; if it's not set,
626             the home directory will be offered.
627         */
628         boost::optional<boost::filesystem::path> _default_kdm_directory;
629         std::list<boost::shared_ptr<Cinema> > _cinemas;
630         std::string _mail_server;
631         int _mail_port;
632         std::string _mail_user;
633         std::string _mail_password;
634         std::string _kdm_subject;
635         std::string _kdm_from;
636         std::vector<std::string> _kdm_cc;
637         std::string _kdm_bcc;
638         std::string _kdm_email;
639         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
640         /** Chain used to decrypt KDMs; the leaf of this chain is the target
641          *  certificate for making KDMs given to DCP-o-matic.
642          */
643         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
644         /** true to check for updates on startup */
645         bool _check_for_updates;
646         bool _check_for_test_updates;
647         /** maximum allowed J2K bandwidth in bits per second */
648         int _maximum_j2k_bandwidth;
649         int _log_types;
650         bool _analyse_ebur128;
651         bool _automatic_audio_analysis;
652 #ifdef DCPOMATIC_WINDOWS
653         bool _win32_console;
654 #endif
655         std::vector<boost::filesystem::path> _history;
656         std::vector<dcp::EncryptedKDM> _dkdms;
657         boost::filesystem::path _cinemas_file;
658         bool _show_hints_before_make_dcp;
659         bool _confirm_kdm_email;
660         dcp::NameFormat _kdm_filename_format;
661         dcp::NameFormat _kdm_container_name_format;
662         dcp::NameFormat _dcp_metadata_filename_format;
663         dcp::NameFormat _dcp_asset_filename_format;
664
665         /** Singleton instance, or 0 */
666         static Config* _instance;
667 };
668
669 #endif