Remove unused variable.
[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         ~Server ();
94
95         void run (int num_threads);
96
97 private:
98         void worker_thread ();
99         int process (boost::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
100         void broadcast_thread ();
101         void broadcast_received ();
102         void start_accept ();
103         void handle_accept (boost::shared_ptr<Socket>, boost::system::error_code const &);
104
105         bool _terminate;
106
107         std::vector<boost::thread *> _worker_threads;
108         std::list<boost::shared_ptr<Socket> > _queue;
109         boost::mutex _worker_mutex;
110         boost::condition _full_condition;
111         boost::condition _empty_condition;
112         boost::shared_ptr<Log> _log;
113         bool _verbose;
114
115         boost::asio::io_service _io_service;
116         boost::asio::ip::tcp::acceptor _acceptor;
117
118         struct Broadcast {
119
120                 Broadcast ()
121                         : thread (0)
122                         , socket (0)
123                 {}
124                 
125                 boost::thread* thread;
126                 boost::asio::ip::udp::socket* socket;
127                 char buffer[64];
128                 boost::asio::ip::udp::endpoint send_endpoint;
129                 boost::asio::io_service io_service;
130                 
131         } _broadcast;
132 };
133
134 #endif