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