Merge branch 'dead-wood'
[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
36 /** @class Config
37  *  @brief A singleton class holding configuration.
38  */
39 class Config
40 {
41 public:
42
43         /** @return number of threads to use for J2K encoding on the local machine */
44         int num_local_encoding_threads () const {
45                 return _num_local_encoding_threads;
46         }
47
48         std::string default_directory () const {
49                 return _default_directory;
50         }
51
52         std::string default_directory_or (std::string a) const;
53
54         /** @return port to use for J2K encoding servers */
55         int server_port () const {
56                 return _server_port;
57         }
58
59         /** @return index of colour LUT to use when converting RGB to XYZ.
60          *  0: sRGB
61          *  1: Rec 709
62          */
63         int colour_lut_index () const {
64                 return _colour_lut_index;
65         }
66
67         /** @return bandwidth for J2K files in bits per second */
68         int j2k_bandwidth () const {
69                 return _j2k_bandwidth;
70         }
71
72         /** @return J2K encoding servers to use */
73         std::vector<ServerDescription*> servers () const {
74                 return _servers;
75         }
76
77         Scaler const * reference_scaler () const {
78                 return _reference_scaler;
79         }
80
81         std::vector<Filter const *> reference_filters () const {
82                 return _reference_filters;
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         SoundProcessor const * sound_processor () const {
106                 return _sound_processor;
107         }
108
109         /** @param n New number of local encoding threads */
110         void set_num_local_encoding_threads (int n) {
111                 _num_local_encoding_threads = n;
112         }
113
114         void set_default_directory (std::string d) {
115                 _default_directory = d;
116         }
117
118         /** @param p New server port */
119         void set_server_port (int p) {
120                 _server_port = p;
121         }
122
123         /** @param i New colour LUT index */
124         void set_colour_lut_index (int i) {
125                 _colour_lut_index = i;
126         }
127
128         /** @param b New J2K bandwidth */
129         void set_j2k_bandwidth (int b) {
130                 _j2k_bandwidth = b;
131         }
132
133         /** @param s New list of servers */
134         void set_servers (std::vector<ServerDescription*> s) {
135                 _servers = s;
136         }
137
138         void set_reference_scaler (Scaler const * s) {
139                 _reference_scaler = s;
140         }
141         
142         void set_reference_filters (std::vector<Filter const *> const & f) {
143                 _reference_filters = f;
144         }
145
146         /** @param i IP address of a TMS that we can copy DCPs to */
147         void set_tms_ip (std::string i) {
148                 _tms_ip = i;
149         }
150
151         /** @param p Path on a TMS that we should write DCPs to */
152         void set_tms_path (std::string p) {
153                 _tms_path = p;
154         }
155
156         /** @param u User name to log into the TMS with */
157         void set_tms_user (std::string u) {
158                 _tms_user = u;
159         }
160
161         /** @param p Password to log into the TMS with */
162         void set_tms_password (std::string p) {
163                 _tms_password = p;
164         }
165         
166         void write () const;
167
168         static Config* instance ();
169
170 private:
171         Config ();
172         std::string file () const;
173
174         /** number of threads to use for J2K encoding on the local machine */
175         int _num_local_encoding_threads;
176         /** default directory to put new films in */
177         std::string _default_directory;
178         /** port to use for J2K encoding servers */
179         int _server_port;
180         /** index of colour LUT to use when converting RGB to XYZ
181          *  (see colour_lut_index ())
182          */
183         int _colour_lut_index;
184         /** bandwidth for J2K files in bits per second */
185         int _j2k_bandwidth;
186
187         /** J2K encoding servers to use */
188         std::vector<ServerDescription *> _servers;
189         /** Scaler to use for the "A" part of A/B comparisons */
190         Scaler const * _reference_scaler;
191         /** Filters to use for the "A" part of A/B comparisons */
192         std::vector<Filter const *> _reference_filters;
193         /** The IP address of a TMS that we can copy DCPs to */
194         std::string _tms_ip;
195         /** The path on a TMS that we should write DCPs to */
196         std::string _tms_path;
197         /** User name to log into the TMS with */
198         std::string _tms_user;
199         /** Password to log into the TMS with */
200         std::string _tms_password;
201         /** Our sound processor */
202         SoundProcessor const * _sound_processor;
203
204         /** Singleton instance, or 0 */
205         static Config* _instance;
206 };
207
208 #endif