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