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