59af8a07ab7164173708adb53ac27114e4f68aab
[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 Screen;
33 class Scaler;
34 class Filter;
35 class SoundProcessor;
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         std::vector<boost::shared_ptr<Screen> > screens () const {
79                 return _screens;
80         }
81
82         Scaler const * reference_scaler () const {
83                 return _reference_scaler;
84         }
85
86         std::vector<Filter const *> reference_filters () const {
87                 return _reference_filters;
88         }
89
90         /** @return The IP address of a TMS that we can copy DCPs to */
91         std::string tms_ip () const {
92                 return _tms_ip;
93         }
94
95         /** @return The path on a TMS that we should write DCPs to */
96         std::string tms_path () const {
97                 return _tms_path;
98         }
99
100         /** @return User name to log into the TMS with */
101         std::string tms_user () const {
102                 return _tms_user;
103         }
104
105         /** @return Password to log into the TMS with */
106         std::string tms_password () const {
107                 return _tms_password;
108         }
109
110         SoundProcessor const * sound_processor () const {
111                 return _sound_processor;
112         }
113
114         /** @param n New number of local encoding threads */
115         void set_num_local_encoding_threads (int n) {
116                 _num_local_encoding_threads = n;
117                 Changed ();
118         }
119
120         void set_default_directory (std::string d) {
121                 _default_directory = d;
122                 Changed ();
123         }
124
125         /** @param p New server port */
126         void set_server_port (int p) {
127                 _server_port = p;
128                 Changed ();
129         }
130
131         /** @param i New colour LUT index */
132         void set_colour_lut_index (int i) {
133                 _colour_lut_index = i;
134                 Changed ();
135         }
136
137         /** @param b New J2K bandwidth */
138         void set_j2k_bandwidth (int b) {
139                 _j2k_bandwidth = b;
140                 Changed ();
141         }
142
143         /** @param s New list of servers */
144         void set_servers (std::vector<ServerDescription*> s) {
145                 _servers = s;
146                 Changed ();
147         }
148
149         void set_screens (std::vector<boost::shared_ptr<Screen> > s) {
150                 _screens = s;
151                 Changed ();
152         }
153
154         void set_reference_scaler (Scaler const * s) {
155                 _reference_scaler = s;
156                 Changed ();
157         }
158         
159         void set_reference_filters (std::vector<Filter const *> const & f) {
160                 _reference_filters = f;
161                 Changed ();
162         }
163
164         /** @param i IP address of a TMS that we can copy DCPs to */
165         void set_tms_ip (std::string i) {
166                 _tms_ip = i;
167                 Changed ();
168         }
169
170         /** @param p Path on a TMS that we should write DCPs to */
171         void set_tms_path (std::string p) {
172                 _tms_path = p;
173                 Changed ();
174         }
175
176         /** @param u User name to log into the TMS with */
177         void set_tms_user (std::string u) {
178                 _tms_user = u;
179                 Changed ();
180         }
181
182         /** @param p Password to log into the TMS with */
183         void set_tms_password (std::string p) {
184                 _tms_password = p;
185                 Changed ();
186         }
187         
188         void write () const;
189
190         boost::signals2::signal<void()> Changed;
191
192         static Config* instance ();
193
194 private:
195         Config ();
196         std::string file () const;
197
198         /** number of threads to use for J2K encoding on the local machine */
199         int _num_local_encoding_threads;
200         /** default directory to put new films in */
201         std::string _default_directory;
202         /** port to use for J2K encoding servers */
203         int _server_port;
204         /** index of colour LUT to use when converting RGB to XYZ
205          *  (see colour_lut_index ())
206          */
207         int _colour_lut_index;
208         /** bandwidth for J2K files in bits per second */
209         int _j2k_bandwidth;
210
211         /** J2K encoding servers to use */
212         std::vector<ServerDescription *> _servers;
213         /** Screen definitions */
214         std::vector<boost::shared_ptr<Screen> > _screens;
215         /** Scaler to use for the "A" part of A/B comparisons */
216         Scaler const * _reference_scaler;
217         /** Filters to use for the "A" part of A/B comparisons */
218         std::vector<Filter const *> _reference_filters;
219         /** The IP address of a TMS that we can copy DCPs to */
220         std::string _tms_ip;
221         /** The path on a TMS that we should write DCPs to */
222         std::string _tms_path;
223         /** User name to log into the TMS with */
224         std::string _tms_user;
225         /** Password to log into the TMS with */
226         std::string _tms_password;
227         /** Our sound processor */
228         SoundProcessor const * _sound_processor;
229
230         /** Singleton instance, or 0 */
231         static Config* _instance;
232 };
233
234 #endif