Some work on making KDMs in Film
[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 DVDOMATIC_CONFIG_H
25 #define DVDOMATIC_CONFIG_H
26
27 #include <vector>
28 #include <boost/shared_ptr.hpp>
29 #include <boost/signals2.hpp>
30
31 class ServerDescription;
32 class Scaler;
33 class Filter;
34 class SoundProcessor;
35 class Cinema;
36
37 /** @class Config
38  *  @brief A singleton class holding configuration.
39  */
40 class Config
41 {
42 public:
43
44         /** @return number of threads to use for J2K encoding on the local machine */
45         int num_local_encoding_threads () const {
46                 return _num_local_encoding_threads;
47         }
48
49         std::string default_directory () const {
50                 return _default_directory;
51         }
52
53         std::string default_directory_or (std::string a) const;
54
55         /** @return port to use for J2K encoding servers */
56         int server_port () const {
57                 return _server_port;
58         }
59
60         /** @return index of colour LUT to use when converting RGB to XYZ.
61          *  0: sRGB
62          *  1: Rec 709
63          */
64         int colour_lut_index () const {
65                 return _colour_lut_index;
66         }
67
68         /** @return bandwidth for J2K files in bits per second */
69         int j2k_bandwidth () const {
70                 return _j2k_bandwidth;
71         }
72
73         /** @return J2K encoding servers to use */
74         std::vector<ServerDescription*> servers () const {
75                 return _servers;
76         }
77
78         Scaler const * reference_scaler () const {
79                 return _reference_scaler;
80         }
81
82         std::vector<Filter const *> reference_filters () const {
83                 return _reference_filters;
84         }
85
86         /** @return The IP address of a TMS that we can copy DCPs to */
87         std::string tms_ip () const {
88                 return _tms_ip;
89         }
90
91         /** @return The path on a TMS that we should write DCPs to */
92         std::string tms_path () const {
93                 return _tms_path;
94         }
95
96         /** @return User name to log into the TMS with */
97         std::string tms_user () const {
98                 return _tms_user;
99         }
100
101         /** @return Password to log into the TMS with */
102         std::string tms_password () const {
103                 return _tms_password;
104         }
105
106         /** @return The sound processor that we are using */
107         SoundProcessor const * sound_processor () const {
108                 return _sound_processor;
109         }
110
111         std::list<boost::shared_ptr<Cinema> > cinemas () const {
112                 return _cinemas;
113         }
114
115         /** @param n New number of local encoding threads */
116         void set_num_local_encoding_threads (int n) {
117                 _num_local_encoding_threads = n;
118         }
119
120         void set_default_directory (std::string d) {
121                 _default_directory = d;
122         }
123
124         /** @param p New server port */
125         void set_server_port (int p) {
126                 _server_port = p;
127         }
128
129         /** @param i New colour LUT index */
130         void set_colour_lut_index (int i) {
131                 _colour_lut_index = i;
132         }
133
134         /** @param b New J2K bandwidth */
135         void set_j2k_bandwidth (int b) {
136                 _j2k_bandwidth = b;
137         }
138
139         /** @param s New list of servers */
140         void set_servers (std::vector<ServerDescription*> s) {
141                 _servers = s;
142         }
143
144         void set_reference_scaler (Scaler const * s) {
145                 _reference_scaler = s;
146         }
147         
148         void set_reference_filters (std::vector<Filter const *> const & f) {
149                 _reference_filters = f;
150         }
151
152         /** @param i IP address of a TMS that we can copy DCPs to */
153         void set_tms_ip (std::string i) {
154                 _tms_ip = i;
155         }
156
157         /** @param p Path on a TMS that we should write DCPs to */
158         void set_tms_path (std::string p) {
159                 _tms_path = p;
160         }
161
162         /** @param u User name to log into the TMS with */
163         void set_tms_user (std::string u) {
164                 _tms_user = u;
165         }
166
167         /** @param p Password to log into the TMS with */
168         void set_tms_password (std::string p) {
169                 _tms_password = p;
170         }
171
172         void add_cinema (boost::shared_ptr<Cinema> c) {
173                 _cinemas.push_back (c);
174         }
175
176         void remove_cinema (boost::shared_ptr<Cinema> c) {
177                 _cinemas.remove (c);
178         }
179         
180         void write () const;
181
182         std::string crypt_chain_directory () const;
183
184         static Config* instance ();
185
186 private:
187         Config ();
188         std::string read_file () const;
189         std::string write_file () const;
190
191         /** number of threads to use for J2K encoding on the local machine */
192         int _num_local_encoding_threads;
193         /** default directory to put new films in */
194         std::string _default_directory;
195         /** port to use for J2K encoding servers */
196         int _server_port;
197         /** index of colour LUT to use when converting RGB to XYZ
198          *  (see colour_lut_index ())
199          */
200         int _colour_lut_index;
201         /** bandwidth for J2K files in bits per second */
202         int _j2k_bandwidth;
203
204         /** J2K encoding servers to use */
205         std::vector<ServerDescription *> _servers;
206         /** Scaler to use for the "A" part of A/B comparisons */
207         Scaler const * _reference_scaler;
208         /** Filters to use for the "A" part of A/B comparisons */
209         std::vector<Filter const *> _reference_filters;
210         /** The IP address of a TMS that we can copy DCPs to */
211         std::string _tms_ip;
212         /** The path on a TMS that we should write DCPs to */
213         std::string _tms_path;
214         /** User name to log into the TMS with */
215         std::string _tms_user;
216         /** Password to log into the TMS with */
217         std::string _tms_password;
218         /** Our sound processor */
219         SoundProcessor const * _sound_processor;
220
221         std::list<boost::shared_ptr<Cinema> > _cinemas;
222
223         /** Singleton instance, or 0 */
224         static Config* _instance;
225 };
226
227 #endif