Make terminate_threads() less likely to leave _threads containing invalid pointers.
[dcpomatic.git] / src / lib / raw_image_proxy.cc
1 /*
2     Copyright (C) 2014-2018 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 "raw_image_proxy.h"
22 #include "image.h"
23 #include <dcp/raw_convert.h>
24 #include <dcp/util.h>
25 #include <libcxml/cxml.h>
26 extern "C" {
27 #include <libavutil/pixfmt.h>
28 }
29 #include <libxml++/libxml++.h>
30
31 #include "i18n.h"
32
33 using std::string;
34 using std::pair;
35 using std::make_pair;
36 using boost::shared_ptr;
37 using boost::dynamic_pointer_cast;
38 using boost::optional;
39 using dcp::raw_convert;
40
41 RawImageProxy::RawImageProxy (shared_ptr<Image> image)
42         : _image (image)
43 {
44
45 }
46
47 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
48 {
49         dcp::Size size (
50                 xml->number_child<int> ("Width"), xml->number_child<int> ("Height")
51                 );
52
53         _image.reset (new Image (static_cast<AVPixelFormat> (xml->number_child<int> ("PixelFormat")), size, true));
54         _image->read_from_socket (socket);
55 }
56
57 pair<shared_ptr<Image>, int>
58 RawImageProxy::image (optional<dcp::Size>) const
59 {
60         return make_pair (_image, 0);
61 }
62
63 void
64 RawImageProxy::add_metadata (xmlpp::Node* node) const
65 {
66         node->add_child("Type")->add_child_text (N_("Raw"));
67         node->add_child("Width")->add_child_text (raw_convert<string> (_image->size().width));
68         node->add_child("Height")->add_child_text (raw_convert<string> (_image->size().height));
69         node->add_child("PixelFormat")->add_child_text (raw_convert<string> (static_cast<int> (_image->pixel_format ())));
70 }
71
72 void
73 RawImageProxy::send_binary (shared_ptr<Socket> socket) const
74 {
75         _image->write_to_socket (socket);
76 }
77
78 bool
79 RawImageProxy::same (shared_ptr<const ImageProxy> other) const
80 {
81         shared_ptr<const RawImageProxy> rp = dynamic_pointer_cast<const RawImageProxy> (other);
82         if (!rp) {
83                 return false;
84         }
85
86         return (*_image.get()) == (*rp->image().first.get());
87 }
88
89 size_t
90 RawImageProxy::memory_used () const
91 {
92         return _image->memory_used ();
93 }