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