8dcb513a52b8fa245c2cb70a07c1478580921a78
[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 port to use for J2K encoding servers */
63         int server_port () const {
64                 return _server_port;
65         }
66
67         /** @return J2K encoding servers to use */
68         std::vector<ServerDescription> servers () const {
69                 return _servers;
70         }
71
72         /** @return The IP address of a TMS that we can copy DCPs to */
73         std::string tms_ip () const {
74                 return _tms_ip;
75         }
76
77         /** @return The path on a TMS that we should write DCPs to */
78         std::string tms_path () const {
79                 return _tms_path;
80         }
81
82         /** @return User name to log into the TMS with */
83         std::string tms_user () const {
84                 return _tms_user;
85         }
86
87         /** @return Password to log into the TMS with */
88         std::string tms_password () const {
89                 return _tms_password;
90         }
91
92         /** @return The sound processor that we are using */
93         SoundProcessor const * sound_processor () const {
94                 return _sound_processor;
95         }
96
97         std::list<boost::shared_ptr<Cinema> > cinemas () const {
98                 return _cinemas;
99         }
100         
101         std::list<int> allowed_dcp_frame_rates () const {
102                 return _allowed_dcp_frame_rates;
103         }
104         
105         DCIMetadata default_dci_metadata () const {
106                 return _default_dci_metadata;
107         }
108
109         boost::optional<std::string> language () const {
110                 return _language;
111         }
112
113         int default_still_length () const {
114                 return _default_still_length;
115         }
116
117         Ratio const * default_container () const {
118                 return _default_container;
119         }
120
121         DCPContentType const * default_dcp_content_type () const {
122                 return _default_dcp_content_type;
123         }
124
125         libdcp::XMLMetadata dcp_metadata () const {
126                 return _dcp_metadata;
127         }
128
129         int default_j2k_bandwidth () const {
130                 return _default_j2k_bandwidth;
131         }
132
133         std::vector<PresetColourConversion> colour_conversions () const {
134                 return _colour_conversions;
135         }
136
137         std::string mail_server () const {
138                 return _mail_server;
139         }
140
141         std::string kdm_from () const {
142                 return _kdm_from;
143         }
144
145         /** @param n New number of local encoding threads */
146         void set_num_local_encoding_threads (int n) {
147                 _num_local_encoding_threads = n;
148         }
149
150         void set_default_directory (boost::filesystem::path d) {
151                 _default_directory = d;
152         }
153
154         /** @param p New server port */
155         void set_server_port (int p) {
156                 _server_port = p;
157         }
158
159         /** @param s New list of servers */
160         void set_servers (std::vector<ServerDescription> s) {
161                 _servers = s;
162         }
163
164         void set_reference_scaler (Scaler const * s) {
165                 _reference_scaler = s;
166         }
167         
168         void set_reference_filters (std::vector<Filter const *> const & f) {
169                 _reference_filters = f;
170         }
171
172         /** @param i IP address of a TMS that we can copy DCPs to */
173         void set_tms_ip (std::string i) {
174                 _tms_ip = i;
175         }
176
177         /** @param p Path on a TMS that we should write DCPs to */
178         void set_tms_path (std::string p) {
179                 _tms_path = p;
180         }
181
182         /** @param u User name to log into the TMS with */
183         void set_tms_user (std::string u) {
184                 _tms_user = u;
185         }
186
187         /** @param p Password to log into the TMS with */
188         void set_tms_password (std::string p) {
189                 _tms_password = p;
190         }
191
192         void add_cinema (boost::shared_ptr<Cinema> c) {
193                 _cinemas.push_back (c);
194         }
195
196         void remove_cinema (boost::shared_ptr<Cinema> c) {
197                 _cinemas.remove (c);
198         }
199
200         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
201                 _allowed_dcp_frame_rates = r;
202         }
203
204         void set_default_dci_metadata (DCIMetadata d) {
205                 _default_dci_metadata = d;
206         }
207
208         void set_language (std::string l) {
209                 _language = l;
210         }
211
212         void unset_language () {
213                 _language = boost::none;
214         }
215
216         void set_default_still_length (int s) {
217                 _default_still_length = s;
218         }
219
220         void set_default_container (Ratio const * c) {
221                 _default_container = c;
222         }
223
224         void set_default_dcp_content_type (DCPContentType const * t) {
225                 _default_dcp_content_type = t;
226         }
227
228         void set_dcp_metadata (libdcp::XMLMetadata m) {
229                 _dcp_metadata = m;
230         }
231
232         void set_default_j2k_bandwidth (int b) {
233                 _default_j2k_bandwidth = b;
234         }
235
236         void set_colour_conversions (std::vector<PresetColourConversion> const & c) {
237                 _colour_conversions = c;
238         }
239
240         void set_mail_server (std::string s) {
241                 _mail_server = s;
242         }
243
244         void set_kdm_from (std::string f) {
245                 _kdm_from = f;
246         }
247         
248         void write () const;
249
250         boost::filesystem::path signer_chain_directory () const;
251
252         static Config* instance ();
253         static void drop ();
254
255 private:
256         Config ();
257         boost::filesystem::path file (bool) const;
258         void read ();
259         void read_old_metadata ();
260
261         /** number of threads to use for J2K encoding on the local machine */
262         int _num_local_encoding_threads;
263         /** default directory to put new films in */
264         boost::filesystem::path _default_directory;
265         /** port to use for J2K encoding servers */
266         int _server_port;
267
268         /** J2K encoding servers to use */
269         std::vector<ServerDescription> _servers;
270         /** Scaler to use for the "A" part of A/B comparisons */
271         Scaler const * _reference_scaler;
272         /** Filters to use for the "A" part of A/B comparisons */
273         std::vector<Filter const *> _reference_filters;
274         /** The IP address of a TMS that we can copy DCPs to */
275         std::string _tms_ip;
276         /** The path on a TMS that we should write DCPs to */
277         std::string _tms_path;
278         /** User name to log into the TMS with */
279         std::string _tms_user;
280         /** Password to log into the TMS with */
281         std::string _tms_password;
282         /** Our sound processor */
283         SoundProcessor const * _sound_processor;
284         std::list<int> _allowed_dcp_frame_rates;
285         /** Default DCI metadata for newly-created Films */
286         DCIMetadata _default_dci_metadata;
287         boost::optional<std::string> _language;
288         int _default_still_length;
289         Ratio const * _default_container;
290         DCPContentType const * _default_dcp_content_type;
291         libdcp::XMLMetadata _dcp_metadata;
292         int _default_j2k_bandwidth;
293         std::vector<PresetColourConversion> _colour_conversions;
294         std::list<boost::shared_ptr<Cinema> > _cinemas;
295         std::string _mail_server;
296         std::string _kdm_from;
297
298         /** Singleton instance, or 0 */
299         static Config* _instance;
300 };
301
302 #endif