d4d7e8aa6b8690a2c8945b5fae5111b3fc4c4b35
[dcpomatic.git] / src / lib / magick_image_proxy.cc
1 /*
2     Copyright (C) 2014-2015 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 "dcpomatic_socket.h"
25 #include "image.h"
26 #include "compose.hpp"
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::optional;
34 using boost::dynamic_pointer_cast;
35
36 MagickImageProxy::MagickImageProxy (boost::filesystem::path path)
37 {
38         /* Read the file into a Blob */
39         
40         boost::uintmax_t const size = boost::filesystem::file_size (path);
41         FILE* f = fopen_boost (path, "rb");
42         if (!f) {
43                 throw OpenFileError (path);
44         }
45                 
46         uint8_t* data = new uint8_t[size];
47         if (fread (data, 1, size, f) != size) {
48                 delete[] data;
49                 throw ReadFileError (path);
50         }
51         
52         fclose (f);
53         _blob.update (data, size);
54         delete[] data;
55 }
56
57 MagickImageProxy::MagickImageProxy (shared_ptr<cxml::Node>, shared_ptr<Socket> socket)
58 {
59         uint32_t const size = socket->read_uint32 ();
60         uint8_t* data = new uint8_t[size];
61         socket->read (data, size);
62         _blob.update (data, size);
63         delete[] data;
64 }
65
66 shared_ptr<Image>
67 MagickImageProxy::image (optional<dcp::NoteHandler>) const
68 {
69         boost::mutex::scoped_lock lm (_mutex);
70         
71         if (_image) {
72                 return _image;
73         }
74
75         Magick::Image* magick_image = 0;
76         string error;
77         try {
78                 magick_image = new Magick::Image (_blob);
79         } catch (Magick::Exception& e) {
80                 error = e.what ();
81         }
82
83         if (!magick_image) {
84                 /* ImageMagick cannot auto-detect Targa files, it seems, so try here with an
85                    explicit format.  I can't find it documented that passing a (0, 0) geometry
86                    is allowed, but it seems to work.
87                 */
88                 try {
89                         magick_image = new Magick::Image (_blob, Magick::Geometry (0, 0), "TGA");
90                 } catch (...) {
91
92                 }
93         }
94
95         if (!magick_image) {
96                 /* If we failed both an auto-detect and a forced-Targa we give the error from
97                    the auto-detect.
98                 */
99                 throw DecodeError (String::compose (_("Could not decode image file (%1)"), error));
100         }
101
102         dcp::Size size (magick_image->columns(), magick_image->rows());
103
104         _image.reset (new Image (PIX_FMT_RGB24, size, true));
105
106         /* Write line-by-line here as _image must be aligned, and write() cannot be told about strides */
107         uint8_t* p = _image->data()[0];
108         for (int i = 0; i < size.height; ++i) {
109 #ifdef DCPOMATIC_IMAGE_MAGICK
110                 using namespace MagickCore;
111 #else
112                 using namespace MagickLib;
113 #endif          
114                 magick_image->write (0, i, size.width, 1, "RGB", CharPixel, p);
115                 p += _image->stride()[0];
116         }
117
118         delete magick_image;
119
120         return _image;
121 }
122
123 void
124 MagickImageProxy::add_metadata (xmlpp::Node* node) const
125 {
126         node->add_child("Type")->add_child_text (N_("Magick"));
127 }
128
129 void
130 MagickImageProxy::send_binary (shared_ptr<Socket> socket) const
131 {
132         socket->write (_blob.length ());
133         socket->write ((uint8_t *) _blob.data (), _blob.length ());
134 }
135
136 bool
137 MagickImageProxy::same (shared_ptr<const ImageProxy> other) const
138 {
139         shared_ptr<const MagickImageProxy> mp = dynamic_pointer_cast<const MagickImageProxy> (other);
140         if (!mp) {
141                 return false;
142         }
143
144         if (_blob.length() != mp->_blob.length()) {
145                 return false;
146         }
147         
148         return memcmp (_blob.data(), mp->_blob.data(), _blob.length()) == 0;
149 }