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