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