14c707dd2dcf85d70fe4449b05d82637040cf7fb
[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         }
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         libdcp::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 kdm_from () const {
159                 return _kdm_from;
160         }
161
162         std::string kdm_email () const {
163                 return _kdm_email;
164         }
165
166         /** @param n New number of local encoding threads */
167         void set_num_local_encoding_threads (int n) {
168                 _num_local_encoding_threads = n;
169         }
170
171         void set_default_directory (boost::filesystem::path d) {
172                 _default_directory = d;
173         }
174
175         /** @param p New server port */
176         void set_server_port_base (int p) {
177                 _server_port_base = p;
178         }
179
180         void set_reference_scaler (Scaler const * s) {
181                 _reference_scaler = s;
182         }
183         
184         void set_reference_filters (std::vector<Filter const *> const & f) {
185                 _reference_filters = f;
186         }
187
188         /** @param i IP address of a TMS that we can copy DCPs to */
189         void set_tms_ip (std::string i) {
190                 _tms_ip = i;
191         }
192
193         /** @param p Path on a TMS that we should write DCPs to */
194         void set_tms_path (std::string p) {
195                 _tms_path = p;
196         }
197
198         /** @param u User name to log into the TMS with */
199         void set_tms_user (std::string u) {
200                 _tms_user = u;
201         }
202
203         /** @param p Password to log into the TMS with */
204         void set_tms_password (std::string p) {
205                 _tms_password = p;
206         }
207
208         void add_cinema (boost::shared_ptr<Cinema> c) {
209                 _cinemas.push_back (c);
210         }
211
212         void remove_cinema (boost::shared_ptr<Cinema> c) {
213                 _cinemas.remove (c);
214         }
215
216         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
217                 _allowed_dcp_frame_rates = r;
218         }
219
220         void set_default_dci_metadata (DCIMetadata d) {
221                 _default_dci_metadata = d;
222         }
223
224         void set_language (std::string l) {
225                 _language = l;
226         }
227
228         void unset_language () {
229                 _language = boost::none;
230         }
231
232         void set_default_still_length (int s) {
233                 _default_still_length = s;
234         }
235
236         void set_default_container (Ratio const * c) {
237                 _default_container = c;
238         }
239
240         void set_default_dcp_content_type (DCPContentType const * t) {
241                 _default_dcp_content_type = t;
242         }
243
244         void set_dcp_metadata (libdcp::XMLMetadata m) {
245                 _dcp_metadata = m;
246         }
247
248         void set_default_j2k_bandwidth (int b) {
249                 _default_j2k_bandwidth = b;
250         }
251
252         void set_default_audio_delay (int d) {
253                 _default_audio_delay = d;
254         }
255
256         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
257                 _colour_conversions = c;
258         }
259
260         void set_mail_server (std::string s) {
261                 _mail_server = s;
262         }
263
264         void set_kdm_from (std::string f) {
265                 _kdm_from = f;
266         }
267
268         void set_kdm_email (std::string e) {
269                 _kdm_email = e;
270         }
271         
272         void write () const;
273
274         boost::filesystem::path signer_chain_directory () const;
275
276         static Config* instance ();
277         static void drop ();
278
279 private:
280         Config ();
281         boost::filesystem::path file (bool) const;
282         void read ();
283         void read_old_metadata ();
284
285         /** number of threads to use for J2K encoding on the local machine */
286         int _num_local_encoding_threads;
287         /** default directory to put new films in */
288         boost::filesystem::path _default_directory;
289         /** base port number to use for J2K encoding servers;
290          *  this port and the one above it will be used.
291          */
292         int _server_port_base;
293         /** true to broadcast on the `any' address to look for servers */
294         bool _use_any_servers;
295         /** J2K encoding servers that should definitely be used */
296         std::vector<std::string> _servers;
297         /** Scaler to use for the "A" part of A/B comparisons */
298         Scaler const * _reference_scaler;
299         /** Filters to use for the "A" part of A/B comparisons */
300         std::vector<Filter const *> _reference_filters;
301         /** The IP address of a TMS that we can copy DCPs to */
302         std::string _tms_ip;
303         /** The path on a TMS that we should write DCPs to */
304         std::string _tms_path;
305         /** User name to log into the TMS with */
306         std::string _tms_user;
307         /** Password to log into the TMS with */
308         std::string _tms_password;
309         /** Our sound processor */
310         SoundProcessor const * _sound_processor;
311         std::list<int> _allowed_dcp_frame_rates;
312         /** Default DCI metadata for newly-created Films */
313         DCIMetadata _default_dci_metadata;
314         boost::optional<std::string> _language;
315         int _default_still_length;
316         Ratio const * _default_container;
317         DCPContentType const * _default_dcp_content_type;
318         libdcp::XMLMetadata _dcp_metadata;
319         int _default_j2k_bandwidth;
320         int _default_audio_delay;
321         std::vector<PresetColourConversion> _colour_conversions;
322         std::list<boost::shared_ptr<Cinema> > _cinemas;
323         std::string _mail_server;
324         std::string _kdm_from;
325         std::string _kdm_email;
326
327         /** Singleton instance, or 0 */
328         static Config* _instance;
329 };
330
331 #endif