Try to move J2K bandwidth and colour LUT to be per-film (#23).
[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 J2K encoding servers to use */
60         std::vector<ServerDescription*> servers () const {
61                 return _servers;
62         }
63
64         Scaler const * reference_scaler () const {
65                 return _reference_scaler;
66         }
67
68         std::vector<Filter const *> reference_filters () const {
69                 return _reference_filters;
70         }
71
72         /** @return The IP address of a TMS that we can copy DCPs to */
73         std::string tms_ip () const {
74                 return _tms_ip;
75         }
76
77         /** @return The path on a TMS that we should write DCPs to */
78         std::string tms_path () const {
79                 return _tms_path;
80         }
81
82         /** @return User name to log into the TMS with */
83         std::string tms_user () const {
84                 return _tms_user;
85         }
86
87         /** @return Password to log into the TMS with */
88         std::string tms_password () const {
89                 return _tms_password;
90         }
91
92         /** @return The sound processor that we are using */
93         SoundProcessor const * sound_processor () const {
94                 return _sound_processor;
95         }
96
97         /** @param n New number of local encoding threads */
98         void set_num_local_encoding_threads (int n) {
99                 _num_local_encoding_threads = n;
100         }
101
102         void set_default_directory (std::string d) {
103                 _default_directory = d;
104         }
105
106         /** @param p New server port */
107         void set_server_port (int p) {
108                 _server_port = p;
109         }
110
111         /** @param s New list of servers */
112         void set_servers (std::vector<ServerDescription*> s) {
113                 _servers = s;
114         }
115
116         void set_reference_scaler (Scaler const * s) {
117                 _reference_scaler = s;
118         }
119         
120         void set_reference_filters (std::vector<Filter const *> const & f) {
121                 _reference_filters = f;
122         }
123
124         /** @param i IP address of a TMS that we can copy DCPs to */
125         void set_tms_ip (std::string i) {
126                 _tms_ip = i;
127         }
128
129         /** @param p Path on a TMS that we should write DCPs to */
130         void set_tms_path (std::string p) {
131                 _tms_path = p;
132         }
133
134         /** @param u User name to log into the TMS with */
135         void set_tms_user (std::string u) {
136                 _tms_user = u;
137         }
138
139         /** @param p Password to log into the TMS with */
140         void set_tms_password (std::string p) {
141                 _tms_password = p;
142         }
143         
144         void write () const;
145
146         static Config* instance ();
147
148 private:
149         Config ();
150         std::string file () const;
151
152         /** number of threads to use for J2K encoding on the local machine */
153         int _num_local_encoding_threads;
154         /** default directory to put new films in */
155         std::string _default_directory;
156         /** port to use for J2K encoding servers */
157         int _server_port;
158
159         /** J2K encoding servers to use */
160         std::vector<ServerDescription *> _servers;
161         /** Scaler to use for the "A" part of A/B comparisons */
162         Scaler const * _reference_scaler;
163         /** Filters to use for the "A" part of A/B comparisons */
164         std::vector<Filter const *> _reference_filters;
165         /** The IP address of a TMS that we can copy DCPs to */
166         std::string _tms_ip;
167         /** The path on a TMS that we should write DCPs to */
168         std::string _tms_path;
169         /** User name to log into the TMS with */
170         std::string _tms_user;
171         /** Password to log into the TMS with */
172         std::string _tms_password;
173         /** Our sound processor */
174         SoundProcessor const * _sound_processor;
175
176         /** Singleton instance, or 0 */
177         static Config* _instance;
178 };
179
180 #endif