Merge delay-decode-take2 branch into master.
[dcpomatic.git] / src / lib / 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 <Magick++.h>
21 #include <libdcp/util.h>
22 #include <libdcp/raw_convert.h>
23 #include "image_proxy.h"
24 #include "image.h"
25 #include "exceptions.h"
26 #include "cross.h"
27
28 #include "i18n.h"
29
30 using std::cout;
31 using std::string;
32 using std::stringstream;
33 using boost::shared_ptr;
34
35 RawImageProxy::RawImageProxy (shared_ptr<Image> image)
36         : _image (image)
37 {
38
39 }
40
41 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
42 {
43         libdcp::Size size (
44                 xml->number_child<int> ("Width"), xml->number_child<int> ("Height")
45                 );
46
47         _image.reset (new Image (PIX_FMT_RGB24, size, true));
48         _image->read_from_socket (socket);
49 }
50
51 shared_ptr<Image>
52 RawImageProxy::image () const
53 {
54         return _image;
55 }
56
57 void
58 RawImageProxy::add_metadata (xmlpp::Node* node) const
59 {
60         node->add_child("Type")->add_child_text (N_("Raw"));
61         node->add_child("Width")->add_child_text (libdcp::raw_convert<string> (_image->size().width));
62         node->add_child("Height")->add_child_text (libdcp::raw_convert<string> (_image->size().height));
63 }
64
65 void
66 RawImageProxy::send_binary (shared_ptr<Socket> socket) const
67 {
68         _image->write_to_socket (socket);
69 }
70
71 MagickImageProxy::MagickImageProxy (boost::filesystem::path path)
72 {
73         /* Read the file into a Blob */
74         
75         boost::uintmax_t const size = boost::filesystem::file_size (path);
76         FILE* f = fopen_boost (path, "rb");
77         if (!f) {
78                 throw OpenFileError (path);
79         }
80                 
81         uint8_t* data = new uint8_t[size];
82         if (fread (data, 1, size, f) != size) {
83                 delete[] data;
84                 throw ReadFileError (path);
85         }
86         
87         fclose (f);
88         _blob.update (data, size);
89         delete[] data;
90 }
91
92 MagickImageProxy::MagickImageProxy (shared_ptr<cxml::Node>, shared_ptr<Socket> socket)
93 {
94         uint32_t const size = socket->read_uint32 ();
95         uint8_t* data = new uint8_t[size];
96         socket->read (data, size);
97         _blob.update (data, size);
98         delete[] data;
99 }
100
101 shared_ptr<Image>
102 MagickImageProxy::image () const
103 {
104         if (_image) {
105                 return _image;
106         }
107
108         Magick::Image* magick_image = 0;
109         try {
110                 magick_image = new Magick::Image (_blob);
111         } catch (...) {
112                 throw DecodeError (_("Could not decode image file"));
113         }
114
115         libdcp::Size size (magick_image->columns(), magick_image->rows());
116
117         _image.reset (new Image (PIX_FMT_RGB24, size, true));
118
119         using namespace MagickCore;
120         
121         uint8_t* p = _image->data()[0];
122         for (int y = 0; y < size.height; ++y) {
123                 uint8_t* q = p;
124                 for (int x = 0; x < size.width; ++x) {
125                         Magick::Color c = magick_image->pixelColor (x, y);
126                         *q++ = c.redQuantum() * 255 / QuantumRange;
127                         *q++ = c.greenQuantum() * 255 / QuantumRange;
128                         *q++ = c.blueQuantum() * 255 / QuantumRange;
129                 }
130                 p += _image->stride()[0];
131         }
132
133         delete magick_image;
134
135         return _image;
136 }
137
138 void
139 MagickImageProxy::add_metadata (xmlpp::Node* node) const
140 {
141         node->add_child("Type")->add_child_text (N_("Magick"));
142 }
143
144 void
145 MagickImageProxy::send_binary (shared_ptr<Socket> socket) const
146 {
147         socket->write (_blob.length ());
148         socket->write ((uint8_t *) _blob.data (), _blob.length ());
149 }
150
151 shared_ptr<ImageProxy>
152 image_proxy_factory (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
153 {
154         if (xml->string_child("Type") == N_("Raw")) {
155                 return shared_ptr<ImageProxy> (new RawImageProxy (xml, socket));
156         } else if (xml->string_child("Type") == N_("Magick")) {
157                 return shared_ptr<MagickImageProxy> (new MagickImageProxy (xml, socket));
158         }
159
160         throw NetworkError (_("Unexpected image type received by server"));
161 }