Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
[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 "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         int default_still_length () const {
111                 return _default_still_length;
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         }
118
119         void set_default_directory (std::string d) {
120                 _default_directory = d;
121         }
122
123         /** @param p New server port */
124         void set_server_port (int p) {
125                 _server_port = p;
126         }
127
128         /** @param s New list of servers */
129         void set_servers (std::vector<ServerDescription*> s) {
130                 _servers = s;
131         }
132
133         void set_reference_scaler (Scaler const * s) {
134                 _reference_scaler = s;
135         }
136         
137         void set_reference_filters (std::vector<Filter const *> const & f) {
138                 _reference_filters = f;
139         }
140
141         /** @param i IP address of a TMS that we can copy DCPs to */
142         void set_tms_ip (std::string i) {
143                 _tms_ip = i;
144         }
145
146         /** @param p Path on a TMS that we should write DCPs to */
147         void set_tms_path (std::string p) {
148                 _tms_path = p;
149         }
150
151         /** @param u User name to log into the TMS with */
152         void set_tms_user (std::string u) {
153                 _tms_user = u;
154         }
155
156         /** @param p Password to log into the TMS with */
157         void set_tms_password (std::string p) {
158                 _tms_password = p;
159         }
160
161         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
162                 _allowed_dcp_frame_rates = r;
163         }
164
165         void set_default_dci_metadata (DCIMetadata d) {
166                 _default_dci_metadata = d;
167         }
168
169         void set_language (std::string l) {
170                 _language = l;
171         }
172
173         void unset_language () {
174                 _language = boost::none;
175         }
176
177         void set_default_still_length (int s) {
178                 _default_still_length = s;
179         }
180
181         void write () const;
182
183         static Config* instance ();
184         static void drop ();
185
186 private:
187         Config ();
188         std::string file (bool) const;
189         void read_old_metadata ();
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
198         /** J2K encoding servers to use */
199         std::vector<ServerDescription *> _servers;
200         /** Scaler to use for the "A" part of A/B comparisons */
201         Scaler const * _reference_scaler;
202         /** Filters to use for the "A" part of A/B comparisons */
203         std::vector<Filter const *> _reference_filters;
204         /** The IP address of a TMS that we can copy DCPs to */
205         std::string _tms_ip;
206         /** The path on a TMS that we should write DCPs to */
207         std::string _tms_path;
208         /** User name to log into the TMS with */
209         std::string _tms_user;
210         /** Password to log into the TMS with */
211         std::string _tms_password;
212         /** Our sound processor */
213         SoundProcessor const * _sound_processor;
214         std::list<int> _allowed_dcp_frame_rates;
215         /** Default DCI metadata for newly-created Films */
216         DCIMetadata _default_dci_metadata;
217         boost::optional<std::string> _language;
218         int _default_still_length;
219
220         /** Singleton instance, or 0 */
221         static Config* _instance;
222 };
223
224 #endif