Try to fix crash on exit with the preferences dialog open (only appears on OS X).
[dcpomatic.git] / src / lib / config.h
1 /*
2     Copyright (C) 2012-2014 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 "isdcf_metadata.h"
32 #include "colour_conversion.h"
33 #include "server.h"
34 #include "video_content.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                 changed ();
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                 changed ();
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 changed 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         bool allow_any_dcp_frame_rate () const {
121                 return _allow_any_dcp_frame_rate;
122         }
123         
124         ISDCFMetadata default_isdcf_metadata () const {
125                 return _default_isdcf_metadata;
126         }
127
128         boost::optional<std::string> language () const {
129                 return _language;
130         }
131
132         int default_still_length () const {
133                 return _default_still_length;
134         }
135
136         VideoContentScale default_scale () const {
137                 return _default_scale;
138         }
139
140         Ratio const * default_container () const {
141                 return _default_container;
142         }
143
144         DCPContentType const * default_dcp_content_type () const {
145                 return _default_dcp_content_type;
146         }
147
148         std::string dcp_issuer () const {
149                 return _dcp_issuer;
150         }
151
152         int default_j2k_bandwidth () const {
153                 return _default_j2k_bandwidth;
154         }
155
156         int default_audio_delay () const {
157                 return _default_audio_delay;
158         }
159
160         std::vector<PresetColourConversion> colour_conversions () const {
161                 return _colour_conversions;
162         }
163
164         std::string mail_server () const {
165                 return _mail_server;
166         }
167
168         std::string mail_user () const {
169                 return _mail_user;
170         }
171
172         std::string mail_password () const {
173                 return _mail_password;
174         }
175
176         std::string kdm_subject () const {
177                 return _kdm_subject;
178         }
179
180         std::string kdm_from () const {
181                 return _kdm_from;
182         }
183
184         std::string kdm_cc () const {
185                 return _kdm_cc;
186         }
187
188         std::string kdm_bcc () const {
189                 return _kdm_bcc;
190         }
191         
192         std::string kdm_email () const {
193                 return _kdm_email;
194         }
195
196         bool check_for_updates () const {
197                 return _check_for_updates;
198         }
199
200         bool check_for_test_updates () const {
201                 return _check_for_test_updates;
202         }
203
204         int maximum_j2k_bandwidth () const {
205                 return _maximum_j2k_bandwidth;
206         }
207
208         int log_types () const {
209                 return _log_types;
210         }
211
212         std::vector<boost::filesystem::path> history () const {
213                 return _history;
214         }
215
216         /** @param n New number of local encoding threads */
217         void set_num_local_encoding_threads (int n) {
218                 _num_local_encoding_threads = n;
219                 changed ();
220         }
221
222         void set_default_directory (boost::filesystem::path d) {
223                 _default_directory = d;
224                 changed ();
225         }
226
227         /** @param p New server port */
228         void set_server_port_base (int p) {
229                 _server_port_base = p;
230                 changed ();
231         }
232
233         /** @param i IP address of a TMS that we can copy DCPs to */
234         void set_tms_ip (std::string i) {
235                 _tms_ip = i;
236                 changed ();
237         }
238
239         /** @param p Path on a TMS that we should changed DCPs to */
240         void set_tms_path (std::string p) {
241                 _tms_path = p;
242                 changed ();
243         }
244
245         /** @param u User name to log into the TMS with */
246         void set_tms_user (std::string u) {
247                 _tms_user = u;
248                 changed ();
249         }
250
251         /** @param p Password to log into the TMS with */
252         void set_tms_password (std::string p) {
253                 _tms_password = p;
254                 changed ();
255         }
256
257         void add_cinema (boost::shared_ptr<Cinema> c) {
258                 _cinemas.push_back (c);
259                 changed ();
260         }
261
262         void remove_cinema (boost::shared_ptr<Cinema> c) {
263                 _cinemas.remove (c);
264                 changed ();
265         }
266
267         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
268                 _allowed_dcp_frame_rates = r;
269                 changed ();
270         }
271
272         void set_allow_any_dcp_frame_rate (bool a) {
273                 _allow_any_dcp_frame_rate = a;
274                 changed ();
275         }
276
277         void set_default_isdcf_metadata (ISDCFMetadata d) {
278                 _default_isdcf_metadata = d;
279                 changed ();
280         }
281
282         void set_language (std::string l) {
283                 _language = l;
284                 changed ();
285         }
286
287         void unset_language () {
288                 _language = boost::none;
289                 changed ();
290         }
291
292         void set_default_still_length (int s) {
293                 _default_still_length = s;
294                 changed ();
295         }
296
297         void set_default_scale (VideoContentScale s) {
298                 _default_scale = s;
299                 changed ();
300         }
301
302         void set_default_container (Ratio const * c) {
303                 _default_container = c;
304                 changed ();
305         }
306
307         void set_default_dcp_content_type (DCPContentType const * t) {
308                 _default_dcp_content_type = t;
309                 changed ();
310         }
311
312         void set_dcp_issuer (std::string i) {
313                 _dcp_issuer = i;
314                 changed ();
315         }
316
317         void set_default_j2k_bandwidth (int b) {
318                 _default_j2k_bandwidth = b;
319                 changed ();
320         }
321
322         void set_default_audio_delay (int d) {
323                 _default_audio_delay = d;
324                 changed ();
325         }
326
327         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
328                 _colour_conversions = c;
329                 changed ();
330         }
331
332         void set_mail_server (std::string s) {
333                 _mail_server = s;
334                 changed ();
335         }
336
337         void set_mail_user (std::string u) {
338                 _mail_user = u;
339                 changed ();
340         }
341
342         void set_mail_password (std::string p) {
343                 _mail_password = p;
344                 changed ();
345         }
346
347         void set_kdm_subject (std::string s) {
348                 _kdm_subject = s;
349                 changed ();
350         }
351
352         void set_kdm_from (std::string f) {
353                 _kdm_from = f;
354                 changed ();
355         }
356
357         void set_kdm_cc (std::string f) {
358                 _kdm_cc = f;
359                 changed ();
360         }
361
362         void set_kdm_bcc (std::string f) {
363                 _kdm_bcc = f;
364                 changed ();
365         }
366         
367         void set_kdm_email (std::string e) {
368                 _kdm_email = e;
369                 changed ();
370         }
371
372         void reset_kdm_email ();
373
374         void set_check_for_updates (bool c) {
375                 _check_for_updates = c;
376                 changed ();
377         }
378
379         void set_check_for_test_updates (bool c) {
380                 _check_for_test_updates = c;
381                 changed ();
382         }
383
384         void set_maximum_j2k_bandwidth (int b) {
385                 _maximum_j2k_bandwidth = b;
386                 changed ();
387         }
388
389         void set_log_types (int t) {
390                 _log_types = t;
391                 changed ();
392         }
393
394         void clear_history () {
395                 _history.clear ();
396                 changed ();
397         }
398
399         void add_to_history (boost::filesystem::path p);
400         
401         boost::filesystem::path signer_chain_directory () const;
402
403         void changed ();
404         boost::signals2::signal<void ()> Changed;
405
406         static Config* instance ();
407         static void drop ();
408
409 private:
410         Config ();
411         boost::filesystem::path file (bool) const;
412         void read ();
413         void read_old_metadata ();
414         void write () const;
415
416         /** number of threads to use for J2K encoding on the local machine */
417         int _num_local_encoding_threads;
418         /** default directory to put new films in */
419         boost::filesystem::path _default_directory;
420         /** base port number to use for J2K encoding servers;
421          *  this port and the one above it will be used.
422          */
423         int _server_port_base;
424         /** true to broadcast on the `any' address to look for servers */
425         bool _use_any_servers;
426         /** J2K encoding servers that should definitely be used */
427         std::vector<std::string> _servers;
428         /** The IP address of a TMS that we can copy DCPs to */
429         std::string _tms_ip;
430         /** The path on a TMS that we should write DCPs to */
431         std::string _tms_path;
432         /** User name to log into the TMS with */
433         std::string _tms_user;
434         /** Password to log into the TMS with */
435         std::string _tms_password;
436         /** Our sound processor */
437         SoundProcessor const * _sound_processor;
438         std::list<int> _allowed_dcp_frame_rates;
439         /** Allow any video frame rate for the DCP; if true, overrides _allowed_dcp_frame_rates */
440         bool _allow_any_dcp_frame_rate;
441         /** Default ISDCF metadata for newly-created Films */
442         ISDCFMetadata _default_isdcf_metadata;
443         boost::optional<std::string> _language;
444         int _default_still_length;
445         VideoContentScale _default_scale;
446         Ratio const * _default_container;
447         DCPContentType const * _default_dcp_content_type;
448         std::string _dcp_issuer;
449         int _default_j2k_bandwidth;
450         int _default_audio_delay;
451         std::vector<PresetColourConversion> _colour_conversions;
452         std::list<boost::shared_ptr<Cinema> > _cinemas;
453         std::string _mail_server;
454         std::string _mail_user;
455         std::string _mail_password;
456         std::string _kdm_subject;
457         std::string _kdm_from;
458         std::string _kdm_cc;
459         std::string _kdm_bcc;
460         std::string _kdm_email;
461         /** true to check for updates on startup */
462         bool _check_for_updates;
463         bool _check_for_test_updates;
464         /** maximum allowed J2K bandwidth in bits per second */
465         int _maximum_j2k_bandwidth;
466         int _log_types;
467         std::vector<boost::filesystem::path> _history;
468         
469         /** Singleton instance, or 0 */
470         static Config* _instance;
471 };
472
473 #endif