Merge master into direct-mxf.
[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         /** @param n New number of local encoding threads */
107         void set_num_local_encoding_threads (int n) {
108                 _num_local_encoding_threads = n;
109         }
110
111         void set_default_directory (std::string d) {
112                 _default_directory = d;
113         }
114
115         /** @param p New server port */
116         void set_server_port (int p) {
117                 _server_port = p;
118         }
119
120         /** @param s New list of servers */
121         void set_servers (std::vector<ServerDescription*> s) {
122                 _servers = s;
123         }
124
125         void set_reference_scaler (Scaler const * s) {
126                 _reference_scaler = s;
127         }
128         
129         void set_reference_filters (std::vector<Filter const *> const & f) {
130                 _reference_filters = f;
131         }
132
133         /** @param i IP address of a TMS that we can copy DCPs to */
134         void set_tms_ip (std::string i) {
135                 _tms_ip = i;
136         }
137
138         /** @param p Path on a TMS that we should write DCPs to */
139         void set_tms_path (std::string p) {
140                 _tms_path = p;
141         }
142
143         /** @param u User name to log into the TMS with */
144         void set_tms_user (std::string u) {
145                 _tms_user = u;
146         }
147
148         /** @param p Password to log into the TMS with */
149         void set_tms_password (std::string p) {
150                 _tms_password = p;
151         }
152
153         void set_allowed_dcp_frame_rates (std::list<int> const & r) {
154                 _allowed_dcp_frame_rates = r;
155         }
156
157         void set_default_dci_metadata (DCIMetadata d) {
158                 _default_dci_metadata = d;
159         }
160         
161         void write () const;
162
163         static Config* instance ();
164
165 private:
166         Config ();
167         std::string file () const;
168
169         /** number of threads to use for J2K encoding on the local machine */
170         int _num_local_encoding_threads;
171         /** default directory to put new films in */
172         std::string _default_directory;
173         /** port to use for J2K encoding servers */
174         int _server_port;
175
176         /** J2K encoding servers to use */
177         std::vector<ServerDescription *> _servers;
178         /** Scaler to use for the "A" part of A/B comparisons */
179         Scaler const * _reference_scaler;
180         /** Filters to use for the "A" part of A/B comparisons */
181         std::vector<Filter const *> _reference_filters;
182         /** The IP address of a TMS that we can copy DCPs to */
183         std::string _tms_ip;
184         /** The path on a TMS that we should write DCPs to */
185         std::string _tms_path;
186         /** User name to log into the TMS with */
187         std::string _tms_user;
188         /** Password to log into the TMS with */
189         std::string _tms_password;
190         /** Our sound processor */
191         SoundProcessor const * _sound_processor;
192         std::list<int> _allowed_dcp_frame_rates;
193         /** Default DCI metadata for newly-created Films */
194         DCIMetadata _default_dci_metadata;
195
196         /** Singleton instance, or 0 */
197         static Config* _instance;
198 };
199
200 #endif