Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / server_description.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 #ifndef DCPOMATIC_SERVER_DESCRIPTION_H
21 #define DCPOMATIC_SERVER_DESCRIPTION_H
22
23 /** @class ServerDescription
24  *  @brief Class to describe a server to which we can send encoding work.
25  */
26 class ServerDescription
27 {
28 public:
29         ServerDescription ()
30                 : _host_name ("")
31                 , _threads (1)
32         {}
33
34         /** @param h Server host name or IP address in string form.
35          *  @param t Number of threads to use on the server.
36          */
37         ServerDescription (std::string h, int t)
38                 : _host_name (h)
39                 , _threads (t)
40         {}
41
42         /* Default copy constructor is fine */
43
44         /** @return server's host name or IP address in string form */
45         std::string host_name () const {
46                 return _host_name;
47         }
48
49         /** @return number of threads to use on the server */
50         int threads () const {
51                 return _threads;
52         }
53
54         void set_host_name (std::string n) {
55                 _host_name = n;
56         }
57
58         void set_threads (int t) {
59                 _threads = t;
60         }
61
62 private:
63         /** server's host name */
64         std::string _host_name;
65         /** number of threads to use on the server */
66         int _threads;
67 };
68
69 #endif