Assorted C++11/formatting cleanups.
[dcpomatic.git] / src / lib / j2k_encoder.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_J2K_ENCODER_H
23 #define DCPOMATIC_J2K_ENCODER_H
24
25
26 /** @file  src/j2k_encoder.h
27  *  @brief J2KEncoder class.
28  */
29
30
31 #include "util.h"
32 #include "cross.h"
33 #include "event_history.h"
34 #include "exception_store.h"
35 #include <boost/thread/mutex.hpp>
36 #include <boost/thread/condition.hpp>
37 #include <boost/thread.hpp>
38 #include <boost/optional.hpp>
39 #include <boost/signals2.hpp>
40 #include <list>
41 #include <stdint.h>
42
43
44 class Film;
45 class EncodeServerDescription;
46 class DCPVideo;
47 class Writer;
48 class Job;
49 class PlayerVideo;
50
51
52 /** @class J2KEncoder
53  *  @brief Class to manage encoding to J2K.
54  *
55  *  This class keeps a queue of frames to be encoded and distributes
56  *  the work around threads and encoding servers.
57  */
58 class J2KEncoder : public boost::noncopyable, public ExceptionStore, public std::enable_shared_from_this<J2KEncoder>
59 {
60 public:
61         J2KEncoder (std::shared_ptr<const Film> film, std::shared_ptr<Writer> writer);
62         ~J2KEncoder ();
63
64         /** Called to indicate that a processing run is about to begin */
65         void begin ();
66
67         /** Called to pass a bit of video to be encoded as the next DCP frame */
68         void encode (std::shared_ptr<PlayerVideo> pv, dcpomatic::DCPTime time);
69
70         /** Called when a processing run has finished */
71         void end ();
72
73         boost::optional<float> current_encoding_rate () const;
74         int video_frames_enqueued () const;
75
76         void servers_list_changed ();
77
78 private:
79
80         static void call_servers_list_changed (std::weak_ptr<J2KEncoder> encoder);
81
82         void frame_done ();
83
84         void encoder_thread (boost::optional<EncodeServerDescription>);
85         void terminate_threads ();
86
87         /** Film that we are encoding */
88         std::shared_ptr<const Film> _film;
89
90         EventHistory _history;
91
92         boost::mutex _threads_mutex;
93         std::shared_ptr<boost::thread_group> _threads;
94
95         mutable boost::mutex _queue_mutex;
96         std::list<std::shared_ptr<DCPVideo>> _queue;
97         /** condition to manage thread wakeups when we have nothing to do */
98         boost::condition _empty_condition;
99         /** condition to manage thread wakeups when we have too much to do */
100         boost::condition _full_condition;
101
102         std::shared_ptr<Writer> _writer;
103         Waker _waker;
104
105         std::shared_ptr<PlayerVideo> _last_player_video[static_cast<int>(Eyes::COUNT)];
106         boost::optional<dcpomatic::DCPTime> _last_player_video_time;
107
108         boost::signals2::scoped_connection _server_found_connection;
109 };
110
111
112 #endif