First bits of audio support.
[dcpomatic.git] / src / lib / config.cc
1 /*
2     Copyright (C) 2012-2017 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 <dcp/raw_convert.h>
34 #include <dcp/name_format.h>
35 #include <dcp/certificate_chain.h>
36 #include <libcxml/cxml.h>
37 #include <glib.h>
38 #include <libxml++/libxml++.h>
39 #include <boost/filesystem.hpp>
40 #include <boost/algorithm/string.hpp>
41 #include <boost/foreach.hpp>
42 #include <boost/thread.hpp>
43 #include <cstdlib>
44 #include <fstream>
45 #include <iostream>
46
47 #include "i18n.h"
48
49 using std::vector;
50 using std::cout;
51 using std::ifstream;
52 using std::string;
53 using std::list;
54 using std::max;
55 using std::remove;
56 using std::exception;
57 using std::cerr;
58 using boost::shared_ptr;
59 using boost::optional;
60 using boost::algorithm::trim;
61 using dcp::raw_convert;
62
63 Config* Config::_instance = 0;
64 boost::signals2::signal<void ()> Config::FailedToLoad;
65
66 /** Construct default configuration */
67 Config::Config ()
68 {
69         set_defaults ();
70 }
71
72 void
73 Config::set_defaults ()
74 {
75         _num_local_encoding_threads = max (2U, boost::thread::hardware_concurrency ());
76         _server_port_base = 6192;
77         _use_any_servers = true;
78         _servers.clear ();
79         _only_servers_encode = false;
80         _tms_protocol = PROTOCOL_SCP;
81         _tms_ip = "";
82         _tms_path = ".";
83         _tms_user = "";
84         _tms_password = "";
85         _cinema_sound_processor = CinemaSoundProcessor::from_id (N_("dolby_cp750"));
86         _allow_any_dcp_frame_rate = false;
87         _language = optional<string> ();
88         _default_still_length = 10;
89         _default_container = Ratio::from_id ("185");
90         _default_dcp_content_type = DCPContentType::from_isdcf_name ("FTR");
91         _default_dcp_audio_channels = 6;
92         _default_j2k_bandwidth = 100000000;
93         _default_audio_delay = 0;
94         _default_interop = true;
95         _mail_server = "";
96         _mail_port = 25;
97         _mail_user = "";
98         _mail_password = "";
99         _kdm_from = "";
100         _kdm_cc.clear ();
101         _kdm_bcc = "";
102         _check_for_updates = false;
103         _check_for_test_updates = false;
104         _maximum_j2k_bandwidth = 250000000;
105         _log_types = LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR;
106         _analyse_ebur128 = true;
107         _automatic_audio_analysis = false;
108 #ifdef DCPOMATIC_WINDOWS
109         _win32_console = false;
110 #endif
111         _cinemas_file = path ("cinemas.xml");
112         _show_hints_before_make_dcp = true;
113         _confirm_kdm_email = true;
114         _kdm_container_name_format = dcp::NameFormat ("KDM %f %c");
115         _kdm_filename_format = dcp::NameFormat ("KDM %f %c %s");
116         _dcp_metadata_filename_format = dcp::NameFormat ("%t");
117         _dcp_asset_filename_format = dcp::NameFormat ("%t");
118         _jump_to_selected = true;
119         _sound_output = optional<string> ();
120
121         _allowed_dcp_frame_rates.clear ();
122         _allowed_dcp_frame_rates.push_back (24);
123         _allowed_dcp_frame_rates.push_back (25);
124         _allowed_dcp_frame_rates.push_back (30);
125         _allowed_dcp_frame_rates.push_back (48);
126         _allowed_dcp_frame_rates.push_back (50);
127         _allowed_dcp_frame_rates.push_back (60);
128
129         set_kdm_email_to_default ();
130 }
131
132 void
133 Config::restore_defaults ()
134 {
135         Config::instance()->set_defaults ();
136         Config::instance()->changed ();
137 }
138
139 shared_ptr<dcp::CertificateChain>
140 Config::create_certificate_chain ()
141 {
142         return shared_ptr<dcp::CertificateChain> (
143                 new dcp::CertificateChain (
144                         openssl_path(),
145                         "dcpomatic.com",
146                         "dcpomatic.com",
147                         ".dcpomatic.smpte-430-2.ROOT",
148                         ".dcpomatic.smpte-430-2.INTERMEDIATE",
149                         "CS.dcpomatic.smpte-430-2.LEAF"
150                         )
151                 );
152 }
153
154 void
155 Config::read ()
156 try
157 {
158         cxml::Document f ("Config");
159         f.read_file (path ("config.xml"));
160         optional<string> c;
161
162         optional<int> version = f.optional_number_child<int> ("Version");
163
164         _num_local_encoding_threads = f.number_child<int> ("NumLocalEncodingThreads");
165         _default_directory = f.optional_string_child ("DefaultDirectory");
166         if (_default_directory && _default_directory->empty ()) {
167                 /* We used to store an empty value for this to mean "none set" */
168                 _default_directory = boost::optional<boost::filesystem::path> ();
169         }
170
171         boost::optional<int> b = f.optional_number_child<int> ("ServerPort");
172         if (!b) {
173                 b = f.optional_number_child<int> ("ServerPortBase");
174         }
175         _server_port_base = b.get ();
176
177         boost::optional<bool> u = f.optional_bool_child ("UseAnyServers");
178         _use_any_servers = u.get_value_or (true);
179
180         list<cxml::NodePtr> servers = f.node_children ("Server");
181         for (list<cxml::NodePtr>::iterator i = servers.begin(); i != servers.end(); ++i) {
182                 if ((*i)->node_children("HostName").size() == 1) {
183                         _servers.push_back ((*i)->string_child ("HostName"));
184                 } else {
185                         _servers.push_back ((*i)->content ());
186                 }
187         }
188
189         _only_servers_encode = f.optional_bool_child ("OnlyServersEncode").get_value_or (false);
190         _tms_protocol = static_cast<Protocol> (f.optional_number_child<int> ("TMSProtocol").get_value_or (static_cast<int> (PROTOCOL_SCP)));
191         _tms_ip = f.string_child ("TMSIP");
192         _tms_path = f.string_child ("TMSPath");
193         _tms_user = f.string_child ("TMSUser");
194         _tms_password = f.string_child ("TMSPassword");
195
196         c = f.optional_string_child ("SoundProcessor");
197         if (c) {
198                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
199         }
200         c = f.optional_string_child ("CinemaSoundProcessor");
201         if (c) {
202                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
203         }
204
205         _language = f.optional_string_child ("Language");
206
207         c = f.optional_string_child ("DefaultContainer");
208         if (c) {
209                 _default_container = Ratio::from_id (c.get ());
210         }
211
212         c = f.optional_string_child ("DefaultDCPContentType");
213         if (c) {
214                 _default_dcp_content_type = DCPContentType::from_isdcf_name (c.get ());
215         }
216
217         _default_dcp_audio_channels = f.optional_number_child<int>("DefaultDCPAudioChannels").get_value_or (6);
218
219         if (f.optional_string_child ("DCPMetadataIssuer")) {
220                 _dcp_issuer = f.string_child ("DCPMetadataIssuer");
221         } else if (f.optional_string_child ("DCPIssuer")) {
222                 _dcp_issuer = f.string_child ("DCPIssuer");
223         }
224
225         _dcp_creator = f.optional_string_child ("DCPCreator").get_value_or ("");
226
227         if (version && version.get() >= 2) {
228                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("ISDCFMetadata"));
229         } else {
230                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("DCIMetadata"));
231         }
232
233         _default_still_length = f.optional_number_child<int>("DefaultStillLength").get_value_or (10);
234         _default_j2k_bandwidth = f.optional_number_child<int>("DefaultJ2KBandwidth").get_value_or (200000000);
235         _default_audio_delay = f.optional_number_child<int>("DefaultAudioDelay").get_value_or (0);
236         _default_interop = f.optional_bool_child("DefaultInterop").get_value_or (false);
237         _default_kdm_directory = f.optional_string_child("DefaultKDMDirectory");
238
239         /* Load any cinemas from config.xml */
240         read_cinemas (f);
241
242         _mail_server = f.string_child ("MailServer");
243         _mail_port = f.optional_number_child<int> ("MailPort").get_value_or (25);
244         _mail_user = f.optional_string_child("MailUser").get_value_or ("");
245         _mail_password = f.optional_string_child("MailPassword").get_value_or ("");
246         _kdm_subject = f.optional_string_child ("KDMSubject").get_value_or (_("KDM delivery: $CPL_NAME"));
247         _kdm_from = f.string_child ("KDMFrom");
248         BOOST_FOREACH (cxml::ConstNodePtr i, f.node_children("KDMCC")) {
249                 if (!i->content().empty()) {
250                         _kdm_cc.push_back (i->content ());
251                 }
252         }
253         _kdm_bcc = f.optional_string_child ("KDMBCC").get_value_or ("");
254         _kdm_email = f.string_child ("KDMEmail");
255
256         _check_for_updates = f.optional_bool_child("CheckForUpdates").get_value_or (false);
257         _check_for_test_updates = f.optional_bool_child("CheckForTestUpdates").get_value_or (false);
258
259         _maximum_j2k_bandwidth = f.optional_number_child<int> ("MaximumJ2KBandwidth").get_value_or (250000000);
260         _allow_any_dcp_frame_rate = f.optional_bool_child ("AllowAnyDCPFrameRate").get_value_or (false);
261
262         _log_types = f.optional_number_child<int> ("LogTypes").get_value_or (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR);
263         _analyse_ebur128 = f.optional_bool_child("AnalyseEBUR128").get_value_or (true);
264         _automatic_audio_analysis = f.optional_bool_child ("AutomaticAudioAnalysis").get_value_or (false);
265 #ifdef DCPOMATIC_WINDOWS
266         _win32_console = f.optional_bool_child ("Win32Console").get_value_or (false);
267 #endif
268
269         list<cxml::NodePtr> his = f.node_children ("History");
270         for (list<cxml::NodePtr>::const_iterator i = his.begin(); i != his.end(); ++i) {
271                 _history.push_back ((*i)->content ());
272         }
273
274         cxml::NodePtr signer = f.optional_node_child ("Signer");
275         if (signer) {
276                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
277                 /* Read the signing certificates and private key in from the config file */
278                 BOOST_FOREACH (cxml::NodePtr i, signer->node_children ("Certificate")) {
279                         c->add (dcp::Certificate (i->content ()));
280                 }
281                 c->set_key (signer->string_child ("PrivateKey"));
282                 _signer_chain = c;
283         } else {
284                 /* Make a new set of signing certificates and key */
285                 _signer_chain = create_certificate_chain ();
286         }
287
288         cxml::NodePtr decryption = f.optional_node_child ("Decryption");
289         if (decryption) {
290                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
291                 BOOST_FOREACH (cxml::NodePtr i, decryption->node_children ("Certificate")) {
292                         c->add (dcp::Certificate (i->content ()));
293                 }
294                 c->set_key (decryption->string_child ("PrivateKey"));
295                 _decryption_chain = c;
296         } else {
297                 _decryption_chain = create_certificate_chain ();
298         }
299
300         list<cxml::NodePtr> dkdm = f.node_children ("DKDM");
301         BOOST_FOREACH (cxml::NodePtr i, f.node_children ("DKDM")) {
302                 _dkdms.push_back (dcp::EncryptedKDM (i->content ()));
303         }
304
305         _cinemas_file = f.optional_string_child("CinemasFile").get_value_or (path ("cinemas.xml").string ());
306         _show_hints_before_make_dcp = f.optional_bool_child("ShowHintsBeforeMakeDCP").get_value_or (true);
307         _confirm_kdm_email = f.optional_bool_child("ConfirmKDMEmail").get_value_or (true);
308         _kdm_container_name_format = dcp::NameFormat (f.optional_string_child("KDMContainerNameFormat").get_value_or ("KDM %f %c"));
309         _kdm_filename_format = dcp::NameFormat (f.optional_string_child("KDMFilenameFormat").get_value_or ("KDM %f %c %s"));
310         _dcp_metadata_filename_format = dcp::NameFormat (f.optional_string_child("DCPMetadataFilenameFormat").get_value_or ("%t"));
311         _dcp_asset_filename_format = dcp::NameFormat (f.optional_string_child("DCPAssetFilenameFormat").get_value_or ("%t"));
312 <<<<<<< 8de6a5d1d054bab25ab0d86bc48442d9d6adb849
313         _jump_to_selected = f.optional_bool_child("JumpToSelected").get_value_or (true);
314 =======
315         _sound_output = f.optional_string_child("SoundOutput");
316 >>>>>>> First bits of audio support.
317
318         /* Replace any cinemas from config.xml with those from the configured file */
319         if (boost::filesystem::exists (_cinemas_file)) {
320                 cxml::Document f ("Cinemas");
321                 f.read_file (_cinemas_file);
322                 read_cinemas (f);
323         }
324 }
325 catch (...) {
326         if (have_existing ("config.xml")) {
327                 /* We have a config file but it didn't load */
328                 FailedToLoad ();
329         }
330         set_defaults ();
331         /* Make a new set of signing certificates and key */
332         _signer_chain = create_certificate_chain ();
333         /* And similar for decryption of KDMs */
334         _decryption_chain = create_certificate_chain ();
335         write ();
336 }
337
338
339 /** @return Filename to write configuration to */
340 boost::filesystem::path
341 Config::path (string file, bool create_directories)
342 {
343         boost::filesystem::path p;
344 #ifdef DCPOMATIC_OSX
345         p /= g_get_home_dir ();
346         p /= "Library";
347         p /= "Preferences";
348         p /= "com.dcpomatic";
349         p /= "2";
350 #else
351         p /= g_get_user_config_dir ();
352         p /= "dcpomatic2";
353 #endif
354         boost::system::error_code ec;
355         if (create_directories) {
356                 boost::filesystem::create_directories (p, ec);
357         }
358         p /= file;
359         return p;
360 }
361
362 /** @return Singleton instance */
363 Config *
364 Config::instance ()
365 {
366         if (_instance == 0) {
367                 _instance = new Config;
368                 _instance->read ();
369         }
370
371         return _instance;
372 }
373
374 /** Write our configuration to disk */
375 void
376 Config::write () const
377 {
378         write_config ();
379         write_cinemas ();
380 }
381
382 void
383 Config::write_config () const
384 {
385         xmlpp::Document doc;
386         xmlpp::Element* root = doc.create_root_node ("Config");
387
388         root->add_child("Version")->add_child_text ("2");
389         root->add_child("NumLocalEncodingThreads")->add_child_text (raw_convert<string> (_num_local_encoding_threads));
390         if (_default_directory) {
391                 root->add_child("DefaultDirectory")->add_child_text (_default_directory->string ());
392         }
393         root->add_child("ServerPortBase")->add_child_text (raw_convert<string> (_server_port_base));
394         root->add_child("UseAnyServers")->add_child_text (_use_any_servers ? "1" : "0");
395
396         for (vector<string>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
397                 root->add_child("Server")->add_child_text (*i);
398         }
399
400         root->add_child("OnlyServersEncode")->add_child_text (_only_servers_encode ? "1" : "0");
401         root->add_child("TMSProtocol")->add_child_text (raw_convert<string> (static_cast<int> (_tms_protocol)));
402         root->add_child("TMSIP")->add_child_text (_tms_ip);
403         root->add_child("TMSPath")->add_child_text (_tms_path);
404         root->add_child("TMSUser")->add_child_text (_tms_user);
405         root->add_child("TMSPassword")->add_child_text (_tms_password);
406         if (_cinema_sound_processor) {
407                 root->add_child("CinemaSoundProcessor")->add_child_text (_cinema_sound_processor->id ());
408         }
409         if (_language) {
410                 root->add_child("Language")->add_child_text (_language.get());
411         }
412         if (_default_container) {
413                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
414         }
415         if (_default_dcp_content_type) {
416                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->isdcf_name ());
417         }
418         root->add_child("DefaultDCPAudioChannels")->add_child_text (raw_convert<string> (_default_dcp_audio_channels));
419         root->add_child("DCPIssuer")->add_child_text (_dcp_issuer);
420         root->add_child("DCPCreator")->add_child_text (_dcp_creator);
421
422         _default_isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
423
424         root->add_child("DefaultStillLength")->add_child_text (raw_convert<string> (_default_still_length));
425         root->add_child("DefaultJ2KBandwidth")->add_child_text (raw_convert<string> (_default_j2k_bandwidth));
426         root->add_child("DefaultAudioDelay")->add_child_text (raw_convert<string> (_default_audio_delay));
427         root->add_child("DefaultInterop")->add_child_text (_default_interop ? "1" : "0");
428         if (_default_kdm_directory) {
429                 root->add_child("DefaultKDMDirectory")->add_child_text (_default_kdm_directory->string ());
430         }
431         root->add_child("MailServer")->add_child_text (_mail_server);
432         root->add_child("MailPort")->add_child_text (raw_convert<string> (_mail_port));
433         root->add_child("MailUser")->add_child_text (_mail_user);
434         root->add_child("MailPassword")->add_child_text (_mail_password);
435         root->add_child("KDMSubject")->add_child_text (_kdm_subject);
436         root->add_child("KDMFrom")->add_child_text (_kdm_from);
437         BOOST_FOREACH (string i, _kdm_cc) {
438                 root->add_child("KDMCC")->add_child_text (i);
439         }
440         root->add_child("KDMBCC")->add_child_text (_kdm_bcc);
441         root->add_child("KDMEmail")->add_child_text (_kdm_email);
442
443         root->add_child("CheckForUpdates")->add_child_text (_check_for_updates ? "1" : "0");
444         root->add_child("CheckForTestUpdates")->add_child_text (_check_for_test_updates ? "1" : "0");
445
446         root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
447         root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
448         root->add_child("LogTypes")->add_child_text (raw_convert<string> (_log_types));
449         root->add_child("AnalyseEBUR128")->add_child_text (_analyse_ebur128 ? "1" : "0");
450         root->add_child("AutomaticAudioAnalysis")->add_child_text (_automatic_audio_analysis ? "1" : "0");
451 #ifdef DCPOMATIC_WINDOWS
452         root->add_child("Win32Console")->add_child_text (_win32_console ? "1" : "0");
453 #endif
454
455         xmlpp::Element* signer = root->add_child ("Signer");
456         DCPOMATIC_ASSERT (_signer_chain);
457         BOOST_FOREACH (dcp::Certificate const & i, _signer_chain->root_to_leaf ()) {
458                 signer->add_child("Certificate")->add_child_text (i.certificate (true));
459         }
460         signer->add_child("PrivateKey")->add_child_text (_signer_chain->key().get ());
461
462         xmlpp::Element* decryption = root->add_child ("Decryption");
463         DCPOMATIC_ASSERT (_decryption_chain);
464         BOOST_FOREACH (dcp::Certificate const & i, _decryption_chain->root_to_leaf ()) {
465                 decryption->add_child("Certificate")->add_child_text (i.certificate (true));
466         }
467         decryption->add_child("PrivateKey")->add_child_text (_decryption_chain->key().get ());
468
469         for (vector<boost::filesystem::path>::const_iterator i = _history.begin(); i != _history.end(); ++i) {
470                 root->add_child("History")->add_child_text (i->string ());
471         }
472
473         BOOST_FOREACH (dcp::EncryptedKDM i, _dkdms) {
474                 root->add_child("DKDM")->add_child_text (i.as_xml ());
475         }
476
477         root->add_child("CinemasFile")->add_child_text (_cinemas_file.string());
478         root->add_child("ShowHintsBeforeMakeDCP")->add_child_text (_show_hints_before_make_dcp ? "1" : "0");
479         root->add_child("ConfirmKDMEmail")->add_child_text (_confirm_kdm_email ? "1" : "0");
480         root->add_child("KDMFilenameFormat")->add_child_text (_kdm_filename_format.specification ());
481         root->add_child("KDMContainerNameFormat")->add_child_text (_kdm_container_name_format.specification ());
482         root->add_child("DCPMetadataFilenameFormat")->add_child_text (_dcp_metadata_filename_format.specification ());
483         root->add_child("DCPAssetFilenameFormat")->add_child_text (_dcp_asset_filename_format.specification ());
484 <<<<<<< 8de6a5d1d054bab25ab0d86bc48442d9d6adb849
485         root->add_child("JumpToSelected")->add_child_text (_jump_to_selected ? "1" : "0");
486 =======
487         if (_sound_output) {
488                 root->add_child("SoundOutput")->add_child_text (_sound_output.get());
489         }
490 >>>>>>> First bits of audio support.
491
492         try {
493                 doc.write_to_file_formatted (path("config.xml").string ());
494         } catch (xmlpp::exception& e) {
495                 string s = e.what ();
496                 trim (s);
497                 throw FileError (s, path("config.xml"));
498         }
499 }
500
501 void
502 Config::write_cinemas () const
503 {
504         xmlpp::Document doc;
505         xmlpp::Element* root = doc.create_root_node ("Cinemas");
506         root->add_child("Version")->add_child_text ("1");
507
508         for (list<shared_ptr<Cinema> >::const_iterator i = _cinemas.begin(); i != _cinemas.end(); ++i) {
509                 (*i)->as_xml (root->add_child ("Cinema"));
510         }
511
512         try {
513                 doc.write_to_file_formatted (_cinemas_file.string ());
514         } catch (xmlpp::exception& e) {
515                 string s = e.what ();
516                 trim (s);
517                 throw FileError (s, _cinemas_file);
518         }
519 }
520
521 boost::filesystem::path
522 Config::default_directory_or (boost::filesystem::path a) const
523 {
524         return directory_or (_default_directory, a);
525 }
526
527 boost::filesystem::path
528 Config::default_kdm_directory_or (boost::filesystem::path a) const
529 {
530         return directory_or (_default_kdm_directory, a);
531 }
532
533 boost::filesystem::path
534 Config::directory_or (optional<boost::filesystem::path> dir, boost::filesystem::path a) const
535 {
536         if (!dir) {
537                 return a;
538         }
539
540         boost::system::error_code ec;
541         bool const e = boost::filesystem::exists (*dir, ec);
542         if (ec || !e) {
543                 return a;
544         }
545
546         return *dir;
547 }
548
549 void
550 Config::drop ()
551 {
552         delete _instance;
553         _instance = 0;
554 }
555
556 void
557 Config::changed (Property what)
558 {
559         Changed (what);
560 }
561
562 void
563 Config::set_kdm_email_to_default ()
564 {
565         _kdm_subject = _("KDM delivery: $CPL_NAME");
566
567         _kdm_email = _(
568                 "Dear Projectionist\n\n"
569                 "Please find attached KDMs for $CPL_NAME.\n\n"
570                 "Cinema: $CINEMA_NAME\n"
571                 "Screen(s): $SCREENS\n\n"
572                 "The KDMs are valid from $START_TIME until $END_TIME.\n\n"
573                 "Best regards,\nDCP-o-matic"
574                 );
575 }
576
577 void
578 Config::reset_kdm_email ()
579 {
580         set_kdm_email_to_default ();
581         changed ();
582 }
583
584 void
585 Config::add_to_history (boost::filesystem::path p)
586 {
587         /* Remove existing instances of this path in the history */
588         _history.erase (remove (_history.begin(), _history.end(), p), _history.end ());
589
590         _history.insert (_history.begin (), p);
591         if (_history.size() > HISTORY_SIZE) {
592                 _history.pop_back ();
593         }
594
595         changed ();
596 }
597
598 bool
599 Config::have_existing (string file)
600 {
601         return boost::filesystem::exists (path (file, false));
602 }
603
604 void
605 Config::read_cinemas (cxml::Document const & f)
606 {
607         _cinemas.clear ();
608         list<cxml::NodePtr> cin = f.node_children ("Cinema");
609         for (list<cxml::NodePtr>::iterator i = cin.begin(); i != cin.end(); ++i) {
610                 /* Slightly grotty two-part construction of Cinema here so that we can use
611                    shared_from_this.
612                 */
613                 shared_ptr<Cinema> cinema (new Cinema (*i));
614                 cinema->read_screens (*i);
615                 _cinemas.push_back (cinema);
616         }
617 }
618
619 void
620 Config::set_cinemas_file (boost::filesystem::path file)
621 {
622         _cinemas_file = file;
623
624         if (boost::filesystem::exists (_cinemas_file)) {
625                 /* Existing file; read it in */
626                 cxml::Document f ("Cinemas");
627                 f.read_file (_cinemas_file);
628                 read_cinemas (f);
629         }
630
631         changed (OTHER);
632 }
633
634 void
635 Config::save_template (shared_ptr<const Film> film, string name) const
636 {
637         film->write_template (template_path (name));
638 }
639
640 list<string>
641 Config::templates () const
642 {
643         if (!boost::filesystem::exists (path ("templates"))) {
644                 return list<string> ();
645         }
646
647         list<string> n;
648         for (boost::filesystem::directory_iterator i (path("templates")); i != boost::filesystem::directory_iterator(); ++i) {
649                 n.push_back (i->path().filename().string());
650         }
651         return n;
652 }
653
654 bool
655 Config::existing_template (string name) const
656 {
657         return boost::filesystem::exists (template_path (name));
658 }
659
660 boost::filesystem::path
661 Config::template_path (string name) const
662 {
663         return path("templates") / tidy_for_filename (name);
664 }
665
666 void
667 Config::rename_template (string old_name, string new_name) const
668 {
669         boost::filesystem::rename (template_path (old_name), template_path (new_name));
670 }
671
672 void
673 Config::delete_template (string name) const
674 {
675         boost::filesystem::remove (template_path (name));
676 }