Simplify NameFormat stuff.
[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
43 /** @class Config
44  *  @brief A singleton class holding configuration.
45  */
46 class Config : public boost::noncopyable
47 {
48 public:
49         /** @return number of threads to use for J2K encoding on the local machine */
50         int num_local_encoding_threads () const {
51                 return _num_local_encoding_threads;
52         }
53
54         boost::filesystem::path default_directory () const {
55                 return _default_directory;
56         }
57
58         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
59
60         enum Property {
61                 USE_ANY_SERVERS,
62                 SERVERS,
63                 OTHER
64         };
65
66         /** @return base port number to use for J2K encoding servers */
67         int server_port_base () const {
68                 return _server_port_base;
69         }
70
71         void set_use_any_servers (bool u) {
72                 _use_any_servers = u;
73                 changed (USE_ANY_SERVERS);
74         }
75
76         bool use_any_servers () const {
77                 return _use_any_servers;
78         }
79
80         /** @param s New list of servers */
81         void set_servers (std::vector<std::string> s) {
82                 _servers = s;
83                 changed (SERVERS);
84         }
85
86         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
87         std::vector<std::string> servers () const {
88                 return _servers;
89         }
90
91         bool only_servers_encode () const {
92                 return _only_servers_encode;
93         }
94
95         Protocol tms_protocol () const {
96                 return _tms_protocol;
97         }
98
99         /** @return The IP address of a TMS that we can copy DCPs to */
100         std::string tms_ip () const {
101                 return _tms_ip;
102         }
103
104         /** @return The path on a TMS that we should changed DCPs to */
105         std::string tms_path () const {
106                 return _tms_path;
107         }
108
109         /** @return User name to log into the TMS with */
110         std::string tms_user () const {
111                 return _tms_user;
112         }
113
114         /** @return Password to log into the TMS with */
115         std::string tms_password () const {
116                 return _tms_password;
117         }
118
119         /** @return The cinema sound processor that we are using */
120         CinemaSoundProcessor const * cinema_sound_processor () const {
121                 return _cinema_sound_processor;
122         }
123
124         std::list<boost::shared_ptr<Cinema> > cinemas () const {
125                 return _cinemas;
126         }
127
128         std::list<int> allowed_dcp_frame_rates () const {
129                 return _allowed_dcp_frame_rates;
130         }
131
132         bool allow_any_dcp_frame_rate () const {
133                 return _allow_any_dcp_frame_rate;
134         }
135
136         ISDCFMetadata default_isdcf_metadata () const {
137                 return _default_isdcf_metadata;
138         }
139
140         boost::optional<std::string> language () const {
141                 return _language;
142         }
143
144         int default_still_length () const {
145                 return _default_still_length;
146         }
147
148         Ratio const * default_container () const {
149                 return _default_container;
150         }
151
152         DCPContentType const * default_dcp_content_type () const {
153                 return _default_dcp_content_type;
154         }
155
156         int default_dcp_audio_channels () const {
157                 return _default_dcp_audio_channels;
158         }
159
160         std::string dcp_issuer () const {
161                 return _dcp_issuer;
162         }
163
164         std::string dcp_creator () const {
165                 return _dcp_creator;
166         }
167
168         int default_j2k_bandwidth () const {
169                 return _default_j2k_bandwidth;
170         }
171
172         int default_audio_delay () const {
173                 return _default_audio_delay;
174         }
175
176         bool default_interop () const {
177                 return _default_interop;
178         }
179
180         std::string mail_server () const {
181                 return _mail_server;
182         }
183
184         int mail_port () const {
185                 return _mail_port;
186         }
187
188         std::string mail_user () const {
189                 return _mail_user;
190         }
191
192         std::string mail_password () const {
193                 return _mail_password;
194         }
195
196         std::string kdm_subject () const {
197                 return _kdm_subject;
198         }
199
200         std::string kdm_from () const {
201                 return _kdm_from;
202         }
203
204         std::vector<std::string> kdm_cc () const {
205                 return _kdm_cc;
206         }
207
208         std::string kdm_bcc () const {
209                 return _kdm_bcc;
210         }
211
212         std::string kdm_email () const {
213                 return _kdm_email;
214         }
215
216         boost::shared_ptr<const dcp::CertificateChain> signer_chain () const {
217                 return _signer_chain;
218         }
219
220         boost::shared_ptr<const dcp::CertificateChain> decryption_chain () const {
221                 return _decryption_chain;
222         }
223
224         bool check_for_updates () const {
225                 return _check_for_updates;
226         }
227
228         bool check_for_test_updates () const {
229                 return _check_for_test_updates;
230         }
231
232         int maximum_j2k_bandwidth () const {
233                 return _maximum_j2k_bandwidth;
234         }
235
236         int log_types () const {
237                 return _log_types;
238         }
239
240         bool analyse_ebur128 () const {
241                 return _analyse_ebur128;
242         }
243
244         bool automatic_audio_analysis () const {
245                 return _automatic_audio_analysis;
246         }
247
248 #ifdef DCPOMATIC_WINDOWS
249         bool win32_console () const {
250                 return _win32_console;
251         }
252 #endif
253
254         std::vector<boost::filesystem::path> history () const {
255                 return _history;
256         }
257
258         std::vector<dcp::EncryptedKDM> dkdms () const {
259                 return _dkdms;
260         }
261
262         boost::filesystem::path cinemas_file () const {
263                 return _cinemas_file;
264         }
265
266         bool show_hints_before_make_dcp () const {
267                 return _show_hints_before_make_dcp;
268         }
269
270         dcp::NameFormat kdm_filename_format () const {
271                 return _kdm_filename_format;
272         }
273
274         dcp::NameFormat dcp_filename_format () const {
275                 return _dcp_filename_format;
276         }
277
278         /** @param n New number of local encoding threads */
279         void set_num_local_encoding_threads (int n) {
280                 maybe_set (_num_local_encoding_threads, n);
281         }
282
283         void set_default_directory (boost::filesystem::path d) {
284                 maybe_set (_default_directory, d);
285         }
286
287         /** @param p New server port */
288         void set_server_port_base (int p) {
289                 maybe_set (_server_port_base, p);
290         }
291
292         void set_only_servers_encode (bool o) {
293                 maybe_set (_only_servers_encode, o);
294         }
295
296         void set_tms_protocol (Protocol p) {
297                 maybe_set (_tms_protocol, p);
298         }
299
300         /** @param i IP address of a TMS that we can copy DCPs to */
301         void set_tms_ip (std::string i) {
302                 maybe_set (_tms_ip, i);
303         }
304
305         /** @param p Path on a TMS that we should changed DCPs to */
306         void set_tms_path (std::string p) {
307                 maybe_set (_tms_path, p);
308         }
309
310         /** @param u User name to log into the TMS with */
311         void set_tms_user (std::string u) {
312                 maybe_set (_tms_user, u);
313         }
314
315         /** @param p Password to log into the TMS with */
316         void set_tms_password (std::string p) {
317                 maybe_set (_tms_password, p);
318         }
319
320         void add_cinema (boost::shared_ptr<Cinema> c) {
321                 _cinemas.push_back (c);
322                 changed ();
323         }
324
325         void remove_cinema (boost::shared_ptr<Cinema> c) {
326                 _cinemas.remove (c);
327                 changed ();
328         }
329
330         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
331                 maybe_set (_allowed_dcp_frame_rates, r);
332         }
333
334         void set_allow_any_dcp_frame_rate (bool a) {
335                 maybe_set (_allow_any_dcp_frame_rate, a);
336         }
337
338         void set_default_isdcf_metadata (ISDCFMetadata d) {
339                 maybe_set (_default_isdcf_metadata, d);
340         }
341
342         void set_language (std::string l) {
343                 if (_language && _language.get() == l) {
344                         return;
345                 }
346                 _language = l;
347                 changed ();
348         }
349
350         void unset_language () {
351                 if (!_language) {
352                         return;
353                 }
354
355                 _language = boost::none;
356                 changed ();
357         }
358
359         void set_default_still_length (int s) {
360                 maybe_set (_default_still_length, s);
361         }
362
363         void set_default_container (Ratio const * c) {
364                 maybe_set (_default_container, c);
365         }
366
367         void set_default_dcp_content_type (DCPContentType const * t) {
368                 maybe_set (_default_dcp_content_type, t);
369         }
370
371         void set_default_dcp_audio_channels (int c) {
372                 maybe_set (_default_dcp_audio_channels, c);
373         }
374
375         void set_dcp_issuer (std::string i) {
376                 maybe_set (_dcp_issuer, i);
377         }
378
379         void set_dcp_creator (std::string c) {
380                 maybe_set (_dcp_creator, c);
381         }
382
383         void set_default_j2k_bandwidth (int b) {
384                 maybe_set (_default_j2k_bandwidth, b);
385         }
386
387         void set_default_audio_delay (int d) {
388                 maybe_set (_default_audio_delay, d);
389         }
390
391         void set_default_interop (bool i) {
392                 maybe_set (_default_interop, i);
393         }
394
395         void set_mail_server (std::string s) {
396                 maybe_set (_mail_server, s);
397         }
398
399         void set_mail_port (int p) {
400                 maybe_set (_mail_port, p);
401         }
402
403         void set_mail_user (std::string u) {
404                 maybe_set (_mail_user, u);
405         }
406
407         void set_mail_password (std::string p) {
408                 maybe_set (_mail_password, p);
409         }
410
411         void set_kdm_subject (std::string s) {
412                 maybe_set (_kdm_subject, s);
413         }
414
415         void set_kdm_from (std::string f) {
416                 maybe_set (_kdm_from, f);
417         }
418
419         void set_kdm_cc (std::vector<std::string> f) {
420                 maybe_set (_kdm_cc, f);
421         }
422
423         void set_kdm_bcc (std::string f) {
424                 maybe_set (_kdm_bcc, f);
425         }
426
427         void set_kdm_email (std::string e) {
428                 maybe_set (_kdm_email, e);
429         }
430
431         void reset_kdm_email ();
432
433         void set_signer_chain (boost::shared_ptr<const dcp::CertificateChain> s) {
434                 maybe_set (_signer_chain, s);
435         }
436
437         void set_decryption_chain (boost::shared_ptr<const dcp::CertificateChain> c) {
438                 maybe_set (_decryption_chain, c);
439         }
440
441         void set_check_for_updates (bool c) {
442                 maybe_set (_check_for_updates, c);
443                 if (!c) {
444                         set_check_for_test_updates (false);
445                 }
446         }
447
448         void set_check_for_test_updates (bool c) {
449                 maybe_set (_check_for_test_updates, c);
450         }
451
452         void set_maximum_j2k_bandwidth (int b) {
453                 maybe_set (_maximum_j2k_bandwidth, b);
454         }
455
456         void set_log_types (int t) {
457                 maybe_set (_log_types, t);
458         }
459
460         void set_analyse_ebur128 (bool a) {
461                 maybe_set (_analyse_ebur128, a);
462         }
463
464         void set_automatic_audio_analysis (bool a) {
465                 maybe_set (_automatic_audio_analysis, a);
466         }
467
468 #ifdef DCPOMATIC_WINDOWS
469         void set_win32_console (bool c) {
470                 maybe_set (_win32_console, c);
471         }
472 #endif
473
474         void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms) {
475                 _dkdms = dkdms;
476                 changed ();
477         }
478
479         void set_cinemas_file (boost::filesystem::path file);
480
481         void set_show_hints_before_make_dcp (bool s) {
482                 maybe_set (_show_hints_before_make_dcp, s);
483         }
484
485         void set_kdm_filename_format (dcp::NameFormat n) {
486                 maybe_set (_kdm_filename_format, n);
487         }
488
489         void set_dcp_filename_format (dcp::NameFormat n) {
490                 maybe_set (_dcp_filename_format, n);
491         }
492
493         void clear_history () {
494                 _history.clear ();
495                 changed ();
496         }
497
498         void add_to_history (boost::filesystem::path p);
499
500         void changed (Property p = OTHER);
501         boost::signals2::signal<void (Property)> Changed;
502         /** Emitted if ::read() failed on an existing Config file.  There is nothing
503             a listener can do about it: this is just for information.
504         */
505         static boost::signals2::signal<void ()> FailedToLoad;
506
507         void write () const;
508
509         static Config* instance ();
510         static void drop ();
511         static void restore_defaults ();
512         static bool have_existing (std::string);
513
514 private:
515         Config ();
516         static boost::filesystem::path path (std::string file, bool create_directories = true);
517         void read ();
518         void set_defaults ();
519         void set_kdm_email_to_default ();
520         void write_config_xml () const;
521         void write_cinemas_xml () const;
522         void read_cinemas (cxml::Document const & f);
523         boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
524
525         template <class T>
526         void maybe_set (T& member, T new_value) {
527                 if (member == new_value) {
528                         return;
529                 }
530                 member = new_value;
531                 changed ();
532         }
533
534         /** number of threads to use for J2K encoding on the local machine */
535         int _num_local_encoding_threads;
536         /** default directory to put new films in */
537         boost::filesystem::path _default_directory;
538         /** base port number to use for J2K encoding servers;
539          *  this port and the two above it will be used.
540          */
541         int _server_port_base;
542         /** true to broadcast on the `any' address to look for servers */
543         bool _use_any_servers;
544         /** J2K encoding servers that should definitely be used */
545         std::vector<std::string> _servers;
546         bool _only_servers_encode;
547         Protocol _tms_protocol;
548         /** The IP address of a TMS that we can copy DCPs to */
549         std::string _tms_ip;
550         /** The path on a TMS that we should write DCPs to */
551         std::string _tms_path;
552         /** User name to log into the TMS with */
553         std::string _tms_user;
554         /** Password to log into the TMS with */
555         std::string _tms_password;
556         /** Our cinema sound processor */
557         CinemaSoundProcessor const * _cinema_sound_processor;
558         std::list<int> _allowed_dcp_frame_rates;
559         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
560         bool _allow_any_dcp_frame_rate;
561         /** Default ISDCF metadata for newly-created Films */
562         ISDCFMetadata _default_isdcf_metadata;
563         boost::optional<std::string> _language;
564         /** Default length of still image content (seconds) */
565         int _default_still_length;
566         Ratio const * _default_container;
567         DCPContentType const * _default_dcp_content_type;
568         int _default_dcp_audio_channels;
569         std::string _dcp_issuer;
570         std::string _dcp_creator;
571         int _default_j2k_bandwidth;
572         int _default_audio_delay;
573         bool _default_interop;
574         std::list<boost::shared_ptr<Cinema> > _cinemas;
575         std::string _mail_server;
576         int _mail_port;
577         std::string _mail_user;
578         std::string _mail_password;
579         std::string _kdm_subject;
580         std::string _kdm_from;
581         std::vector<std::string> _kdm_cc;
582         std::string _kdm_bcc;
583         std::string _kdm_email;
584         boost::shared_ptr<const dcp::CertificateChain> _signer_chain;
585         /** Chain used to decrypt KDMs; the leaf of this chain is the target
586          *  certificate for making KDMs given to DCP-o-matic.
587          */
588         boost::shared_ptr<const dcp::CertificateChain> _decryption_chain;
589         /** true to check for updates on startup */
590         bool _check_for_updates;
591         bool _check_for_test_updates;
592         /** maximum allowed J2K bandwidth in bits per second */
593         int _maximum_j2k_bandwidth;
594         int _log_types;
595         bool _analyse_ebur128;
596         bool _automatic_audio_analysis;
597 #ifdef DCPOMATIC_WINDOWS
598         bool _win32_console;
599 #endif
600         std::vector<boost::filesystem::path> _history;
601         std::vector<dcp::EncryptedKDM> _dkdms;
602         boost::filesystem::path _cinemas_file;
603         bool _show_hints_before_make_dcp;
604         dcp::NameFormat _kdm_filename_format;
605         dcp::NameFormat _dcp_filename_format;
606
607         /** Singleton instance, or 0 */
608         static Config* _instance;
609 };
610
611 #endif