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