]> git.lyx.org Git - lyx.git/blob - src/insets/InsetGraphics.cpp
Use correct bounding box when exporting from command line
[lyx.git] / src / insets / InsetGraphics.cpp
1 /**
2  * \file InsetGraphics.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Baruch Even
7  * \author Herbert Voß
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 /*
13 TODO
14
15     * What advanced features the users want to do?
16       Implement them in a non latex dependent way, but a logical way.
17       LyX should translate it to latex or any other fitting format.
18     * When loading, if the image is not found in the expected place, try
19       to find it in the clipart, or in the same directory with the image.
20     * The image choosing dialog could show thumbnails of the image formats
21       it knows of, thus selection based on the image instead of based on
22       filename.
23     * Add support for the 'picins' package.
24     * Add support for the 'picinpar' package.
25 */
26
27 /* NOTES:
28  * Fileformat:
29  * The filename is kept in  the lyx file in a relative way, so as to allow
30  * moving the document file and its images with no problem.
31  *
32  *
33  * Conversions:
34  *   Postscript output means EPS figures.
35  *
36  *   PDF output is best done with PDF figures if it's a direct conversion
37  *   or PNG figures otherwise.
38  *      Image format
39  *      from        to
40  *      EPS         epstopdf
41  *      PS          ps2pdf
42  *      JPG/PNG     direct
43  *      PDF         direct
44  *      others      PNG
45  */
46
47 #include <config.h>
48
49 #include "insets/InsetGraphics.h"
50 #include "insets/RenderGraphic.h"
51
52 #include "Buffer.h"
53 #include "BufferView.h"
54 #include "Converter.h"
55 #include "Cursor.h"
56 #include "DispatchResult.h"
57 #include "Encoding.h"
58 #include "ErrorList.h"
59 #include "Exporter.h"
60 #include "Format.h"
61 #include "FuncRequest.h"
62 #include "FuncStatus.h"
63 #include "InsetIterator.h"
64 #include "LaTeXFeatures.h"
65 #include "Lexer.h"
66 #include "MetricsInfo.h"
67 #include "Mover.h"
68 #include "OutputParams.h"
69 #include "output_docbook.h"
70 #include "output_xhtml.h"
71 #include "xml.h"
72 #include "texstream.h"
73 #include "TocBackend.h"
74
75 #include "frontends/alert.h"
76 #include "frontends/Application.h"
77
78 #include "graphics/GraphicsCache.h"
79 #include "graphics/GraphicsCacheItem.h"
80 #include "graphics/GraphicsImage.h"
81
82 #include "support/convert.h"
83 #include "support/debug.h"
84 #include "support/docstream.h"
85 #include "support/ExceptionMessage.h"
86 #include "support/filetools.h"
87 #include "support/gettext.h"
88 #include "support/Length.h"
89 #include "support/lyxlib.h"
90 #include "support/lstrings.h"
91 #include "support/os.h"
92 #include "support/qstring_helpers.h"
93 #include "support/Systemcall.h"
94
95 #include <QProcess>
96 #include <QtGui/QImage>
97
98 #include <algorithm>
99 #include <sstream>
100
101 using namespace std;
102 using namespace lyx::support;
103
104 namespace lyx {
105
106 namespace Alert = frontend::Alert;
107
108 namespace {
109
110 /// Find the most suitable image format for images in \p format
111 /// Note that \p format may be unknown (i.e. an empty string)
112 string findTargetFormat(string const & format, OutputParams const & runparams)
113 {
114         // Are we latexing to DVI or PDF?
115         if (runparams.flavor == OutputParams::PDFLATEX
116             || runparams.flavor == OutputParams::XETEX
117             || runparams.flavor == OutputParams::LUATEX) {
118                 LYXERR(Debug::GRAPHICS, "findTargetFormat: PDF mode");
119                 Format const * const f = theFormats().getFormat(format);
120                 // Convert vector graphics to pdf
121                 if (f && f->vectorFormat())
122                         return "pdf6";
123                 // pdflatex can use jpeg, png and pdf directly
124                 if (format == "jpg")
125                         return format;
126                 // Convert everything else to png
127                 return "png";
128         }
129
130     // for HTML and DocBook, we leave the known formats and otherwise convert to png
131     if (runparams.flavor == OutputParams::HTML || runparams.flavor == OutputParams::DOCBOOK5) {
132                 Format const * const f = theFormats().getFormat(format);
133                 // Convert vector graphics to svg
134                 if (f && f->vectorFormat() && theConverters().isReachable(format, "svg"))
135                         return "svg";
136                 // Leave the known formats alone
137                 if (format == "jpg" || format == "png" || format == "gif")
138                         return format;
139                 // Convert everything else to png
140                 return "png";
141         }
142         // If it's postscript, we always do eps.
143         LYXERR(Debug::GRAPHICS, "findTargetFormat: PostScript mode");
144         if (format != "ps")
145                 // any other than ps is changed to eps
146                 return "eps";
147         // let ps untouched
148         return format;
149 }
150
151
152 void readInsetGraphics(Lexer & lex, Buffer const & buf, bool allowOrigin,
153         InsetGraphicsParams & params)
154 {
155         bool finished = false;
156
157         while (lex.isOK() && !finished) {
158                 lex.next();
159
160                 string const token = lex.getString();
161                 LYXERR(Debug::GRAPHICS, "Token: '" << token << '\'');
162
163                 if (token.empty())
164                         continue;
165
166                 if (token == "\\end_inset") {
167                         finished = true;
168                 } else {
169                         if (!params.Read(lex, token, buf, allowOrigin))
170                                 lyxerr << "Unknown token, "
171                                        << token
172                                        << ", skipping."
173                                        << endl;
174                 }
175         }
176 }
177
178 } // namespace
179
180
181 InsetGraphics::InsetGraphics(Buffer * buf)
182         : Inset(buf), graphic_label(xml::uniqueID(from_ascii("graph"))),
183           graphic_(new RenderGraphic(this))
184 {
185 }
186
187
188 InsetGraphics::InsetGraphics(InsetGraphics const & ig)
189         : Inset(ig),
190           graphic_label(xml::uniqueID(from_ascii("graph"))),
191           graphic_(new RenderGraphic(*ig.graphic_, this))
192 {
193         setParams(ig.params());
194 }
195
196
197 Inset * InsetGraphics::clone() const
198 {
199         return new InsetGraphics(*this);
200 }
201
202
203 InsetGraphics::~InsetGraphics()
204 {
205         hideDialogs("graphics", this);
206         delete graphic_;
207 }
208
209
210 void InsetGraphics::doDispatch(Cursor & cur, FuncRequest & cmd)
211 {
212         switch (cmd.action()) {
213         case LFUN_INSET_EDIT: {
214                 InsetGraphicsParams p = params();
215                 if (!cmd.argument().empty())
216                         string2params(to_utf8(cmd.argument()), buffer(), p);
217                 editGraphics(p);
218                 break;
219         }
220
221         case LFUN_INSET_MODIFY: {
222                 if (cmd.getArg(0) != "graphics") {
223                         Inset::doDispatch(cur, cmd);
224                         break;
225                 }
226
227                 InsetGraphicsParams p;
228                 string2params(to_utf8(cmd.argument()), buffer(), p);
229                 if (p.filename.empty()) {
230                         cur.noScreenUpdate();
231                         break;
232                 }
233
234                 cur.recordUndo();
235                 setParams(p);
236                 // if the inset is part of a graphics group, all the
237                 // other members should be updated too.
238                 if (!params_.groupId.empty())
239                         graphics::unifyGraphicsGroups(buffer(),
240                                                       to_utf8(cmd.argument()));
241                 break;
242         }
243
244         case LFUN_INSET_DIALOG_UPDATE:
245                 cur.bv().updateDialog("graphics", params2string(params(), buffer()));
246                 break;
247
248         case LFUN_GRAPHICS_RELOAD:
249                 params_.filename.refresh();
250                 graphic_->reload();
251                 break;
252
253         default:
254                 Inset::doDispatch(cur, cmd);
255                 break;
256         }
257 }
258
259
260 bool InsetGraphics::getStatus(Cursor & cur, FuncRequest const & cmd,
261                 FuncStatus & flag) const
262 {
263         switch (cmd.action()) {
264         case LFUN_INSET_MODIFY:
265                 if (cmd.getArg(0) != "graphics")
266                         return Inset::getStatus(cur, cmd, flag);
267         // fall through
268         case LFUN_INSET_EDIT:
269         case LFUN_INSET_DIALOG_UPDATE:
270         case LFUN_GRAPHICS_RELOAD:
271                 flag.setEnabled(true);
272                 return true;
273
274         default:
275                 return Inset::getStatus(cur, cmd, flag);
276         }
277 }
278
279
280 bool InsetGraphics::showInsetDialog(BufferView * bv) const
281 {
282         bv->showDialog("graphics", params2string(params(), bv->buffer()),
283                 const_cast<InsetGraphics *>(this));
284         return true;
285 }
286
287
288
289 void InsetGraphics::metrics(MetricsInfo & mi, Dimension & dim) const
290 {
291         graphic_->metrics(mi, dim);
292 }
293
294
295 void InsetGraphics::draw(PainterInfo & pi, int x, int y) const
296 {
297         graphic_->draw(pi, x, y);
298 }
299
300
301 void InsetGraphics::write(ostream & os) const
302 {
303         os << "Graphics\n";
304         params().Write(os, buffer());
305 }
306
307
308 void InsetGraphics::read(Lexer & lex)
309 {
310         lex.setContext("InsetGraphics::read");
311         //lex >> "Graphics";
312         readInsetGraphics(lex, buffer(), true, params_);
313         graphic_->update(params().as_grfxParams());
314 }
315
316
317 void InsetGraphics::outBoundingBox(graphics::BoundingBox & bbox) const
318 {
319         if (bbox.empty())
320                 return;
321
322         FileName const file(params().filename.absFileName());
323
324         // No correction is necessary for a vector image
325         bool const zipped = theFormats().isZippedFile(file);
326         FileName const unzipped_file = zipped ? unzipFile(file) : file;
327         string const format = theFormats().getFormatFromFile(unzipped_file);
328         if (zipped)
329                 unzipped_file.removeFile();
330         if (theFormats().getFormat(format)->vectorFormat())
331                 return;
332
333         // Get the actual image dimensions in pixels
334         int width = 0;
335         int height = 0;
336         graphics::Cache & gc = graphics::Cache::get();
337         if (gc.inCache(file)) {
338                 graphics::Image const * image = gc.item(file)->image();
339                 if (image) {
340                         width  = image->width();
341                         height = image->height();
342                 }
343         }
344         // Even if cached, the image is not loaded without GUI
345         if  (width == 0 && height == 0) {
346                 QImage image(toqstr(file.absFileName()));
347                 width  = image.width();
348                 height = image.height();
349         }
350         if (width == 0 || height == 0)
351                 return;
352
353         // Use extractbb to find the dimensions in the typeset output
354         QProcess extractbb;
355         extractbb.start("extractbb", QStringList() << "-O" << toqstr(file.absFileName()));
356         if (!extractbb.waitForStarted() || !extractbb.waitForFinished()) {
357                 LYXERR0("Cannot read output bounding box of " << file);
358                 return;
359         }
360
361         string const result = extractbb.readAll().constData();
362         size_t i = result.find("%%BoundingBox:");
363         if (i == string::npos) {
364                 LYXERR0("Cannot find output bounding box of " << file);
365                 return;
366         }
367
368         string const bb = result.substr(i);
369         int out_width = convert<int>(token(bb, ' ', 3));
370         int out_height = convert<int>(token(bb, ' ', 4));
371
372         // Compute the scaling ratio and correct the bounding box
373         double scalex = out_width / double(width);
374         double scaley = out_height / double(height);
375
376         bbox.xl.value(scalex * bbox.xl.value());
377         bbox.xr.value(scalex * bbox.xr.value());
378         bbox.yb.value(scaley * bbox.yb.value());
379         bbox.yt.value(scaley * bbox.yt.value());
380 }
381
382
383 string InsetGraphics::createLatexOptions(bool const ps) const
384 {
385         // Calculate the options part of the command, we must do it to a string
386         // stream since we might have a trailing comma that we would like to remove
387         // before writing it to the output stream.
388         ostringstream options;
389         if (!params().bbox.empty()) {
390                 graphics::BoundingBox out_bbox = params().bbox;
391                 outBoundingBox(out_bbox);
392                 string const key = ps ? "bb=" : "viewport=";
393                 options << key << out_bbox.xl.asLatexString() << ' '
394                         << out_bbox.yb.asLatexString() << ' '
395                         << out_bbox.xr.asLatexString() << ' '
396                         << out_bbox.yt.asLatexString() << ',';
397         }
398         if (params().draft)
399             options << "draft,";
400         if (params().clip)
401             options << "clip,";
402         ostringstream size;
403         double const scl = convert<double>(params().scale);
404         if (!params().scale.empty() && !float_equal(scl, 0.0, 0.05)) {
405                 if (!float_equal(scl, 100.0, 0.05))
406                         size << "scale=" << scl / 100.0 << ',';
407         } else {
408                 if (!params().width.zero())
409                         size << "width=" << params().width.asLatexString() << ',';
410                 if (!params().height.zero())
411                         size << "totalheight=" << params().height.asLatexString() << ',';
412                 if (params().keepAspectRatio)
413                         size << "keepaspectratio,";
414         }
415         if (params().scaleBeforeRotation && !size.str().empty())
416                 options << size.str();
417
418         // Make sure rotation angle is not very close to zero;
419         // a float can be effectively zero but not exactly zero.
420         if (!params().rotateAngle.empty()
421                 && !float_equal(convert<double>(params().rotateAngle), 0.0, 0.001)) {
422             options << "angle=" << params().rotateAngle << ',';
423             if (!params().rotateOrigin.empty()) {
424                 options << "origin=" << params().rotateOrigin[0];
425                 if (contains(params().rotateOrigin,"Top"))
426                     options << 't';
427                 else if (contains(params().rotateOrigin,"Bottom"))
428                     options << 'b';
429                 else if (contains(params().rotateOrigin,"Baseline"))
430                     options << 'B';
431                 options << ',';
432             }
433         }
434         if (!params().scaleBeforeRotation && !size.str().empty())
435                 options << size.str();
436
437         if (!params().special.empty())
438             options << params().special << ',';
439
440         string opts = options.str();
441         // delete last ','
442         if (suffixIs(opts, ','))
443                 opts = opts.substr(0, opts.size() - 1);
444
445         return opts;
446 }
447
448
449 docstring InsetGraphics::toDocbookLength(Length const & len) const
450 {
451         odocstringstream result;
452         switch (len.unit()) {
453                 case Length::SP: // Scaled point (65536sp = 1pt) TeX's smallest unit.
454                         result << len.value() * 65536.0 * 72 / 72.27 << "pt";
455                         break;
456                 case Length::PT: // Point = 1/72.27in = 0.351mm
457                         result << len.value() * 72 / 72.27 << "pt";
458                         break;
459                 case Length::BP: // Big point (72bp = 1in), also PostScript point
460                         result << len.value() << "pt";
461                         break;
462                 case Length::DD: // Didot point = 1/72 of a French inch, = 0.376mm
463                         result << len.value() * 0.376 << "mm";
464                         break;
465                 case Length::MM: // Millimeter = 2.845pt
466                         result << len.value() << "mm";
467                         break;
468                 case Length::PC: // Pica = 12pt = 4.218mm
469                         result << len.value() << "pc";
470                         break;
471                 case Length::CC: // Cicero = 12dd = 4.531mm
472                         result << len.value() * 4.531 << "mm";
473                         break;
474                 case Length::CM: // Centimeter = 10mm = 2.371pc
475                         result << len.value() << "cm";
476                         break;
477                 case Length::IN: // Inch = 25.4mm = 72.27pt = 6.022pc
478                         result << len.value() << "in";
479                         break;
480                 case Length::EX: // Height of a small "x" for the current font.
481                         // Obviously we have to compromise here. Any better ratio than 1.5 ?
482                         result << len.value() / 1.5 << "em";
483                         break;
484                 case Length::EM: // Width of capital "M" in current font.
485                         result << len.value() << "em";
486                         break;
487                 case Length::MU: // Math unit (18mu = 1em) for positioning in math mode
488                         result << len.value() * 18 << "em";
489                         break;
490                 case Length::PTW: // Percent of TextWidth
491                 case Length::PCW: // Percent of ColumnWidth
492                 case Length::PPW: // Percent of PageWidth
493                 case Length::PLW: // Percent of LineWidth
494                 case Length::PTH: // Percent of TextHeight
495                 case Length::PPH: // Percent of PaperHeight
496                 case Length::BLS: // Percent of BaselineSkip
497                         // Sigh, this will go wrong.
498                         result << len.value() << "%";
499                         break;
500                 default:
501                         result << len.asDocstring();
502                         break;
503         }
504         return result.str();
505 }
506
507
508 docstring InsetGraphics::createDocBookAttributes() const
509 {
510         // Calculate the options part of the command, we must do it to a string
511         // stream since we copied the code from createLatexParams() ;-)
512
513         odocstringstream options;
514         double const scl = convert<double>(params().scale);
515         if (!params().scale.empty() && !float_equal(scl, 0.0, 0.05)) {
516                 if (!float_equal(scl, 100.0, 0.05))
517                         options << " scale=\""
518                                 << support::iround(scl)
519                                 << "\" ";
520         } else {
521                 if (!params().width.zero()) {
522                         options << " width=\"" << toDocbookLength(params().width)  << "\" ";
523                 }
524                 if (!params().height.zero()) {
525                         options << " depth=\"" << toDocbookLength(params().height)  << "\" ";
526                 }
527                 if (params().keepAspectRatio) {
528                         // This will be irrelevant unless both width and height are set
529                         options << "scalefit=\"1\" ";
530                 }
531         }
532
533         if (!params().special.empty())
534                 options << from_ascii(params().special) << " ";
535
536         // trailing blanks are ok ...
537         return options.str();
538 }
539
540
541 namespace {
542
543 enum GraphicsCopyStatus {
544         SUCCESS,
545         FAILURE,
546         IDENTICAL_PATHS,
547         IDENTICAL_CONTENTS
548 };
549
550
551 pair<GraphicsCopyStatus, FileName> const
552 copyFileIfNeeded(FileName const & file_in, FileName const & file_out)
553 {
554         LYXERR(Debug::FILES, "Comparing " << file_in << " and " << file_out);
555         unsigned long const checksum_in  = file_in.checksum();
556         unsigned long const checksum_out = file_out.checksum();
557
558         if (checksum_in == checksum_out)
559                 // Nothing to do...
560                 return make_pair(IDENTICAL_CONTENTS, file_out);
561
562         Mover const & mover = getMover(theFormats().getFormatFromFile(file_in));
563         bool const success = mover.copy(file_in, file_out);
564         if (!success) {
565                 // FIXME UNICODE
566                 LYXERR(Debug::GRAPHICS,
567                         to_utf8(bformat(_("Could not copy the file\n%1$s\n"
568                                                            "into the temporary directory."),
569                                                 from_utf8(file_in.absFileName()))));
570         }
571
572         GraphicsCopyStatus status = success ? SUCCESS : FAILURE;
573         return make_pair(status, file_out);
574 }
575
576
577 pair<GraphicsCopyStatus, FileName> const
578 copyToDirIfNeeded(DocFileName const & file, string const & dir)
579 {
580         string const file_in = file.absFileName();
581         string const only_path = onlyPath(file_in);
582         if (rtrim(only_path, "/") == rtrim(dir, "/"))
583                 return make_pair(IDENTICAL_PATHS, FileName(file_in));
584
585         string mangled = file.mangledFileName(empty_string(), false, true);
586         if (theFormats().isZippedFile(file)) {
587                 // We need to change _eps.gz to .eps.gz. The mangled name is
588                 // still unique because of the counter in mangledFileName().
589                 // We can't just call mangledFileName() with the zip
590                 // extension removed, because base.eps and base.eps.gz may
591                 // have different content but would get the same mangled
592                 // name in this case.
593                 // Also take into account that if the name of the zipped file
594                 // has no zip extension then the name of the unzipped one is
595                 // prefixed by "unzipped_".
596                 string const base = removeExtension(file.unzippedFileName());
597                 string::size_type const prefix_len =
598                         prefixIs(onlyFileName(base), "unzipped_") ? 9 : 0;
599                 string::size_type const ext_len =
600                         file_in.length() + prefix_len - base.length();
601                 mangled[mangled.length() - ext_len] = '.';
602         }
603         FileName const file_out(makeAbsPath(mangled, dir));
604
605         return copyFileIfNeeded(file, file_out);
606 }
607
608
609 string const stripExtensionIfPossible(string const & file, bool nice)
610 {
611         // Remove the extension so the LaTeX compiler will use whatever
612         // is appropriate (when there are several versions in different
613         // formats).
614         // Do this only if we are not exporting for internal usage, because
615         // pdflatex prefers png over pdf and it would pick up the png images
616         // that we generate for preview.
617         // This works only if the filename contains no dots besides
618         // the just removed one. We can fool here by replacing all
619         // dots with a macro whose definition is just a dot ;-)
620         // The automatic format selection does not work if the file
621         // name is escaped.
622         string const latex_name = latex_path(file, EXCLUDE_EXTENSION);
623         if (!nice || contains(latex_name, '"'))
624                 return latex_name;
625         return latex_path(removeExtension(file), PROTECT_EXTENSION, ESCAPE_DOTS);
626 }
627
628
629 string const stripExtensionIfPossible(string const & file, string const & to, bool nice)
630 {
631         // No conversion is needed. LaTeX can handle the graphic file as is.
632         // This is true even if the orig_file is compressed.
633         Format const * f = theFormats().getFormat(to);
634         if (!f)
635                 return latex_path(file, EXCLUDE_EXTENSION);
636         string const to_format = f->extension();
637         string const file_format = getExtension(file);
638         // for latex .ps == .eps
639         if (to_format == file_format ||
640             (to_format == "eps" && file_format ==  "ps") ||
641             (to_format ==  "ps" && file_format == "eps"))
642                 return stripExtensionIfPossible(file, nice);
643         return latex_path(file, EXCLUDE_EXTENSION);
644 }
645
646 } // namespace
647
648
649 string InsetGraphics::prepareFile(OutputParams const & runparams) const
650 {
651         // The following code depends on non-empty filenames
652         if (params().filename.empty())
653                 return string();
654
655         string const orig_file = params().filename.absFileName();
656         // this is for dryrun and display purposes, do not use latexFilename
657         string const rel_file = params().filename.relFileName(buffer().filePath());
658
659         // previewing source code, no file copying or file format conversion
660         if (runparams.dryrun)
661                 return stripExtensionIfPossible(rel_file, runparams.nice);
662
663         // The master buffer. This is useful when there are multiple levels
664         // of include files
665         Buffer const * masterBuffer = buffer().masterBuffer();
666
667         // Return the output name if we are inside a comment or the file does
668         // not exist.
669         // We are not going to change the extension or using the name of the
670         // temporary file, the code is already complicated enough.
671         if (runparams.inComment || !params().filename.isReadableFile())
672                 return params().filename.outputFileName(masterBuffer->filePath());
673
674         // We place all temporary files in the master buffer's temp dir.
675         // This is possible because we use mangled file names.
676         // This is necessary for DVI export.
677         string const temp_path = masterBuffer->temppath();
678
679         // temp_file will contain the file for LaTeX to act on if, for example,
680         // we move it to a temp dir or uncompress it.
681         FileName temp_file;
682         GraphicsCopyStatus status;
683         tie(status, temp_file) = copyToDirIfNeeded(params().filename, temp_path);
684
685         if (status == FAILURE)
686                 return orig_file;
687
688         // a relative filename should be relative to the master buffer.
689         // "nice" means that the buffer is exported to LaTeX format but not
690         // run through the LaTeX compiler.
691         string output_file = runparams.nice ?
692                 params().filename.outputFileName(masterBuffer->filePath()) :
693                 onlyFileName(temp_file.absFileName());
694
695         if (runparams.nice) {
696                 if (!isValidLaTeXFileName(output_file)) {
697                         frontend::Alert::warning(_("Invalid filename"),
698                                 _("The following filename will cause troubles "
699                                   "when running the exported file through LaTeX: ") +
700                                 from_utf8(output_file));
701                 }
702                 // only show DVI-specific warning when export format is plain latex
703                 if (!isValidDVIFileName(output_file)
704                         && runparams.flavor == OutputParams::LATEX) {
705                                 frontend::Alert::warning(_("Problematic filename for DVI"),
706                                          _("The following filename can cause troubles "
707                                                "when running the exported file through LaTeX "
708                                                    "and opening the resulting DVI: ") +
709                                              from_utf8(output_file), true);
710                 }
711         }
712
713         FileName source_file = runparams.nice ? FileName(params().filename) : temp_file;
714         // determine the export format
715         string const tex_format = flavor2format(runparams.flavor);
716
717         if (theFormats().isZippedFile(params().filename)) {
718                 FileName const unzipped_temp_file =
719                         FileName(unzippedFileName(temp_file.absFileName()));
720                 output_file = unzippedFileName(output_file);
721                 source_file = FileName(unzippedFileName(source_file.absFileName()));
722                 if (compare_timestamps(unzipped_temp_file, temp_file) > 0) {
723                         // temp_file has been unzipped already and
724                         // orig_file has not changed in the meantime.
725                         temp_file = unzipped_temp_file;
726                         LYXERR(Debug::GRAPHICS, "\twas already unzipped to " << temp_file);
727                 } else {
728                         // unzipped_temp_file does not exist or is too old
729                         temp_file = unzipFile(temp_file);
730                         LYXERR(Debug::GRAPHICS, "\tunzipped to " << temp_file);
731                 }
732         }
733
734         string const from = theFormats().getFormatFromFile(temp_file);
735         if (from.empty())
736                 LYXERR(Debug::GRAPHICS, "\tCould not get file format.");
737
738         string const to   = findTargetFormat(from, runparams);
739         string const ext  = theFormats().extension(to);
740         LYXERR(Debug::GRAPHICS, "\t we have: from " << from << " to " << to);
741
742         // We're going to be running the exported buffer through the LaTeX
743         // compiler, so must ensure that LaTeX can cope with the graphics
744         // file format.
745
746         LYXERR(Debug::GRAPHICS, "\tthe orig file is: " << orig_file);
747
748         if (from == to) {
749                 // source and destination formats are the same
750                 if (!runparams.nice && !FileName(temp_file).hasExtension(ext)) {
751                         // The LaTeX compiler will not be able to determine
752                         // the file format from the extension, so we must
753                         // change it.
754                         FileName const new_file =
755                                 FileName(changeExtension(temp_file.absFileName(), ext));
756                         if (temp_file.moveTo(new_file)) {
757                                 temp_file = new_file;
758                                 output_file = changeExtension(output_file, ext);
759                                 source_file =
760                                         FileName(changeExtension(source_file.absFileName(), ext));
761                         } else {
762                                 LYXERR(Debug::GRAPHICS, "Could not rename file `"
763                                         << temp_file << "' to `" << new_file << "'.");
764                         }
765                 }
766                 // The extension of temp_file might be != ext!
767                 runparams.exportdata->addExternalFile(tex_format, source_file,
768                                                       output_file);
769                 runparams.exportdata->addExternalFile("dvi", source_file,
770                                                       output_file);
771                 return stripExtensionIfPossible(output_file, to, runparams.nice);
772         }
773
774         // so the source and destination formats are different
775         FileName const to_file = FileName(changeExtension(temp_file.absFileName(), ext));
776         string const output_to_file = changeExtension(output_file, ext);
777
778         // Do we need to perform the conversion?
779         // Yes if to_file does not exist or if temp_file is newer than to_file
780         if (compare_timestamps(temp_file, to_file) < 0) {
781                 // FIXME UNICODE
782                 LYXERR(Debug::GRAPHICS,
783                         to_utf8(bformat(_("No conversion of %1$s is needed after all"),
784                                    from_utf8(rel_file))));
785                 runparams.exportdata->addExternalFile(tex_format, to_file,
786                                                       output_to_file);
787                 runparams.exportdata->addExternalFile("dvi", to_file,
788                                                       output_to_file);
789                 return stripExtensionIfPossible(output_to_file, runparams.nice);
790         }
791
792         LYXERR(Debug::GRAPHICS,"\tThe original file is " << orig_file << "\n"
793                 << "\tA copy has been made and convert is to be called with:\n"
794                 << "\tfile to convert = " << temp_file << '\n'
795                 << "\t from " << from << " to " << to);
796
797         // FIXME (Abdel 12/08/06): Is there a need to show these errors?
798         ErrorList el;
799         Converters::RetVal const rv = 
800             theConverters().convert(&buffer(), temp_file, to_file, params().filename,
801                                from, to, el,
802                                Converters::try_default | Converters::try_cache);
803         if (rv == Converters::KILLED) {
804                 LYXERR0("Graphics preparation killed.");
805                 if (buffer().isClone() && buffer().isExporting())
806                         throw ConversionException();
807         } else if (rv == Converters::SUCCESS) {
808                 runparams.exportdata->addExternalFile(tex_format,
809                                 to_file, output_to_file);
810                 runparams.exportdata->addExternalFile("dvi",
811                                 to_file, output_to_file);
812         }
813
814         return stripExtensionIfPossible(output_to_file, runparams.nice);
815 }
816
817
818 void InsetGraphics::latex(otexstream & os,
819                           OutputParams const & runparams) const
820 {
821         // If there is no file specified or not existing,
822         // just output a message about it in the latex output.
823         LYXERR(Debug::GRAPHICS, "insetgraphics::latex: Filename = "
824                 << params().filename.absFileName());
825
826         bool const file_exists = !params().filename.empty()
827                         && params().filename.isReadableFile();
828         string message;
829         if (!file_exists) {
830                 if (params().bbox.empty())
831                     message = "bb = 0 0 200 100";
832                 if (!params().draft) {
833                         if (!message.empty())
834                                 message += ", ";
835                         message += "draft";
836                 }
837                 if (!message.empty())
838                         message += ", ";
839                 message += "type=eps";
840         }
841         // If no existing file "filename" was found LaTeX
842         // draws only a rectangle with the above bb and the
843         // not found filename in it.
844         LYXERR(Debug::GRAPHICS, "\tMessage = \"" << message << '\"');
845
846         // These variables collect all the latex code that should be before and
847         // after the actual includegraphics command.
848         string before;
849         string after;
850
851         // Write the options if there are any.
852         bool const ps = runparams.flavor == OutputParams::LATEX
853                 || runparams.flavor == OutputParams::DVILUATEX;
854         string const opts = createLatexOptions(ps);
855         LYXERR(Debug::GRAPHICS, "\tOpts = " << opts);
856
857         if (contains(opts, '=') && contains(runparams.active_chars, '=')) {
858                 // We have a language that makes = active. Deactivate locally
859                 // for keyval option parsing (#2005).
860                 before = "\\begingroup\\catcode`\\=12";
861                 after = "\\endgroup ";
862         }
863
864         if (runparams.moving_arg)
865                 before += "\\protect";
866
867         // We never use the starred form, we use the "clip" option instead.
868         before += "\\includegraphics";
869
870         if (!opts.empty() && !message.empty())
871                 before += ('[' + opts + ',' + message + ']');
872         else if (!opts.empty() || !message.empty())
873                 before += ('[' + opts + message + ']');
874
875         LYXERR(Debug::GRAPHICS, "\tBefore = " << before << "\n\tafter = " << after);
876
877         string latex_str = before + '{';
878         // Convert the file if necessary.
879         // Remove the extension so LaTeX will use whatever is appropriate
880         // (when there are several versions in different formats)
881         docstring file_path = from_utf8(prepareFile(runparams));
882         // we can only output characters covered by the current
883         // encoding!
884         docstring uncodable;
885         docstring encodable_file_path;
886         for (size_type i = 0 ; i < file_path.size() ; ++i) {
887                 char_type c = file_path[i];
888                 try {
889                         if (runparams.encoding->encodable(c))
890                                 encodable_file_path += c;
891                         else if (runparams.dryrun) {
892                                 encodable_file_path += "<" + _("LyX Warning: ")
893                                                 + _("uncodable character") + " '";
894                                 encodable_file_path += docstring(1, c);
895                                 encodable_file_path += "'>";
896                         } else
897                                 uncodable += c;
898                 } catch (EncodingException & /* e */) {
899                         if (runparams.dryrun) {
900                                 encodable_file_path += "<" + _("LyX Warning: ")
901                                                 + _("uncodable character") + " '";
902                                 encodable_file_path += docstring(1, c);
903                                 encodable_file_path += "'>";
904                         } else
905                                 uncodable += c;
906                 }
907         }
908         if (!uncodable.empty() && !runparams.silent) {
909                 // issue a warning about omitted characters
910                 // FIXME: should be passed to the error dialog
911                 frontend::Alert::warning(_("Uncodable character in file path"),
912                         bformat(_("The following characters in one of the graphic paths are\n"
913                                   "not representable in the current encoding and have been omitted: %1$s.\n"
914                                   "You need to adapt either the encoding or the path."),
915                         uncodable));
916         }
917         latex_str += to_utf8(encodable_file_path);
918         latex_str += '}' + after;
919         // FIXME UNICODE
920         os << from_utf8(latex_str);
921
922         LYXERR(Debug::GRAPHICS, "InsetGraphics::latex outputting:\n" << latex_str);
923 }
924
925
926 int InsetGraphics::plaintext(odocstringstream & os,
927         OutputParams const &, size_t) const
928 {
929         // No graphics in ascii output. Possible to use gifscii to convert
930         // images to ascii approximation.
931         // 1. Convert file to ascii using gifscii
932         // 2. Read ascii output file and add it to the output stream.
933         // at least we send the filename
934         // FIXME UNICODE
935         // FIXME: We have no idea what the encoding of the filename is
936
937         docstring const str = bformat(buffer().B_("Graphics file: %1$s"),
938                                       from_utf8(params().filename.absFileName()));
939         os << '<' << str << '>';
940
941         return 2 + str.size();
942 }
943
944
945 // For explanation on inserting graphics into DocBook checkout:
946 // http://en.tldp.org/LDP/LDP-Author-Guide/html/inserting-pictures.html
947 // See also the docbook guide at http://www.docbook.org/
948 void InsetGraphics::docbook(XMLStream & xs, OutputParams const & runparams) const
949 {
950         string fn = params().filename.relFileName(runparams.export_folder);
951         string tag = runparams.docbook_in_float ? "mediaobject" : "inlinemediaobject";
952
953         xs << xml::StartTag(tag);
954         xs << xml::CR();
955         xs << xml::StartTag("imageobject");
956         xs << xml::CR();
957         xs << xml::CompTag("imagedata", "fileref=\"" + fn + "\" " + to_utf8(createDocBookAttributes()));
958         xs << xml::CR();
959         xs << xml::EndTag("imageobject");
960         xs << xml::CR();
961         xs << xml::EndTag(tag);
962         xs << xml::CR();
963 }
964
965
966 string InsetGraphics::prepareHTMLFile(OutputParams const & runparams) const
967 {
968         // The following code depends on non-empty filenames
969         if (params().filename.empty())
970                 return string();
971
972         if (!params().filename.isReadableFile())
973                 return string();
974
975         // The master buffer. This is useful when there are multiple levels
976         // of include files
977         Buffer const * masterBuffer = buffer().masterBuffer();
978
979         // We place all temporary files in the master buffer's temp dir.
980         // This is possible because we use mangled file names.
981         // FIXME We may want to put these files in some special temporary
982         // directory.
983         string const temp_path = masterBuffer->temppath();
984
985         // Copy to temporary directory.
986         FileName temp_file;
987         GraphicsCopyStatus status;
988         tie(status, temp_file) = copyToDirIfNeeded(params().filename, temp_path);
989
990         if (status == FAILURE)
991                 return string();
992
993         string const from = theFormats().getFormatFromFile(temp_file);
994         if (from.empty()) {
995                 LYXERR(Debug::GRAPHICS, "\tCould not get file format.");
996                 return string();
997         }
998
999         string const to   = findTargetFormat(from, runparams);
1000         string const ext  = theFormats().extension(to);
1001         string const orig_file = params().filename.absFileName();
1002         string output_file = onlyFileName(temp_file.absFileName());
1003         LYXERR(Debug::GRAPHICS, "\t we have: from " << from << " to " << to);
1004         LYXERR(Debug::GRAPHICS, "\tthe orig file is: " << orig_file);
1005
1006         if (from == to) {
1007                 // source and destination formats are the same
1008                 runparams.exportdata->addExternalFile("xhtml", temp_file, output_file);
1009                 return output_file;
1010         }
1011
1012         // so the source and destination formats are different
1013         FileName const to_file = FileName(changeExtension(temp_file.absFileName(), ext));
1014         string const output_to_file = changeExtension(output_file, ext);
1015
1016         // Do we need to perform the conversion?
1017         // Yes if to_file does not exist or if temp_file is newer than to_file
1018         if (compare_timestamps(temp_file, to_file) < 0) {
1019                 // FIXME UNICODE
1020                 LYXERR(Debug::GRAPHICS,
1021                         to_utf8(bformat(_("No conversion of %1$s is needed after all"),
1022                                    from_utf8(orig_file))));
1023                 runparams.exportdata->addExternalFile("xhtml", to_file, output_to_file);
1024                 return output_to_file;
1025         }
1026
1027         LYXERR(Debug::GRAPHICS,"\tThe original file is " << orig_file << "\n"
1028                 << "\tA copy has been made and convert is to be called with:\n"
1029                 << "\tfile to convert = " << temp_file << '\n'
1030                 << "\t from " << from << " to " << to);
1031
1032         // FIXME (Abdel 12/08/06): Is there a need to show these errors?
1033         ErrorList el;
1034         Converters::RetVal const rv =
1035                 theConverters().convert(&buffer(), temp_file, to_file, params().filename,
1036                         from, to, el, Converters::try_default | Converters::try_cache);
1037         if (rv == Converters::KILLED) {
1038                 if (buffer().isClone() && buffer().isExporting())
1039                         throw ConversionException();
1040                 return string();
1041         }
1042         if (rv != Converters::SUCCESS)
1043                 return string();
1044         runparams.exportdata->addExternalFile("xhtml", to_file, output_to_file);
1045         return output_to_file;
1046 }
1047
1048
1049 docstring InsetGraphics::xhtml(XMLStream & xs, OutputParams const & op) const
1050 {
1051         string const output_file = op.dryrun ? string() : prepareHTMLFile(op);
1052
1053         if (output_file.empty() && !op.dryrun) {
1054                 LYXERR0("InsetGraphics::xhtml: Unable to prepare file `"
1055                         << params().filename << "' for output. File missing?");
1056                 string const attr = "src='" + params().filename.absFileName()
1057                                     + "' alt='image: " + output_file + "'";
1058                 xs << xml::CompTag("img", attr);
1059                 return docstring();
1060         }
1061
1062         // FIXME XHTML
1063         // We aren't doing anything with the crop and rotate parameters, and it would
1064         // really be better to do width and height conversion, rather than to output
1065         // these parameters here.
1066         string imgstyle;
1067         bool const havewidth  = !params().width.zero();
1068         bool const haveheight = !params().height.zero();
1069         if (havewidth || haveheight) {
1070                 if (havewidth)
1071                         imgstyle += "width:" + params().width.asHTMLString() + ";";
1072                 if (haveheight)
1073                         imgstyle += " height:" + params().height.asHTMLString() + ";";
1074         } else if (params().scale != "100") {
1075                 // Note that this will not have the same effect as in LaTeX export:
1076                 // There, the image will be scaled from its original size. Here, the
1077                 // percentage will be interpreted by the browser, and the image will
1078                 // be scaled to a percentage of the window size.
1079                 imgstyle = "width:" + params().scale + "%;";
1080         }
1081         if (!imgstyle.empty())
1082                 imgstyle = "style='" + imgstyle + "' ";
1083
1084         string const attr = imgstyle + "src='" + output_file + "' alt='image: "
1085                             + output_file + "'";
1086         xs << xml::CompTag("img", attr);
1087         return docstring();
1088 }
1089
1090
1091 void InsetGraphics::validate(LaTeXFeatures & features) const
1092 {
1093         // If we have no image, we should not require anything.
1094         if (params().filename.empty())
1095                 return;
1096
1097         features.includeFile(graphic_label,
1098                              removeExtension(params().filename.absFileName()));
1099
1100         features.require("graphicx");
1101
1102         if (features.runparams().nice) {
1103                 string const rel_file = params().filename.onlyFileNameWithoutExt();
1104                 if (contains(rel_file, "."))
1105                         features.require("lyxdot");
1106         }
1107         if (features.inDeletedInset()) {
1108                 features.require("tikz");
1109                 features.require("ct-tikz-object-sout");
1110         }
1111 }
1112
1113
1114 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
1115 {
1116         // If nothing is changed, just return and say so.
1117         if (params() == p && !p.filename.empty())
1118                 return false;
1119
1120         // Copy the new parameters.
1121         params_ = p;
1122
1123         // Update the display using the new parameters.
1124         graphic_->update(params().as_grfxParams());
1125
1126         // We have changed data, report it.
1127         return true;
1128 }
1129
1130
1131 InsetGraphicsParams const & InsetGraphics::params() const
1132 {
1133         return params_;
1134 }
1135
1136
1137 void InsetGraphics::editGraphics(InsetGraphicsParams const & p) const
1138 {
1139         theFormats().edit(buffer(), p.filename,
1140                      theFormats().getFormatFromFile(p.filename));
1141 }
1142
1143
1144 void InsetGraphics::addToToc(DocIterator const & cpit, bool output_active,
1145                                                          UpdateType, TocBackend & backend) const
1146 {
1147         //FIXME UNICODE
1148         docstring const str = from_utf8(params_.filename.onlyFileName());
1149         TocBuilder & b = backend.builder("graphics");
1150         b.pushItem(cpit, str, output_active);
1151         b.pop();
1152 }
1153
1154
1155 string InsetGraphics::contextMenuName() const
1156 {
1157         return "context-graphics";
1158 }
1159
1160
1161 void InsetGraphics::string2params(string const & in, Buffer const & buffer,
1162         InsetGraphicsParams & params)
1163 {
1164         if (in.empty())
1165                 return;
1166
1167         istringstream data(in);
1168         Lexer lex;
1169         lex.setStream(data);
1170         lex.setContext("InsetGraphics::string2params");
1171         lex >> "graphics";
1172         params = InsetGraphicsParams();
1173         readInsetGraphics(lex, buffer, false, params);
1174 }
1175
1176
1177 string InsetGraphics::params2string(InsetGraphicsParams const & params,
1178         Buffer const & buffer)
1179 {
1180         ostringstream data;
1181         data << "graphics" << ' ';
1182         params.Write(data, buffer);
1183         data << "\\end_inset\n";
1184         return data.str();
1185 }
1186
1187
1188 docstring InsetGraphics::toolTip(BufferView const &, int, int) const
1189 {
1190         return from_utf8(params().filename.onlyFileName());
1191 }
1192
1193 namespace graphics {
1194
1195 void getGraphicsGroups(Buffer const & b, set<string> & ids)
1196 {
1197         Inset & inset = b.inset();
1198         InsetIterator it  = inset_iterator_begin(inset);
1199         InsetIterator const end = inset_iterator_end(inset);
1200         for (; it != end; ++it) {
1201                 InsetGraphics const * ins = it->asInsetGraphics();
1202                 if (!ins)
1203                         continue;
1204                 InsetGraphicsParams const & inspar = ins->getParams();
1205                 if (!inspar.groupId.empty())
1206                         ids.insert(inspar.groupId);
1207         }
1208 }
1209
1210
1211 int countGroupMembers(Buffer const & b, string const & groupId)
1212 {
1213         int n = 0;
1214         if (groupId.empty())
1215                 return n;
1216         Inset & inset = b.inset();
1217         InsetIterator it = inset_iterator_begin(inset);
1218         InsetIterator const end = inset_iterator_end(inset);
1219         for (; it != end; ++it) {
1220                 InsetGraphics const * ins = it->asInsetGraphics();
1221                 if (!ins)
1222                         continue; 
1223                 if (ins->getParams().groupId == groupId)
1224                         ++n;
1225         }
1226         return n;
1227 }
1228
1229
1230 string getGroupParams(Buffer const & b, string const & groupId)
1231 {
1232         if (groupId.empty())
1233                 return string();
1234         Inset & inset = b.inset();
1235         InsetIterator it  = inset_iterator_begin(inset);
1236         InsetIterator const end = inset_iterator_end(inset);
1237         for (; it != end; ++it) {
1238                 InsetGraphics const * ins = it->asInsetGraphics();
1239                 if (!ins)
1240                         continue;
1241                 InsetGraphicsParams const & inspar = ins->getParams();
1242                 if (inspar.groupId == groupId) {
1243                         InsetGraphicsParams tmp = inspar;
1244                         tmp.filename.erase();
1245                         return InsetGraphics::params2string(tmp, b);
1246                 }
1247         }
1248         return string();
1249 }
1250
1251
1252 void unifyGraphicsGroups(Buffer & b, string const & argument)
1253 {
1254         InsetGraphicsParams params;
1255         InsetGraphics::string2params(argument, b, params);
1256
1257         // This handles undo groups automagically
1258         UndoGroupHelper ugh(&b);
1259         Inset & inset = b.inset();
1260         InsetIterator it  = inset_iterator_begin(inset);
1261         InsetIterator const end = inset_iterator_end(inset);
1262         for (; it != end; ++it) {
1263                 InsetGraphics * ins = it->asInsetGraphics();
1264                 if (!ins)
1265                         continue;
1266                 InsetGraphicsParams const & inspar = ins->getParams();
1267                 if (params.groupId == inspar.groupId) {
1268                         CursorData(it).recordUndo();
1269                         params.filename = inspar.filename;
1270                         ins->setParams(params);
1271                 }
1272         }
1273 }
1274
1275
1276 InsetGraphics * getCurrentGraphicsInset(Cursor const & cur)
1277 {
1278         Inset * instmp = &cur.inset();
1279         if (!instmp->asInsetGraphics())
1280                 instmp = cur.nextInset();
1281         if (!instmp || !instmp->asInsetGraphics())
1282                 return 0;
1283
1284         return instmp->asInsetGraphics();
1285 }
1286
1287 } // namespace graphics
1288
1289 } // namespace lyx