Split up image_proxy.{cc,h}
[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 extern "C" {
21 #include <libavutil/pixfmt.h>
22 }
23 #include <libcxml/cxml.h>
24 #include <dcp/util.h>
25 #include <dcp/raw_convert.h>
26 #include "raw_image_proxy.h"
27 #include "image.h"
28
29 #include "i18n.h"
30
31 using std::string;
32 using boost::shared_ptr;
33
34 RawImageProxy::RawImageProxy (shared_ptr<Image> image, shared_ptr<Log> log)
35         : ImageProxy (log)
36         , _image (image)
37 {
38
39 }
40
41 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket, shared_ptr<Log> log)
42         : ImageProxy (log)
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 () 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 (dcp::raw_convert<string> (_image->size().width));
63         node->add_child("Height")->add_child_text (dcp::raw_convert<string> (_image->size().height));
64         node->add_child("PixelFormat")->add_child_text (dcp::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 }