Nag/warn when removing KDM decryption certificate.
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2018 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 "edid.h"
31 #include <dcp/name_format.h>
32 #include <dcp/certificate_chain.h>
33 #include <dcp/encrypted_kdm.h>
34 #include <boost/shared_ptr.hpp>
35 #include <boost/signals2.hpp>
36 #include <boost/filesystem.hpp>
37 #include <vector>
38
39 class CinemaSoundProcessor;
40 class DCPContentType;
41 class Ratio;
42 class Cinema;
43 class Film;
44 class DKDMGroup;
45
46 /** @class Config
47  *  @brief A singleton class holding configuration.
48  */
49 class Config : public boost::noncopyable
50 {
51 public:
52         /** @return number of threads which a master DoM should use for J2K encoding on the local machine */
53         int master_encoding_threads () const {
54                 return _master_encoding_threads;
55         }
56
57         /** @return number of threads which a server should use for J2K encoding on the local machine */
58         int server_encoding_threads () const {
59                 return _server_encoding_threads;
60         }
61
62         boost::optional<boost::filesystem::path> default_directory () const {
63                 return _default_directory;
64         }
65
66         boost::optional<boost::filesystem::path> default_kdm_directory () const {
67                 return _default_kdm_directory;
68         }
69
70         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
71         boost::filesystem::path default_kdm_directory_or (boost::filesystem::path a) const;
72
73         enum Property {
74                 USE_ANY_SERVERS,
75                 SERVERS,
76                 CINEMAS,
77                 SOUND,
78                 SOUND_OUTPUT,
79                 INTERFACE_COMPLEXITY,
80                 PLAYER_CONTENT_DIRECTORY,
81                 PLAYER_PLAYLIST_DIRECTORY,
82                 PLAYER_DEBUG_LOG,
83                 HISTORY,
84 #ifdef DCPOMATIC_VARIANT_SWAROOP
85                 PLAYER_BACKGROUND_IMAGE,
86 #endif
87                 OTHER
88         };
89
90         /** @return base port number to use for J2K encoding servers */
91         int server_port_base () const {
92                 return _server_port_base;
93         }
94
95         void set_use_any_servers (bool u) {
96                 _use_any_servers = u;
97                 changed (USE_ANY_SERVERS);
98         }
99
100         bool use_any_servers () const {
101                 return _use_any_servers;
102         }
103
104         /** @param s New list of servers */
105         void set_servers (std::vector<std::string> s) {
106                 _servers = s;
107                 changed (SERVERS);
108         }
109
110         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
111         std::vector<std::string> servers () const {
112                 return _servers;
113         }
114
115         bool only_servers_encode () const {
116                 return _only_servers_encode;
117         }
118
119         Protocol tms_protocol () const {
120                 return _tms_protocol;
121         }
122
123         /** @return The IP address of a TMS that we can copy DCPs to */
124         std::string tms_ip () const {
125                 return _tms_ip;
126         }
127
128         /** @return The path on a TMS that we should changed DCPs to */
129         std::string tms_path () const {
130                 return _tms_path;
131         }
132
133         /** @return User name to log into the TMS with */
134         std::string tms_user () const {
135                 return _tms_user;
136         }
137
138         /** @return Password to log into the TMS with */
139         std::string tms_password () const {
140                 return _tms_password;
141         }
142
143         /** @return The cinema sound processor that we are using */
144         CinemaSoundProcessor const * cinema_sound_processor () const {
145                 return _cinema_sound_processor;
146         }
147
148         std::list<boost::shared_ptr<Cinema> > cinemas () const {
149                 return _cinemas;
150         }
151
152         std::list<int> allowed_dcp_frame_rates () const {
153                 return _allowed_dcp_frame_rates;
154         }
155
156         bool allow_any_dcp_frame_rate () const {
157                 return _allow_any_dcp_frame_rate;
158         }
159
160         bool allow_any_container () const {
161                 return _allow_any_container;
162         }
163
164         ISDCFMetadata default_isdcf_metadata () const {
165                 return _default_isdcf_metadata;
166         }
167
168         boost::optional<std::string> language () const {
169                 return _language;
170         }
171
172         int default_still_length () const {
173                 return _default_still_length;
174         }
175
176         Ratio const * default_container () const {
177                 return _default_container;
178         }
179
180         Ratio const * default_scale_to () const {
181                 return _default_scale_to;
182         }
183
184         DCPContentType const * default_dcp_content_type () const {
185                 return _default_dcp_content_type;
186         }
187
188         int default_dcp_audio_channels () const {
189                 return _default_dcp_audio_channels;
190         }
191
192         std::string dcp_issuer () const {
193                 return _dcp_issuer;
194         }
195
196         std::string dcp_creator () const {
197                 return _dcp_creator;
198         }
199
200         int default_j2k_bandwidth () const {
201                 return _default_j2k_bandwidth;
202         }
203
204         int default_audio_delay () const {
205                 return _default_audio_delay;
206         }
207
208         bool default_interop () const {
209                 return _default_interop;
210         }
211
212         bool default_upload_after_make_dcp () {
213                 return _default_upload_after_make_dcp;
214         }
215
216         void set_default_kdm_directory (boost::filesystem::path d) {
217                 if (_default_kdm_directory && _default_kdm_directory.get() == d) {
218                         return;
219                 }
220                 _default_kdm_directory = d;
221                 changed ();
222         }
223
224         std::string mail_server () const {
225                 return _mail_server;
226         }
227
228         int mail_port () const {
229                 return _mail_port;
230         }
231
232         std::string mail_user () const {
233                 return _mail_user;
234         }
235
236         std::string mail_password () const {
237                 return _mail_password;
238         }
239
240         std::string kdm_subject () const {
241                 return _kdm_subject;
242         }
243
244         std::string kdm_from () const {
245                 return _kdm_from;
246         }
247
248         std::vector<std::string> kdm_cc () const {
249                 return _kdm_cc;
250         }
251
252         std::string kdm_bcc () const {
253                 return _kdm_bcc;
254         }
255
256         std::string kdm_email () const {
257                 return _kdm_email;
258         }
259
260         std::string notification_subject () const {
261                 return _notification_subject;
262         }
263
264         std::string notification_from () const {
265                 return _notification_from;
266         }
267
268         std::string notification_to () const {
269                 return _notification_to;
270         }
271
272         std::vector<std::string> notification_cc () const {
273                 return _notification_cc;
274         }
275
276         std::string notification_bcc () const {
277                 return _notification_bcc;
278         }
279
280         std::string notification_email () const {
281                 return _notification_email;
282         }
283
284         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
285                 return _signer_chain;
286         }
287
288         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
289                 return _decryption_chain;
290         }
291
292         bool check_for_updates () const {
293                 return _check_for_updates;
294         }
295
296         bool check_for_test_updates () const {
297                 return _check_for_test_updates;
298         }
299
300         int maximum_j2k_bandwidth () const {
301                 return _maximum_j2k_bandwidth;
302         }
303
304         int log_types () const {
305                 return _log_types;
306         }
307
308         bool analyse_ebur128 () const {
309                 return _analyse_ebur128;
310         }
311
312         bool automatic_audio_analysis () const {
313                 return _automatic_audio_analysis;
314         }
315
316 #ifdef DCPOMATIC_WINDOWS
317         bool win32_console () const {
318                 return _win32_console;
319         }
320 #endif
321
322         std::vector<boost::filesystem::path> history () const {
323                 return _history;
324         }
325
326         std::vector<boost::filesystem::path> player_history () const {
327                 return _player_history;
328         }
329
330         boost::shared_ptr<DKDMGroup> dkdms () const {
331                 return _dkdms;
332         }
333
334         boost::filesystem::path cinemas_file () const {
335                 return _cinemas_file;
336         }
337
338         bool show_hints_before_make_dcp () const {
339                 return _show_hints_before_make_dcp;
340         }
341
342         bool confirm_kdm_email () const {
343                 return _confirm_kdm_email;
344         }
345
346         dcp::NameFormat kdm_container_name_format () const {
347                 return _kdm_container_name_format;
348         }
349
350         dcp::NameFormat kdm_filename_format () const {
351                 return _kdm_filename_format;
352         }
353
354         dcp::NameFormat dcp_metadata_filename_format () const {
355                 return _dcp_metadata_filename_format;
356         }
357
358         dcp::NameFormat dcp_asset_filename_format () const {
359                 return _dcp_asset_filename_format;
360         }
361
362         bool jump_to_selected () const {
363                 return _jump_to_selected;
364         }
365
366         enum Nag {
367                 NAG_DKDM_CONFIG,
368                 NAG_ENCRYPTED_METADATA,
369                 NAG_ALTER_DECRYPTION_CHAIN,
370                 NAG_BAD_SIGNER_CHAIN,
371                 /* Not really a nag but it's the same idea */
372                 NAG_INITIAL_SETUP,
373                 NAG_IMPORT_DECRYPTION_CHAIN,
374                 NAG_COUNT
375         };
376
377         bool nagged (Nag nag) const {
378                 return _nagged[nag];
379         }
380
381         bool sound () const {
382                 return _sound;
383         }
384
385         std::string cover_sheet () const {
386                 return _cover_sheet;
387         }
388
389         boost::optional<std::string> sound_output () const {
390                 return _sound_output;
391         }
392
393         boost::optional<boost::filesystem::path> last_player_load_directory () const {
394                 return _last_player_load_directory;
395         }
396
397         enum KDMWriteType {
398                 KDM_WRITE_FLAT,
399                 KDM_WRITE_FOLDER,
400                 KDM_WRITE_ZIP
401         };
402
403         boost::optional<KDMWriteType> last_kdm_write_type () const {
404                 return _last_kdm_write_type;
405         }
406
407         enum DKDMWriteType {
408                 DKDM_WRITE_INTERNAL,
409                 DKDM_WRITE_FILE
410         };
411
412         boost::optional<DKDMWriteType> last_dkdm_write_type () const {
413                 return _last_dkdm_write_type;
414         }
415
416         int frames_in_memory_multiplier () const {
417                 return _frames_in_memory_multiplier;
418         }
419
420         boost::optional<int> decode_reduction () const {
421                 return _decode_reduction;
422         }
423
424         bool default_notify () const {
425                 return _default_notify;
426         }
427
428         enum Notification {
429                 MESSAGE_BOX,
430                 EMAIL,
431                 NOTIFICATION_COUNT
432         };
433
434         bool notification (Notification n) const {
435                 return _notification[n];
436         }
437
438         boost::optional<std::string> barco_username () const {
439                 return _barco_username;
440         }
441
442         boost::optional<std::string> barco_password () const {
443                 return _barco_password;
444         }
445
446         boost::optional<std::string> christie_username () const {
447                 return _christie_username;
448         }
449
450         boost::optional<std::string> christie_password () const {
451                 return _christie_password;
452         }
453
454         boost::optional<std::string> gdc_username () const {
455                 return _gdc_username;
456         }
457
458         boost::optional<std::string> gdc_password () const {
459                 return _gdc_password;
460         }
461
462         enum Interface {
463                 INTERFACE_SIMPLE,
464                 INTERFACE_FULL
465         };
466
467         Interface interface_complexity () const {
468                 return _interface_complexity;
469         }
470
471         enum PlayerMode {
472                 PLAYER_MODE_WINDOW,
473                 PLAYER_MODE_FULL,
474                 PLAYER_MODE_DUAL
475         };
476
477         PlayerMode player_mode () const {
478                 return _player_mode;
479         }
480
481         int image_display () const {
482                 return _image_display;
483         }
484
485         bool respect_kdm_validity_periods () const {
486                 return _respect_kdm_validity_periods;
487         }
488
489         boost::optional<boost::filesystem::path> player_activity_log_file () const {
490                 return _player_activity_log_file;
491         }
492
493         boost::optional<boost::filesystem::path> player_debug_log_file () const {
494                 return _player_debug_log_file;
495         }
496
497         boost::optional<boost::filesystem::path> player_content_directory () const {
498                 return _player_content_directory;
499         }
500
501         boost::optional<boost::filesystem::path> player_playlist_directory () const {
502                 return _player_playlist_directory;
503         }
504
505         boost::optional<boost::filesystem::path> player_kdm_directory () const {
506                 return _player_kdm_directory;
507         }
508
509 #ifdef DCPOMATIC_VARIANT_SWAROOP
510         boost::optional<boost::filesystem::path> player_background_image () const {
511                 return _player_background_image;
512         }
513
514         std::string kdm_server_url () const {
515                 return _kdm_server_url;
516         }
517
518         std::string player_watermark_theatre () const {
519                 return _player_watermark_theatre;
520         }
521
522         int player_watermark_period () const {
523                 return _player_watermark_period;
524         }
525
526         int player_watermark_duration () const {
527                 return _player_watermark_duration;
528         }
529
530         std::vector<Monitor> required_monitors () const {
531                 return _required_monitors;
532         }
533
534         boost::optional<boost::filesystem::path> player_lock_file () const {
535                 return _player_lock_file;
536         }
537 #endif
538
539         /* SET (mostly) */
540
541         void set_master_encoding_threads (int n) {
542                 maybe_set (_master_encoding_threads, n);
543         }
544
545         void set_server_encoding_threads (int n) {
546                 maybe_set (_server_encoding_threads, n);
547         }
548
549         void set_default_directory (boost::filesystem::path d) {
550                 if (_default_directory && *_default_directory == d) {
551                         return;
552                 }
553                 _default_directory = d;
554                 changed ();
555         }
556
557         /** @param p New server port */
558         void set_server_port_base (int p) {
559                 maybe_set (_server_port_base, p);
560         }
561
562         void set_only_servers_encode (bool o) {
563                 maybe_set (_only_servers_encode, o);
564         }
565
566         void set_tms_protocol (Protocol p) {
567                 maybe_set (_tms_protocol, p);
568         }
569
570         /** @param i IP address of a TMS that we can copy DCPs to */
571         void set_tms_ip (std::string i) {
572                 maybe_set (_tms_ip, i);
573         }
574
575         /** @param p Path on a TMS that we should changed DCPs to */
576         void set_tms_path (std::string p) {
577                 maybe_set (_tms_path, p);
578         }
579
580         /** @param u User name to log into the TMS with */
581         void set_tms_user (std::string u) {
582                 maybe_set (_tms_user, u);
583         }
584
585         /** @param p Password to log into the TMS with */
586         void set_tms_password (std::string p) {
587                 maybe_set (_tms_password, p);
588         }
589
590         void add_cinema (boost::shared_ptr<Cinema> c) {
591                 _cinemas.push_back (c);
592                 changed (CINEMAS);
593         }
594
595         void remove_cinema (boost::shared_ptr<Cinema> c) {
596                 _cinemas.remove (c);
597                 changed (CINEMAS);
598         }
599
600         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
601                 maybe_set (_allowed_dcp_frame_rates, r);
602         }
603
604         void set_allow_any_dcp_frame_rate (bool a) {
605                 maybe_set (_allow_any_dcp_frame_rate, a);
606         }
607
608         void set_allow_any_container (bool a) {
609                 maybe_set (_allow_any_container, a);
610         }
611
612         void set_default_isdcf_metadata (ISDCFMetadata d) {
613                 maybe_set (_default_isdcf_metadata, d);
614         }
615
616         void set_language (std::string l) {
617                 if (_language && _language.get() == l) {
618                         return;
619                 }
620                 _language = l;
621                 changed ();
622         }
623
624         void unset_language () {
625                 if (!_language) {
626                         return;
627                 }
628
629                 _language = boost::none;
630                 changed ();
631         }
632
633         void set_default_still_length (int s) {
634                 maybe_set (_default_still_length, s);
635         }
636
637         void set_default_container (Ratio const * c) {
638                 maybe_set (_default_container, c);
639         }
640
641         void set_default_scale_to (Ratio const * c) {
642                 maybe_set (_default_scale_to, c);
643         }
644
645         void set_default_dcp_content_type (DCPContentType const * t) {
646                 maybe_set (_default_dcp_content_type, t);
647         }
648
649         void set_default_dcp_audio_channels (int c) {
650                 maybe_set (_default_dcp_audio_channels, c);
651         }
652
653         void set_dcp_issuer (std::string i) {
654                 maybe_set (_dcp_issuer, i);
655         }
656
657         void set_dcp_creator (std::string c) {
658                 maybe_set (_dcp_creator, c);
659         }
660
661         void set_default_j2k_bandwidth (int b) {
662                 maybe_set (_default_j2k_bandwidth, b);
663         }
664
665         void set_default_audio_delay (int d) {
666                 maybe_set (_default_audio_delay, d);
667         }
668
669         void set_default_interop (bool i) {
670                 maybe_set (_default_interop, i);
671         }
672
673         void set_default_upload_after_make_dcp (bool u) {
674                 maybe_set (_default_upload_after_make_dcp, u);
675         }
676
677         void set_mail_server (std::string s) {
678                 maybe_set (_mail_server, s);
679         }
680
681         void set_mail_port (int p) {
682                 maybe_set (_mail_port, p);
683         }
684
685         void set_mail_user (std::string u) {
686                 maybe_set (_mail_user, u);
687         }
688
689         void set_mail_password (std::string p) {
690                 maybe_set (_mail_password, p);
691         }
692
693         void set_kdm_subject (std::string s) {
694                 maybe_set (_kdm_subject, s);
695         }
696
697         void set_kdm_from (std::string f) {
698                 maybe_set (_kdm_from, f);
699         }
700
701         void set_kdm_cc (std::vector<std::string> f) {
702                 maybe_set (_kdm_cc, f);
703         }
704
705         void set_kdm_bcc (std::string f) {
706                 maybe_set (_kdm_bcc, f);
707         }
708
709         void set_kdm_email (std::string e) {
710                 maybe_set (_kdm_email, e);
711         }
712
713         void reset_kdm_email ();
714
715         void set_notification_subject (std::string s) {
716                 maybe_set (_notification_subject, s);
717         }
718
719         void set_notification_from (std::string f) {
720                 maybe_set (_notification_from, f);
721         }
722
723         void set_notification_to (std::string t) {
724                 maybe_set (_notification_to, t);
725         }
726
727         void set_notification_cc (std::vector<std::string> f) {
728                 maybe_set (_notification_cc, f);
729         }
730
731         void set_notification_bcc (std::string f) {
732                 maybe_set (_notification_bcc, f);
733         }
734
735         void set_notification_email (std::string e) {
736                 maybe_set (_notification_email, e);
737         }
738
739         void reset_notification_email ();
740
741         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
742                 maybe_set (_signer_chain, s);
743         }
744
745         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
746                 maybe_set (_decryption_chain, c);
747         }
748
749         void set_check_for_updates (bool c) {
750                 maybe_set (_check_for_updates, c);
751                 if (!c) {
752                         set_check_for_test_updates (false);
753                 }
754         }
755
756         void set_check_for_test_updates (bool c) {
757                 maybe_set (_check_for_test_updates, c);
758         }
759
760         void set_maximum_j2k_bandwidth (int b) {
761                 maybe_set (_maximum_j2k_bandwidth, b);
762         }
763
764         void set_log_types (int t) {
765                 maybe_set (_log_types, t);
766         }
767
768         void set_analyse_ebur128 (bool a) {
769                 maybe_set (_analyse_ebur128, a);
770         }
771
772         void set_automatic_audio_analysis (bool a) {
773                 maybe_set (_automatic_audio_analysis, a);
774         }
775
776 #ifdef DCPOMATIC_WINDOWS
777         void set_win32_console (bool c) {
778                 maybe_set (_win32_console, c);
779         }
780 #endif
781
782         void set_dkdms (boost::shared_ptr<DKDMGroup> dkdms) {
783                 _dkdms = dkdms;
784                 changed ();
785         }
786
787         void set_cinemas_file (boost::filesystem::path file);
788
789         void set_show_hints_before_make_dcp (bool s) {
790                 maybe_set (_show_hints_before_make_dcp, s);
791         }
792
793         void set_confirm_kdm_email (bool s) {
794                 maybe_set (_confirm_kdm_email, s);
795         }
796
797         void set_sound (bool s) {
798                 maybe_set (_sound, s, SOUND);
799         }
800
801         void set_sound_output (std::string o) {
802                 maybe_set (_sound_output, o, SOUND_OUTPUT);
803         }
804
805         void set_last_player_load_directory (boost::filesystem::path d) {
806                 maybe_set (_last_player_load_directory, d);
807         }
808
809         void set_last_kdm_write_type (KDMWriteType t) {
810                 maybe_set (_last_kdm_write_type, t);
811         }
812
813         void set_last_dkdm_write_type (DKDMWriteType t) {
814                 maybe_set (_last_dkdm_write_type, t);
815         }
816
817         void unset_sound_output () {
818                 if (!_sound_output) {
819                         return;
820                 }
821
822                 _sound_output = boost::none;
823                 changed ();
824         }
825
826         void set_kdm_container_name_format (dcp::NameFormat n) {
827                 maybe_set (_kdm_container_name_format, n);
828         }
829
830         void set_kdm_filename_format (dcp::NameFormat n) {
831                 maybe_set (_kdm_filename_format, n);
832         }
833
834         void set_dcp_metadata_filename_format (dcp::NameFormat n) {
835                 maybe_set (_dcp_metadata_filename_format, n);
836         }
837
838         void set_dcp_asset_filename_format (dcp::NameFormat n) {
839                 maybe_set (_dcp_asset_filename_format, n);
840         }
841
842         void set_frames_in_memory_multiplier (int m) {
843                 maybe_set (_frames_in_memory_multiplier, m);
844         }
845
846         void set_decode_reduction (boost::optional<int> r) {
847                 maybe_set (_decode_reduction, r);
848         }
849
850         void set_default_notify (bool n) {
851                 maybe_set (_default_notify, n);
852         }
853
854         void clear_history () {
855                 _history.clear ();
856                 changed ();
857         }
858
859         void clear_player_history () {
860                 _player_history.clear ();
861                 changed ();
862         }
863
864         void add_to_history (boost::filesystem::path p);
865         void clean_history ();
866         void add_to_player_history (boost::filesystem::path p);
867         void clean_player_history ();
868
869         void set_jump_to_selected (bool j) {
870                 maybe_set (_jump_to_selected, j);
871         }
872
873         void set_nagged (Nag nag, bool nagged) {
874                 maybe_set (_nagged[nag], nagged);
875         }
876
877         void set_cover_sheet (std::string s) {
878                 maybe_set (_cover_sheet, s);
879         }
880
881         void reset_cover_sheet ();
882
883         void set_notification (Notification n, bool v) {
884                 maybe_set (_notification[n], v);
885         }
886
887         void set_barco_username (std::string u) {
888                 maybe_set (_barco_username, u);
889         }
890
891         void unset_barco_username () {
892                 maybe_set (_barco_username, boost::optional<std::string>());
893         }
894
895         void set_barco_password (std::string p) {
896                 maybe_set (_barco_password, p);
897         }
898
899         void unset_barco_password () {
900                 maybe_set (_barco_password, boost::optional<std::string>());
901         }
902
903         void set_christie_username (std::string u) {
904                 maybe_set (_christie_username, u);
905         }
906
907         void unset_christie_username () {
908                 maybe_set (_christie_username, boost::optional<std::string>());
909         }
910
911         void set_christie_password (std::string p) {
912                 maybe_set (_christie_password, p);
913         }
914
915         void unset_christie_password () {
916                 maybe_set (_christie_password, boost::optional<std::string>());
917         }
918
919         void set_gdc_username (std::string u) {
920                 maybe_set (_gdc_username, u);
921         }
922
923         void unset_gdc_username () {
924                 maybe_set (_gdc_username, boost::optional<std::string>());
925         }
926
927         void set_gdc_password (std::string p) {
928                 maybe_set (_gdc_password, p);
929         }
930
931         void unset_gdc_password () {
932                 maybe_set (_gdc_password, boost::optional<std::string>());
933         }
934
935         void set_interface_complexity (Interface i) {
936                 maybe_set (_interface_complexity, i, INTERFACE_COMPLEXITY);
937         }
938
939         void set_player_mode (PlayerMode m) {
940                 maybe_set (_player_mode, m);
941         }
942
943         void set_image_display (int n) {
944                 maybe_set (_image_display, n);
945         }
946
947         void set_respect_kdm_validity_periods (bool r) {
948                 maybe_set (_respect_kdm_validity_periods, r);
949         }
950
951         void set_player_activity_log_file (boost::filesystem::path p) {
952                 maybe_set (_player_activity_log_file, p);
953         }
954
955         void unset_player_activity_log_file () {
956                 if (!_player_activity_log_file) {
957                         return;
958                 }
959                 _player_activity_log_file = boost::none;
960                 changed ();
961         }
962
963         void set_player_debug_log_file (boost::filesystem::path p) {
964                 maybe_set (_player_debug_log_file, p, PLAYER_DEBUG_LOG);
965         }
966
967         void unset_player_debug_log_file () {
968                 if (!_player_debug_log_file) {
969                         return;
970                 }
971                 _player_debug_log_file = boost::none;
972                 changed (PLAYER_DEBUG_LOG);
973         }
974
975         void set_player_content_directory (boost::filesystem::path p) {
976                 maybe_set (_player_content_directory, p, PLAYER_CONTENT_DIRECTORY);
977         }
978
979         void unset_player_content_directory () {
980                 if (!_player_content_directory) {
981                         return;
982                 }
983                 _player_content_directory = boost::none;
984                 changed (PLAYER_CONTENT_DIRECTORY);
985         }
986
987         void set_player_playlist_directory (boost::filesystem::path p) {
988                 maybe_set (_player_playlist_directory, p, PLAYER_PLAYLIST_DIRECTORY);
989         }
990
991         void unset_player_playlist_directory () {
992                 if (!_player_playlist_directory) {
993                         return;
994                 }
995                 _player_playlist_directory = boost::none;
996                 changed (PLAYER_PLAYLIST_DIRECTORY);
997         }
998
999         void set_player_kdm_directory (boost::filesystem::path p) {
1000                 maybe_set (_player_kdm_directory, p);
1001         }
1002
1003         void unset_player_kdm_directory () {
1004                 if (!_player_kdm_directory) {
1005                         return;
1006                 }
1007                 _player_kdm_directory = boost::none;
1008                 changed ();
1009         }
1010
1011 #ifdef DCPOMATIC_VARIANT_SWAROOP
1012         void set_player_background_image (boost::filesystem::path p) {
1013                 maybe_set (_player_background_image, p, PLAYER_BACKGROUND_IMAGE);
1014         }
1015
1016         void unset_player_background_image () {
1017                 if (!_player_background_image) {
1018                         return;
1019                 }
1020                 _player_background_image = boost::none;
1021                 changed (PLAYER_BACKGROUND_IMAGE);
1022         }
1023
1024         void set_kdm_server_url (std::string s) {
1025                 maybe_set (_kdm_server_url, s);
1026         }
1027
1028         void set_player_watermark_theatre (std::string p) {
1029                 maybe_set (_player_watermark_theatre, p);
1030         }
1031
1032         void set_player_watermark_period (int minutes) {
1033                 maybe_set (_player_watermark_period, minutes);
1034         }
1035
1036         void set_player_watermark_duration (int milliseconds) {
1037                 maybe_set (_player_watermark_duration, milliseconds);
1038         }
1039
1040         void set_required_monitors (std::vector<Monitor> monitors) {
1041                 maybe_set (_required_monitors, monitors);
1042         }
1043
1044         void set_player_lock_file (boost::filesystem::path p) {
1045                 maybe_set (_player_lock_file, p);
1046         }
1047
1048         void unset_player_lock_file () {
1049                 if (!_player_lock_file) {
1050                         return;
1051                 }
1052                 _player_lock_file = boost::none;
1053                 changed ();
1054         }
1055 #endif
1056
1057         void changed (Property p = OTHER);
1058         boost::signals2::signal<void (Property)> Changed;
1059         /** Emitted if read() failed on an existing Config file.  There is nothing
1060             a listener can do about it: this is just for information.
1061         */
1062         static boost::signals2::signal<void ()> FailedToLoad;
1063         /** Emitted if read() issued a warning which the user might want to know about */
1064         static boost::signals2::signal<void (std::string)> Warning;
1065         /** Emitted if there is a bad certificate in the signer chain.  Handler can call
1066          *  true to ask Config to re-create the chain.
1067          */
1068         static boost::signals2::signal<bool (void)> BadSignerChain;
1069
1070         void write () const;
1071         void write_config () const;
1072         void write_cinemas () const;
1073         void link (boost::filesystem::path new_file) const;
1074         void copy_and_link (boost::filesystem::path new_file) const;
1075         bool have_write_permission () const;
1076
1077         void save_template (boost::shared_ptr<const Film> film, std::string name) const;
1078         bool existing_template (std::string name) const;
1079         std::list<std::string> templates () const;
1080         boost::filesystem::path template_path (std::string name) const;
1081         void rename_template (std::string old_name, std::string new_name) const;
1082         void delete_template (std::string name) const;
1083
1084         static Config* instance ();
1085         static void drop ();
1086         static void restore_defaults ();
1087         static bool have_existing (std::string);
1088         static boost::filesystem::path config_file ();
1089         static boost::filesystem::path path (std::string file, bool create_directories = true);
1090
1091         /** If set, this overrides the standard path (in home, Library, AppData or wherever) for config.xml and cinemas.xml */
1092         static boost::optional<boost::filesystem::path> override_path;
1093
1094 private:
1095         Config ();
1096         void read ();
1097         void set_defaults ();
1098         void set_kdm_email_to_default ();
1099         void set_notification_email_to_default ();
1100         void set_cover_sheet_to_default ();
1101         void read_cinemas (cxml::Document const & f);
1102         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
1103         boost::filesystem::path directory_or (boost::optional<boost::filesystem::path> dir, boost::filesystem::path a) const;
1104         void add_to_history_internal (std::vector<boost::filesystem::path>& h, boost::filesystem::path p);
1105         void clean_history_internal (std::vector<boost::filesystem::path>& h);
1106         void backup ();
1107
1108         template <class T>
1109         void maybe_set (T& member, T new_value, Property prop = OTHER) {
1110                 if (member == new_value) {
1111                         return;
1112                 }
1113                 member = new_value;
1114                 changed (prop);
1115         }
1116
1117         template <class T>
1118         void maybe_set (boost::optional<T>& member, T new_value, Property prop = OTHER) {
1119                 if (member && member.get() == new_value) {
1120                         return;
1121                 }
1122                 member = new_value;
1123                 changed (prop);
1124         }
1125
1126         /** number of threads which a master DoM should use for J2K encoding on the local machine */
1127         int _master_encoding_threads;
1128         /** number of threads which a server should use for J2K encoding on the local machine */
1129         int _server_encoding_threads;
1130         /** default directory to put new films in */
1131         boost::optional<boost::filesystem::path> _default_directory;
1132         /** base port number to use for J2K encoding servers;
1133          *  this port and the two above it will be used.
1134          */
1135         int _server_port_base;
1136         /** true to broadcast on the `any' address to look for servers */
1137         bool _use_any_servers;
1138         /** J2K encoding servers that should definitely be used */
1139         std::vector<std::string> _servers;
1140         bool _only_servers_encode;
1141         Protocol _tms_protocol;
1142         /** The IP address of a TMS that we can copy DCPs to */
1143         std::string _tms_ip;
1144         /** The path on a TMS that we should write DCPs to */
1145         std::string _tms_path;
1146         /** User name to log into the TMS with */
1147         std::string _tms_user;
1148         /** Password to log into the TMS with */
1149         std::string _tms_password;
1150         /** Our cinema sound processor */
1151         CinemaSoundProcessor const * _cinema_sound_processor;
1152         /** The list of possible DCP frame rates that DCP-o-matic will use */
1153         std::list<int> _allowed_dcp_frame_rates;
1154         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
1155         bool _allow_any_dcp_frame_rate;
1156         /** Allow any container ratio, not just the standard ones.  GDC SX-2001 will not play Flat
1157             DCPs at 25fps but will play 16:9, so this is very useful for some users.
1158             https://www.dcpomatic.com/forum/viewtopic.php?f=2&t=1119&p=4468
1159         */
1160         bool _allow_any_container;
1161         /** Default ISDCF metadata for newly-created Films */
1162         ISDCFMetadata _default_isdcf_metadata;
1163         boost::optional<std::string> _language;
1164         /** Default length of still image content (seconds) */
1165         int _default_still_length;
1166         Ratio const * _default_container;
1167         Ratio const * _default_scale_to;
1168         DCPContentType const * _default_dcp_content_type;
1169         int _default_dcp_audio_channels;
1170         std::string _dcp_issuer;
1171         std::string _dcp_creator;
1172         int _default_j2k_bandwidth;
1173         int _default_audio_delay;
1174         bool _default_interop;
1175         /** Default directory to offer to write KDMs to; if it's not set,
1176             the home directory will be offered.
1177         */
1178         boost::optional<boost::filesystem::path> _default_kdm_directory;
1179         bool _default_upload_after_make_dcp;
1180         std::list<boost::shared_ptr<Cinema> > _cinemas;
1181         std::string _mail_server;
1182         int _mail_port;
1183         std::string _mail_user;
1184         std::string _mail_password;
1185         std::string _kdm_subject;
1186         std::string _kdm_from;
1187         std::vector<std::string> _kdm_cc;
1188         std::string _kdm_bcc;
1189         std::string _kdm_email;
1190         std::string _notification_subject;
1191         std::string _notification_from;
1192         std::string _notification_to;
1193         std::vector<std::string> _notification_cc;
1194         std::string _notification_bcc;
1195         std::string _notification_email;
1196         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
1197 #ifdef DCPOMATIC_VARIANT_SWAROOP
1198         boost::filesystem::path _signer_chain_path;
1199 #endif
1200         /** Chain used to decrypt KDMs; the leaf of this chain is the target
1201          *  certificate for making KDMs given to DCP-o-matic.
1202          */
1203         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
1204 #ifdef DCPOMATIC_VARIANT_SWAROOP
1205         boost::filesystem::path _decryption_chain_path;
1206 #endif
1207         /** true to check for updates on startup */
1208         bool _check_for_updates;
1209         bool _check_for_test_updates;
1210         /** maximum allowed J2K bandwidth in bits per second */
1211         int _maximum_j2k_bandwidth;
1212         int _log_types;
1213         bool _analyse_ebur128;
1214         bool _automatic_audio_analysis;
1215 #ifdef DCPOMATIC_WINDOWS
1216         bool _win32_console;
1217 #endif
1218         std::vector<boost::filesystem::path> _history;
1219         std::vector<boost::filesystem::path> _player_history;
1220         boost::shared_ptr<DKDMGroup> _dkdms;
1221         boost::filesystem::path _cinemas_file;
1222         bool _show_hints_before_make_dcp;
1223         bool _confirm_kdm_email;
1224         dcp::NameFormat _kdm_filename_format;
1225         dcp::NameFormat _kdm_container_name_format;
1226         dcp::NameFormat _dcp_metadata_filename_format;
1227         dcp::NameFormat _dcp_asset_filename_format;
1228         bool _jump_to_selected;
1229         bool _nagged[NAG_COUNT];
1230         bool _sound;
1231         /** name of a specific sound output stream to use, or empty to use the default */
1232         boost::optional<std::string> _sound_output;
1233         std::string _cover_sheet;
1234         boost::optional<boost::filesystem::path> _last_player_load_directory;
1235         boost::optional<KDMWriteType> _last_kdm_write_type;
1236         boost::optional<DKDMWriteType> _last_dkdm_write_type;
1237         int _frames_in_memory_multiplier;
1238         boost::optional<int> _decode_reduction;
1239         bool _default_notify;
1240         bool _notification[NOTIFICATION_COUNT];
1241         boost::optional<std::string> _barco_username;
1242         boost::optional<std::string> _barco_password;
1243         boost::optional<std::string> _christie_username;
1244         boost::optional<std::string> _christie_password;
1245         boost::optional<std::string> _gdc_username;
1246         boost::optional<std::string> _gdc_password;
1247         Interface _interface_complexity;
1248         PlayerMode _player_mode;
1249         int _image_display;
1250         bool _respect_kdm_validity_periods;
1251         /** Log file containing things the player does (e.g. started, stopped, loaded
1252             playlist etc.)  Does not contain debugging information.
1253         */
1254         boost::optional<boost::filesystem::path> _player_activity_log_file;
1255         /** Log file containing debug information for the player */
1256         boost::optional<boost::filesystem::path> _player_debug_log_file;
1257         /** A directory containing DCPs whose contents are presented to the user
1258             in the dual-screen player mode.  DCPs on the list can be loaded
1259             for playback.
1260         */
1261         boost::optional<boost::filesystem::path> _player_content_directory;
1262         boost::optional<boost::filesystem::path> _player_playlist_directory;
1263         boost::optional<boost::filesystem::path> _player_kdm_directory;
1264 #ifdef DCPOMATIC_VARIANT_SWAROOP
1265         boost::optional<boost::filesystem::path> _player_background_image;
1266         std::string _kdm_server_url;
1267         std::string _player_watermark_theatre;
1268         /** watermark period in minutes */
1269         int _player_watermark_period;
1270         /** watermark duration in milliseconds */
1271         int _player_watermark_duration;
1272         std::vector<Monitor> _required_monitors;
1273         /** a file which, if specified, must be present for the player to work */
1274         boost::optional<boost::filesystem::path> _player_lock_file;
1275 #endif
1276
1277         static int const _current_version;
1278
1279         /** Singleton instance, or 0 */
1280         static Config* _instance;
1281 };
1282
1283 #endif