Merge master.
[dcpomatic.git] / src / lib / config.h
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 /** @file src/config.h
21  *  @brief Class holding configuration.
22  */
23
24 #ifndef DCPOMATIC_CONFIG_H
25 #define DCPOMATIC_CONFIG_H
26
27 #include <vector>
28 #include <boost/shared_ptr.hpp>
29 #include <boost/signals2.hpp>
30 #include <boost/filesystem.hpp>
31 #include <dcp/metadata.h>
32 #include "dci_metadata.h"
33 #include "colour_conversion.h"
34 #include "server.h"
35
36 class ServerDescription;
37 class Scaler;
38 class Filter;
39 class SoundProcessor;
40 class DCPContentType;
41 class Ratio;
42 class Cinema;
43
44 /** @class Config
45  *  @brief A singleton class holding configuration.
46  */
47 class Config : public boost::noncopyable
48 {
49 public:
50
51         /** @return number of threads to use for J2K encoding on the local machine */
52         int num_local_encoding_threads () const {
53                 return _num_local_encoding_threads;
54         }
55
56         boost::filesystem::path default_directory () const {
57                 return _default_directory;
58         }
59
60         boost::filesystem::path default_directory_or (boost::filesystem::path a) const;
61
62         /** @return base port number to use for J2K encoding servers */
63         int server_port_base () const {
64                 return _server_port_base;
65         }
66
67         void set_use_any_servers (bool u) {
68                 _use_any_servers = u;
69         }
70
71         bool use_any_servers () const {
72                 return _use_any_servers;
73         }
74
75         /** @param s New list of servers */
76         void set_servers (std::vector<std::string> s) {
77                 _servers = s;
78         }
79
80         /** @return Host names / IP addresses of J2K encoding servers that should definitely be used */
81         std::vector<std::string> servers () const {
82                 return _servers;
83         }
84
85         /** @return The IP address of a TMS that we can copy DCPs to */
86         std::string tms_ip () const {
87                 return _tms_ip;
88         }
89         
90         /** @return The path on a TMS that we should write DCPs to */
91         std::string tms_path () const {
92                 return _tms_path;
93         }
94
95         /** @return User name to log into the TMS with */
96         std::string tms_user () const {
97                 return _tms_user;
98         }
99
100         /** @return Password to log into the TMS with */
101         std::string tms_password () const {
102                 return _tms_password;
103         }
104
105         /** @return The sound processor that we are using */
106         SoundProcessor const * sound_processor () const {
107                 return _sound_processor;
108         }
109
110         std::list<boost::shared_ptr<Cinema> > cinemas () const {
111                 return _cinemas;
112         }
113         
114         std::list<int> allowed_dcp_frame_rates () const {
115                 return _allowed_dcp_frame_rates;
116         }
117         
118         DCIMetadata default_dci_metadata () const {
119                 return _default_dci_metadata;
120         }
121
122         boost::optional<std::string> language () const {
123                 return _language;
124         }
125
126         int default_still_length () const {
127                 return _default_still_length;
128         }
129
130         Ratio const * default_container () const {
131                 return _default_container;
132         }
133
134         DCPContentType const * default_dcp_content_type () const {
135                 return _default_dcp_content_type;
136         }
137
138         dcp::XMLMetadata dcp_metadata () const {
139                 return _dcp_metadata;
140         }
141
142         int default_j2k_bandwidth () const {
143                 return _default_j2k_bandwidth;
144         }
145
146         int default_audio_delay () const {
147                 return _default_audio_delay;
148         }
149
150         std::vector<PresetColourConversion> colour_conversions () const {
151                 return _colour_conversions;
152         }
153
154         std::string mail_server () const {
155                 return _mail_server;
156         }
157
158         std::string mail_user () const {
159                 return _mail_user;
160         }
161
162         std::string mail_password () const {
163                 return _mail_password;
164         }
165
166         std::string kdm_from () const {
167                 return _kdm_from;
168         }
169
170         std::string kdm_email () const {
171                 return _kdm_email;
172         }
173
174         bool check_for_updates () const {
175                 return _check_for_updates;
176         }
177
178         bool check_for_test_updates () const {
179                 return _check_for_test_updates;
180         }
181         
182         /** @param n New number of local encoding threads */
183         void set_num_local_encoding_threads (int n) {
184                 _num_local_encoding_threads = n;
185         }
186
187         void set_default_directory (boost::filesystem::path d) {
188                 _default_directory = d;
189         }
190
191         /** @param p New server port */
192         void set_server_port_base (int p) {
193                 _server_port_base = p;
194         }
195
196         /** @param i IP address of a TMS that we can copy DCPs to */
197         void set_tms_ip (std::string i) {
198                 _tms_ip = i;
199         }
200
201         /** @param p Path on a TMS that we should write DCPs to */
202         void set_tms_path (std::string p) {
203                 _tms_path = p;
204         }
205
206         /** @param u User name to log into the TMS with */
207         void set_tms_user (std::string u) {
208                 _tms_user = u;
209         }
210
211         /** @param p Password to log into the TMS with */
212         void set_tms_password (std::string p) {
213                 _tms_password = p;
214         }
215
216         void add_cinema (boost::shared_ptr<Cinema> c) {
217                 _cinemas.push_back (c);
218         }
219
220         void remove_cinema (boost::shared_ptr<Cinema> c) {
221                 _cinemas.remove (c);
222         }
223
224         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
225                 _allowed_dcp_frame_rates = r;
226         }
227
228         void set_default_dci_metadata (DCIMetadata d) {
229                 _default_dci_metadata = d;
230         }
231
232         void set_language (std::string l) {
233                 _language = l;
234         }
235
236         void unset_language () {
237                 _language = boost::none;
238         }
239
240         void set_default_still_length (int s) {
241                 _default_still_length = s;
242         }
243
244         void set_default_container (Ratio const * c) {
245                 _default_container = c;
246         }
247
248         void set_default_dcp_content_type (DCPContentType const * t) {
249                 _default_dcp_content_type = t;
250         }
251
252         void set_dcp_metadata (dcp::XMLMetadata m) {
253                 _dcp_metadata = m;
254         }
255
256         void set_default_j2k_bandwidth (int b) {
257                 _default_j2k_bandwidth = b;
258         }
259
260         void set_default_audio_delay (int d) {
261                 _default_audio_delay = d;
262         }
263
264         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
265                 _colour_conversions = c;
266         }
267
268         void set_mail_server (std::string s) {
269                 _mail_server = s;
270         }
271
272         void set_mail_user (std::string u) {
273                 _mail_user = u;
274         }
275
276         void set_mail_password (std::string p) {
277                 _mail_password = p;
278         }
279
280         void set_kdm_from (std::string f) {
281                 _kdm_from = f;
282         }
283
284         void set_kdm_email (std::string e) {
285                 _kdm_email = e;
286         }
287
288         void set_check_for_updates (bool c) {
289                 _check_for_updates = c;
290         }
291
292         void set_check_for_test_updates (bool c) {
293                 _check_for_test_updates = c;
294         }
295         
296         void write () const;
297
298         boost::filesystem::path signer_chain_directory () const;
299
300         static Config* instance ();
301         static void drop ();
302
303 private:
304         Config ();
305         boost::filesystem::path file (bool) const;
306         void read ();
307         void read_old_metadata ();
308
309         /** number of threads to use for J2K encoding on the local machine */
310         int _num_local_encoding_threads;
311         /** default directory to put new films in */
312         boost::filesystem::path _default_directory;
313         /** base port number to use for J2K encoding servers;
314          *  this port and the one above it will be used.
315          */
316         int _server_port_base;
317         /** true to broadcast on the `any' address to look for servers */
318         bool _use_any_servers;
319         /** J2K encoding servers that should definitely be used */
320         std::vector<std::string> _servers;
321         /** The IP address of a TMS that we can copy DCPs to */
322         std::string _tms_ip;
323         /** The path on a TMS that we should write DCPs to */
324         std::string _tms_path;
325         /** User name to log into the TMS with */
326         std::string _tms_user;
327         /** Password to log into the TMS with */
328         std::string _tms_password;
329         /** Our sound processor */
330         SoundProcessor const * _sound_processor;
331         std::list<int> _allowed_dcp_frame_rates;
332         /** Default DCI metadata for newly-created Films */
333         DCIMetadata _default_dci_metadata;
334         boost::optional<std::string> _language;
335         int _default_still_length;
336         Ratio const * _default_container;
337         DCPContentType const * _default_dcp_content_type;
338         dcp::XMLMetadata _dcp_metadata;
339         int _default_j2k_bandwidth;
340         int _default_audio_delay;
341         std::vector<PresetColourConversion> _colour_conversions;
342         std::list<boost::shared_ptr<Cinema> > _cinemas;
343         std::string _mail_server;
344         std::string _mail_user;
345         std::string _mail_password;
346         std::string _kdm_from;
347         std::string _kdm_email;
348         /** true to check for updates on startup */
349         bool _check_for_updates;
350         bool _check_for_test_updates;
351
352         /** Singleton instance, or 0 */
353         static Config* _instance;
354 };
355
356 #endif