Use Image::operator== to compare RawImageProxy which should be faster.
[dcpomatic.git] / src / lib / raw_image_proxy.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "raw_image_proxy.h"
21 #include "image.h"
22 #include "raw_convert.h"
23 #include <dcp/util.h>
24 extern "C" {
25 #include <libavutil/pixfmt.h>
26 }
27 #include <libcxml/cxml.h>
28
29 #include "i18n.h"
30
31 using std::string;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34 using boost::optional;
35
36 RawImageProxy::RawImageProxy (shared_ptr<Image> image)
37         : _image (image)
38 {
39
40 }
41
42 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
43 {
44         dcp::Size size (
45                 xml->number_child<int> ("Width"), xml->number_child<int> ("Height")
46                 );
47
48         _image.reset (new Image (static_cast<AVPixelFormat> (xml->number_child<int> ("PixelFormat")), size, true));
49         _image->read_from_socket (socket);
50 }
51
52 shared_ptr<Image>
53 RawImageProxy::image (optional<dcp::NoteHandler>) const
54 {
55         return _image;
56 }
57
58 void
59 RawImageProxy::add_metadata (xmlpp::Node* node) const
60 {
61         node->add_child("Type")->add_child_text (N_("Raw"));
62         node->add_child("Width")->add_child_text (raw_convert<string> (_image->size().width));
63         node->add_child("Height")->add_child_text (raw_convert<string> (_image->size().height));
64         node->add_child("PixelFormat")->add_child_text (raw_convert<string> (_image->pixel_format ()));
65 }
66
67 void
68 RawImageProxy::send_binary (shared_ptr<Socket> socket) const
69 {
70         _image->write_to_socket (socket);
71 }
72
73 bool
74 RawImageProxy::same (shared_ptr<const ImageProxy> other) const
75 {
76         shared_ptr<const RawImageProxy> rp = dynamic_pointer_cast<const RawImageProxy> (other);
77         if (!rp) {
78                 return false;
79         }
80
81         return (*_image.get()) == (*rp->image().get());
82 }