Merge master.
[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 #include "dci_metadata.h"
31
32 class ServerDescription;
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 J2K encoding servers to use */
61         std::vector<ServerDescription*> servers () const {
62                 return _servers;
63         }
64
65         Scaler const * reference_scaler () const {
66                 return _reference_scaler;
67         }
68
69         std::vector<Filter const *> reference_filters () const {
70                 return _reference_filters;
71         }
72
73         /** @return The IP address of a TMS that we can copy DCPs to */
74         std::string tms_ip () const {
75                 return _tms_ip;
76         }
77
78         /** @return The path on a TMS that we should write DCPs to */
79         std::string tms_path () const {
80                 return _tms_path;
81         }
82
83         /** @return User name to log into the TMS with */
84         std::string tms_user () const {
85                 return _tms_user;
86         }
87
88         /** @return Password to log into the TMS with */
89         std::string tms_password () const {
90                 return _tms_password;
91         }
92
93         /** @return The sound processor that we are using */
94         SoundProcessor const * sound_processor () const {
95                 return _sound_processor;
96         }
97
98         std::list<int> allowed_dcp_frame_rates () const {
99                 return _allowed_dcp_frame_rates;
100         }
101         
102         DCIMetadata default_dci_metadata () const {
103                 return _default_dci_metadata;
104         }
105
106         boost::optional<std::string> language () const {
107                 return _language;
108         }
109
110         /** @param n New number of local encoding threads */
111         void set_num_local_encoding_threads (int n) {
112                 _num_local_encoding_threads = n;
113         }
114
115         void set_default_directory (std::string d) {
116                 _default_directory = d;
117         }
118
119         /** @param p New server port */
120         void set_server_port (int p) {
121                 _server_port = p;
122         }
123
124         /** @param s New list of servers */
125         void set_servers (std::vector<ServerDescription*> s) {
126                 _servers = s;
127         }
128
129         void set_reference_scaler (Scaler const * s) {
130                 _reference_scaler = s;
131         }
132         
133         void set_reference_filters (std::vector<Filter const *> const & f) {
134                 _reference_filters = f;
135         }
136
137         /** @param i IP address of a TMS that we can copy DCPs to */
138         void set_tms_ip (std::string i) {
139                 _tms_ip = i;
140         }
141
142         /** @param p Path on a TMS that we should write DCPs to */
143         void set_tms_path (std::string p) {
144                 _tms_path = p;
145         }
146
147         /** @param u User name to log into the TMS with */
148         void set_tms_user (std::string u) {
149                 _tms_user = u;
150         }
151
152         /** @param p Password to log into the TMS with */
153         void set_tms_password (std::string p) {
154                 _tms_password = p;
155         }
156
157         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
158                 _allowed_dcp_frame_rates = r;
159         }
160
161         void set_default_dci_metadata (DCIMetadata d) {
162                 _default_dci_metadata = d;
163         }
164
165         void set_language (std::string l) {
166                 _language = l;
167         }
168
169         void unset_language () {
170                 _language = boost::none;
171         }
172         
173         void write () const;
174
175         static Config* instance ();
176         static void drop ();
177
178 private:
179         Config ();
180         std::string file () const;
181
182         /** number of threads to use for J2K encoding on the local machine */
183         int _num_local_encoding_threads;
184         /** default directory to put new films in */
185         std::string _default_directory;
186         /** port to use for J2K encoding servers */
187         int _server_port;
188
189         /** J2K encoding servers to use */
190         std::vector<ServerDescription *> _servers;
191         /** Scaler to use for the "A" part of A/B comparisons */
192         Scaler const * _reference_scaler;
193         /** Filters to use for the "A" part of A/B comparisons */
194         std::vector<Filter const *> _reference_filters;
195         /** The IP address of a TMS that we can copy DCPs to */
196         std::string _tms_ip;
197         /** The path on a TMS that we should write DCPs to */
198         std::string _tms_path;
199         /** User name to log into the TMS with */
200         std::string _tms_user;
201         /** Password to log into the TMS with */
202         std::string _tms_password;
203         /** Our sound processor */
204         SoundProcessor const * _sound_processor;
205         std::list<int> _allowed_dcp_frame_rates;
206         /** Default DCI metadata for newly-created Films */
207         DCIMetadata _default_dci_metadata;
208         boost::optional<std::string> _language;
209
210         /** Singleton instance, or 0 */
211         static Config* _instance;
212 };
213
214 #endif