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