Save decoding resolution reduction between launches (#1195).
[dcpomatic.git] / src / lib / config.cc
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 #include "config.h"
22 #include "filter.h"
23 #include "ratio.h"
24 #include "types.h"
25 #include "log.h"
26 #include "dcp_content_type.h"
27 #include "cinema_sound_processor.h"
28 #include "colour_conversion.h"
29 #include "cinema.h"
30 #include "util.h"
31 #include "cross.h"
32 #include "film.h"
33 #include "dkdm_wrapper.h"
34 #include "compose.hpp"
35 #include <dcp/raw_convert.h>
36 #include <dcp/name_format.h>
37 #include <dcp/certificate_chain.h>
38 #include <libcxml/cxml.h>
39 #include <glib.h>
40 #include <libxml++/libxml++.h>
41 #include <boost/filesystem.hpp>
42 #include <boost/algorithm/string.hpp>
43 #include <boost/foreach.hpp>
44 #include <boost/thread.hpp>
45 #include <cstdlib>
46 #include <fstream>
47 #include <iostream>
48
49 #include "i18n.h"
50
51 using std::vector;
52 using std::cout;
53 using std::ifstream;
54 using std::string;
55 using std::list;
56 using std::max;
57 using std::remove;
58 using std::exception;
59 using std::cerr;
60 using boost::shared_ptr;
61 using boost::optional;
62 using boost::dynamic_pointer_cast;
63 using boost::algorithm::trim;
64 using dcp::raw_convert;
65
66 Config* Config::_instance = 0;
67 boost::signals2::signal<void ()> Config::FailedToLoad;
68 boost::signals2::signal<void (string)> Config::Warning;
69 boost::optional<boost::filesystem::path> Config::test_path;
70
71 /** Construct default configuration */
72 Config::Config ()
73         /* DKDMs are not considered a thing to reset on set_defaults() */
74         : _dkdms (new DKDMGroup ("root"))
75 {
76         set_defaults ();
77 }
78
79 void
80 Config::set_defaults ()
81 {
82         _master_encoding_threads = max (2U, boost::thread::hardware_concurrency ());
83         _server_encoding_threads = max (2U, boost::thread::hardware_concurrency ());
84         _server_port_base = 6192;
85         _use_any_servers = true;
86         _servers.clear ();
87         _only_servers_encode = false;
88         _tms_protocol = PROTOCOL_SCP;
89         _tms_ip = "";
90         _tms_path = ".";
91         _tms_user = "";
92         _tms_password = "";
93         _cinema_sound_processor = CinemaSoundProcessor::from_id (N_("dolby_cp750"));
94         _allow_any_dcp_frame_rate = false;
95         _language = optional<string> ();
96         _default_still_length = 10;
97         _default_container = Ratio::from_id ("185");
98         _default_scale_to = 0;
99         _default_dcp_content_type = DCPContentType::from_isdcf_name ("FTR");
100         _default_dcp_audio_channels = 6;
101         _default_j2k_bandwidth = 100000000;
102         _default_audio_delay = 0;
103         _default_interop = true;
104         _default_upload_after_make_dcp = false;
105         _mail_server = "";
106         _mail_port = 25;
107         _mail_user = "";
108         _mail_password = "";
109         _kdm_from = "";
110         _kdm_cc.clear ();
111         _kdm_bcc = "";
112         _check_for_updates = false;
113         _check_for_test_updates = false;
114         _maximum_j2k_bandwidth = 250000000;
115         _log_types = LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR;
116         _analyse_ebur128 = true;
117         _automatic_audio_analysis = false;
118 #ifdef DCPOMATIC_WINDOWS
119         _win32_console = false;
120 #endif
121         _cinemas_file = path ("cinemas.xml");
122         _show_hints_before_make_dcp = true;
123         _confirm_kdm_email = true;
124         _kdm_container_name_format = dcp::NameFormat ("KDM %f %c");
125         _kdm_filename_format = dcp::NameFormat ("KDM %f %c %s");
126         _dcp_metadata_filename_format = dcp::NameFormat ("%t");
127         _dcp_asset_filename_format = dcp::NameFormat ("%t");
128         _jump_to_selected = true;
129         for (int i = 0; i < NAG_COUNT; ++i) {
130                 _nagged[i] = false;
131         }
132         _sound = true;
133         _sound_output = optional<string> ();
134         _last_kdm_write_type = KDM_WRITE_FLAT;
135         _last_dkdm_write_type = DKDM_WRITE_INTERNAL;
136
137         /* I think the scaling factor here should be the ratio of the longest frame
138            encode time to the shortest; if the thread count is T, longest time is L
139            and the shortest time S we could encode L/S frames per thread whilst waiting
140            for the L frame to encode so we might have to store LT/S frames.
141
142            However we don't want to use too much memory, so keep it a bit lower than we'd
143            perhaps like.  A J2K frame is typically about 1Mb so 3 here will mean we could
144            use about 240Mb with 72 encoding threads.
145         */
146         _frames_in_memory_multiplier = 3;
147         _decode_reduction = optional<int>();
148
149         _allowed_dcp_frame_rates.clear ();
150         _allowed_dcp_frame_rates.push_back (24);
151         _allowed_dcp_frame_rates.push_back (25);
152         _allowed_dcp_frame_rates.push_back (30);
153         _allowed_dcp_frame_rates.push_back (48);
154         _allowed_dcp_frame_rates.push_back (50);
155         _allowed_dcp_frame_rates.push_back (60);
156
157         set_kdm_email_to_default ();
158         set_cover_sheet_to_default ();
159 }
160
161 void
162 Config::restore_defaults ()
163 {
164         Config::instance()->set_defaults ();
165         Config::instance()->changed ();
166 }
167
168 shared_ptr<dcp::CertificateChain>
169 Config::create_certificate_chain ()
170 {
171         return shared_ptr<dcp::CertificateChain> (
172                 new dcp::CertificateChain (
173                         openssl_path(),
174                         "dcpomatic.com",
175                         "dcpomatic.com",
176                         ".dcpomatic.smpte-430-2.ROOT",
177                         ".dcpomatic.smpte-430-2.INTERMEDIATE",
178                         "CS.dcpomatic.smpte-430-2.LEAF"
179                         )
180                 );
181 }
182
183 void
184 Config::read ()
185 try
186 {
187         cxml::Document f ("Config");
188         f.read_file (config_file ());
189
190         optional<int> version = f.optional_number_child<int> ("Version");
191
192         if (f.optional_number_child<int>("NumLocalEncodingThreads")) {
193                 _master_encoding_threads = _server_encoding_threads = f.optional_number_child<int>("NumLocalEncodingThreads").get();
194         } else {
195                 _master_encoding_threads = f.number_child<int>("MasterEncodingThreads");
196                 _server_encoding_threads = f.number_child<int>("ServerEncodingThreads");
197         }
198
199         _default_directory = f.optional_string_child ("DefaultDirectory");
200         if (_default_directory && _default_directory->empty ()) {
201                 /* We used to store an empty value for this to mean "none set" */
202                 _default_directory = boost::optional<boost::filesystem::path> ();
203         }
204
205         boost::optional<int> b = f.optional_number_child<int> ("ServerPort");
206         if (!b) {
207                 b = f.optional_number_child<int> ("ServerPortBase");
208         }
209         _server_port_base = b.get ();
210
211         boost::optional<bool> u = f.optional_bool_child ("UseAnyServers");
212         _use_any_servers = u.get_value_or (true);
213
214         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("Server")) {
215                 if (i->node_children("HostName").size() == 1) {
216                         _servers.push_back (i->string_child ("HostName"));
217                 } else {
218                         _servers.push_back (i->content ());
219                 }
220         }
221
222         _only_servers_encode = f.optional_bool_child ("OnlyServersEncode").get_value_or (false);
223         _tms_protocol = static_cast<Protocol> (f.optional_number_child<int> ("TMSProtocol").get_value_or (static_cast<int> (PROTOCOL_SCP)));
224         _tms_ip = f.string_child ("TMSIP");
225         _tms_path = f.string_child ("TMSPath");
226         _tms_user = f.string_child ("TMSUser");
227         _tms_password = f.string_child ("TMSPassword");
228
229         optional<string> c;
230         c = f.optional_string_child ("SoundProcessor");
231         if (c) {
232                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
233         }
234         c = f.optional_string_child ("CinemaSoundProcessor");
235         if (c) {
236                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
237         }
238
239         _language = f.optional_string_child ("Language");
240
241         c = f.optional_string_child ("DefaultContainer");
242         if (c) {
243                 _default_container = Ratio::from_id (c.get ());
244         }
245
246         if (_default_container && !_default_container->used_for_container()) {
247                 Warning (_("Your default container is not valid and has been changed to Flat (1.85:1)"));
248                 _default_container = Ratio::from_id ("185");
249         }
250
251         c = f.optional_string_child ("DefaultScaleTo");
252         if (c) {
253                 _default_scale_to = Ratio::from_id (c.get ());
254         }
255
256         c = f.optional_string_child ("DefaultDCPContentType");
257         if (c) {
258                 _default_dcp_content_type = DCPContentType::from_isdcf_name (c.get ());
259         }
260
261         _default_dcp_audio_channels = f.optional_number_child<int>("DefaultDCPAudioChannels").get_value_or (6);
262
263         if (f.optional_string_child ("DCPMetadataIssuer")) {
264                 _dcp_issuer = f.string_child ("DCPMetadataIssuer");
265         } else if (f.optional_string_child ("DCPIssuer")) {
266                 _dcp_issuer = f.string_child ("DCPIssuer");
267         }
268
269         _default_upload_after_make_dcp = f.optional_bool_child("DefaultUploadAfterMakeDCP").get_value_or (false);
270         _dcp_creator = f.optional_string_child ("DCPCreator").get_value_or ("");
271
272         if (version && version.get() >= 2) {
273                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("ISDCFMetadata"));
274         } else {
275                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("DCIMetadata"));
276         }
277
278         _default_still_length = f.optional_number_child<int>("DefaultStillLength").get_value_or (10);
279         _default_j2k_bandwidth = f.optional_number_child<int>("DefaultJ2KBandwidth").get_value_or (200000000);
280         _default_audio_delay = f.optional_number_child<int>("DefaultAudioDelay").get_value_or (0);
281         _default_interop = f.optional_bool_child("DefaultInterop").get_value_or (false);
282         _default_kdm_directory = f.optional_string_child("DefaultKDMDirectory");
283
284         /* Load any cinemas from config.xml */
285         read_cinemas (f);
286
287         _mail_server = f.string_child ("MailServer");
288         _mail_port = f.optional_number_child<int> ("MailPort").get_value_or (25);
289         _mail_user = f.optional_string_child("MailUser").get_value_or ("");
290         _mail_password = f.optional_string_child("MailPassword").get_value_or ("");
291         _kdm_subject = f.optional_string_child ("KDMSubject").get_value_or (_("KDM delivery: $CPL_NAME"));
292         _kdm_from = f.string_child ("KDMFrom");
293         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("KDMCC")) {
294                 if (!i->content().empty()) {
295                         _kdm_cc.push_back (i->content ());
296                 }
297         }
298         _kdm_bcc = f.optional_string_child ("KDMBCC").get_value_or ("");
299         _kdm_email = f.string_child ("KDMEmail");
300
301         _check_for_updates = f.optional_bool_child("CheckForUpdates").get_value_or (false);
302         _check_for_test_updates = f.optional_bool_child("CheckForTestUpdates").get_value_or (false);
303
304         _maximum_j2k_bandwidth = f.optional_number_child<int> ("MaximumJ2KBandwidth").get_value_or (250000000);
305         _allow_any_dcp_frame_rate = f.optional_bool_child ("AllowAnyDCPFrameRate").get_value_or (false);
306
307         _log_types = f.optional_number_child<int> ("LogTypes").get_value_or (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR);
308         _analyse_ebur128 = f.optional_bool_child("AnalyseEBUR128").get_value_or (true);
309         _automatic_audio_analysis = f.optional_bool_child ("AutomaticAudioAnalysis").get_value_or (false);
310 #ifdef DCPOMATIC_WINDOWS
311         _win32_console = f.optional_bool_child ("Win32Console").get_value_or (false);
312 #endif
313
314         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("History")) {
315                 _history.push_back (i->content ());
316         }
317
318         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("PlayerHistory")) {
319                 _player_history.push_back (i->content ());
320         }
321
322         cxml::NodePtr signer = f.optional_node_child ("Signer");
323         if (signer) {
324                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
325                 /* Read the signing certificates and private key in from the config file */
326                 BOOST_FOREACH (cxml::NodePtr i, signer->node_children ("Certificate")) {
327                         c->add (dcp::Certificate (i->content ()));
328                 }
329                 c->set_key (signer->string_child ("PrivateKey"));
330                 _signer_chain = c;
331         } else {
332                 /* Make a new set of signing certificates and key */
333                 _signer_chain = create_certificate_chain ();
334         }
335
336         cxml::NodePtr decryption = f.optional_node_child ("Decryption");
337         if (decryption) {
338                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
339                 BOOST_FOREACH (cxml::NodePtr i, decryption->node_children ("Certificate")) {
340                         c->add (dcp::Certificate (i->content ()));
341                 }
342                 c->set_key (decryption->string_child ("PrivateKey"));
343                 _decryption_chain = c;
344         } else {
345                 _decryption_chain = create_certificate_chain ();
346         }
347
348         if (f.optional_node_child("DKDMGroup")) {
349                 /* New-style: all DKDMs in a group */
350                 _dkdms = dynamic_pointer_cast<DKDMGroup> (DKDMBase::read (f.node_child("DKDMGroup")));
351         } else {
352                 /* Old-style: one or more DKDM nodes */
353                 _dkdms.reset (new DKDMGroup ("root"));
354                 BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("DKDM")) {
355                         _dkdms->add (DKDMBase::read (i));
356                 }
357         }
358         _cinemas_file = f.optional_string_child("CinemasFile").get_value_or (path ("cinemas.xml").string ());
359         _show_hints_before_make_dcp = f.optional_bool_child("ShowHintsBeforeMakeDCP").get_value_or (true);
360         _confirm_kdm_email = f.optional_bool_child("ConfirmKDMEmail").get_value_or (true);
361         _kdm_container_name_format = dcp::NameFormat (f.optional_string_child("KDMContainerNameFormat").get_value_or ("KDM %f %c"));
362         _kdm_filename_format = dcp::NameFormat (f.optional_string_child("KDMFilenameFormat").get_value_or ("KDM %f %c %s"));
363         _dcp_metadata_filename_format = dcp::NameFormat (f.optional_string_child("DCPMetadataFilenameFormat").get_value_or ("%t"));
364         _dcp_asset_filename_format = dcp::NameFormat (f.optional_string_child("DCPAssetFilenameFormat").get_value_or ("%t"));
365         _jump_to_selected = f.optional_bool_child("JumpToSelected").get_value_or (true);
366         BOOST_FOREACH (cxml::NodePtr i, f.node_children("Nagged")) {
367                 int const id = i->number_attribute<int>("Id");
368                 if (id >= 0 && id < NAG_COUNT) {
369                         _nagged[id] = raw_convert<int>(i->content());
370                 }
371         }
372         /* The variable was renamed but not the XML tag */
373         _sound = f.optional_bool_child("PreviewSound").get_value_or (true);
374         _sound_output = f.optional_string_child("PreviewSoundOutput");
375         if (f.optional_string_child("CoverSheet")) {
376                 _cover_sheet = f.optional_string_child("CoverSheet").get();
377         }
378         _last_player_load_directory = f.optional_string_child("LastPlayerLoadDirectory");
379         if (f.optional_string_child("LastKDMWriteType")) {
380                 if (f.optional_string_child("LastKDMWriteType").get() == "flat") {
381                         _last_kdm_write_type = KDM_WRITE_FLAT;
382                 } else if (f.optional_string_child("LastKDMWriteType").get() == "folder") {
383                         _last_kdm_write_type = KDM_WRITE_FOLDER;
384                 } else if (f.optional_string_child("LastKDMWriteType").get() == "zip") {
385                         _last_kdm_write_type = KDM_WRITE_ZIP;
386                 }
387         }
388         if (f.optional_string_child("LastDKDMWriteType")) {
389                 if (f.optional_string_child("LastDKDMWriteType").get() == "internal") {
390                         _last_dkdm_write_type = DKDM_WRITE_INTERNAL;
391                 } else if (f.optional_string_child("LastDKDMWriteType").get() == "file") {
392                         _last_dkdm_write_type = DKDM_WRITE_FILE;
393                 }
394         }
395         _frames_in_memory_multiplier = f.optional_number_child<int>("FramesInMemoryMultiplier").get_value_or(3);
396         _decode_reduction = f.optional_number_child<int>("DecodeReduction");
397
398         /* Replace any cinemas from config.xml with those from the configured file */
399         if (boost::filesystem::exists (_cinemas_file)) {
400                 cxml::Document f ("Cinemas");
401                 f.read_file (_cinemas_file);
402                 read_cinemas (f);
403         }
404 }
405 catch (...) {
406         if (have_existing ("config.xml")) {
407
408                 /* Make a copy of the configuration */
409                 try {
410                         int n = 1;
411                         while (n < 100 && boost::filesystem::exists(path(String::compose("config.xml.%1", n)))) {
412                                 ++n;
413                         }
414
415                         boost::filesystem::copy_file(path("config.xml", false), path(String::compose("config.xml.%1", n), false));
416                         boost::filesystem::copy_file(path("cinemas.xml", false), path(String::compose("cinemas.xml.%1", n), false));
417                 } catch (...) {}
418
419                 /* We have a config file but it didn't load */
420                 FailedToLoad ();
421         }
422         set_defaults ();
423         /* Make a new set of signing certificates and key */
424         _signer_chain = create_certificate_chain ();
425         /* And similar for decryption of KDMs */
426         _decryption_chain = create_certificate_chain ();
427         write ();
428 }
429
430 /** @return Filename to write configuration to */
431 boost::filesystem::path
432 Config::path (string file, bool create_directories)
433 {
434         boost::filesystem::path p;
435         if (test_path) {
436                 p = test_path.get();
437         } else {
438 #ifdef DCPOMATIC_OSX
439                 p /= g_get_home_dir ();
440                 p /= "Library";
441                 p /= "Preferences";
442                 p /= "com.dcpomatic";
443                 p /= "2";
444 #else
445                 p /= g_get_user_config_dir ();
446                 p /= "dcpomatic2";
447 #endif
448         }
449         boost::system::error_code ec;
450         if (create_directories) {
451                 boost::filesystem::create_directories (p, ec);
452         }
453         p /= file;
454         return p;
455 }
456
457 /** @return Singleton instance */
458 Config *
459 Config::instance ()
460 {
461         if (_instance == 0) {
462                 _instance = new Config;
463                 _instance->read ();
464         }
465
466         return _instance;
467 }
468
469 /** Write our configuration to disk */
470 void
471 Config::write () const
472 {
473         write_config ();
474         write_cinemas ();
475 }
476
477 void
478 Config::write_config () const
479 {
480         xmlpp::Document doc;
481         xmlpp::Element* root = doc.create_root_node ("Config");
482
483         /* [XML] Version The version number of the configuration file format; currently 2. */
484         root->add_child("Version")->add_child_text ("2");
485         /* [XML] MasterEncodingThreads Number of encoding threads to use when running as master. */
486         root->add_child("MasterEncodingThreads")->add_child_text (raw_convert<string> (_master_encoding_threads));
487         /* [XML] ServerEncodingThreads Number of encoding threads to use when running as server. */
488         root->add_child("ServerEncodingThreads")->add_child_text (raw_convert<string> (_server_encoding_threads));
489         if (_default_directory) {
490                 /* [XML:opt] DefaultDirectory Default directory when creating a new film in the GUI. */
491                 root->add_child("DefaultDirectory")->add_child_text (_default_directory->string ());
492         }
493         /* [XML] ServerPortBase Port number to use for frame encoding requests.  <code>ServerPortBase</code> + 1 and
494            <code>ServerPortBase</code> + 2 are used for querying servers.  <code>ServerPortBase</code> + 3 is used
495            by the batch converter to listen for job requests.
496         */
497         root->add_child("ServerPortBase")->add_child_text (raw_convert<string> (_server_port_base));
498         /* [XML] UseAnyServers 1 to broadcast to look for encoding servers to use, 0 to use only those configured. */
499         root->add_child("UseAnyServers")->add_child_text (_use_any_servers ? "1" : "0");
500
501         BOOST_FOREACH (string i, _servers) {
502                 /* [XML:opt] Server IP address or hostname of an encoding server to use; you can use as many of these tags
503                    as you like.
504                 */
505                 root->add_child("Server")->add_child_text (i);
506         }
507
508         /* [XML] OnlyServersEncode 1 to set the master to do decoding of source content no JPEG2000 encoding; all encoding
509            is done by the encoding servers.  0 to set the master to do some encoding as well as coordinating the job.
510         */
511         root->add_child("OnlyServersEncode")->add_child_text (_only_servers_encode ? "1" : "0");
512         /* [XML] TMSProtocol Protocol to use to copy files to a TMS; 0 to use SCP, 1 for FTP. */
513         root->add_child("TMSProtocol")->add_child_text (raw_convert<string> (static_cast<int> (_tms_protocol)));
514         /* [XML] TMSIP IP address of TMS */
515         root->add_child("TMSIP")->add_child_text (_tms_ip);
516         /* [XML] TMSPath Path on the TMS to copy files to */
517         root->add_child("TMSPath")->add_child_text (_tms_path);
518         /* [XML] TMSUser Username to log into the TMS with */
519         root->add_child("TMSUser")->add_child_text (_tms_user);
520         /* [XML] TMSPassword Password to log into the TMS with */
521         root->add_child("TMSPassword")->add_child_text (_tms_password);
522         if (_cinema_sound_processor) {
523                 /* [XML:opt] CinemaSoundProcessor Identifier of the type of cinema sound processor to use when calculating
524                    gain changes from fader positions.  Currently can only be <code>dolby_cp750</code>.
525                 */
526                 root->add_child("CinemaSoundProcessor")->add_child_text (_cinema_sound_processor->id ());
527         }
528         if (_language) {
529                 /* [XML:opt] Language Language to use in the GUI e.g. <code>fr_FR</code>. */
530                 root->add_child("Language")->add_child_text (_language.get());
531         }
532         if (_default_container) {
533                 /* [XML:opt] DefaultContainer ID of default container
534                  * to use when creating new films (<code>185</code>,<code>239</code> or
535                  * <code>190</code>).
536                 */
537                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
538         }
539         if (_default_scale_to) {
540                 /* [XML:opt] DefaultScaleTo ID of default ratio to scale content to when creating new films
541                    (see <code>DefaultContainer</code> for IDs).
542                 */
543                 root->add_child("DefaultScaleTo")->add_child_text (_default_scale_to->id ());
544         }
545         if (_default_dcp_content_type) {
546                 /* [XML:opt] DefaultDCPContentType Default content type ot use when creating new films (<code>FTR</code>, <code>SHR</code>,
547                    <code>TLR</code>, <code>TST</code>, <code>XSN</code>, <code>RTG</code>, <code>TSR</code>, <code>POL</code>,
548                    <code>PSA</code> or <code>ADV</code>). */
549                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->isdcf_name ());
550         }
551         /* [XML] DefaultDCPAudioChannels Default number of audio channels to use when creating new films. */
552         root->add_child("DefaultDCPAudioChannels")->add_child_text (raw_convert<string> (_default_dcp_audio_channels));
553         /* [XML] DCPIssuer Issuer text to write into CPL files. */
554         root->add_child("DCPIssuer")->add_child_text (_dcp_issuer);
555         /* [XML] DCPIssuer Creator text to write into CPL files. */
556         root->add_child("DCPCreator")->add_child_text (_dcp_creator);
557         root->add_child("DefaultUploadAfterMakeDCP")->add_child_text (_default_upload_after_make_dcp ? "1" : "0");
558
559         /* [XML] ISDCFMetadata Default ISDCF metadata to use for new films; child tags are <code>&lt;ContentVersion&gt;</code>,
560            <code>&lt;AudioLanguage&gt;</code>, <code>&lt;SubtitleLanguage&gt;</code>, <code>&lt;Territory&gt;</code>,
561            <code>&lt;Rating&gt;</code>, <code>&lt;Studio&gt;</code>, <code>&lt;Facility&gt;</code>, <code>&lt;TempVersion&gt;</code>,
562            <code>&lt;PreRelease&gt;</code>, <code>&lt;RedBand&gt;</code>, <code>&lt;Chain&gt;</code>, <code>&lt;TwoDVersionOFThreeD&gt;</code>,
563            <code>&lt;MasteredLuminance&gt;</code>.
564         */
565         _default_isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
566
567         /* [XML] DefaultStillLength Default length (in seconds) for still images in new films. */
568         root->add_child("DefaultStillLength")->add_child_text (raw_convert<string> (_default_still_length));
569         /* [XML] DefaultJ2KBandwidth Default bitrate (in bits per second) for JPEG2000 data in new films. */
570         root->add_child("DefaultJ2KBandwidth")->add_child_text (raw_convert<string> (_default_j2k_bandwidth));
571         /* [XML] DefaultAudioDelay Default delay to apply to audio (positive moves audio later) in milliseconds. */
572         root->add_child("DefaultAudioDelay")->add_child_text (raw_convert<string> (_default_audio_delay));
573         /* [XML] DefaultInterop 1 to default new films to Interop, 0 for SMPTE. */
574         root->add_child("DefaultInterop")->add_child_text (_default_interop ? "1" : "0");
575         if (_default_kdm_directory) {
576                 /* [XML:opt] DefaultKDMDirectory Default directory to write KDMs to. */
577                 root->add_child("DefaultKDMDirectory")->add_child_text (_default_kdm_directory->string ());
578         }
579         /* [XML] MailServer Hostname of SMTP server to use. */
580         root->add_child("MailServer")->add_child_text (_mail_server);
581         /* [XML] MailPort Port number to use on SMTP server. */
582         root->add_child("MailPort")->add_child_text (raw_convert<string> (_mail_port));
583         /* [XML] MailUser Username to use on SMTP server. */
584         root->add_child("MailUser")->add_child_text (_mail_user);
585         /* [XML] MailPassword Password to use on SMTP server. */
586         root->add_child("MailPassword")->add_child_text (_mail_password);
587         /* [XML] KDMSubject Subject to use for KDM emails. */
588         root->add_child("KDMSubject")->add_child_text (_kdm_subject);
589         /* [XML] KDMFrom From address to use for KDM emails. */
590         root->add_child("KDMFrom")->add_child_text (_kdm_from);
591         BOOST_FOREACH (string i, _kdm_cc) {
592                 /* [XML] KDMCC CC address to use for KDM emails; you can use as many of these tags as you like. */
593                 root->add_child("KDMCC")->add_child_text (i);
594         }
595         /* [XML] KDMBCC BCC address to use for KDM emails */
596         root->add_child("KDMBCC")->add_child_text (_kdm_bcc);
597         /* [XML] KDMEmail Text of KDM email */
598         root->add_child("KDMEmail")->add_child_text (_kdm_email);
599
600         /* [XML] CheckForUpdates 1 to check dcpomatic.com for new versions, 0 to check only on request */
601         root->add_child("CheckForUpdates")->add_child_text (_check_for_updates ? "1" : "0");
602         /* [XML] CheckForUpdates 1 to check dcpomatic.com for new text versions, 0 to check only on request */
603         root->add_child("CheckForTestUpdates")->add_child_text (_check_for_test_updates ? "1" : "0");
604
605         /* [XML] MaximumJ2KBandwidth Maximum J2K bandwidth (in bits per second) that can be specified in the GUI */
606         root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
607         /* [XML] AllowAnyDCPFrameRate 1 to allow users to specify any frame rate when creating DCPs, 0 to limit the GUI to standard rates */
608         root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
609         /* [XML] LogTypes Types of logging to write; a bitfield where 1 is general notes, 2 warnings, 4 errors, 8 debug information related
610            to encoding, 16 debug information related to encoding, 32 debug information for timing purposes, 64 debug information related
611            to sending email.
612         */
613         root->add_child("LogTypes")->add_child_text (raw_convert<string> (_log_types));
614         /* [XML] AnalyseEBUR128 1 to do EBUR128 analyses when analysing audio, otherwise 0. */
615         root->add_child("AnalyseEBUR128")->add_child_text (_analyse_ebur128 ? "1" : "0");
616         /* [XML] AutomaticAudioAnalysis 1 to run audio analysis automatically when audio content is added to the film, otherwise 0. */
617         root->add_child("AutomaticAudioAnalysis")->add_child_text (_automatic_audio_analysis ? "1" : "0");
618 #ifdef DCPOMATIC_WINDOWS
619         /* [XML] Win32Console 1 to open a console when running on Windows, otherwise 0. */
620         root->add_child("Win32Console")->add_child_text (_win32_console ? "1" : "0");
621 #endif
622
623         /* [XML] Signer Certificate chain and private key to use when signing DCPs and KDMs.  Should contain <code>&lt;Certificate&gt;</code>
624            tags in order and a <code>&lt;PrivateKey&gt;</code> tag all containing PEM-encoded certificates or private keys as appropriate.
625         */
626         xmlpp::Element* signer = root->add_child ("Signer");
627         DCPOMATIC_ASSERT (_signer_chain);
628         BOOST_FOREACH (dcp::Certificate const & i, _signer_chain->unordered()) {
629                 signer->add_child("Certificate")->add_child_text (i.certificate (true));
630         }
631         signer->add_child("PrivateKey")->add_child_text (_signer_chain->key().get ());
632
633         /* [XML] Decryption Certificate chain and private key to use when decrypting KDMs */
634         xmlpp::Element* decryption = root->add_child ("Decryption");
635         DCPOMATIC_ASSERT (_decryption_chain);
636         BOOST_FOREACH (dcp::Certificate const & i, _decryption_chain->unordered()) {
637                 decryption->add_child("Certificate")->add_child_text (i.certificate (true));
638         }
639         decryption->add_child("PrivateKey")->add_child_text (_decryption_chain->key().get ());
640
641         /* [XML] History Filename of DCP to present in the <guilabel>File</guilabel> menu of the GUI; there can be more than one
642            of these tags.
643         */
644         BOOST_FOREACH (boost::filesystem::path i, _history) {
645                 root->add_child("History")->add_child_text (i.string ());
646         }
647
648         BOOST_FOREACH (boost::filesystem::path i, _player_history) {
649                 root->add_child("PlayerHistory")->add_child_text (i.string ());
650         }
651
652         /* [XML] DKDMGroup A group of DKDMs, each with a <code>Name</code> attribute, containing other <code>&lt;DKDMGroup&gt;</code>
653            or <code>&lt;DKDM&gt;</code> tags.
654         */
655         /* [XML] DKDM A DKDM as XML */
656         _dkdms->as_xml (root);
657
658         /* [XML] CinemasFile Filename of cinemas list file */
659         root->add_child("CinemasFile")->add_child_text (_cinemas_file.string());
660         /* [XML] ShowHintsBeforeMakeDCP 1 to show hints in the GUI before making a DCP, otherwise 0 */
661         root->add_child("ShowHintsBeforeMakeDCP")->add_child_text (_show_hints_before_make_dcp ? "1" : "0");
662         /* [XML] ConfirmKDMEmail 1 to confirm before sending KDM emails in the GUI, otherwise 0 */
663         root->add_child("ConfirmKDMEmail")->add_child_text (_confirm_kdm_email ? "1" : "0");
664         /* [XML] KDMFilenameFormat Format for KDM filenames */
665         root->add_child("KDMFilenameFormat")->add_child_text (_kdm_filename_format.specification ());
666         /* [XML] KDMContainerNameFormat Format for KDM containers (directories or ZIP files) */
667         root->add_child("KDMContainerNameFormat")->add_child_text (_kdm_container_name_format.specification ());
668         /* [XML] DCPMetadataFilenameFormat Format for DCP metadata filenames */
669         root->add_child("DCPMetadataFilenameFormat")->add_child_text (_dcp_metadata_filename_format.specification ());
670         /* [XML] DCPAssetFilenameFormat Format for DCP asset filenames */
671         root->add_child("DCPAssetFilenameFormat")->add_child_text (_dcp_asset_filename_format.specification ());
672         /* [XML] JumpToSelected 1 to make the GUI jump to the start of content when it is selected, otherwise 0 */
673         root->add_child("JumpToSelected")->add_child_text (_jump_to_selected ? "1" : "0");
674         /* [XML] Nagged 1 if a particular nag screen has been shown and should not be shown again, otherwise 0 */
675         for (int i = 0; i < NAG_COUNT; ++i) {
676                 xmlpp::Element* e = root->add_child ("Nagged");
677                 e->set_attribute ("Id", raw_convert<string>(i));
678                 e->add_child_text (_nagged[i] ? "1" : "0");
679         }
680         /* [XML] PreviewSound 1 to use sound in the GUI preview and player, otherwise 0 */
681         root->add_child("PreviewSound")->add_child_text (_sound ? "1" : "0");
682         if (_sound_output) {
683                 /* [XML:opt] PreviewSoundOutput Name of the audio output to use */
684                 root->add_child("PreviewSoundOutput")->add_child_text (_sound_output.get());
685         }
686         /* [XML] CoverSheet Text of the cover sheet to write when making DCPs */
687         root->add_child("CoverSheet")->add_child_text (_cover_sheet);
688         if (_last_player_load_directory) {
689                 root->add_child("LastPlayerLoadDirectory")->add_child_text(_last_player_load_directory->string());
690         }
691         if (_last_kdm_write_type) {
692                 switch (_last_kdm_write_type.get()) {
693                 case KDM_WRITE_FLAT:
694                         root->add_child("LastKDMWriteType")->add_child_text("flat");
695                         break;
696                 case KDM_WRITE_FOLDER:
697                         root->add_child("LastKDMWriteType")->add_child_text("folder");
698                         break;
699                 case KDM_WRITE_ZIP:
700                         root->add_child("LastKDMWriteType")->add_child_text("zip");
701                         break;
702                 }
703         }
704         if (_last_dkdm_write_type) {
705                 switch (_last_dkdm_write_type.get()) {
706                 case DKDM_WRITE_INTERNAL:
707                         root->add_child("LastDKDMWriteType")->add_child_text("internal");
708                         break;
709                 case DKDM_WRITE_FILE:
710                         root->add_child("LastDKDMWriteType")->add_child_text("file");
711                         break;
712                 }
713         }
714         /* [XML] FramesInMemoryMultiplier value to multiply the encoding threads count by to get the maximum number of
715            frames to be held in memory at once.
716         */
717         root->add_child("FramesInMemoryMultiplier")->add_child_text(raw_convert<string>(_frames_in_memory_multiplier));
718
719         /* [XML] DecodeReduction power of 2 to reduce DCP images by before decoding in the player */
720         if (_decode_reduction) {
721                 root->add_child("DecodeReduction")->add_child_text(raw_convert<string>(_decode_reduction.get()));
722         }
723
724         try {
725                 doc.write_to_file_formatted(config_file().string());
726         } catch (xmlpp::exception& e) {
727                 string s = e.what ();
728                 trim (s);
729                 throw FileError (s, path("config.xml"));
730         }
731 }
732
733 void
734 Config::write_cinemas () const
735 {
736         xmlpp::Document doc;
737         xmlpp::Element* root = doc.create_root_node ("Cinemas");
738         root->add_child("Version")->add_child_text ("1");
739
740         BOOST_FOREACH (shared_ptr<Cinema> i, _cinemas) {
741                 i->as_xml (root->add_child ("Cinema"));
742         }
743
744         try {
745                 doc.write_to_file_formatted (_cinemas_file.string ());
746         } catch (xmlpp::exception& e) {
747                 string s = e.what ();
748                 trim (s);
749                 throw FileError (s, _cinemas_file);
750         }
751 }
752
753 boost::filesystem::path
754 Config::default_directory_or (boost::filesystem::path a) const
755 {
756         return directory_or (_default_directory, a);
757 }
758
759 boost::filesystem::path
760 Config::default_kdm_directory_or (boost::filesystem::path a) const
761 {
762         return directory_or (_default_kdm_directory, a);
763 }
764
765 boost::filesystem::path
766 Config::directory_or (optional<boost::filesystem::path> dir, boost::filesystem::path a) const
767 {
768         if (!dir) {
769                 return a;
770         }
771
772         boost::system::error_code ec;
773         bool const e = boost::filesystem::exists (*dir, ec);
774         if (ec || !e) {
775                 return a;
776         }
777
778         return *dir;
779 }
780
781 void
782 Config::drop ()
783 {
784         delete _instance;
785         _instance = 0;
786 }
787
788 void
789 Config::changed (Property what)
790 {
791         Changed (what);
792 }
793
794 void
795 Config::set_kdm_email_to_default ()
796 {
797         _kdm_subject = _("KDM delivery: $CPL_NAME");
798
799         _kdm_email = _(
800                 "Dear Projectionist\n\n"
801                 "Please find attached KDMs for $CPL_NAME.\n\n"
802                 "Cinema: $CINEMA_NAME\n"
803                 "Screen(s): $SCREENS\n\n"
804                 "The KDMs are valid from $START_TIME until $END_TIME.\n\n"
805                 "Best regards,\nDCP-o-matic"
806                 );
807 }
808
809 void
810 Config::reset_kdm_email ()
811 {
812         set_kdm_email_to_default ();
813         changed ();
814 }
815
816 void
817 Config::set_cover_sheet_to_default ()
818 {
819         _cover_sheet = _(
820                 "$CPL_NAME\n\n"
821                 "Type: $TYPE\n"
822                 "Format: $CONTAINER\n"
823                 "Audio: $AUDIO\n"
824                 "Audio Language: $AUDIO_LANGUAGE\n"
825                 "Subtitle Language: $SUBTITLE_LANGUAGE\n"
826                 "Length: $LENGTH\n"
827                 "Size: $SIZE\n"
828                 );
829 }
830
831 void
832 Config::add_to_history (boost::filesystem::path p)
833 {
834         add_to_history_internal (_history, p);
835 }
836
837 void
838 Config::add_to_player_history (boost::filesystem::path p)
839 {
840         add_to_history_internal (_player_history, p);
841 }
842
843 void
844 Config::add_to_history_internal (vector<boost::filesystem::path>& h, boost::filesystem::path p)
845 {
846         /* Remove existing instances of this path in the history */
847         h.erase (remove (h.begin(), h.end(), p), h.end ());
848
849         h.insert (h.begin (), p);
850         if (h.size() > HISTORY_SIZE) {
851                 h.pop_back ();
852         }
853
854         changed ();
855 }
856
857 bool
858 Config::have_existing (string file)
859 {
860         return boost::filesystem::exists (path (file, false));
861 }
862
863 void
864 Config::read_cinemas (cxml::Document const & f)
865 {
866         _cinemas.clear ();
867         list<cxml::NodePtr> cin = f.node_children ("Cinema");
868         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("Cinema")) {
869                 /* Slightly grotty two-part construction of Cinema here so that we can use
870                    shared_from_this.
871                 */
872                 shared_ptr<Cinema> cinema (new Cinema (i));
873                 cinema->read_screens (i);
874                 _cinemas.push_back (cinema);
875         }
876 }
877
878 void
879 Config::set_cinemas_file (boost::filesystem::path file)
880 {
881         _cinemas_file = file;
882
883         if (boost::filesystem::exists (_cinemas_file)) {
884                 /* Existing file; read it in */
885                 cxml::Document f ("Cinemas");
886                 f.read_file (_cinemas_file);
887                 read_cinemas (f);
888         }
889
890         changed (OTHER);
891 }
892
893 void
894 Config::save_template (shared_ptr<const Film> film, string name) const
895 {
896         film->write_template (template_path (name));
897 }
898
899 list<string>
900 Config::templates () const
901 {
902         if (!boost::filesystem::exists (path ("templates"))) {
903                 return list<string> ();
904         }
905
906         list<string> n;
907         for (boost::filesystem::directory_iterator i (path("templates")); i != boost::filesystem::directory_iterator(); ++i) {
908                 n.push_back (i->path().filename().string());
909         }
910         return n;
911 }
912
913 bool
914 Config::existing_template (string name) const
915 {
916         return boost::filesystem::exists (template_path (name));
917 }
918
919 boost::filesystem::path
920 Config::template_path (string name) const
921 {
922         return path("templates") / tidy_for_filename (name);
923 }
924
925 void
926 Config::rename_template (string old_name, string new_name) const
927 {
928         boost::filesystem::rename (template_path (old_name), template_path (new_name));
929 }
930
931 void
932 Config::delete_template (string name) const
933 {
934         boost::filesystem::remove (template_path (name));
935 }
936
937 /** @return Path to the config.xml containing the actual settings, following a link if required */
938 boost::filesystem::path
939 Config::config_file ()
940 {
941         cxml::Document f ("Config");
942         boost::filesystem::path main = path("config.xml", false);
943         if (!boost::filesystem::exists (main)) {
944                 /* It doesn't exist, so there can't be any links; just return it */
945                 return main;
946         }
947
948         /* See if there's a link */
949         f.read_file (main);
950         optional<string> link = f.optional_string_child("Link");
951         if (link) {
952                 return *link;
953         }
954
955         return main;
956 }
957
958 void
959 Config::reset_cover_sheet ()
960 {
961         set_cover_sheet_to_default ();
962         changed ();
963 }
964
965 void
966 Config::link (boost::filesystem::path new_file) const
967 {
968         xmlpp::Document doc;
969         doc.create_root_node("Config")->add_child("Link")->add_child_text(new_file.string());
970         try {
971                 doc.write_to_file_formatted(path("config.xml", true).string());
972         } catch (xmlpp::exception& e) {
973                 string s = e.what ();
974                 trim (s);
975                 throw FileError (s, path("config.xml"));
976         }
977 }
978
979 void
980 Config::copy_and_link (boost::filesystem::path new_file) const
981 {
982         write ();
983         boost::filesystem::copy_file (config_file(), new_file, boost::filesystem::copy_option::overwrite_if_exists);
984         link (new_file);
985 }