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