Use full/empty conditions rather than just a single condition for the server and...
[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         /* 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 private:
83         /** server's host name */
84         std::string _host_name;
85         /** number of threads to use on the server */
86         int _threads;
87 };
88
89 class Server : public ExceptionStore, public boost::noncopyable
90 {
91 public:
92         Server (boost::shared_ptr<Log> log, bool verbose);
93
94         void run (int num_threads);
95
96 private:
97         void worker_thread ();
98         int process (boost::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
99         void broadcast_thread ();
100         void broadcast_received ();
101
102         std::vector<boost::thread *> _worker_threads;
103         std::list<boost::shared_ptr<Socket> > _queue;
104         boost::mutex _worker_mutex;
105         boost::condition _full_condition;
106         boost::condition _empty_condition;
107         boost::shared_ptr<Log> _log;
108         bool _verbose;
109
110         struct Broadcast {
111
112                 Broadcast ()
113                         : thread (0)
114                         , socket (0)
115                 {}
116                 
117                 boost::thread* thread;
118                 boost::asio::ip::udp::socket* socket;
119                 char buffer[64];
120                 boost::asio::ip::udp::endpoint send_endpoint;
121                 
122         } _broadcast;
123 };
124
125 #endif