Missing include.
[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 #ifndef DCPOMATIC_SERVER_H
21 #define DCPOMATIC_SERVER_H
22
23 /** @file src/server.h
24  *  @brief Class to describe a server to which we can send
25  *  encoding work, and a class to implement such a server.
26  */
27
28 #include <string>
29 #include <boost/thread.hpp>
30 #include <boost/asio.hpp>
31 #include <boost/thread/condition.hpp>
32 #include <boost/optional.hpp>
33 #include <libxml++/libxml++.h>
34 #include "log.h"
35
36 class Socket;
37
38 namespace cxml {
39         class Node;
40 }
41
42 /** @class ServerDescription
43  *  @brief Class to describe a server to which we can send encoding work.
44  */
45 class ServerDescription
46 {
47 public:
48         ServerDescription ()
49                 : _host_name ("")
50                 , _threads (1)
51         {}
52         
53         /** @param h Server host name or IP address in string form.
54          *  @param t Number of threads to use on the server.
55          */
56         ServerDescription (std::string h, int t)
57                 : _host_name (h)
58                 , _threads (t)
59         {}
60
61         ServerDescription (boost::shared_ptr<const cxml::Node>);
62
63         /* Default copy constructor is fine */
64         
65         /** @return server's host name or IP address in string form */
66         std::string host_name () const {
67                 return _host_name;
68         }
69
70         /** @return number of threads to use on the server */
71         int threads () const {
72                 return _threads;
73         }
74
75         void set_host_name (std::string n) {
76                 _host_name = n;
77         }
78
79         void set_threads (int t) {
80                 _threads = t;
81         }
82
83         void as_xml (xmlpp::Node *) const;
84         
85         static boost::optional<ServerDescription> create_from_metadata (std::string);
86
87 private:
88         /** server's host name */
89         std::string _host_name;
90         /** number of threads to use on the server */
91         int _threads;
92 };
93
94 class Server : public boost::noncopyable
95 {
96 public:
97         Server (boost::shared_ptr<Log> log);
98
99         void run (int num_threads);
100
101 private:
102         void worker_thread ();
103         int process (boost::shared_ptr<Socket> socket);
104
105         std::vector<boost::thread *> _worker_threads;
106         std::list<boost::shared_ptr<Socket> > _queue;
107         boost::mutex _worker_mutex;
108         boost::condition _worker_condition;
109         boost::shared_ptr<Log> _log;
110 };
111
112 #endif