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