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