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