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