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