Include tidying src/lib/a-j*.h
[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 ()
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         boost::filesystem::create_directories (p, ec);
287         p /= "config.xml";
288         return p;
289 }
290
291 /** @return Singleton instance */
292 Config *
293 Config::instance ()
294 {
295         if (_instance == 0) {
296                 _instance = new Config;
297                 try {
298                         _instance->read ();
299                 } catch (exception& e) {
300                         /* configuration load failed; never mind, just
301                            stick with the default.
302                         */
303                         cerr << "dcpomatic: warning: configuration did not load (" << e.what() << "); using defaults\n";
304                 } catch (...) {
305                         cerr << "dcpomatic: warning: configuration did not load; using defaults\n";
306                 }
307         }
308
309         return _instance;
310 }
311
312 /** Write our configuration to disk */
313 void
314 Config::write () const
315 {
316         xmlpp::Document doc;
317         xmlpp::Element* root = doc.create_root_node ("Config");
318
319         root->add_child("Version")->add_child_text ("2");
320         root->add_child("NumLocalEncodingThreads")->add_child_text (raw_convert<string> (_num_local_encoding_threads));
321         root->add_child("DefaultDirectory")->add_child_text (_default_directory.string ());
322         root->add_child("ServerPortBase")->add_child_text (raw_convert<string> (_server_port_base));
323         root->add_child("UseAnyServers")->add_child_text (_use_any_servers ? "1" : "0");
324
325         for (vector<string>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
326                 root->add_child("Server")->add_child_text (*i);
327         }
328
329         root->add_child("OnlyServersEncode")->add_child_text (_only_servers_encode ? "1" : "0");
330         root->add_child("TMSProtocol")->add_child_text (raw_convert<string> (_tms_protocol));
331         root->add_child("TMSIP")->add_child_text (_tms_ip);
332         root->add_child("TMSPath")->add_child_text (_tms_path);
333         root->add_child("TMSUser")->add_child_text (_tms_user);
334         root->add_child("TMSPassword")->add_child_text (_tms_password);
335         if (_cinema_sound_processor) {
336                 root->add_child("CinemaSoundProcessor")->add_child_text (_cinema_sound_processor->id ());
337         }
338         if (_language) {
339                 root->add_child("Language")->add_child_text (_language.get());
340         }
341         if (_default_container) {
342                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
343         }
344         if (_default_dcp_content_type) {
345                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->isdcf_name ());
346         }
347         root->add_child("DCPIssuer")->add_child_text (_dcp_issuer);
348         root->add_child("DCPCreator")->add_child_text (_dcp_creator);
349
350         _default_isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
351
352         root->add_child("DefaultStillLength")->add_child_text (raw_convert<string> (_default_still_length));
353         root->add_child("DefaultJ2KBandwidth")->add_child_text (raw_convert<string> (_default_j2k_bandwidth));
354         root->add_child("DefaultAudioDelay")->add_child_text (raw_convert<string> (_default_audio_delay));
355
356         for (list<shared_ptr<Cinema> >::const_iterator i = _cinemas.begin(); i != _cinemas.end(); ++i) {
357                 (*i)->as_xml (root->add_child ("Cinema"));
358         }
359
360         root->add_child("MailServer")->add_child_text (_mail_server);
361         root->add_child("MailPort")->add_child_text (raw_convert<string> (_mail_port));
362         root->add_child("MailUser")->add_child_text (_mail_user);
363         root->add_child("MailPassword")->add_child_text (_mail_password);
364         root->add_child("KDMSubject")->add_child_text (_kdm_subject);
365         root->add_child("KDMFrom")->add_child_text (_kdm_from);
366         root->add_child("KDMCC")->add_child_text (_kdm_cc);
367         root->add_child("KDMBCC")->add_child_text (_kdm_bcc);
368         root->add_child("KDMEmail")->add_child_text (_kdm_email);
369
370         root->add_child("CheckForUpdates")->add_child_text (_check_for_updates ? "1" : "0");
371         root->add_child("CheckForTestUpdates")->add_child_text (_check_for_test_updates ? "1" : "0");
372
373         root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
374         root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
375         root->add_child("LogTypes")->add_child_text (raw_convert<string> (_log_types));
376 #ifdef DCPOMATIC_WINDOWS
377         root->add_child("Win32Console")->add_child_text (_win32_console ? "1" : "0");
378 #endif
379
380         xmlpp::Element* signer = root->add_child ("Signer");
381         BOOST_FOREACH (dcp::Certificate const & i, _signer_chain->root_to_leaf ()) {
382                 signer->add_child("Certificate")->add_child_text (i.certificate (true));
383         }
384         signer->add_child("PrivateKey")->add_child_text (_signer_chain->key().get ());
385
386         xmlpp::Element* decryption = root->add_child ("Decryption");
387         BOOST_FOREACH (dcp::Certificate const & i, _decryption_chain->root_to_leaf ()) {
388                 decryption->add_child("Certificate")->add_child_text (i.certificate (true));
389         }
390         decryption->add_child("PrivateKey")->add_child_text (_decryption_chain->key().get ());
391
392         for (vector<boost::filesystem::path>::const_iterator i = _history.begin(); i != _history.end(); ++i) {
393                 root->add_child("History")->add_child_text (i->string ());
394         }
395
396         try {
397                 doc.write_to_file_formatted (file().string ());
398         } catch (xmlpp::exception& e) {
399                 string s = e.what ();
400                 trim (s);
401                 throw FileError (s, file ());
402         }
403 }
404
405 boost::filesystem::path
406 Config::default_directory_or (boost::filesystem::path a) const
407 {
408         if (_default_directory.empty()) {
409                 return a;
410         }
411
412         boost::system::error_code ec;
413         bool const e = boost::filesystem::exists (_default_directory, ec);
414         if (ec || !e) {
415                 return a;
416         }
417
418         return _default_directory;
419 }
420
421 void
422 Config::drop ()
423 {
424         delete _instance;
425         _instance = 0;
426 }
427
428 void
429 Config::changed (Property what)
430 {
431         Changed (what);
432 }
433
434 void
435 Config::set_kdm_email_to_default ()
436 {
437         _kdm_email = _(
438                 "Dear Projectionist\n\n"
439                 "Please find attached KDMs for $CPL_NAME.\n\n"
440                 "Cinema: $CINEMA_NAME\n"
441                 "Screen(s): $SCREENS\n\n"
442                 "The KDMs are valid from $START_TIME until $END_TIME.\n\n"
443                 "Best regards,\nDCP-o-matic"
444                 );
445 }
446
447 void
448 Config::reset_kdm_email ()
449 {
450         set_kdm_email_to_default ();
451         changed ();
452 }
453
454 void
455 Config::add_to_history (boost::filesystem::path p)
456 {
457         /* Remove existing instances of this path in the history */
458         _history.erase (remove (_history.begin(), _history.end(), p), _history.end ());
459
460         _history.insert (_history.begin (), p);
461         if (_history.size() > HISTORY_SIZE) {
462                 _history.pop_back ();
463         }
464
465         changed ();
466 }
467
468 bool
469 Config::have_existing ()
470 {
471         return boost::filesystem::exists (file ());
472 }