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