Supporters update.
[dcpomatic.git] / src / lib / encode_server.h
1 /*
2     Copyright (C) 2012-2021 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
22 #ifndef DCPOMATIC_ENCODE_SERVER_H
23 #define DCPOMATIC_ENCODE_SERVER_H
24
25
26 /** @file src/encode_server.h
27  *  @brief EncodeServer class.
28  */
29
30
31 #include "cross.h"
32 #include "exception_store.h"
33 #include "server.h"
34 #include <boost/asio.hpp>
35 #include <boost/thread.hpp>
36 #include <boost/thread/condition.hpp>
37 #include <string>
38
39
40 class Log;
41 class Socket;
42
43
44 /** @class EncodeServer
45  *  @brief A class to run a server which can accept requests to perform JPEG2000
46  *  encoding work.
47  */
48 class EncodeServer : public Server, public ExceptionStore
49 {
50 public:
51         EncodeServer (bool verbose, int num_threads);
52         ~EncodeServer ();
53
54         void run () override;
55
56 private:
57         void handle (std::shared_ptr<Socket>) override;
58         void worker_thread ();
59         int process (std::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
60         void broadcast_thread ();
61         void broadcast_received ();
62
63         boost::thread_group _worker_threads;
64         std::list<std::shared_ptr<Socket>> _queue;
65         boost::condition _full_condition;
66         boost::condition _empty_condition;
67         bool _verbose;
68         int _num_threads;
69         Waker _waker;
70
71         struct Broadcast {
72
73                 Broadcast ()
74                         : socket (0)
75                 {}
76
77                 boost::mutex mutex;
78                 boost::thread thread;
79                 boost::asio::ip::udp::socket* socket;
80                 char buffer[64];
81                 boost::asio::ip::udp::endpoint send_endpoint;
82                 boost::asio::io_service io_service;
83
84         } _broadcast;
85 };
86
87
88 #endif