Merge master.
[dcpomatic.git] / src / lib / magick_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 "magick_image_proxy.h"
22 #include "cross.h"
23 #include "exceptions.h"
24 #include "util.h"
25 #include "log.h"
26 #include "image.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::string;
34 using boost::shared_ptr;
35
36 MagickImageProxy::MagickImageProxy (boost::filesystem::path path, shared_ptr<Log> log)
37         : ImageProxy (log)
38 {
39         /* Read the file into a Blob */
40         
41         boost::uintmax_t const size = boost::filesystem::file_size (path);
42         FILE* f = fopen_boost (path, "rb");
43         if (!f) {
44                 throw OpenFileError (path);
45         }
46                 
47         uint8_t* data = new uint8_t[size];
48         if (fread (data, 1, size, f) != size) {
49                 delete[] data;
50                 throw ReadFileError (path);
51         }
52         
53         fclose (f);
54         _blob.update (data, size);
55         delete[] data;
56 }
57
58 MagickImageProxy::MagickImageProxy (shared_ptr<cxml::Node>, shared_ptr<Socket> socket, shared_ptr<Log> log)
59         : ImageProxy (log)
60 {
61         uint32_t const size = socket->read_uint32 ();
62         uint8_t* data = new uint8_t[size];
63         socket->read (data, size);
64         _blob.update (data, size);
65         delete[] data;
66 }
67
68 shared_ptr<Image>
69 MagickImageProxy::image () const
70 {
71         if (_image) {
72                 return _image;
73         }
74
75         LOG_TIMING ("[%1] MagickImageProxy begins decode and convert of %2 bytes", boost::this_thread::get_id(), _blob.length());
76
77         Magick::Image* magick_image = 0;
78         string error;
79         try {
80                 magick_image = new Magick::Image (_blob);
81         } catch (Magick::Exception& e) {
82                 error = e.what ();
83         }
84
85         if (!magick_image) {
86                 /* ImageMagick cannot auto-detect Targa files, it seems, so try here with an
87                    explicit format.  I can't find it documented that passing a (0, 0) geometry
88                    is allowed, but it seems to work.
89                 */
90                 try {
91                         magick_image = new Magick::Image (_blob, Magick::Geometry (0, 0), "TGA");
92                 } catch (...) {
93
94                 }
95         }
96
97         if (!magick_image) {
98                 /* If we failed both an auto-detect and a forced-Targa we give the error from
99                    the auto-detect.
100                 */
101                 throw DecodeError (String::compose (_("Could not decode image file (%1)"), error));
102         }
103
104         dcp::Size size (magick_image->columns(), magick_image->rows());
105         LOG_TIMING ("[%1] MagickImageProxy decode finished", boost::this_thread::get_id ());
106
107         _image.reset (new Image (PIX_FMT_RGB24, size, true));
108
109         /* Write line-by-line here as _image must be aligned, and write() cannot be told about strides */
110         uint8_t* p = _image->data()[0];
111         for (int i = 0; i < size.height; ++i) {
112                 using namespace MagickCore;
113                 magick_image->write (0, i, size.width, 1, "RGB", CharPixel, p);
114                 p += _image->stride()[0];
115         }
116
117         delete magick_image;
118
119         LOG_TIMING ("[%1] MagickImageProxy completes decode and convert of %2 bytes", boost::this_thread::get_id(), _blob.length());
120
121         return _image;
122 }
123
124 void
125 MagickImageProxy::add_metadata (xmlpp::Node* node) const
126 {
127         node->add_child("Type")->add_child_text (N_("Magick"));
128 }
129
130 void
131 MagickImageProxy::send_binary (shared_ptr<Socket> socket) const
132 {
133         socket->write (_blob.length ());
134         socket->write ((uint8_t *) _blob.data (), _blob.length ());
135 }