Try to fix build with older boosts.
[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
327                 /* Make a copy of the configuration */
328                 try {
329                         boost::filesystem::copy_file (path ("config.xml", false), path ("config.xml.backup", false));
330                         boost::filesystem::copy_file (path ("cinemas.xml", false), path ("cinemas.xml.backup", false));
331                 } catch (...) {}
332
333                 /* We have a config file but it didn't load */
334                 FailedToLoad ();
335         }
336         set_defaults ();
337         /* Make a new set of signing certificates and key */
338         _signer_chain = create_certificate_chain ();
339         /* And similar for decryption of KDMs */
340         _decryption_chain = create_certificate_chain ();
341         write ();
342 }
343
344
345 /** @return Filename to write configuration to */
346 boost::filesystem::path
347 Config::path (string file, bool create_directories)
348 {
349         boost::filesystem::path p;
350 #ifdef DCPOMATIC_OSX
351         p /= g_get_home_dir ();
352         p /= "Library";
353         p /= "Preferences";
354         p /= "com.dcpomatic";
355         p /= "2";
356 #else
357         p /= g_get_user_config_dir ();
358         p /= "dcpomatic2";
359 #endif
360         boost::system::error_code ec;
361         if (create_directories) {
362                 boost::filesystem::create_directories (p, ec);
363         }
364         p /= file;
365         return p;
366 }
367
368 /** @return Singleton instance */
369 Config *
370 Config::instance ()
371 {
372         if (_instance == 0) {
373                 _instance = new Config;
374                 _instance->read ();
375         }
376
377         return _instance;
378 }
379
380 /** Write our configuration to disk */
381 void
382 Config::write () const
383 {
384         write_config ();
385         write_cinemas ();
386 }
387
388 void
389 Config::write_config () const
390 {
391         xmlpp::Document doc;
392         xmlpp::Element* root = doc.create_root_node ("Config");
393
394         root->add_child("Version")->add_child_text ("2");
395         root->add_child("NumLocalEncodingThreads")->add_child_text (raw_convert<string> (_num_local_encoding_threads));
396         if (_default_directory) {
397                 root->add_child("DefaultDirectory")->add_child_text (_default_directory->string ());
398         }
399         root->add_child("ServerPortBase")->add_child_text (raw_convert<string> (_server_port_base));
400         root->add_child("UseAnyServers")->add_child_text (_use_any_servers ? "1" : "0");
401
402         for (vector<string>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
403                 root->add_child("Server")->add_child_text (*i);
404         }
405
406         root->add_child("OnlyServersEncode")->add_child_text (_only_servers_encode ? "1" : "0");
407         root->add_child("TMSProtocol")->add_child_text (raw_convert<string> (static_cast<int> (_tms_protocol)));
408         root->add_child("TMSIP")->add_child_text (_tms_ip);
409         root->add_child("TMSPath")->add_child_text (_tms_path);
410         root->add_child("TMSUser")->add_child_text (_tms_user);
411         root->add_child("TMSPassword")->add_child_text (_tms_password);
412         if (_cinema_sound_processor) {
413                 root->add_child("CinemaSoundProcessor")->add_child_text (_cinema_sound_processor->id ());
414         }
415         if (_language) {
416                 root->add_child("Language")->add_child_text (_language.get());
417         }
418         if (_default_container) {
419                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
420         }
421         if (_default_dcp_content_type) {
422                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->isdcf_name ());
423         }
424         root->add_child("DefaultDCPAudioChannels")->add_child_text (raw_convert<string> (_default_dcp_audio_channels));
425         root->add_child("DCPIssuer")->add_child_text (_dcp_issuer);
426         root->add_child("DCPCreator")->add_child_text (_dcp_creator);
427
428         _default_isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
429
430         root->add_child("DefaultStillLength")->add_child_text (raw_convert<string> (_default_still_length));
431         root->add_child("DefaultJ2KBandwidth")->add_child_text (raw_convert<string> (_default_j2k_bandwidth));
432         root->add_child("DefaultAudioDelay")->add_child_text (raw_convert<string> (_default_audio_delay));
433         root->add_child("DefaultInterop")->add_child_text (_default_interop ? "1" : "0");
434         if (_default_kdm_directory) {
435                 root->add_child("DefaultKDMDirectory")->add_child_text (_default_kdm_directory->string ());
436         }
437         root->add_child("MailServer")->add_child_text (_mail_server);
438         root->add_child("MailPort")->add_child_text (raw_convert<string> (_mail_port));
439         root->add_child("MailUser")->add_child_text (_mail_user);
440         root->add_child("MailPassword")->add_child_text (_mail_password);
441         root->add_child("KDMSubject")->add_child_text (_kdm_subject);
442         root->add_child("KDMFrom")->add_child_text (_kdm_from);
443         BOOST_FOREACH (string i, _kdm_cc) {
444                 root->add_child("KDMCC")->add_child_text (i);
445         }
446         root->add_child("KDMBCC")->add_child_text (_kdm_bcc);
447         root->add_child("KDMEmail")->add_child_text (_kdm_email);
448
449         root->add_child("CheckForUpdates")->add_child_text (_check_for_updates ? "1" : "0");
450         root->add_child("CheckForTestUpdates")->add_child_text (_check_for_test_updates ? "1" : "0");
451
452         root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
453         root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
454         root->add_child("LogTypes")->add_child_text (raw_convert<string> (_log_types));
455         root->add_child("AnalyseEBUR128")->add_child_text (_analyse_ebur128 ? "1" : "0");
456         root->add_child("AutomaticAudioAnalysis")->add_child_text (_automatic_audio_analysis ? "1" : "0");
457 #ifdef DCPOMATIC_WINDOWS
458         root->add_child("Win32Console")->add_child_text (_win32_console ? "1" : "0");
459 #endif
460
461         xmlpp::Element* signer = root->add_child ("Signer");
462         DCPOMATIC_ASSERT (_signer_chain);
463         BOOST_FOREACH (dcp::Certificate const & i, _signer_chain->root_to_leaf ()) {
464                 signer->add_child("Certificate")->add_child_text (i.certificate (true));
465         }
466         signer->add_child("PrivateKey")->add_child_text (_signer_chain->key().get ());
467
468         xmlpp::Element* decryption = root->add_child ("Decryption");
469         DCPOMATIC_ASSERT (_decryption_chain);
470         BOOST_FOREACH (dcp::Certificate const & i, _decryption_chain->root_to_leaf ()) {
471                 decryption->add_child("Certificate")->add_child_text (i.certificate (true));
472         }
473         decryption->add_child("PrivateKey")->add_child_text (_decryption_chain->key().get ());
474
475         for (vector<boost::filesystem::path>::const_iterator i = _history.begin(); i != _history.end(); ++i) {
476                 root->add_child("History")->add_child_text (i->string ());
477         }
478
479         BOOST_FOREACH (dcp::EncryptedKDM i, _dkdms) {
480                 root->add_child("DKDM")->add_child_text (i.as_xml ());
481         }
482
483         root->add_child("CinemasFile")->add_child_text (_cinemas_file.string());
484         root->add_child("ShowHintsBeforeMakeDCP")->add_child_text (_show_hints_before_make_dcp ? "1" : "0");
485         root->add_child("ConfirmKDMEmail")->add_child_text (_confirm_kdm_email ? "1" : "0");
486         root->add_child("KDMFilenameFormat")->add_child_text (_kdm_filename_format.specification ());
487         root->add_child("KDMContainerNameFormat")->add_child_text (_kdm_container_name_format.specification ());
488         root->add_child("DCPMetadataFilenameFormat")->add_child_text (_dcp_metadata_filename_format.specification ());
489         root->add_child("DCPAssetFilenameFormat")->add_child_text (_dcp_asset_filename_format.specification ());
490         root->add_child("JumpToSelected")->add_child_text (_jump_to_selected ? "1" : "0");
491         root->add_child("PreviewSound")->add_child_text (_preview_sound ? "1" : "0");
492         if (_preview_sound_output) {
493                 root->add_child("PreviewSoundOutput")->add_child_text (_preview_sound_output.get());
494         }
495
496         try {
497                 doc.write_to_file_formatted (path("config.xml").string ());
498         } catch (xmlpp::exception& e) {
499                 string s = e.what ();
500                 trim (s);
501                 throw FileError (s, path("config.xml"));
502         }
503 }
504
505 void
506 Config::write_cinemas () const
507 {
508         xmlpp::Document doc;
509         xmlpp::Element* root = doc.create_root_node ("Cinemas");
510         root->add_child("Version")->add_child_text ("1");
511
512         for (list<shared_ptr<Cinema> >::const_iterator i = _cinemas.begin(); i != _cinemas.end(); ++i) {
513                 (*i)->as_xml (root->add_child ("Cinema"));
514         }
515
516         try {
517                 doc.write_to_file_formatted (_cinemas_file.string ());
518         } catch (xmlpp::exception& e) {
519                 string s = e.what ();
520                 trim (s);
521                 throw FileError (s, _cinemas_file);
522         }
523 }
524
525 boost::filesystem::path
526 Config::default_directory_or (boost::filesystem::path a) const
527 {
528         return directory_or (_default_directory, a);
529 }
530
531 boost::filesystem::path
532 Config::default_kdm_directory_or (boost::filesystem::path a) const
533 {
534         return directory_or (_default_kdm_directory, a);
535 }
536
537 boost::filesystem::path
538 Config::directory_or (optional<boost::filesystem::path> dir, boost::filesystem::path a) const
539 {
540         if (!dir) {
541                 return a;
542         }
543
544         boost::system::error_code ec;
545         bool const e = boost::filesystem::exists (*dir, ec);
546         if (ec || !e) {
547                 return a;
548         }
549
550         return *dir;
551 }
552
553 void
554 Config::drop ()
555 {
556         delete _instance;
557         _instance = 0;
558 }
559
560 void
561 Config::changed (Property what)
562 {
563         Changed (what);
564 }
565
566 void
567 Config::set_kdm_email_to_default ()
568 {
569         _kdm_subject = _("KDM delivery: $CPL_NAME");
570
571         _kdm_email = _(
572                 "Dear Projectionist\n\n"
573                 "Please find attached KDMs for $CPL_NAME.\n\n"
574                 "Cinema: $CINEMA_NAME\n"
575                 "Screen(s): $SCREENS\n\n"
576                 "The KDMs are valid from $START_TIME until $END_TIME.\n\n"
577                 "Best regards,\nDCP-o-matic"
578                 );
579 }
580
581 void
582 Config::reset_kdm_email ()
583 {
584         set_kdm_email_to_default ();
585         changed ();
586 }
587
588 void
589 Config::add_to_history (boost::filesystem::path p)
590 {
591         /* Remove existing instances of this path in the history */
592         _history.erase (remove (_history.begin(), _history.end(), p), _history.end ());
593
594         _history.insert (_history.begin (), p);
595         if (_history.size() > HISTORY_SIZE) {
596                 _history.pop_back ();
597         }
598
599         changed ();
600 }
601
602 bool
603 Config::have_existing (string file)
604 {
605         return boost::filesystem::exists (path (file, false));
606 }
607
608 void
609 Config::read_cinemas (cxml::Document const & f)
610 {
611         _cinemas.clear ();
612         list<cxml::NodePtr> cin = f.node_children ("Cinema");
613         for (list<cxml::NodePtr>::iterator i = cin.begin(); i != cin.end(); ++i) {
614                 /* Slightly grotty two-part construction of Cinema here so that we can use
615                    shared_from_this.
616                 */
617                 shared_ptr<Cinema> cinema (new Cinema (*i));
618                 cinema->read_screens (*i);
619                 _cinemas.push_back (cinema);
620         }
621 }
622
623 void
624 Config::set_cinemas_file (boost::filesystem::path file)
625 {
626         _cinemas_file = file;
627
628         if (boost::filesystem::exists (_cinemas_file)) {
629                 /* Existing file; read it in */
630                 cxml::Document f ("Cinemas");
631                 f.read_file (_cinemas_file);
632                 read_cinemas (f);
633         }
634
635         changed (OTHER);
636 }
637
638 void
639 Config::save_template (shared_ptr<const Film> film, string name) const
640 {
641         film->write_template (template_path (name));
642 }
643
644 list<string>
645 Config::templates () const
646 {
647         if (!boost::filesystem::exists (path ("templates"))) {
648                 return list<string> ();
649         }
650
651         list<string> n;
652         for (boost::filesystem::directory_iterator i (path("templates")); i != boost::filesystem::directory_iterator(); ++i) {
653                 n.push_back (i->path().filename().string());
654         }
655         return n;
656 }
657
658 bool
659 Config::existing_template (string name) const
660 {
661         return boost::filesystem::exists (template_path (name));
662 }
663
664 boost::filesystem::path
665 Config::template_path (string name) const
666 {
667         return path("templates") / tidy_for_filename (name);
668 }
669
670 void
671 Config::rename_template (string old_name, string new_name) const
672 {
673         boost::filesystem::rename (template_path (old_name), template_path (new_name));
674 }
675
676 void
677 Config::delete_template (string name) const
678 {
679         boost::filesystem::remove (template_path (name));
680 }