Another macOS std::list boost::thread SNAFU.
[dcpomatic.git] / src / lib / j2k_image_proxy.h
1 /*
2     Copyright (C) 2015-2017 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 #include "image_proxy.h"
22 #include <dcp/util.h>
23 #include <dcp/data.h>
24 #include <boost/thread/mutex.hpp>
25
26 namespace dcp {
27         class MonoPictureFrame;
28         class StereoPictureFrame;
29 }
30
31 class J2KImageProxy : public ImageProxy
32 {
33 public:
34         J2KImageProxy (boost::filesystem::path path, dcp::Size, AVPixelFormat pixel_format);
35
36         J2KImageProxy (
37                 boost::shared_ptr<const dcp::MonoPictureFrame> frame,
38                 dcp::Size,
39                 AVPixelFormat pixel_format,
40                 boost::optional<int> forced_reduction
41                 );
42
43         J2KImageProxy (
44                 boost::shared_ptr<const dcp::StereoPictureFrame> frame,
45                 dcp::Size,
46                 dcp::Eye,
47                 AVPixelFormat pixel_format,
48                 boost::optional<int> forced_reduction
49                 );
50
51         J2KImageProxy (boost::shared_ptr<cxml::Node> xml, boost::shared_ptr<Socket> socket);
52
53         std::pair<boost::shared_ptr<Image>, int> image (
54                 boost::optional<dcp::Size> size = boost::optional<dcp::Size> ()
55                 ) const;
56
57         void add_metadata (xmlpp::Node *) const;
58         void send_binary (boost::shared_ptr<Socket>) const;
59         /** @return true if our image is definitely the same as another, false if it is probably not */
60         bool same (boost::shared_ptr<const ImageProxy>) const;
61         int prepare (boost::optional<dcp::Size> = boost::optional<dcp::Size>()) const;
62
63         dcp::Data j2k () const {
64                 return _data;
65         }
66
67         dcp::Size size () const {
68                 return _size;
69         }
70
71         size_t memory_used () const;
72
73 private:
74         friend struct client_server_test_j2k;
75
76         /* For tests */
77         J2KImageProxy (dcp::Data data, dcp::Size size, AVPixelFormat pixel_format);
78
79         dcp::Data _data;
80         dcp::Size _size;
81         boost::optional<dcp::Eye> _eye;
82         mutable boost::shared_ptr<Image> _image;
83         mutable boost::optional<dcp::Size> _target_size;
84         mutable boost::optional<int> _reduce;
85         AVPixelFormat _pixel_format;
86         mutable boost::mutex _mutex;
87         boost::optional<int> _forced_reduction;
88 };