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