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