Missed update to private test repo version.
[dcpomatic.git] / src / lib / encode_server.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_ENCODE_SERVER_H
22 #define DCPOMATIC_ENCODE_SERVER_H
23
24 /** @file src/encode_server.h
25  *  @brief EncodeServer class.
26  */
27
28 #include "server.h"
29 #include "exception_store.h"
30 #include <boost/thread.hpp>
31 #include <boost/asio.hpp>
32 #include <boost/thread/condition.hpp>
33 #include <string>
34
35 class Socket;
36 class Log;
37
38 /** @class EncodeServer
39  *  @brief A class to run a server which can accept requests to perform JPEG2000
40  *  encoding work.
41  */
42 class EncodeServer : public Server, public ExceptionStore
43 {
44 public:
45         EncodeServer (bool verbose, int num_threads);
46         ~EncodeServer ();
47
48         void run ();
49
50 private:
51         void handle (boost::shared_ptr<Socket>);
52         void worker_thread ();
53         int process (boost::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
54         void broadcast_thread ();
55         void broadcast_received ();
56
57         std::vector<boost::thread *> _worker_threads;
58         std::list<boost::shared_ptr<Socket> > _queue;
59         boost::condition _full_condition;
60         boost::condition _empty_condition;
61         bool _verbose;
62         int _num_threads;
63
64         struct Broadcast {
65
66                 Broadcast ()
67                         : thread (0)
68                         , socket (0)
69                 {}
70
71                 boost::mutex mutex;
72                 boost::thread* thread;
73                 boost::asio::ip::udp::socket* socket;
74                 char buffer[64];
75                 boost::asio::ip::udp::endpoint send_endpoint;
76                 boost::asio::io_service io_service;
77
78         } _broadcast;
79 };
80
81 #endif