Bump version
[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         while (getline (f, line)) {
139                 if (line.empty ()) {
140                         continue;
141                 }
142
143                 if (line[0] == '#') {
144                         continue;
145                 }
146
147                 size_t const s = line.find (' ');
148                 if (s == string::npos) {
149                         continue;
150                 }
151                 
152                 string const k = line.substr (0, s);
153                 string const v = line.substr (s + 1);
154
155                 if (k == N_("num_local_encoding_threads")) {
156                         _num_local_encoding_threads = atoi (v.c_str ());
157                 } else if (k == N_("default_directory")) {
158                         _default_directory = v;
159                 } else if (k == N_("server_port")) {
160                         _server_port = atoi (v.c_str ());
161                 } else if (k == N_("server")) {
162                         optional<ServerDescription> server = ServerDescription::create_from_metadata (v);
163                         if (server) {
164                                 _servers.push_back (server.get ());
165                         }
166                 } else if (k == N_("tms_ip")) {
167                         _tms_ip = v;
168                 } else if (k == N_("tms_path")) {
169                         _tms_path = v;
170                 } else if (k == N_("tms_user")) {
171                         _tms_user = v;
172                 } else if (k == N_("tms_password")) {
173                         _tms_password = v;
174                 } else if (k == N_("sound_processor")) {
175                         _sound_processor = SoundProcessor::from_id (v);
176                 } else if (k == "language") {
177                         _language = v;
178                 } else if (k == "default_container") {
179                         _default_container = Ratio::from_id (v);
180                 } else if (k == "default_dcp_content_type") {
181                         _default_dcp_content_type = DCPContentType::from_dci_name (v);
182                 } else if (k == "dcp_metadata_issuer") {
183                         _dcp_metadata.issuer = v;
184                 } else if (k == "dcp_metadata_creator") {
185                         _dcp_metadata.creator = v;
186                 } else if (k == "dcp_metadata_issue_date") {
187                         _dcp_metadata.issue_date = v;
188                 }
189
190                 _default_dci_metadata.read_old_metadata (k, v);
191         }
192 }
193
194 /** @return Filename to write configuration to */
195 string
196 Config::file (bool old) const
197 {
198         boost::filesystem::path p;
199         p /= g_get_user_config_dir ();
200         boost::system::error_code ec;
201         boost::filesystem::create_directory (p, ec);
202         if (old) {
203                 p /= ".dvdomatic";
204         } else {
205                 p /= "dcpomatic.xml";
206         }
207         return p.string ();
208 }
209
210 /** @return Singleton instance */
211 Config *
212 Config::instance ()
213 {
214         if (_instance == 0) {
215                 _instance = new Config;
216                 try {
217                         _instance->read ();
218                 } catch (...) {
219                         /* configuration load failed; never mind, just
220                            stick with the default.
221                         */
222                 }
223         }
224
225         return _instance;
226 }
227
228 /** Write our configuration to disk */
229 void
230 Config::write () const
231 {
232         xmlpp::Document doc;
233         xmlpp::Element* root = doc.create_root_node ("Config");
234
235         root->add_child("NumLocalEncodingThreads")->add_child_text (lexical_cast<string> (_num_local_encoding_threads));
236         root->add_child("DefaultDirectory")->add_child_text (_default_directory);
237         root->add_child("ServerPort")->add_child_text (lexical_cast<string> (_server_port));
238         
239         for (vector<ServerDescription>::const_iterator i = _servers.begin(); i != _servers.end(); ++i) {
240                 i->as_xml (root->add_child ("Server"));
241         }
242
243         root->add_child("TMSIP")->add_child_text (_tms_ip);
244         root->add_child("TMSPath")->add_child_text (_tms_path);
245         root->add_child("TMSUser")->add_child_text (_tms_user);
246         root->add_child("TMSPassword")->add_child_text (_tms_password);
247         if (_sound_processor) {
248                 root->add_child("SoundProcessor")->add_child_text (_sound_processor->id ());
249         }
250         if (_language) {
251                 root->add_child("Language")->add_child_text (_language.get());
252         }
253         if (_default_container) {
254                 root->add_child("DefaultContainer")->add_child_text (_default_container->id ());
255         }
256         if (_default_dcp_content_type) {
257                 root->add_child("DefaultDCPContentType")->add_child_text (_default_dcp_content_type->dci_name ());
258         }
259         root->add_child("DCPMetadataIssuer")->add_child_text (_dcp_metadata.issuer);
260         root->add_child("DCPMetadataCreator")->add_child_text (_dcp_metadata.creator);
261
262         _default_dci_metadata.as_xml (root->add_child ("DCIMetadata"));
263
264         root->add_child("DefaultStillLength")->add_child_text (lexical_cast<string> (_default_still_length));
265         root->add_child("DefaultJ2KBandwidth")->add_child_text (lexical_cast<string> (_default_j2k_bandwidth));
266
267         for (vector<PresetColourConversion>::const_iterator i = _colour_conversions.begin(); i != _colour_conversions.end(); ++i) {
268                 i->as_xml (root->add_child ("ColourConversion"));
269         }
270
271         doc.write_to_file_formatted (file (false));
272 }
273
274 string
275 Config::default_directory_or (string a) const
276 {
277         if (_default_directory.empty() || !boost::filesystem::exists (_default_directory)) {
278                 return a;
279         }
280
281         return _default_directory;
282 }
283
284 void
285 Config::drop ()
286 {
287         delete _instance;
288         _instance = 0;
289 }