Fix the build for older macOS.
[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 "server.h"
32 #include "exception_store.h"
33 #include <boost/thread.hpp>
34 #include <boost/asio.hpp>
35 #include <boost/thread/condition.hpp>
36 #include <string>
37
38
39 class Socket;
40 class Log;
41
42
43 /** @class EncodeServer
44  *  @brief A class to run a server which can accept requests to perform JPEG2000
45  *  encoding work.
46  */
47 class EncodeServer : public Server, public ExceptionStore
48 {
49 public:
50         EncodeServer (bool verbose, int num_threads);
51         ~EncodeServer ();
52
53         void run ();
54
55 private:
56         void handle (std::shared_ptr<Socket>);
57         void worker_thread ();
58         int process (std::shared_ptr<Socket> socket, struct timeval &, struct timeval &);
59         void broadcast_thread ();
60         void broadcast_received ();
61
62         boost::thread_group _worker_threads;
63         std::list<std::shared_ptr<Socket>> _queue;
64         boost::condition _full_condition;
65         boost::condition _empty_condition;
66         bool _verbose;
67         int _num_threads;
68
69         struct Broadcast {
70
71                 Broadcast ()
72                         : socket (0)
73                 {}
74
75                 boost::mutex mutex;
76                 boost::thread thread;
77                 boost::asio::ip::udp::socket* socket;
78                 char buffer[64];
79                 boost::asio::ip::udp::endpoint send_endpoint;
80                 boost::asio::io_service io_service;
81
82         } _broadcast;
83 };
84
85
86 #endif