Move things round a bit.
[dcpomatic.git] / src / lib / server.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/server.h
21  *  @brief Class to describe a server to which we can send
22  *  encoding work.
23  */
24
25 #include <string>
26
27 /** @class Server
28  *  @brief Class to describe a server to which we can send encoding work.
29  */
30 class Server
31 {
32 public:
33         /** @param h Server host name or IP address in string form.
34          *  @param t Number of threads to use on the server.
35          */
36         Server (std::string h, int t)
37                 : _host_name (h)
38                 , _threads (t)
39         {}
40
41         /** @return server's host name or IP address in string form */
42         std::string host_name () const {
43                 return _host_name;
44         }
45
46         /** @return number of threads to use on the server */
47         int threads () const {
48                 return _threads;
49         }
50
51         std::string as_metadata () const;
52         
53         static Server * create_from_metadata (std::string v);
54
55 private:
56         /** server's host name */
57         std::string _host_name;
58         /** number of threads to use on the server */
59         int _threads;
60 };