]> git.lyx.org Git - features.git/blob - src/frontends/xforms/xformsGImage.C
fix memory access bugs in flimage use.
[features.git] / src / frontends / xforms / xformsGImage.C
1 /*
2  * \file xformsGImage.C
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Angus Leeming <a.leeming@ic.ac.uk>
7  */
8
9 #include <config.h>
10
11 #ifdef __GNUG__
12 #pragma implementation
13 #endif
14
15 #include "xformsGImage.h"
16 #include "graphics/GraphicsParams.h"
17 #include "LColor.h"
18 #include "converter.h"              // formats
19 #include "debug.h"
20 #include "frontends/GUIRunTime.h"   // x11Display, x11Screen
21 #include "support/LAssert.h"
22 #include "support/lyxfunctional.h"  // compare_memfun
23
24 using std::find_if;
25
26 namespace {
27
28 void init_graphics();
29
30 unsigned int packedcolor(LColor::color c);
31
32 } // namespace anon
33
34
35 namespace grfx {
36
37 /// Access to this class is through this static method.
38 ImagePtr xformsGImage::newImage()
39 {
40         init_graphics();
41
42         ImagePtr ptr;
43         ptr.reset(new xformsGImage());
44         return ptr;
45 }
46
47
48 /// Return the list of loadable formats.
49 GImage::FormatList xformsGImage::loadableFormats()
50 {
51         static FormatList fmts;
52         if (!fmts.empty())
53                 return fmts;
54
55         init_graphics();
56
57         // The formats recognised by LyX
58         Formats::const_iterator begin = formats.begin();
59         Formats::const_iterator end   = formats.end();
60
61         lyxerr[Debug::GRAPHICS]
62                 << "\nThe image loader can load the following directly:\n";
63
64         // Don't forget the Fortran numbering used by xforms!
65         int const nformats = flimage_get_number_of_formats();
66         for (int i = 1; i <= nformats; ++i) {
67
68                 FLIMAGE_FORMAT_INFO const * info = flimage_get_format_info(i);
69                 string const formal_name =
70                         info->formal_name ? info->formal_name : string();
71                 string ext =
72                         info->extension   ? info->extension   : string();
73
74                 if (ext.empty() || ext == "gz")
75                         continue;
76
77                 if (ext == "rgb") ext = "sgi";
78
79                 lyxerr[Debug::GRAPHICS]
80                         << formal_name << ", extension \"" << ext << "\"\n";
81
82                 Formats::const_iterator it =
83                         find_if(begin, end,
84                                 lyx::compare_memfun(&Format::extension, ext));
85                 if (it != end)
86                         fmts.push_back(it->name());
87         }
88
89         lyxerr[Debug::GRAPHICS]
90                 << "\nOf these, LyX recognises the following formats:\n";
91
92         FormatList::const_iterator fbegin = fmts.begin();
93         FormatList::const_iterator fend   = fmts.end();
94         for (FormatList::const_iterator fit = fbegin; fit != fend; ++fit) {
95                 if (fit != fbegin)
96                         lyxerr[Debug::GRAPHICS] << ", ";
97                 lyxerr[Debug::GRAPHICS] << *fit;
98         }
99         lyxerr[Debug::GRAPHICS] << '\n' << std::endl;
100
101         return fmts;
102 }
103
104
105 xformsGImage::xformsGImage()
106         : image_(0),
107           pixmap_(0),
108           pixmap_status_(PIXMAP_UNINITIALISED)
109 {}
110
111
112 xformsGImage::xformsGImage(xformsGImage const & other)
113         : GImage(other),
114           image_(0),
115           pixmap_(0),
116           pixmap_status_(PIXMAP_UNINITIALISED)
117 {
118         if (other.image_) {
119                 image_ = flimage_dup(other.image_);
120                 image_->u_vdata = this;
121         }
122 }
123
124
125 xformsGImage::~xformsGImage()
126 {
127         if (image_)
128                 flimage_free(image_);
129         if (pixmap_)
130                 XFreePixmap(GUIRunTime::x11Display(), pixmap_);
131 }
132
133
134 GImage * xformsGImage::clone() const
135 {
136         return new xformsGImage(*this);
137 }
138
139
140 unsigned int xformsGImage::getWidth() const
141 {
142         if (!image_)
143                 return 0;
144         return image_->w;
145 }
146
147
148 unsigned int xformsGImage::getHeight() const
149 {
150         if (!image_)
151                 return 0;
152         return image_->h;
153 }
154
155
156 Pixmap xformsGImage::getPixmap() const
157 {
158         if (!pixmap_status_ == PIXMAP_SUCCESS)
159                 return 0;
160         return pixmap_;
161 }
162
163
164 void xformsGImage::load(string const & filename, SignalTypePtr on_finish)
165 {
166         if (image_) {
167                 lyxerr[Debug::GRAPHICS]
168                         << "Image is loaded already!" << std::endl;
169                 on_finish->emit(false);
170                 return;
171         }
172
173         image_ = flimage_open(filename.c_str());
174         if (!image_) {
175                 lyxerr[Debug::GRAPHICS]
176                         << "Unable to open image" << std::endl;
177                 on_finish->emit(false);
178                 return;
179         }
180
181         // Store the Signal that will be emitted once the image is loaded.
182         on_finish_ = on_finish;
183
184         // Set this now and we won't need to bother again.
185         image_->fill_color = packedcolor(LColor::graphicsbg);
186
187         // Used by the callback routines to return to this
188         image_->u_vdata = this;
189
190         // Begin the reading process.
191         flimage_read(image_);
192 }
193
194
195 bool xformsGImage::setPixmap(GParams const & params)
196 {
197         if (!image_ || params.display == GParams::NONE)
198                 return false;
199
200         Display * display = GUIRunTime::x11Display();
201
202         if (pixmap_ && pixmap_status_ == PIXMAP_SUCCESS)
203                 XFreePixmap(display, pixmap_);
204
205         int color_key;
206         switch (params.display) {
207         case GParams::MONOCHROME:
208                 color_key = FL_IMAGE_MONO;
209                 break;
210         case GParams::GRAYSCALE:
211                 color_key = FL_IMAGE_GRAY;
212                 break;
213         case GParams::COLOR:
214         default: // NONE cannot happen!
215                 color_key = FL_IMAGE_RGB;
216                 break;
217         }
218
219         if (color_key != FL_IMAGE_RGB) {
220                 flimage_convert(image_, color_key, 0);
221         }
222
223         unsigned int fill = packedcolor(LColor::graphicsbg);
224         if (fill != image_->fill_color) {
225                 // the background color has changed.
226                 // Note that in grayscale/monochrome images the background is
227                 // grayed also, so this call will have no visible effect. Sorry!
228                 flimage_replace_pixel(image_, image_->fill_color, fill);
229                 image_->fill_color = fill;
230         }
231
232         image_->xdisplay = display;
233         Screen * screen  = ScreenOfDisplay(display, GUIRunTime::x11Screen());
234
235         pixmap_ = flimage_to_pixmap(image_, XRootWindowOfScreen(screen));
236         pixmap_status_ = pixmap_ ? PIXMAP_SUCCESS : PIXMAP_FAILED;
237
238         return pixmap_status_ == PIXMAP_SUCCESS;
239 }
240
241
242 void xformsGImage::clip(GParams const & params)
243 {
244         if (!image_)
245                 return;
246
247         if (params.bb.empty())
248                 // No clipping is necessary.
249                 return;
250
251         int const new_width  = params.bb.xr - params.bb.xl;
252         int const new_height = params.bb.yt - params.bb.yb;
253
254         if (new_width > image_->w || new_height > image_->h)
255                 // Bounds are invalid.
256                 return;
257
258         if (new_width == image_->w && new_height == image_->h)
259                 // Bounds are unchanged.
260                 return;
261
262         int const xoffset_l = params.bb.xl;
263         int const xoffset_r = image_->w - params.bb.xr;
264         int const yoffset_t = image_->h - params.bb.yt;
265         int const yoffset_b = params.bb.yb;
266
267         flimage_crop(image_, xoffset_l, yoffset_t, xoffset_r, yoffset_b);
268 }
269
270
271 void xformsGImage::rotate(GParams const & params)
272 {
273         if (!image_)
274                 return ;
275
276         if (!params.angle)
277                 // No rotation is necessary.
278                 return;
279
280         // The angle passed to flimage_rotate is the angle in one-tenth of a
281         // degree units.
282         flimage_rotate(image_, params.angle * 10, FLIMAGE_SUBPIXEL);
283 }
284
285
286 void xformsGImage::scale(GParams const & params)
287 {
288         if (!image_)
289                 return;
290
291         // boost::tie produces horrible compilation errors on my machine
292         // Angus 25 Feb 2002
293         std::pair<unsigned int, unsigned int> d = getScaledDimensions(params);
294         unsigned int const width  = d.first;
295         unsigned int const height = d.second;
296
297         if (width == getWidth() && height == getHeight())
298                 // No scaling needed
299                 return;
300
301         flimage_scale(image_, width, height, FLIMAGE_SUBPIXEL);
302 }
303
304
305 void xformsGImage::statusCB(string const & status_message)
306 {
307         if (status_message.empty() || !on_finish_.get())
308                 return;
309
310         if (prefixIs(status_message, "Done Reading")) {
311                 if (image_) {
312                         flimage_close(image_);
313                 }
314
315                 if (on_finish_.get()) {
316                         on_finish_->emit(true);
317                         on_finish_.reset();
318                 }
319         }
320 }
321
322
323 void xformsGImage::errorCB(string const & error_message)
324 {
325         if (error_message.empty() || !on_finish_.get())
326                 return;
327
328         if (image_) {
329                 flimage_close(image_);
330         }
331
332         if (on_finish_.get()) {
333                 on_finish_->emit(false);
334                 on_finish_.reset();
335         }
336 }
337
338 } // namespace grfx
339
340
341 namespace {
342
343 extern "C" {
344
345 int status_report(FL_IMAGE * ob, const char *s)
346 {
347         lyx::Assert(ob && ob->u_vdata);
348
349         string const str = s ? strip(s) : string();
350         if (str.empty())
351                 return 0;
352
353         lyxerr[Debug::GRAPHICS]
354                 << "xforms image loader. Status : " << str << std::endl;
355
356         grfx::xformsGImage * ptr =
357                 static_cast<grfx::xformsGImage *>(ob->u_vdata);
358         ptr->statusCB(str);
359
360         return 0;
361 }
362
363
364 static void error_report(FL_IMAGE * ob, const char *s)
365 {
366         lyx::Assert(ob && ob->u_vdata);
367
368         string const str = s ? strip(s) : string();
369         if (str.empty())
370                 return;
371
372         lyxerr[Debug::GRAPHICS]
373                 << "xforms image loader. Error : " << str << std::endl;
374
375         grfx::xformsGImage * ptr =
376                 static_cast<grfx::xformsGImage *>(ob->u_vdata);
377         ptr->errorCB(str);
378 }
379
380 } // extern "C"
381
382
383 void init_graphics()
384 {
385         // Paranoia check
386         static bool initialised = false;
387         if (initialised)
388                 return;
389         initialised = true;
390
391         flimage_enable_bmp();
392         flimage_enable_fits();
393         flimage_enable_gif();
394         flimage_enable_jpeg();
395
396         // xforms itself uses pngtopnm to convert to a loadable format.
397         // We prefer to use our own conversion mechanism, therefore.
398         // flimage_enable_png();
399
400         flimage_enable_pnm();
401
402 #ifdef HAVE_FLIMAGE_ENABLE_PS
403         // xforms recognises PS but not EPS
404         flimage_enable_ps();
405 #endif
406
407         flimage_enable_sgi();
408         flimage_enable_tiff();
409         flimage_enable_xbm();
410         flimage_enable_xwd();
411         flimage_enable_xpm();
412
413         // xforms stores this permanently (does not make a copy) so
414         // this should never be destroyed.
415         static FLIMAGE_SETUP setup;
416         setup.visual_cue    = status_report;
417         setup.error_message = error_report;
418         flimage_setup(&setup);
419 }
420
421
422 unsigned int packedcolor(LColor::color c)
423 {
424         string const x11color = lcolor.getX11Name(c);
425
426         Display * display = GUIRunTime::x11Display();
427         Colormap cmap     = GUIRunTime::x11Colormap();
428         XColor xcol;
429         XColor ccol;
430         if (XLookupColor(display, cmap, x11color.c_str(), &xcol, &ccol) == 0)
431                 // Unable to parse x11color.
432                 return FL_PACK(255,255,255);
433
434         // Note that X stores the RGB values in the range 0 - 65535
435         // whilst we require them in the range 0 - 255.
436         unsigned int const r = xcol.red   / 256;
437         unsigned int const g = xcol.green / 256;
438         unsigned int const b = xcol.blue  / 256;
439
440         return FL_PACK(r, g, b);
441 }
442
443 } // namespace anon