Various bits of server tidying up.
[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 #include "exceptions.h"
36
37 class Socket;
38
39 namespace cxml {
40         class Node;
41 }
42
43 /** @class ServerDescription
44  *  @brief Class to describe a server to which we can send encoding work.
45  */
46 class ServerDescription
47 {
48 public:
49         ServerDescription ()
50                 : _host_name ("")
51                 , _threads (1)
52         {}
53         
54         /** @param h Server host name or IP address in string form.
55          *  @param t Number of threads to use on the server.
56          */
57         ServerDescription (std::string h, int t)
58                 : _host_name (h)
59                 , _threads (t)
60         {}
61
62         ServerDescription (boost::shared_ptr<const cxml::Node>);
63
64         /* Default copy constructor is fine */
65         
66         /** @return server's host name or IP address in string form */
67         std::string host_name () const {
68                 return _host_name;
69         }
70
71         /** @return number of threads to use on the server */
72         int threads () const {
73                 return _threads;
74         }
75
76         void set_host_name (std::string n) {
77                 _host_name = n;
78         }
79
80         void set_threads (int t) {
81                 _threads = t;
82         }
83
84         void as_xml (xmlpp::Node *) const;
85         
86         static boost::optional<ServerDescription> create_from_metadata (std::string);
87
88 private:
89         /** server's host name */
90         std::string _host_name;
91         /** number of threads to use on the server */
92         int _threads;
93 };
94
95 class Server : public ExceptionStore, public boost::noncopyable
96 {
97 public:
98         Server (boost::shared_ptr<Log> log, bool verbose);
99
100         void run (int num_threads);
101
102 private:
103         void worker_thread ();
104         int process (boost::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
105         void broadcast_thread ();
106         void broadcast_received ();
107
108         std::vector<boost::thread *> _worker_threads;
109         std::list<boost::shared_ptr<Socket> > _queue;
110         boost::mutex _worker_mutex;
111         boost::condition _worker_condition;
112         boost::shared_ptr<Log> _log;
113         bool _verbose;
114
115         struct Broadcast {
116
117                 Broadcast ()
118                         : thread (0)
119                         , socket (0)
120                 {}
121                 
122                 boost::thread* thread;
123                 boost::asio::ip::udp::socket* socket;
124                 char buffer[64];
125                 boost::asio::ip::udp::endpoint send_endpoint;
126                 
127         } _broadcast;
128 };
129
130 #endif