Make sure we don't create any config directories until we've set up the i18n properly.
[dcpomatic.git] / src / lib / config.cc
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "config.h"
21 #include "server.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 "raw_convert.h"
33 #include <dcp/colour_matrix.h>
34 #include <dcp/certificate_chain.h>
35 #include <libcxml/cxml.h>
36 #include <glib.h>
37 #include <libxml++/libxml++.h>
38 #include <boost/filesystem.hpp>
39 #include <boost/algorithm/string.hpp>
40 #include <boost/foreach.hpp>
41 #include <cstdlib>
42 #include <fstream>
43
44 #include "i18n.h"
45
46 using std::vector;
47 using std::cout;
48 using std::ifstream;
49 using std::string;
50 using std::list;
51 using std::max;
52 using std::remove;
53 using std::exception;
54 using std::cerr;
55 using boost::shared_ptr;
56 using boost::optional;
57 using boost::algorithm::trim;
58
59 Config* Config::_instance = 0;
60
61 /** Construct default configuration */
62 Config::Config ()
63 {
64         set_defaults ();
65 }
66
67 void
68 Config::set_defaults ()
69 {
70         _num_local_encoding_threads = max (2U, boost::thread::hardware_concurrency ());
71         _server_port_base = 6192;
72         _use_any_servers = true;
73         _servers.clear ();
74         _only_servers_encode = false;
75         _tms_protocol = PROTOCOL_SCP;
76         _tms_ip = "";
77         _tms_path = ".";
78         _tms_user = "";
79         _tms_password = "";
80         _cinema_sound_processor = CinemaSoundProcessor::from_id (N_("dolby_cp750"));
81         _allow_any_dcp_frame_rate = false;
82         _language = optional<string> ();
83         _default_still_length = 10;
84         _default_container = Ratio::from_id ("185");
85         _default_dcp_content_type = DCPContentType::from_isdcf_name ("FTR");
86         _default_j2k_bandwidth = 100000000;
87         _default_audio_delay = 0;
88         _mail_server = "";
89         _mail_port = 25;
90         _mail_user = "";
91         _mail_password = "";
92         _kdm_subject = _("KDM delivery");
93         _kdm_from = "";
94         _kdm_cc = "";
95         _kdm_bcc = "";
96         _check_for_updates = false;
97         _check_for_test_updates = false;
98         _maximum_j2k_bandwidth = 250000000;
99         _log_types = Log::TYPE_GENERAL | Log::TYPE_WARNING | Log::TYPE_ERROR;
100 #ifdef DCPOMATIC_WINDOWS
101         _win32_console = false;
102 #endif
103
104         _allowed_dcp_frame_rates.clear ();
105         _allowed_dcp_frame_rates.push_back (24);
106         _allowed_dcp_frame_rates.push_back (25);
107         _allowed_dcp_frame_rates.push_back (30);
108         _allowed_dcp_frame_rates.push_back (48);
109         _allowed_dcp_frame_rates.push_back (50);
110         _allowed_dcp_frame_rates.push_back (60);
111
112         set_kdm_email_to_default ();
113 }
114
115 void
116 Config::restore_defaults ()
117 {
118         Config::instance()->set_defaults ();
119         Config::instance()->changed ();
120 }
121
122 void
123 Config::read ()
124 {
125         if (!have_existing ()) {
126                 /* Make a new set of signing certificates and key */
127                 _signer_chain.reset (new dcp::CertificateChain (openssl_path ()));
128                 /* And similar for decryption of KDMs */
129                 _decryption_chain.reset (new dcp::CertificateChain (openssl_path ()));
130                 write ();
131                 return;
132         }
133
134         cxml::Document f ("Config");
135         f.read_file (file ());
136         optional<string> c;
137
138         optional<int> version = f.optional_number_child<int> ("Version");
139
140         _num_local_encoding_threads = f.number_child<int> ("NumLocalEncodingThreads");
141         _default_directory = f.string_child ("DefaultDirectory");
142
143         boost::optional<int> b = f.optional_number_child<int> ("ServerPort");
144         if (!b) {
145                 b = f.optional_number_child<int> ("ServerPortBase");
146         }
147         _server_port_base = b.get ();
148
149         boost::optional<bool> u = f.optional_bool_child ("UseAnyServers");
150         _use_any_servers = u.get_value_or (true);
151
152         list<cxml::NodePtr> servers = f.node_children ("Server");
153         for (list<cxml::NodePtr>::iterator i = servers.begin(); i != servers.end(); ++i) {
154                 if ((*i)->node_children("HostName").size() == 1) {
155                         _servers.push_back ((*i)->string_child ("HostName"));
156                 } else {
157                         _servers.push_back ((*i)->content ());
158                 }
159         }
160
161         _only_servers_encode = f.optional_bool_child ("OnlyServersEncode").get_value_or (false);
162         _tms_protocol = static_cast<Protocol> (f.optional_number_child<int> ("TMSProtocol").get_value_or (static_cast<int> (PROTOCOL_SCP)));
163         _tms_ip = f.string_child ("TMSIP");
164         _tms_path = f.string_child ("TMSPath");
165         _tms_user = f.string_child ("TMSUser");
166         _tms_password = f.string_child ("TMSPassword");
167
168         c = f.optional_string_child ("SoundProcessor");
169         if (c) {
170                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
171         }
172         c = f.optional_string_child ("CinemaSoundProcessor");
173         if (c) {
174                 _cinema_sound_processor = CinemaSoundProcessor::from_id (c.get ());
175         }
176
177         _language = f.optional_string_child ("Language");
178
179         c = f.optional_string_child ("DefaultContainer");
180         if (c) {
181                 _default_container = Ratio::from_id (c.get ());
182         }
183
184         c = f.optional_string_child ("DefaultDCPContentType");
185         if (c) {
186                 _default_dcp_content_type = DCPContentType::from_isdcf_name (c.get ());
187         }
188
189         if (f.optional_string_child ("DCPMetadataIssuer")) {
190                 _dcp_issuer = f.string_child ("DCPMetadataIssuer");
191         } else if (f.optional_string_child ("DCPIssuer")) {
192                 _dcp_issuer = f.string_child ("DCPIssuer");
193         }
194
195         _dcp_creator = f.optional_string_child ("DCPCreator").get_value_or ("");
196
197         if (version && version.get() >= 2) {
198                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("ISDCFMetadata"));
199         } else {
200                 _default_isdcf_metadata = ISDCFMetadata (f.node_child ("DCIMetadata"));
201         }
202
203         _default_still_length = f.optional_number_child<int>("DefaultStillLength").get_value_or (10);
204         _default_j2k_bandwidth = f.optional_number_child<int>("DefaultJ2KBandwidth").get_value_or (200000000);
205         _default_audio_delay = f.optional_number_child<int>("DefaultAudioDelay").get_value_or (0);
206
207         list<cxml::NodePtr> cin = f.node_children ("Cinema");
208         for (list<cxml::NodePtr>::iterator i = cin.begin(); i != cin.end(); ++i) {
209                 /* Slightly grotty two-part construction of Cinema here so that we can use
210                    shared_from_this.
211                 */
212                 shared_ptr<Cinema> cinema (new Cinema (*i));
213                 cinema->read_screens (*i);
214                 _cinemas.push_back (cinema);
215         }
216
217         _mail_server = f.string_child ("MailServer");
218         _mail_port = f.optional_number_child<int> ("MailPort").get_value_or (25);
219         _mail_user = f.optional_string_child("MailUser").get_value_or ("");
220         _mail_password = f.optional_string_child("MailPassword").get_value_or ("");
221         _kdm_subject = f.optional_string_child ("KDMSubject").get_value_or (_("KDM delivery: $CPL_NAME"));
222         _kdm_from = f.string_child ("KDMFrom");
223         _kdm_cc = f.optional_string_child ("KDMCC").get_value_or ("");
224         _kdm_bcc = f.optional_string_child ("KDMBCC").get_value_or ("");
225         _kdm_email = f.string_child ("KDMEmail");
226
227         _check_for_updates = f.optional_bool_child("CheckForUpdates").get_value_or (false);
228         _check_for_test_updates = f.optional_bool_child("CheckForTestUpdates").get_value_or (false);
229
230         _maximum_j2k_bandwidth = f.optional_number_child<int> ("MaximumJ2KBandwidth").get_value_or (250000000);
231         _allow_any_dcp_frame_rate = f.optional_bool_child ("AllowAnyDCPFrameRate");
232
233         _log_types = f.optional_number_child<int> ("LogTypes").get_value_or (Log::TYPE_GENERAL | Log::TYPE_WARNING | Log::TYPE_ERROR);
234 #ifdef DCPOMATIC_WINDOWS
235         _win32_console = f.optional_bool_child ("Win32Console").get_value_or (false);
236 #endif
237
238         list<cxml::NodePtr> his = f.node_children ("History");
239         for (list<cxml::NodePtr>::const_iterator i = his.begin(); i != his.end(); ++i) {
240                 _history.push_back ((*i)->content ());
241         }
242
243         cxml::NodePtr signer = f.optional_node_child ("Signer");
244         if (signer) {
245                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
246                 /* Read the signing certificates and private key in from the config file */
247                 BOOST_FOREACH (cxml::NodePtr i, signer->node_children ("Certificate")) {
248                         c->add (dcp::Certificate (i->content ()));
249                 }
250                 c->set_key (signer->string_child ("PrivateKey"));
251                 _signer_chain = c;
252         } else {
253                 /* Make a new set of signing certificates and key */
254                 _signer_chain.reset (new dcp::CertificateChain (openssl_path ()));
255         }
256
257         cxml::NodePtr decryption = f.optional_node_child ("Decryption");
258         if (decryption) {
259                 shared_ptr<dcp::CertificateChain> c (new dcp::CertificateChain ());
260                 BOOST_FOREACH (cxml::NodePtr i, decryption->node_children ("Certificate")) {
261                         c->add (dcp::Certificate (i->content ()));
262                 }
263                 c->set_key (signer->string_child ("PrivateKey"));
264                 _decryption_chain = c;
265         } else {
266                 _decryption_chain.reset (new dcp::CertificateChain (openssl_path ()));
267         }
268 }
269
270 /** @return Filename to write configuration to */
271 boost::filesystem::path
272 Config::file (bool create_directories)
273 {
274         boost::filesystem::path p;
275 #ifdef DCPOMATIC_OSX
276         p /= g_get_home_dir ();
277         p /= "Library";
278         p /= "Preferences";
279         p /= "com.dcpomatic";
280         p /= "2";
281 #else
282         p /= g_get_user_config_dir ();
283         p /= "dcpomatic2";
284 #endif
285         boost::system::error_code ec;
286         if (create_directories) {
287                 boost::filesystem::create_directories (p, ec);
288         }
289         p /= "config.xml";
290         return p;
291 }
292
293 /** @return Singleton instance */
294 Config *
295 Config::instance ()
296 {
297         if (_instance == 0) {
298                 _instance = new Config;
299                 try {
300                         _instance->read ();
301                 } catch (exception& e) {
302                         /* configuration load failed; never mind, just
303                            stick with the default.
304                         */
305                         cerr << "dcpomatic: warning: configuration did not load (" << e.what() << "); using defaults\n";
306                 } catch (...) {
307                         cerr << "dcpomatic: warning: configuration did not load; using defaults\n";
308                 }
309         }
310
311         return _instance;
312 }
313
314 /** Write our configuration to disk */
315 void
316 Config::write () const
317 {
318         xmlpp::Document doc;
319         xmlpp::Element* root = doc.create_root_node ("Config");
320
321         root->add_child("Version")->add_child_text ("2");
322         root->add_child("NumLocalEncodingThreads")->add_child_text (raw_convert<string> (_num_local_encoding_threads));
323         root->add_child("DefaultDirectory")->add_child_text (_default_directory.string ());
324         root->add_child("ServerPortBase")->add_child_text (raw_convert<string> (_server_port_base));
325         root->add_child("UseAnyServers")->add_child_text (_use_any_servers ? "1" : "0");
326
327         for (vector<string>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
328                 root->add_child("Server")->add_child_text (*i);
329         }
330
331         root->add_child("OnlyServersEncode")->add_child_text (_only_servers_encode ? "1" : "0");
332         root->add_child("TMSProtocol")->add_child_text (raw_convert<string> (_tms_protocol));
333         root->add_child("TMSIP")->add_child_text (_tms_ip);
334         root->add_child("TMSPath")->add_child_text (_tms_path);
335         root->add_child("TMSUser")->add_child_text (_tms_user);
336         root->add_child("TMSPassword")->add_child_text (_tms_password);
337         if (_cinema_sound_processor) {
338                 root->add_child("CinemaSoundProcessor")->add_child_text (_cinema_sound_processor->id ());
339         }
340         if (_language) {
341                 root->add_child("Language")->add_child_text (_language.get());
342         }
343         if (_default_container) {
344                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
345         }
346         if (_default_dcp_content_type) {
347                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->isdcf_name ());
348         }
349         root->add_child("DCPIssuer")->add_child_text (_dcp_issuer);
350         root->add_child("DCPCreator")->add_child_text (_dcp_creator);
351
352         _default_isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
353
354         root->add_child("DefaultStillLength")->add_child_text (raw_convert<string> (_default_still_length));
355         root->add_child("DefaultJ2KBandwidth")->add_child_text (raw_convert<string> (_default_j2k_bandwidth));
356         root->add_child("DefaultAudioDelay")->add_child_text (raw_convert<string> (_default_audio_delay));
357
358         for (list<shared_ptr<Cinema> >::const_iterator i = _cinemas.begin(); i != _cinemas.end(); ++i) {
359                 (*i)->as_xml (root->add_child ("Cinema"));
360         }
361
362         root->add_child("MailServer")->add_child_text (_mail_server);
363         root->add_child("MailPort")->add_child_text (raw_convert<string> (_mail_port));
364         root->add_child("MailUser")->add_child_text (_mail_user);
365         root->add_child("MailPassword")->add_child_text (_mail_password);
366         root->add_child("KDMSubject")->add_child_text (_kdm_subject);
367         root->add_child("KDMFrom")->add_child_text (_kdm_from);
368         root->add_child("KDMCC")->add_child_text (_kdm_cc);
369         root->add_child("KDMBCC")->add_child_text (_kdm_bcc);
370         root->add_child("KDMEmail")->add_child_text (_kdm_email);
371
372         root->add_child("CheckForUpdates")->add_child_text (_check_for_updates ? "1" : "0");
373         root->add_child("CheckForTestUpdates")->add_child_text (_check_for_test_updates ? "1" : "0");
374
375         root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
376         root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
377         root->add_child("LogTypes")->add_child_text (raw_convert<string> (_log_types));
378 #ifdef DCPOMATIC_WINDOWS
379         root->add_child("Win32Console")->add_child_text (_win32_console ? "1" : "0");
380 #endif
381
382         xmlpp::Element* signer = root->add_child ("Signer");
383         BOOST_FOREACH (dcp::Certificate const & i, _signer_chain->root_to_leaf ()) {
384                 signer->add_child("Certificate")->add_child_text (i.certificate (true));
385         }
386         signer->add_child("PrivateKey")->add_child_text (_signer_chain->key().get ());
387
388         xmlpp::Element* decryption = root->add_child ("Decryption");
389         BOOST_FOREACH (dcp::Certificate const & i, _decryption_chain->root_to_leaf ()) {
390                 decryption->add_child("Certificate")->add_child_text (i.certificate (true));
391         }
392         decryption->add_child("PrivateKey")->add_child_text (_decryption_chain->key().get ());
393
394         for (vector<boost::filesystem::path>::const_iterator i = _history.begin(); i != _history.end(); ++i) {
395                 root->add_child("History")->add_child_text (i->string ());
396         }
397
398         try {
399                 doc.write_to_file_formatted (file().string ());
400         } catch (xmlpp::exception& e) {
401                 string s = e.what ();
402                 trim (s);
403                 throw FileError (s, file ());
404         }
405 }
406
407 boost::filesystem::path
408 Config::default_directory_or (boost::filesystem::path a) const
409 {
410         if (_default_directory.empty()) {
411                 return a;
412         }
413
414         boost::system::error_code ec;
415         bool const e = boost::filesystem::exists (_default_directory, ec);
416         if (ec || !e) {
417                 return a;
418         }
419
420         return _default_directory;
421 }
422
423 void
424 Config::drop ()
425 {
426         delete _instance;
427         _instance = 0;
428 }
429
430 void
431 Config::changed (Property what)
432 {
433         Changed (what);
434 }
435
436 void
437 Config::set_kdm_email_to_default ()
438 {
439         _kdm_email = _(
440                 "Dear Projectionist\n\n"
441                 "Please find attached KDMs for $CPL_NAME.\n\n"
442                 "Cinema: $CINEMA_NAME\n"
443                 "Screen(s): $SCREENS\n\n"
444                 "The KDMs are valid from $START_TIME until $END_TIME.\n\n"
445                 "Best regards,\nDCP-o-matic"
446                 );
447 }
448
449 void
450 Config::reset_kdm_email ()
451 {
452         set_kdm_email_to_default ();
453         changed ();
454 }
455
456 void
457 Config::add_to_history (boost::filesystem::path p)
458 {
459         /* Remove existing instances of this path in the history */
460         _history.erase (remove (_history.begin(), _history.end(), p), _history.end ());
461
462         _history.insert (_history.begin (), p);
463         if (_history.size() > HISTORY_SIZE) {
464                 _history.pop_back ();
465         }
466
467         changed ();
468 }
469
470 bool
471 Config::have_existing ()
472 {
473         return boost::filesystem::exists (file (false));
474 }