Merge branch '1.0' into kdms
[dcpomatic.git] / src / lib / config.cc
1 /*
2     Copyright (C) 2012 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 <sstream>
21 #include <cstdlib>
22 #include <fstream>
23 #include <glib.h>
24 #include <boost/filesystem.hpp>
25 #include <libdcp/colour_matrix.h>
26 #include <libcxml/cxml.h>
27 #include "config.h"
28 #include "server.h"
29 #include "scaler.h"
30 #include "filter.h"
31 #include "ratio.h"
32 #include "dcp_content_type.h"
33 #include "sound_processor.h"
34 #include "colour_conversion.h"
35 #include "cinema.h"
36
37 #include "i18n.h"
38
39 using std::vector;
40 using std::ifstream;
41 using std::string;
42 using std::ofstream;
43 using std::list;
44 using std::max;
45 using boost::shared_ptr;
46 using boost::lexical_cast;
47 using boost::optional;
48
49 Config* Config::_instance = 0;
50
51 /** Construct default configuration */
52 Config::Config ()
53         : _num_local_encoding_threads (max (2U, boost::thread::hardware_concurrency()))
54         , _server_port (6192)
55         , _tms_path (N_("."))
56         , _sound_processor (SoundProcessor::from_id (N_("dolby_cp750")))
57         , _default_still_length (10)
58         , _default_container (Ratio::from_id ("185"))
59         , _default_dcp_content_type (DCPContentType::from_dci_name ("TST"))
60         , _default_j2k_bandwidth (200000000)
61 {
62         _allowed_dcp_frame_rates.push_back (24);
63         _allowed_dcp_frame_rates.push_back (25);
64         _allowed_dcp_frame_rates.push_back (30);
65         _allowed_dcp_frame_rates.push_back (48);
66         _allowed_dcp_frame_rates.push_back (50);
67         _allowed_dcp_frame_rates.push_back (60);
68
69         _colour_conversions.push_back (PresetColourConversion (_("sRGB"), 2.4, true, libdcp::colour_matrix::srgb_to_xyz, 2.6));
70         _colour_conversions.push_back (PresetColourConversion (_("sRGB non-linearised"), 2.4, false, libdcp::colour_matrix::srgb_to_xyz, 2.6));
71 }
72
73 void
74 Config::read ()
75 {
76         if (!boost::filesystem::exists (file (false))) {
77                 read_old_metadata ();
78                 return;
79         }
80
81         cxml::Document f ("Config");
82         f.read_file (file (false));
83         optional<string> c;
84
85         _num_local_encoding_threads = f.number_child<int> ("NumLocalEncodingThreads");
86         _default_directory = f.string_child ("DefaultDirectory");
87         _server_port = f.number_child<int> ("ServerPort");
88         
89         list<shared_ptr<cxml::Node> > servers = f.node_children ("Server");
90         for (list<shared_ptr<cxml::Node> >::iterator i = servers.begin(); i != servers.end(); ++i) {
91                 _servers.push_back (ServerDescription (*i));
92         }
93
94         _tms_ip = f.string_child ("TMSIP");
95         _tms_path = f.string_child ("TMSPath");
96         _tms_user = f.string_child ("TMSUser");
97         _tms_password = f.string_child ("TMSPassword");
98
99         c = f.optional_string_child ("SoundProcessor");
100         if (c) {
101                 _sound_processor = SoundProcessor::from_id (c.get ());
102         }
103
104         _language = f.optional_string_child ("Language");
105
106         c = f.optional_string_child ("DefaultContainer");
107         if (c) {
108                 _default_container = Ratio::from_id (c.get ());
109         }
110
111         c = f.optional_string_child ("DefaultDCPContentType");
112         if (c) {
113                 _default_dcp_content_type = DCPContentType::from_dci_name (c.get ());
114         }
115
116         _dcp_metadata.issuer = f.optional_string_child ("DCPMetadataIssuer").get_value_or ("");
117         _dcp_metadata.creator = f.optional_string_child ("DCPMetadataCreator").get_value_or ("");
118
119         _default_dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
120         _default_still_length = f.optional_number_child<int>("DefaultStillLength").get_value_or (10);
121         _default_j2k_bandwidth = f.optional_number_child<int>("DefaultJ2KBandwidth").get_value_or (200000000);
122
123         list<shared_ptr<cxml::Node> > cc = f.node_children ("ColourConversion");
124
125         if (!cc.empty ()) {
126                 _colour_conversions.clear ();
127         }
128         
129         for (list<shared_ptr<cxml::Node> >::iterator i = cc.begin(); i != cc.end(); ++i) {
130                 _colour_conversions.push_back (PresetColourConversion (*i));
131         }
132
133         list<shared_ptr<cxml::Node> > cin = f.node_children ("Cinema");
134         for (list<shared_ptr<cxml::Node> >::iterator i = cin.begin(); i != cin.end(); ++i) {
135                 _cinemas.push_back (shared_ptr<Cinema> (new Cinema (*i)));
136         }
137 }
138
139 void
140 Config::read_old_metadata ()
141 {
142         ifstream f (file(true).c_str ());
143         string line;
144
145         while (getline (f, line)) {
146                 if (line.empty ()) {
147                         continue;
148                 }
149
150                 if (line[0] == '#') {
151                         continue;
152                 }
153
154                 size_t const s = line.find (' ');
155                 if (s == string::npos) {
156                         continue;
157                 }
158                 
159                 string const k = line.substr (0, s);
160                 string const v = line.substr (s + 1);
161
162                 if (k == N_("num_local_encoding_threads")) {
163                         _num_local_encoding_threads = atoi (v.c_str ());
164                 } else if (k == N_("default_directory")) {
165                         _default_directory = v;
166                 } else if (k == N_("server_port")) {
167                         _server_port = atoi (v.c_str ());
168                 } else if (k == N_("server")) {
169                         optional<ServerDescription> server = ServerDescription::create_from_metadata (v);
170                         if (server) {
171                                 _servers.push_back (server.get ());
172                         }
173                 } else if (k == N_("tms_ip")) {
174                         _tms_ip = v;
175                 } else if (k == N_("tms_path")) {
176                         _tms_path = v;
177                 } else if (k == N_("tms_user")) {
178                         _tms_user = v;
179                 } else if (k == N_("tms_password")) {
180                         _tms_password = v;
181                 } else if (k == N_("sound_processor")) {
182                         _sound_processor = SoundProcessor::from_id (v);
183                 } else if (k == "language") {
184                         _language = v;
185                 } else if (k == "default_container") {
186                         _default_container = Ratio::from_id (v);
187                 } else if (k == "default_dcp_content_type") {
188                         _default_dcp_content_type = DCPContentType::from_dci_name (v);
189                 } else if (k == "dcp_metadata_issuer") {
190                         _dcp_metadata.issuer = v;
191                 } else if (k == "dcp_metadata_creator") {
192                         _dcp_metadata.creator = v;
193                 } else if (k == "dcp_metadata_issue_date") {
194                         _dcp_metadata.issue_date = v;
195                 }
196
197                 _default_dci_metadata.read_old_metadata (k, v);
198         }
199 }
200
201 /** @return Filename to write configuration to */
202 boost::filesystem::path
203 Config::file (bool old) const
204 {
205         boost::filesystem::path p;
206         p /= g_get_user_config_dir ();
207         boost::system::error_code ec;
208         boost::filesystem::create_directory (p, ec);
209         if (old) {
210                 p /= ".dvdomatic";
211         } else {
212                 p /= "dcpomatic.xml";
213         }
214         return p;
215 }
216
217 boost::filesystem::path
218 Config::signer_chain_directory () const
219 {
220         boost::filesystem::path p;
221         p /= g_get_user_config_dir ();
222         p /= "dvdomatic";
223         p /= "crypt";
224         boost::filesystem::create_directories (p);
225         return p;
226 }
227
228 /** @return Singleton instance */
229 Config *
230 Config::instance ()
231 {
232         if (_instance == 0) {
233                 _instance = new Config;
234                 try {
235                         _instance->read ();
236                 } catch (...) {
237                         /* configuration load failed; never mind, just
238                            stick with the default.
239                         */
240                 }
241         }
242
243         return _instance;
244 }
245
246 /** Write our configuration to disk */
247 void
248 Config::write () const
249 {
250         xmlpp::Document doc;
251         xmlpp::Element* root = doc.create_root_node ("Config");
252
253         root->add_child("NumLocalEncodingThreads")->add_child_text (lexical_cast<string> (_num_local_encoding_threads));
254         root->add_child("DefaultDirectory")->add_child_text (_default_directory.string ());
255         root->add_child("ServerPort")->add_child_text (lexical_cast<string> (_server_port));
256         
257         for (vector<ServerDescription>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
258                 i->as_xml (root->add_child ("Server"));
259         }
260
261         root->add_child("TMSIP")->add_child_text (_tms_ip);
262         root->add_child("TMSPath")->add_child_text (_tms_path);
263         root->add_child("TMSUser")->add_child_text (_tms_user);
264         root->add_child("TMSPassword")->add_child_text (_tms_password);
265         if (_sound_processor) {
266                 root->add_child("SoundProcessor")->add_child_text (_sound_processor->id ());
267         }
268         if (_language) {
269                 root->add_child("Language")->add_child_text (_language.get());
270         }
271         if (_default_container) {
272                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
273         }
274         if (_default_dcp_content_type) {
275                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->dci_name ());
276         }
277         root->add_child("DCPMetadataIssuer")->add_child_text (_dcp_metadata.issuer);
278         root->add_child("DCPMetadataCreator")->add_child_text (_dcp_metadata.creator);
279
280         _default_dci_metadata.as_xml (root->add_child ("DCIMetadata"));
281
282         root->add_child("DefaultStillLength")->add_child_text (lexical_cast<string> (_default_still_length));
283         root->add_child("DefaultJ2KBandwidth")->add_child_text (lexical_cast<string> (_default_j2k_bandwidth));
284
285         for (vector<PresetColourConversion>::const_iterator i = _colour_conversions.begin(); i != _colour_conversions.end(); ++i) {
286                 i->as_xml (root->add_child ("ColourConversion"));
287         }
288
289         for (list<shared_ptr<Cinema> >::const_iterator i = _cinemas.begin(); i != _cinemas.end(); ++i) {
290                 (*i)->as_xml (root->add_child ("Cinema"));
291         }
292
293         doc.write_to_file_formatted (file(false).string ());
294 }
295
296 boost::filesystem::path
297 Config::default_directory_or (boost::filesystem::path a) const
298 {
299         if (_default_directory.empty() || !boost::filesystem::exists (_default_directory)) {
300                 return a;
301         }
302
303         return _default_directory;
304 }
305
306 void
307 Config::drop ()
308 {
309         delete _instance;
310         _instance = 0;
311 }