More rearrangement and add Barco Alchemy.
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/config.h
22  *  @brief Class holding configuration.
23  */
24
25 #ifndef DCPOMATIC_CONFIG_H
26 #define DCPOMATIC_CONFIG_H
27
28 #include "isdcf_metadata.h"
29 #include "types.h"
30 #include <dcp/name_format.h>
31 #include <dcp/certificate_chain.h>
32 #include <dcp/encrypted_kdm.h>
33 #include <boost/shared_ptr.hpp>
34 #include <boost/signals2.hpp>
35 #include <boost/filesystem.hpp>
36 #include <vector>
37
38 class CinemaSoundProcessor;
39 class DCPContentType;
40 class Ratio;
41 class Cinema;
42 class Film;
43 class DKDMGroup;
44
45 /** @class Config
46  *  @brief A singleton class holding configuration.
47  */
48 class Config : public boost::noncopyable
49 {
50 public:
51         /** @return number of threads which a master DoM should use for J2K encoding on the local machine */
52         int master_encoding_threads () const {
53                 return _master_encoding_threads;
54         }
55
56         /** @return number of threads which a server should use for J2K encoding on the local machine */
57         int server_encoding_threads () const {
58                 return _server_encoding_threads;
59         }
60
61         boost::optional<boost::filesystem::path> default_directory () const {
62                 return _default_directory;
63         }
64
65         boost::optional<boost::filesystem::path> default_kdm_directory () const {
66                 return _default_kdm_directory;
67         }
68
69         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
70         boost::filesystem::path default_kdm_directory_or (boost::filesystem::path a) const;
71
72         enum Property {
73                 USE_ANY_SERVERS,
74                 SERVERS,
75                 CINEMAS,
76                 SOUND,
77                 SOUND_OUTPUT,
78                 OTHER
79         };
80
81         /** @return base port number to use for J2K encoding servers */
82         int server_port_base () const {
83                 return _server_port_base;
84         }
85
86         void set_use_any_servers (bool u) {
87                 _use_any_servers = u;
88                 changed (USE_ANY_SERVERS);
89         }
90
91         bool use_any_servers () const {
92                 return _use_any_servers;
93         }
94
95         /** @param s New list of servers */
96         void set_servers (std::vector<std::string> s) {
97                 _servers = s;
98                 changed (SERVERS);
99         }
100
101         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
102         std::vector<std::string> servers () const {
103                 return _servers;
104         }
105
106         bool only_servers_encode () const {
107                 return _only_servers_encode;
108         }
109
110         Protocol tms_protocol () const {
111                 return _tms_protocol;
112         }
113
114         /** @return The IP address of a TMS that we can copy DCPs to */
115         std::string tms_ip () const {
116                 return _tms_ip;
117         }
118
119         /** @return The path on a TMS that we should changed DCPs to */
120         std::string tms_path () const {
121                 return _tms_path;
122         }
123
124         /** @return User name to log into the TMS with */
125         std::string tms_user () const {
126                 return _tms_user;
127         }
128
129         /** @return Password to log into the TMS with */
130         std::string tms_password () const {
131                 return _tms_password;
132         }
133
134         /** @return The cinema sound processor that we are using */
135         CinemaSoundProcessor const * cinema_sound_processor () const {
136                 return _cinema_sound_processor;
137         }
138
139         std::list<boost::shared_ptr<Cinema> > cinemas () const {
140                 return _cinemas;
141         }
142
143         std::list<int> allowed_dcp_frame_rates () const {
144                 return _allowed_dcp_frame_rates;
145         }
146
147         bool allow_any_dcp_frame_rate () const {
148                 return _allow_any_dcp_frame_rate;
149         }
150
151         bool allow_any_container () const {
152                 return _allow_any_container;
153         }
154
155         ISDCFMetadata default_isdcf_metadata () const {
156                 return _default_isdcf_metadata;
157         }
158
159         boost::optional<std::string> language () const {
160                 return _language;
161         }
162
163         int default_still_length () const {
164                 return _default_still_length;
165         }
166
167         Ratio const * default_container () const {
168                 return _default_container;
169         }
170
171         Ratio const * default_scale_to () const {
172                 return _default_scale_to;
173         }
174
175         DCPContentType const * default_dcp_content_type () const {
176                 return _default_dcp_content_type;
177         }
178
179         int default_dcp_audio_channels () const {
180                 return _default_dcp_audio_channels;
181         }
182
183         std::string dcp_issuer () const {
184                 return _dcp_issuer;
185         }
186
187         std::string dcp_creator () const {
188                 return _dcp_creator;
189         }
190
191         int default_j2k_bandwidth () const {
192                 return _default_j2k_bandwidth;
193         }
194
195         int default_audio_delay () const {
196                 return _default_audio_delay;
197         }
198
199         bool default_interop () const {
200                 return _default_interop;
201         }
202
203         bool default_upload_after_make_dcp () {
204                 return _default_upload_after_make_dcp;
205         }
206
207         void set_default_kdm_directory (boost::filesystem::path d) {
208                 if (_default_kdm_directory && _default_kdm_directory.get() == d) {
209                         return;
210                 }
211                 _default_kdm_directory = d;
212                 changed ();
213         }
214
215         std::string mail_server () const {
216                 return _mail_server;
217         }
218
219         int mail_port () const {
220                 return _mail_port;
221         }
222
223         std::string mail_user () const {
224                 return _mail_user;
225         }
226
227         std::string mail_password () const {
228                 return _mail_password;
229         }
230
231         std::string kdm_subject () const {
232                 return _kdm_subject;
233         }
234
235         std::string kdm_from () const {
236                 return _kdm_from;
237         }
238
239         std::vector<std::string> kdm_cc () const {
240                 return _kdm_cc;
241         }
242
243         std::string kdm_bcc () const {
244                 return _kdm_bcc;
245         }
246
247         std::string kdm_email () const {
248                 return _kdm_email;
249         }
250
251         std::string notification_subject () const {
252                 return _notification_subject;
253         }
254
255         std::string notification_from () const {
256                 return _notification_from;
257         }
258
259         std::string notification_to () const {
260                 return _notification_to;
261         }
262
263         std::vector<std::string> notification_cc () const {
264                 return _notification_cc;
265         }
266
267         std::string notification_bcc () const {
268                 return _notification_bcc;
269         }
270
271         std::string notification_email () const {
272                 return _notification_email;
273         }
274
275         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
276                 return _signer_chain;
277         }
278
279         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
280                 return _decryption_chain;
281         }
282
283         bool check_for_updates () const {
284                 return _check_for_updates;
285         }
286
287         bool check_for_test_updates () const {
288                 return _check_for_test_updates;
289         }
290
291         int maximum_j2k_bandwidth () const {
292                 return _maximum_j2k_bandwidth;
293         }
294
295         int log_types () const {
296                 return _log_types;
297         }
298
299         bool analyse_ebur128 () const {
300                 return _analyse_ebur128;
301         }
302
303         bool automatic_audio_analysis () const {
304                 return _automatic_audio_analysis;
305         }
306
307 #ifdef DCPOMATIC_WINDOWS
308         bool win32_console () const {
309                 return _win32_console;
310         }
311 #endif
312
313         std::vector<boost::filesystem::path> history () const {
314                 return _history;
315         }
316
317         std::vector<boost::filesystem::path> player_history () const {
318                 return _player_history;
319         }
320
321         boost::shared_ptr<DKDMGroup> dkdms () const {
322                 return _dkdms;
323         }
324
325         boost::filesystem::path cinemas_file () const {
326                 return _cinemas_file;
327         }
328
329         bool show_hints_before_make_dcp () const {
330                 return _show_hints_before_make_dcp;
331         }
332
333         bool confirm_kdm_email () const {
334                 return _confirm_kdm_email;
335         }
336
337         dcp::NameFormat kdm_container_name_format () const {
338                 return _kdm_container_name_format;
339         }
340
341         dcp::NameFormat kdm_filename_format () const {
342                 return _kdm_filename_format;
343         }
344
345         dcp::NameFormat dcp_metadata_filename_format () const {
346                 return _dcp_metadata_filename_format;
347         }
348
349         dcp::NameFormat dcp_asset_filename_format () const {
350                 return _dcp_asset_filename_format;
351         }
352
353         bool jump_to_selected () const {
354                 return _jump_to_selected;
355         }
356
357         enum Nag {
358                 NAG_DKDM_CONFIG,
359                 NAG_ENCRYPTED_METADATA,
360                 NAG_REMAKE_DECRYPTION_CHAIN,
361                 NAG_BAD_SIGNER_CHAIN,
362                 NAG_COUNT
363         };
364
365         bool nagged (Nag nag) const {
366                 return _nagged[nag];
367         }
368
369         bool sound () const {
370                 return _sound;
371         }
372
373         std::string cover_sheet () const {
374                 return _cover_sheet;
375         }
376
377         boost::optional<std::string> sound_output () const {
378                 return _sound_output;
379         }
380
381         boost::optional<boost::filesystem::path> last_player_load_directory () const {
382                 return _last_player_load_directory;
383         }
384
385         enum KDMWriteType {
386                 KDM_WRITE_FLAT,
387                 KDM_WRITE_FOLDER,
388                 KDM_WRITE_ZIP
389         };
390
391         boost::optional<KDMWriteType> last_kdm_write_type () const {
392                 return _last_kdm_write_type;
393         }
394
395         enum DKDMWriteType {
396                 DKDM_WRITE_INTERNAL,
397                 DKDM_WRITE_FILE
398         };
399
400         boost::optional<DKDMWriteType> last_dkdm_write_type () const {
401                 return _last_dkdm_write_type;
402         }
403
404         int frames_in_memory_multiplier () const {
405                 return _frames_in_memory_multiplier;
406         }
407
408         boost::optional<int> decode_reduction () const {
409                 return _decode_reduction;
410         }
411
412         bool default_notify () const {
413                 return _default_notify;
414         }
415
416         enum Notification {
417                 MESSAGE_BOX,
418                 EMAIL,
419                 NOTIFICATION_COUNT
420         };
421
422         bool notification (Notification n) const {
423                 return _notification[n];
424         }
425
426         boost::optional<std::string> barco_username () const {
427                 return _barco_username;
428         }
429
430         boost::optional<std::string> barco_password () const {
431                 return _barco_password;
432         }
433
434         /* SET (mostly) */
435
436         void set_master_encoding_threads (int n) {
437                 maybe_set (_master_encoding_threads, n);
438         }
439
440         void set_server_encoding_threads (int n) {
441                 maybe_set (_server_encoding_threads, n);
442         }
443
444         void set_default_directory (boost::filesystem::path d) {
445                 if (_default_directory && *_default_directory == d) {
446                         return;
447                 }
448                 _default_directory = d;
449                 changed ();
450         }
451
452         /** @param p New server port */
453         void set_server_port_base (int p) {
454                 maybe_set (_server_port_base, p);
455         }
456
457         void set_only_servers_encode (bool o) {
458                 maybe_set (_only_servers_encode, o);
459         }
460
461         void set_tms_protocol (Protocol p) {
462                 maybe_set (_tms_protocol, p);
463         }
464
465         /** @param i IP address of a TMS that we can copy DCPs to */
466         void set_tms_ip (std::string i) {
467                 maybe_set (_tms_ip, i);
468         }
469
470         /** @param p Path on a TMS that we should changed DCPs to */
471         void set_tms_path (std::string p) {
472                 maybe_set (_tms_path, p);
473         }
474
475         /** @param u User name to log into the TMS with */
476         void set_tms_user (std::string u) {
477                 maybe_set (_tms_user, u);
478         }
479
480         /** @param p Password to log into the TMS with */
481         void set_tms_password (std::string p) {
482                 maybe_set (_tms_password, p);
483         }
484
485         void add_cinema (boost::shared_ptr<Cinema> c) {
486                 _cinemas.push_back (c);
487                 changed (CINEMAS);
488         }
489
490         void remove_cinema (boost::shared_ptr<Cinema> c) {
491                 _cinemas.remove (c);
492                 changed (CINEMAS);
493         }
494
495         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
496                 maybe_set (_allowed_dcp_frame_rates, r);
497         }
498
499         void set_allow_any_dcp_frame_rate (bool a) {
500                 maybe_set (_allow_any_dcp_frame_rate, a);
501         }
502
503         void set_allow_any_container (bool a) {
504                 maybe_set (_allow_any_container, a);
505         }
506
507         void set_default_isdcf_metadata (ISDCFMetadata d) {
508                 maybe_set (_default_isdcf_metadata, d);
509         }
510
511         void set_language (std::string l) {
512                 if (_language && _language.get() == l) {
513                         return;
514                 }
515                 _language = l;
516                 changed ();
517         }
518
519         void unset_language () {
520                 if (!_language) {
521                         return;
522                 }
523
524                 _language = boost::none;
525                 changed ();
526         }
527
528         void set_default_still_length (int s) {
529                 maybe_set (_default_still_length, s);
530         }
531
532         void set_default_container (Ratio const * c) {
533                 maybe_set (_default_container, c);
534         }
535
536         void set_default_scale_to (Ratio const * c) {
537                 maybe_set (_default_scale_to, c);
538         }
539
540         void set_default_dcp_content_type (DCPContentType const * t) {
541                 maybe_set (_default_dcp_content_type, t);
542         }
543
544         void set_default_dcp_audio_channels (int c) {
545                 maybe_set (_default_dcp_audio_channels, c);
546         }
547
548         void set_dcp_issuer (std::string i) {
549                 maybe_set (_dcp_issuer, i);
550         }
551
552         void set_dcp_creator (std::string c) {
553                 maybe_set (_dcp_creator, c);
554         }
555
556         void set_default_j2k_bandwidth (int b) {
557                 maybe_set (_default_j2k_bandwidth, b);
558         }
559
560         void set_default_audio_delay (int d) {
561                 maybe_set (_default_audio_delay, d);
562         }
563
564         void set_default_interop (bool i) {
565                 maybe_set (_default_interop, i);
566         }
567
568         void set_default_upload_after_make_dcp (bool u) {
569                 maybe_set (_default_upload_after_make_dcp, u);
570         }
571
572         void set_mail_server (std::string s) {
573                 maybe_set (_mail_server, s);
574         }
575
576         void set_mail_port (int p) {
577                 maybe_set (_mail_port, p);
578         }
579
580         void set_mail_user (std::string u) {
581                 maybe_set (_mail_user, u);
582         }
583
584         void set_mail_password (std::string p) {
585                 maybe_set (_mail_password, p);
586         }
587
588         void set_kdm_subject (std::string s) {
589                 maybe_set (_kdm_subject, s);
590         }
591
592         void set_kdm_from (std::string f) {
593                 maybe_set (_kdm_from, f);
594         }
595
596         void set_kdm_cc (std::vector<std::string> f) {
597                 maybe_set (_kdm_cc, f);
598         }
599
600         void set_kdm_bcc (std::string f) {
601                 maybe_set (_kdm_bcc, f);
602         }
603
604         void set_kdm_email (std::string e) {
605                 maybe_set (_kdm_email, e);
606         }
607
608         void reset_kdm_email ();
609
610         void set_notification_subject (std::string s) {
611                 maybe_set (_notification_subject, s);
612         }
613
614         void set_notification_from (std::string f) {
615                 maybe_set (_notification_from, f);
616         }
617
618         void set_notification_to (std::string t) {
619                 maybe_set (_notification_to, t);
620         }
621
622         void set_notification_cc (std::vector<std::string> f) {
623                 maybe_set (_notification_cc, f);
624         }
625
626         void set_notification_bcc (std::string f) {
627                 maybe_set (_notification_bcc, f);
628         }
629
630         void set_notification_email (std::string e) {
631                 maybe_set (_notification_email, e);
632         }
633
634         void reset_notification_email ();
635
636         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
637                 maybe_set (_signer_chain, s);
638         }
639
640         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
641                 maybe_set (_decryption_chain, c);
642         }
643
644         void set_check_for_updates (bool c) {
645                 maybe_set (_check_for_updates, c);
646                 if (!c) {
647                         set_check_for_test_updates (false);
648                 }
649         }
650
651         void set_check_for_test_updates (bool c) {
652                 maybe_set (_check_for_test_updates, c);
653         }
654
655         void set_maximum_j2k_bandwidth (int b) {
656                 maybe_set (_maximum_j2k_bandwidth, b);
657         }
658
659         void set_log_types (int t) {
660                 maybe_set (_log_types, t);
661         }
662
663         void set_analyse_ebur128 (bool a) {
664                 maybe_set (_analyse_ebur128, a);
665         }
666
667         void set_automatic_audio_analysis (bool a) {
668                 maybe_set (_automatic_audio_analysis, a);
669         }
670
671 #ifdef DCPOMATIC_WINDOWS
672         void set_win32_console (bool c) {
673                 maybe_set (_win32_console, c);
674         }
675 #endif
676
677         void set_dkdms (boost::shared_ptr<DKDMGroup> dkdms) {
678                 _dkdms = dkdms;
679                 changed ();
680         }
681
682         void set_cinemas_file (boost::filesystem::path file);
683
684         void set_show_hints_before_make_dcp (bool s) {
685                 maybe_set (_show_hints_before_make_dcp, s);
686         }
687
688         void set_confirm_kdm_email (bool s) {
689                 maybe_set (_confirm_kdm_email, s);
690         }
691
692         void set_sound (bool s) {
693                 maybe_set (_sound, s, SOUND);
694         }
695
696         void set_sound_output (std::string o) {
697                 maybe_set (_sound_output, o, SOUND_OUTPUT);
698         }
699
700         void set_last_player_load_directory (boost::filesystem::path d) {
701                 maybe_set (_last_player_load_directory, d);
702         }
703
704         void set_last_kdm_write_type (KDMWriteType t) {
705                 maybe_set (_last_kdm_write_type, t);
706         }
707
708         void set_last_dkdm_write_type (DKDMWriteType t) {
709                 maybe_set (_last_dkdm_write_type, t);
710         }
711
712         void unset_sound_output () {
713                 if (!_sound_output) {
714                         return;
715                 }
716
717                 _sound_output = boost::none;
718                 changed ();
719         }
720
721         void set_kdm_container_name_format (dcp::NameFormat n) {
722                 maybe_set (_kdm_container_name_format, n);
723         }
724
725         void set_kdm_filename_format (dcp::NameFormat n) {
726                 maybe_set (_kdm_filename_format, n);
727         }
728
729         void set_dcp_metadata_filename_format (dcp::NameFormat n) {
730                 maybe_set (_dcp_metadata_filename_format, n);
731         }
732
733         void set_dcp_asset_filename_format (dcp::NameFormat n) {
734                 maybe_set (_dcp_asset_filename_format, n);
735         }
736
737         void set_frames_in_memory_multiplier (int m) {
738                 maybe_set (_frames_in_memory_multiplier, m);
739         }
740
741         void set_decode_reduction (boost::optional<int> r) {
742                 maybe_set (_decode_reduction, r);
743         }
744
745         void set_default_notify (bool n) {
746                 maybe_set (_default_notify, n);
747         }
748
749         void clear_history () {
750                 _history.clear ();
751                 changed ();
752         }
753
754         void clear_player_history () {
755                 _player_history.clear ();
756                 changed ();
757         }
758
759         void add_to_history (boost::filesystem::path p);
760         void add_to_player_history (boost::filesystem::path p);
761
762         void set_jump_to_selected (bool j) {
763                 maybe_set (_jump_to_selected, j);
764         }
765
766         void set_nagged (Nag nag, bool nagged) {
767                 maybe_set (_nagged[nag], nagged);
768         }
769
770         void set_cover_sheet (std::string s) {
771                 maybe_set (_cover_sheet, s);
772         }
773
774         void reset_cover_sheet ();
775
776         void set_notification (Notification n, bool v) {
777                 maybe_set (_notification[n], v);
778         }
779
780         void set_barco_username (std::string u) {
781                 maybe_set (_barco_username, u);
782         }
783
784         void unset_barco_username () {
785                 maybe_set (_barco_username, boost::optional<std::string>());
786         }
787
788         void set_barco_password (std::string p) {
789                 maybe_set (_barco_password, p);
790         }
791
792         void unset_barco_password () {
793                 maybe_set (_barco_password, boost::optional<std::string>());
794         }
795
796         void changed (Property p = OTHER);
797         boost::signals2::signal<void (Property)> Changed;
798         /** Emitted if read() failed on an existing Config file.  There is nothing
799             a listener can do about it: this is just for information.
800         */
801         static boost::signals2::signal<void ()> FailedToLoad;
802         /** Emitted if read() issued a warning which the user might want to know about */
803         static boost::signals2::signal<void (std::string)> Warning;
804         /** Emitted if there is a bad certificate in the signer chain.  Handler can call
805          *  true to ask Config to re-create the chain.
806          */
807         static boost::signals2::signal<bool (void)> BadSignerChain;
808
809         void write () const;
810         void write_config () const;
811         void write_cinemas () const;
812         void link (boost::filesystem::path new_file) const;
813         void copy_and_link (boost::filesystem::path new_file) const;
814
815         void save_template (boost::shared_ptr<const Film> film, std::string name) const;
816         bool existing_template (std::string name) const;
817         std::list<std::string> templates () const;
818         boost::filesystem::path template_path (std::string name) const;
819         void rename_template (std::string old_name, std::string new_name) const;
820         void delete_template (std::string name) const;
821
822         static Config* instance ();
823         static void drop ();
824         static void restore_defaults ();
825         static bool have_existing (std::string);
826         static boost::filesystem::path config_file ();
827
828         /** If set, this overrides the standard path (in home, Library, AppData or wherever) for config.xml and cinemas.xml */
829         static boost::optional<boost::filesystem::path> override_path;
830
831 private:
832         Config ();
833         static boost::filesystem::path path (std::string file, bool create_directories = true);
834         void read ();
835         void set_defaults ();
836         void set_kdm_email_to_default ();
837         void set_notification_email_to_default ();
838         void set_cover_sheet_to_default ();
839         void read_cinemas (cxml::Document const & f);
840         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
841         boost::filesystem::path directory_or (boost::optional<boost::filesystem::path> dir, boost::filesystem::path a) const;
842         void add_to_history_internal (std::vector<boost::filesystem::path>& h, boost::filesystem::path p);
843         void backup ();
844
845         template <class T>
846         void maybe_set (T& member, T new_value, Property prop = OTHER) {
847                 if (member == new_value) {
848                         return;
849                 }
850                 member = new_value;
851                 changed (prop);
852         }
853
854         template <class T>
855         void maybe_set (boost::optional<T>& member, T new_value, Property prop = OTHER) {
856                 if (member && member.get() == new_value) {
857                         return;
858                 }
859                 member = new_value;
860                 changed (prop);
861         }
862
863         /** number of threads which a master DoM should use for J2K encoding on the local machine */
864         int _master_encoding_threads;
865         /** number of threads which a server should use for J2K encoding on the local machine */
866         int _server_encoding_threads;
867         /** default directory to put new films in */
868         boost::optional<boost::filesystem::path> _default_directory;
869         /** base port number to use for J2K encoding servers;
870          *  this port and the two above it will be used.
871          */
872         int _server_port_base;
873         /** true to broadcast on the `any' address to look for servers */
874         bool _use_any_servers;
875         /** J2K encoding servers that should definitely be used */
876         std::vector<std::string> _servers;
877         bool _only_servers_encode;
878         Protocol _tms_protocol;
879         /** The IP address of a TMS that we can copy DCPs to */
880         std::string _tms_ip;
881         /** The path on a TMS that we should write DCPs to */
882         std::string _tms_path;
883         /** User name to log into the TMS with */
884         std::string _tms_user;
885         /** Password to log into the TMS with */
886         std::string _tms_password;
887         /** Our cinema sound processor */
888         CinemaSoundProcessor const * _cinema_sound_processor;
889         std::list<int> _allowed_dcp_frame_rates;
890         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
891         bool _allow_any_dcp_frame_rate;
892         /** Allow any container ratio, not just the standard ones.  GDC SX-2001 will not play Flat
893             DCPs at 25fps but will play 16:9, so this is very useful for some users.
894             https://www.dcpomatic.com/forum/viewtopic.php?f=2&t=1119&p=4468
895         */
896         bool _allow_any_container;
897         /** Default ISDCF metadata for newly-created Films */
898         ISDCFMetadata _default_isdcf_metadata;
899         boost::optional<std::string> _language;
900         /** Default length of still image content (seconds) */
901         int _default_still_length;
902         Ratio const * _default_container;
903         Ratio const * _default_scale_to;
904         DCPContentType const * _default_dcp_content_type;
905         int _default_dcp_audio_channels;
906         std::string _dcp_issuer;
907         std::string _dcp_creator;
908         int _default_j2k_bandwidth;
909         int _default_audio_delay;
910         bool _default_interop;
911         /** Default directory to offer to write KDMs to; if it's not set,
912             the home directory will be offered.
913         */
914         boost::optional<boost::filesystem::path> _default_kdm_directory;
915         bool _default_upload_after_make_dcp;
916         std::list<boost::shared_ptr<Cinema> > _cinemas;
917         std::string _mail_server;
918         int _mail_port;
919         std::string _mail_user;
920         std::string _mail_password;
921         std::string _kdm_subject;
922         std::string _kdm_from;
923         std::vector<std::string> _kdm_cc;
924         std::string _kdm_bcc;
925         std::string _kdm_email;
926         std::string _notification_subject;
927         std::string _notification_from;
928         std::string _notification_to;
929         std::vector<std::string> _notification_cc;
930         std::string _notification_bcc;
931         std::string _notification_email;
932         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
933         /** Chain used to decrypt KDMs; the leaf of this chain is the target
934          *  certificate for making KDMs given to DCP-o-matic.
935          */
936         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
937         /** true to check for updates on startup */
938         bool _check_for_updates;
939         bool _check_for_test_updates;
940         /** maximum allowed J2K bandwidth in bits per second */
941         int _maximum_j2k_bandwidth;
942         int _log_types;
943         bool _analyse_ebur128;
944         bool _automatic_audio_analysis;
945 #ifdef DCPOMATIC_WINDOWS
946         bool _win32_console;
947 #endif
948         std::vector<boost::filesystem::path> _history;
949         std::vector<boost::filesystem::path> _player_history;
950         boost::shared_ptr<DKDMGroup> _dkdms;
951         boost::filesystem::path _cinemas_file;
952         bool _show_hints_before_make_dcp;
953         bool _confirm_kdm_email;
954         dcp::NameFormat _kdm_filename_format;
955         dcp::NameFormat _kdm_container_name_format;
956         dcp::NameFormat _dcp_metadata_filename_format;
957         dcp::NameFormat _dcp_asset_filename_format;
958         bool _jump_to_selected;
959         bool _nagged[NAG_COUNT];
960         bool _sound;
961         /** name of a specific sound output stream to use, or empty to use the default */
962         boost::optional<std::string> _sound_output;
963         std::string _cover_sheet;
964         boost::optional<boost::filesystem::path> _last_player_load_directory;
965         boost::optional<KDMWriteType> _last_kdm_write_type;
966         boost::optional<DKDMWriteType> _last_dkdm_write_type;
967         int _frames_in_memory_multiplier;
968         boost::optional<int> _decode_reduction;
969         bool _default_notify;
970         bool _notification[NOTIFICATION_COUNT];
971         boost::optional<std::string> _barco_username;
972         boost::optional<std::string> _barco_password;
973
974         static int const _current_version;
975
976         /** Singleton instance, or 0 */
977         static Config* _instance;
978 };
979
980 #endif