Logging improvements to allow prettier displays in the server GUI.
[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 #include <libcxml/cxml.h>
25 extern "C" {
26 #include <libavutil/pixfmt.h>
27 }
28 #include <libxml++/libxml++.h>
29
30 #include "i18n.h"
31
32 using std::string;
33 using boost::shared_ptr;
34 using boost::dynamic_pointer_cast;
35 using boost::optional;
36
37 RawImageProxy::RawImageProxy (shared_ptr<Image> image)
38         : _image (image)
39 {
40
41 }
42
43 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
44 {
45         dcp::Size size (
46                 xml->number_child<int> ("Width"), xml->number_child<int> ("Height")
47                 );
48
49         _image.reset (new Image (static_cast<AVPixelFormat> (xml->number_child<int> ("PixelFormat")), size, true));
50         _image->read_from_socket (socket);
51 }
52
53 shared_ptr<Image>
54 RawImageProxy::image (optional<dcp::NoteHandler>) const
55 {
56         return _image;
57 }
58
59 void
60 RawImageProxy::add_metadata (xmlpp::Node* node) const
61 {
62         node->add_child("Type")->add_child_text (N_("Raw"));
63         node->add_child("Width")->add_child_text (raw_convert<string> (_image->size().width));
64         node->add_child("Height")->add_child_text (raw_convert<string> (_image->size().height));
65         node->add_child("PixelFormat")->add_child_text (raw_convert<string> (_image->pixel_format ()));
66 }
67
68 void
69 RawImageProxy::send_binary (shared_ptr<Socket> socket) const
70 {
71         _image->write_to_socket (socket);
72 }
73
74 bool
75 RawImageProxy::same (shared_ptr<const ImageProxy> other) const
76 {
77         shared_ptr<const RawImageProxy> rp = dynamic_pointer_cast<const RawImageProxy> (other);
78         if (!rp) {
79                 return false;
80         }
81
82         return (*_image.get()) == (*rp->image().get());
83 }