]> git.lyx.org Git - lyx.git/blob - src/Converter.cpp
Add special chain for Modules with OutputFormat for pLaTeX (Japanese)
[lyx.git] / src / Converter.cpp
1 /**
2  * \file Converter.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "Converter.h"
14
15 #include "Buffer.h"
16 #include "buffer_funcs.h"
17 #include "BufferParams.h"
18 #include "ConverterCache.h"
19 #include "Encoding.h"
20 #include "ErrorList.h"
21 #include "Format.h"
22 #include "InsetList.h"
23 #include "Language.h"
24 #include "LaTeX.h"
25 #include "LyXRC.h"
26 #include "Mover.h"
27 #include "ParagraphList.h"
28 #include "Session.h"
29
30 #include "frontends/alert.h"
31
32 #include "insets/InsetInclude.h"
33
34 #include "support/debug.h"
35 #include "support/FileNameList.h"
36 #include "support/filetools.h"
37 #include "support/gettext.h"
38 #include "support/lassert.h"
39 #include "support/lstrings.h"
40 #include "support/os.h"
41 #include "support/Package.h"
42 #include "support/PathChanger.h"
43 #include "support/Systemcall.h"
44
45 using namespace std;
46 using namespace lyx::support;
47
48 namespace lyx {
49
50 namespace Alert = lyx::frontend::Alert;
51
52
53 namespace {
54
55 string const token_from("$$i");
56 string const token_base("$$b");
57 string const token_to("$$o");
58 string const token_path("$$p");
59 string const token_orig_path("$$r");
60 string const token_orig_from("$$f");
61 string const token_encoding("$$e");
62 string const token_latex_encoding("$$E");
63
64
65 string const add_options(string const & command, string const & options)
66 {
67         string head;
68         string const tail = split(command, head, ' ');
69         return head + ' ' + options + ' ' + tail;
70 }
71
72
73 string const dvipdfm_options(BufferParams const & bp)
74 {
75         string result;
76
77         if (bp.papersize != PAPER_CUSTOM) {
78                 string const paper_size = bp.paperSizeName(BufferParams::DVIPDFM);
79                 if (!paper_size.empty())
80                         result = "-p "+ paper_size;
81
82                 if (bp.orientation == ORIENTATION_LANDSCAPE)
83                         result += " -l";
84         }
85
86         return result;
87 }
88
89
90 class ConverterEqual {
91 public:
92         ConverterEqual(string const & from, string const & to)
93                 : from_(from), to_(to) {}
94         bool operator()(Converter const & c) const {
95                 return c.from() == from_ && c.to() == to_;
96         }
97 private:
98         string const from_;
99         string const to_;
100 };
101
102 } // namespace
103
104
105 Converter::Converter(string const & f, string const & t,
106                      string const & c, string const & l)
107         : from_(f), to_(t), command_(c), flags_(l),
108           From_(0), To_(0), latex_(false), xml_(false),
109           need_aux_(false), nice_(false), need_auth_(false)
110 {}
111
112
113 void Converter::readFlags()
114 {
115         string flag_list(flags_);
116         while (!flag_list.empty()) {
117                 string flag_name, flag_value;
118                 flag_list = split(flag_list, flag_value, ',');
119                 flag_value = split(flag_value, flag_name, '=');
120                 if (flag_name == "latex") {
121                         latex_ = true;
122                         latex_flavor_ = flag_value.empty() ?
123                                 "latex" : flag_value;
124                 } else if (flag_name == "xml")
125                         xml_ = true;
126                 else if (flag_name == "needaux")
127                         need_aux_ = true;
128                 else if (flag_name == "resultdir")
129                         result_dir_ = (flag_value.empty())
130                                 ? token_base : flag_value;
131                 else if (flag_name == "resultfile")
132                         result_file_ = flag_value;
133                 else if (flag_name == "parselog")
134                         parselog_ = flag_value;
135                 else if (flag_name == "nice")
136                         nice_ = true;
137                 else if (flag_name == "needauth")
138                         need_auth_ = true;
139         }
140         if (!result_dir_.empty() && result_file_.empty())
141                 result_file_ = "index." + theFormats().extension(to_);
142         //if (!contains(command, token_from))
143         //      latex = true;
144 }
145
146
147 Converter const * Converters::getConverter(string const & from,
148                                             string const & to) const
149 {
150         ConverterList::const_iterator const cit =
151                 find_if(converterlist_.begin(), converterlist_.end(),
152                         ConverterEqual(from, to));
153         if (cit != converterlist_.end())
154                 return &(*cit);
155         else
156                 return 0;
157 }
158
159
160 int Converters::getNumber(string const & from, string const & to) const
161 {
162         ConverterList::const_iterator const cit =
163                 find_if(converterlist_.begin(), converterlist_.end(),
164                         ConverterEqual(from, to));
165         if (cit != converterlist_.end())
166                 return distance(converterlist_.begin(), cit);
167         else
168                 return -1;
169 }
170
171
172 void Converters::add(string const & from, string const & to,
173                      string const & command, string const & flags)
174 {
175         theFormats().add(from);
176         theFormats().add(to);
177         ConverterList::iterator it = find_if(converterlist_.begin(),
178                                              converterlist_.end(),
179                                              ConverterEqual(from , to));
180
181         Converter converter(from, to, command, flags);
182         if (it != converterlist_.end() && !flags.empty() && flags[0] == '*') {
183                 converter = *it;
184                 converter.setCommand(command);
185                 converter.setFlags(flags);
186         }
187         converter.readFlags();
188
189         // The latex_command is used to update the .aux file when running
190         // a converter that uses it.
191         if (converter.latex()) {
192                 if (latex_command_.empty() ||
193                     converter.latex_flavor() == "latex")
194                         latex_command_ = subst(command, token_from, "");
195                 if (dvilualatex_command_.empty() ||
196                     converter.latex_flavor() == "dvilualatex")
197                         dvilualatex_command_ = subst(command, token_from, "");
198                 if (lualatex_command_.empty() ||
199                     converter.latex_flavor() == "lualatex")
200                         lualatex_command_ = subst(command, token_from, "");
201                 if (pdflatex_command_.empty() ||
202                     converter.latex_flavor() == "pdflatex")
203                         pdflatex_command_ = subst(command, token_from, "");
204                 if (xelatex_command_.empty() ||
205                     converter.latex_flavor() == "xelatex")
206                         xelatex_command_ = subst(command, token_from, "");
207         }
208
209         if (it == converterlist_.end()) {
210                 converterlist_.push_back(converter);
211         } else {
212                 converter.setFrom(it->From());
213                 converter.setTo(it->To());
214                 *it = converter;
215         }
216 }
217
218
219 void Converters::erase(string const & from, string const & to)
220 {
221         ConverterList::iterator const it =
222                 find_if(converterlist_.begin(),
223                         converterlist_.end(),
224                         ConverterEqual(from, to));
225         if (it != converterlist_.end())
226                 converterlist_.erase(it);
227 }
228
229
230 // This method updates the pointers From and To in all the converters.
231 // The code is not very efficient, but it doesn't matter as the number
232 // of formats and converters is small.
233 // Furthermore, this method is called only on startup, or after
234 // adding/deleting a format in FormPreferences (the latter calls can be
235 // eliminated if the formats in the Formats class are stored using a map or
236 // a list (instead of a vector), but this will cause other problems).
237 void Converters::update(Formats const & formats)
238 {
239         ConverterList::iterator it = converterlist_.begin();
240         ConverterList::iterator end = converterlist_.end();
241         for (; it != end; ++it) {
242                 it->setFrom(formats.getFormat(it->from()));
243                 it->setTo(formats.getFormat(it->to()));
244         }
245 }
246
247
248 // This method updates the pointers From and To in the last converter.
249 // It is called when adding a new converter in FormPreferences
250 void Converters::updateLast(Formats const & formats)
251 {
252         if (converterlist_.begin() != converterlist_.end()) {
253                 ConverterList::iterator it = converterlist_.end() - 1;
254                 it->setFrom(formats.getFormat(it->from()));
255                 it->setTo(formats.getFormat(it->to()));
256         }
257 }
258
259
260 OutputParams::FLAVOR Converters::getFlavor(Graph::EdgePath const & path,
261                                            Buffer const * buffer)
262 {
263         for (Graph::EdgePath::const_iterator cit = path.begin();
264              cit != path.end(); ++cit) {
265                 Converter const & conv = converterlist_[*cit];
266                 if (conv.latex()) {
267                         if (conv.latex_flavor() == "latex")
268                                 return OutputParams::LATEX;
269                         if (conv.latex_flavor() == "xelatex")
270                                 return OutputParams::XETEX;
271                         if (conv.latex_flavor() == "lualatex")
272                                 return OutputParams::LUATEX;
273                         if (conv.latex_flavor() == "dvilualatex")
274                                 return OutputParams::DVILUATEX;
275                         if (conv.latex_flavor() == "pdflatex")
276                                 return OutputParams::PDFLATEX;
277                 }
278                 if (conv.xml())
279                         return OutputParams::XML;
280         }
281         return buffer ? buffer->params().getOutputFlavor()
282                       : OutputParams::LATEX;
283 }
284
285
286 bool Converters::checkAuth(Converter const & conv, string const & doc_fname,
287                            bool use_shell_escape)
288 {
289         string conv_command = conv.command();
290         bool const has_shell_escape = contains(conv_command, "-shell-escape")
291                                 || contains(conv_command, "-enable-write18");
292         if (conv.latex() && has_shell_escape && !use_shell_escape) {
293                 docstring const shellescape_warning =
294                       bformat(_("<p>The following LaTeX backend has been "
295                         "configured to allow execution of external programs "
296                         "for any document:</p>"
297                         "<center><p><tt>%1$s</tt></p></center>"
298                         "<p>This is a dangerous configuration. Please, "
299                         "consider using the support offered by LyX for "
300                         "allowing this privilege only to documents that "
301                         "actually need it, instead.</p>"),
302                         from_utf8(conv_command));
303                 frontend::Alert::error(_("Security Warning"),
304                                         shellescape_warning , false);
305         } else if (!conv.latex())
306                 use_shell_escape = false;
307         if (!conv.need_auth() && !use_shell_escape)
308                 return true;
309         size_t const token_pos = conv_command.find("$$");
310         bool const has_token = token_pos != string::npos;
311         string const command = use_shell_escape && !has_shell_escape
312                 ? (has_token ? conv_command.insert(token_pos, "-shell-escape ")
313                              : conv_command.append(" -shell-escape"))
314                 : conv_command;
315         docstring const security_warning = (use_shell_escape
316             ? bformat(_("<p>The following LaTeX backend has been requested "
317                 "to allow execution of external programs:</p>"
318                 "<center><p><tt>%1$s</tt></p></center>"
319                 "<p>The external programs can execute arbitrary commands on "
320                 "your system, including dangerous ones, if instructed to do "
321                 "so by a maliciously crafted LyX document.</p>"),
322               from_utf8(command))
323             : bformat(_("<p>The requested operation requires the use of a "
324                 "converter from %2$s to %3$s:</p>"
325                 "<blockquote><p><tt>%1$s</tt></p></blockquote>"
326                 "<p>This external program can execute arbitrary commands on "
327                 "your system, including dangerous ones, if instructed to do "
328                 "so by a maliciously crafted LyX document.</p>"),
329               from_utf8(command), from_utf8(conv.from()),
330               from_utf8(conv.to())));
331         if (lyxrc.use_converter_needauth_forbidden && !use_shell_escape) {
332                 frontend::Alert::error(
333                     _("An external converter is disabled for security reasons"),
334                     security_warning + _(
335                     "<p><b>Your current preference settings forbid its execution.</b></p>"
336                     "<p>(To change this setting, go to <i>Preferences &#x25b9; File "
337                     "Handling &#x25b9; Converters</i> and uncheck <i>Security &#x25b9; "
338                     "Forbid needauth converters</i>.)"), false);
339                 return false;
340         }
341         if (!lyxrc.use_converter_needauth && !use_shell_escape)
342                 return true;
343         docstring const security_title = use_shell_escape
344                 ? _("A LaTeX backend requires your authorization")
345                 : _("An external converter requires your authorization");
346         int choice;
347         docstring const security_warning2 = security_warning + (use_shell_escape
348                 ? _("<p>Should LaTeX backends be allowed to run external "
349                     "programs?</p><p><b>Allow them only if you trust the "
350                     "origin/sender of the LyX document!</b></p>")
351                 : _("<p>Would you like to run this converter?</p>"
352                     "<p><b>Only run if you trust the origin/sender of the LyX "
353                     "document!</b></p>"));
354         docstring const no = use_shell_escape
355                                 ? _("Do &not allow") : _("Do &not run");
356         docstring const yes = use_shell_escape ? _("A&llow") : _("&Run");
357         docstring const always = use_shell_escape
358                                         ? _("&Always allow for this document")
359                                         : _("&Always run for this document");
360         if (!doc_fname.empty()) {
361                 LYXERR(Debug::FILES, "looking up: " << doc_fname);
362                 bool authorized = use_shell_escape
363                         ? theSession().shellescapeFiles().findAuth(doc_fname)
364                         : theSession().authFiles().find(doc_fname);
365                 if (!authorized) {
366                         choice = frontend::Alert::prompt(security_title,
367                                                          security_warning2,
368                                                          0, 0, no, yes, always);
369                         if (choice == 2) {
370                                 if (use_shell_escape)
371                                         theSession().shellescapeFiles().insert(doc_fname, true);
372                                 else
373                                         theSession().authFiles().insert(doc_fname);
374                         }
375                 } else {
376                         choice = 1;
377                 }
378         } else {
379                 choice = frontend::Alert::prompt(security_title,
380                                                  security_warning2,
381                                                  0, 0, no, yes);
382         }
383         return choice != 0;
384 }
385
386
387 bool Converters::convert(Buffer const * buffer,
388                          FileName const & from_file, FileName const & to_file,
389                          FileName const & orig_from,
390                          string const & from_format, string const & to_format,
391                          ErrorList & errorList, int conversionflags)
392 {
393         if (from_format == to_format)
394                 return move(from_format, from_file, to_file, false);
395
396         if ((conversionflags & try_cache) &&
397             ConverterCache::get().inCache(orig_from, to_format))
398                 return ConverterCache::get().copy(orig_from, to_format, to_file);
399
400         Graph::EdgePath edgepath = getPath(from_format, to_format);
401         if (edgepath.empty()) {
402                 if (conversionflags & try_default) {
403                         // if no special converter defined, then we take the
404                         // default one from ImageMagic.
405                         string const from_ext = from_format.empty() ?
406                                 getExtension(from_file.absFileName()) :
407                                 theFormats().extension(from_format);
408                         string const to_ext = theFormats().extension(to_format);
409                         string const command =
410                                 os::python() + ' ' +
411                                 quoteName(libFileSearch("scripts", "convertDefault.py").toFilesystemEncoding()) +
412                                 ' ' + from_ext + ' ' +
413                                 quoteName(from_file.toFilesystemEncoding()) +
414                                 ' ' + to_ext + ' ' +
415                                 quoteName(to_file.toFilesystemEncoding());
416                         LYXERR(Debug::FILES, "No converter defined! "
417                                    "I use convertDefault.py:\n\t" << command);
418                         Systemcall one;
419                         one.startscript(Systemcall::Wait, command,
420                                         buffer ? buffer->filePath() : string(),
421                                         buffer ? buffer->layoutPos() : string());
422                         if (to_file.isReadableFile()) {
423                                 if (conversionflags & try_cache)
424                                         ConverterCache::get().add(orig_from,
425                                                         to_format, to_file);
426                                 return true;
427                         }
428                 }
429
430                 // only warn once per session and per file type
431                 static std::map<string, string> warned;
432                 if (warned.find(from_format) != warned.end() && warned.find(from_format)->second == to_format) {
433                         return false;
434                 }
435                 warned.insert(make_pair(from_format, to_format));
436
437                 Alert::error(_("Cannot convert file"),
438                              bformat(_("No information for converting %1$s "
439                                                     "format files to %2$s.\n"
440                                                     "Define a converter in the preferences."),
441                                                         from_ascii(from_format), from_ascii(to_format)));
442                 return false;
443         }
444
445         // buffer is only invalid for importing, and then runparams is not
446         // used anyway.
447         OutputParams runparams(buffer ? &buffer->params().encoding() : 0);
448         runparams.flavor = getFlavor(edgepath, buffer);
449
450         if (buffer) {
451                 runparams.use_japanese =
452                         (buffer->params().bufferFormat() == "latex"
453                          || suffixIs(buffer->params().bufferFormat(), "-ja"))
454                         && buffer->params().encoding().package() == Encoding::japanese;
455                 runparams.use_indices = buffer->params().use_indices;
456                 runparams.bibtex_command = buffer->params().bibtexCommand();
457                 runparams.index_command = (buffer->params().index_command == "default") ?
458                         string() : buffer->params().index_command;
459                 runparams.document_language = buffer->params().language->babel();
460                 runparams.only_childbibs = !buffer->params().useBiblatex()
461                                 && !buffer->params().useBibtopic()
462                                 && buffer->params().multibib == "child";
463         }
464
465         // Some converters (e.g. lilypond) can only output files to the
466         // current directory, so we need to change the current directory.
467         // This has the added benefit that all other files that may be
468         // generated by the converter are deleted when LyX closes and do not
469         // clutter the real working directory.
470         // FIXME: This does not work if path is an UNC path on windows
471         //        (bug 6127).
472         string const path(onlyPath(from_file.absFileName()));
473         // Prevent the compiler from optimizing away p
474         FileName pp(path);
475         PathChanger p(pp);
476
477         // empty the error list before any new conversion takes place.
478         errorList.clear();
479
480         bool run_latex = false;
481         string from_base = changeExtension(from_file.absFileName(), "");
482         string to_base = changeExtension(to_file.absFileName(), "");
483         FileName infile;
484         FileName outfile = from_file;
485         for (Graph::EdgePath::const_iterator cit = edgepath.begin();
486              cit != edgepath.end(); ++cit) {
487                 Converter const & conv = converterlist_[*cit];
488                 bool dummy = conv.To()->dummy() && conv.to() != "program";
489                 if (!dummy) {
490                         LYXERR(Debug::FILES, "Converting from  "
491                                << conv.from() << " to " << conv.to());
492                 }
493                 infile = outfile;
494                 outfile = FileName(conv.result_file().empty()
495                         ? changeExtension(from_file.absFileName(), conv.To()->extension())
496                         : addName(subst(conv.result_dir(),
497                                         token_base, from_base),
498                                   subst(conv.result_file(),
499                                         token_base, onlyFileName(from_base))));
500
501                 // if input and output files are equal, we use a
502                 // temporary file as intermediary (JMarc)
503                 FileName real_outfile;
504                 if (!conv.result_file().empty())
505                         real_outfile = FileName(changeExtension(from_file.absFileName(),
506                                 conv.To()->extension()));
507                 if (outfile == infile) {
508                         real_outfile = infile;
509                         // when importing, a buffer does not necessarily exist
510                         if (buffer)
511                                 outfile = FileName(addName(buffer->temppath(), "tmpfile.out"));
512                         else
513                                 outfile = FileName(addName(package().temp_dir().absFileName(),
514                                                    "tmpfile.out"));
515                 }
516
517                 if (buffer && buffer->params().use_minted
518                     && lyxrc.pygmentize_command.empty() && conv.latex()) {
519                         bool dowarn = false;
520                         // Warn only if listings insets are actually used
521                         for (Paragraph const & par : buffer->paragraphs()) {
522                                 InsetList const & insets = par.insetList();
523                                 pos_type lstpos = insets.find(LISTINGS_CODE, 0);
524                                 pos_type incpos = insets.find(INCLUDE_CODE, 0);
525                                 if (incpos >= 0) {
526                                         InsetInclude const * include =
527                                                 static_cast<InsetInclude *>
528                                                         (insets.get(incpos));
529                                         if (include->params().getCmdName() !=
530                                                                 "inputminted") {
531                                                 incpos = -1;
532                                         }
533                                 }
534                                 if (lstpos >= 0 || incpos >= 0) {
535                                         dowarn = true;
536                                         break;
537                                 }
538                         }
539                         if (dowarn) {
540                                 Alert::warning(_("Pygments driver command not found!"),
541                                     _("The driver command necessary to use the minted package\n"
542                                       "(pygmentize) has not been found. Make sure you have\n"
543                                       "the python-pygments module installed or, if the driver\n"
544                                       "is named differently, to add the following line to the\n"
545                                       "document preamble:\n\n"
546                                       "\\AtBeginDocument{\\renewcommand{\\MintedPygmentize}{driver}}\n\n"
547                                       "where 'driver' is name of the driver command."));
548                         }
549                 }
550
551                 if (!checkAuth(conv, buffer ? buffer->absFileName() : string(),
552                                buffer && buffer->params().shell_escape))
553                         return false;
554
555                 if (conv.latex()) {
556                         // We are not importing, we have a buffer
557                         LATTEST(buffer);
558                         run_latex = true;
559                         string command = conv.command();
560                         command = subst(command, token_from, "");
561                         command = subst(command, token_latex_encoding,
562                                         buffer->params().encoding().latexName());
563                         if (buffer->params().shell_escape
564                             && !contains(command, "-shell-escape"))
565                                 command += " -shell-escape ";
566                         LYXERR(Debug::FILES, "Running " << command);
567                         if (!runLaTeX(*buffer, command, runparams, errorList))
568                                 return false;
569                 } else {
570                         if (conv.need_aux() && !run_latex) {
571                                 // We are not importing, we have a buffer
572                                 LATTEST(buffer);
573                                 string command;
574                                 switch (runparams.flavor) {
575                                 case OutputParams::DVILUATEX:
576                                         command = dvilualatex_command_;
577                                         break;
578                                 case OutputParams::LUATEX:
579                                         command = lualatex_command_;
580                                         break;
581                                 case OutputParams::PDFLATEX:
582                                         command = pdflatex_command_;
583                                         break;
584                                 case OutputParams::XETEX:
585                                         command = xelatex_command_;
586                                         break;
587                                 default:
588                                         command = latex_command_;
589                                         break;
590                                 }
591                                 if (!command.empty()) {
592                                         LYXERR(Debug::FILES, "Running "
593                                                 << command
594                                                 << " to update aux file");
595                                         if (!runLaTeX(*buffer, command,
596                                                       runparams, errorList))
597                                                 return false;
598                                 }
599                         }
600
601                         // FIXME UNICODE
602                         string const infile2 =
603                                 to_utf8(makeRelPath(from_utf8(infile.absFileName()), from_utf8(path)));
604                         string const outfile2 =
605                                 to_utf8(makeRelPath(from_utf8(outfile.absFileName()), from_utf8(path)));
606
607                         string command = conv.command();
608                         command = subst(command, token_from, quoteName(infile2));
609                         command = subst(command, token_base, quoteName(from_base));
610                         command = subst(command, token_to, quoteName(outfile2));
611                         command = subst(command, token_path, quoteName(onlyPath(infile.absFileName())));
612                         command = subst(command, token_orig_path, quoteName(onlyPath(orig_from.absFileName())));
613                         command = subst(command, token_orig_from, quoteName(onlyFileName(orig_from.absFileName())));
614                         command = subst(command, token_encoding, buffer ? buffer->params().encoding().iconvName() : string());
615
616                         if (!conv.parselog().empty())
617                                 command += " 2> " + quoteName(infile2 + ".out");
618
619                         // it is not actually not necessary to test for buffer here,
620                         // but it pleases coverity.
621                         if (buffer && conv.from() == "dvi" && conv.to() == "ps")
622                                 command = add_options(command,
623                                                       buffer->params().dvips_options());
624                         else if (buffer && conv.from() == "dvi" && prefixIs(conv.to(), "pdf"))
625                                 command = add_options(command,
626                                                       dvipdfm_options(buffer->params()));
627
628                         LYXERR(Debug::FILES, "Calling " << command);
629                         if (buffer)
630                                 buffer->message(_("Executing command: ")
631                                 + from_utf8(command));
632
633                         Systemcall one;
634                         int res;
635                         if (dummy) {
636                                 res = one.startscript(Systemcall::DontWait,
637                                         to_filesystem8bit(from_utf8(command)),
638                                         buffer ? buffer->filePath() : string(),
639                                         buffer ? buffer->layoutPos() : string());
640                                 // We're not waiting for the result, so we can't do anything
641                                 // else here.
642                         } else {
643                                 res = one.startscript(Systemcall::Wait,
644                                                 to_filesystem8bit(from_utf8(command)),
645                                                 buffer ? buffer->filePath()
646                                                        : string(),
647                                                 buffer ? buffer->layoutPos()
648                                                        : string());
649                                 if (!real_outfile.empty()) {
650                                         Mover const & mover = getMover(conv.to());
651                                         if (!mover.rename(outfile, real_outfile))
652                                                 res = -1;
653                                         else
654                                                 LYXERR(Debug::FILES, "renaming file " << outfile
655                                                         << " to " << real_outfile);
656                                         // Finally, don't forget to tell any future
657                                         // converters to use the renamed file...
658                                         outfile = real_outfile;
659                                 }
660
661                                 if (!conv.parselog().empty()) {
662                                         string const logfile =  infile2 + ".log";
663                                         string const command2 = conv.parselog() +
664                                                 " < " + quoteName(infile2 + ".out") +
665                                                 " > " + quoteName(logfile);
666                                         one.startscript(Systemcall::Wait,
667                                                 to_filesystem8bit(from_utf8(command2)),
668                                                 buffer->filePath(),
669                                                 buffer->layoutPos());
670                                         if (!scanLog(*buffer, command, makeAbsPath(logfile, path), errorList))
671                                                 return false;
672                                 }
673                         }
674
675                         if (res) {
676                                 if (conv.to() == "program") {
677                                         Alert::error(_("Build errors"),
678                                                 _("There were errors during the build process."));
679                                 } else {
680 // FIXME: this should go out of here. For example, here we cannot say if
681 // it is a document (.lyx) or something else. Same goes for elsewhere.
682                                         Alert::error(_("Cannot convert file"),
683                                                 bformat(_("An error occurred while running:\n%1$s"),
684                                                 wrapParas(from_utf8(command))));
685                                 }
686                                 return false;
687                         }
688                 }
689         }
690
691         Converter const & conv = converterlist_[edgepath.back()];
692         if (conv.To()->dummy())
693                 return true;
694
695         if (!conv.result_dir().empty()) {
696                 // The converter has put the file(s) in a directory.
697                 // In this case we ignore the given to_file.
698                 if (from_base != to_base) {
699                         string const from = subst(conv.result_dir(),
700                                             token_base, from_base);
701                         string const to = subst(conv.result_dir(),
702                                           token_base, to_base);
703                         Mover const & mover = getMover(conv.from());
704                         if (!mover.rename(FileName(from), FileName(to))) {
705                                 Alert::error(_("Cannot convert file"),
706                                         bformat(_("Could not move a temporary directory from %1$s to %2$s."),
707                                                 from_utf8(from), from_utf8(to)));
708                                 return false;
709                         }
710                 }
711                 return true;
712         } else {
713                 if (conversionflags & try_cache)
714                         ConverterCache::get().add(orig_from, to_format, outfile);
715                 return move(conv.to(), outfile, to_file, conv.latex());
716         }
717 }
718
719
720 bool Converters::move(string const & fmt,
721                       FileName const & from, FileName const & to, bool copy)
722 {
723         if (from == to)
724                 return true;
725
726         bool no_errors = true;
727         string const path = onlyPath(from.absFileName());
728         string const base = onlyFileName(removeExtension(from.absFileName()));
729         string const to_base = removeExtension(to.absFileName());
730         string const to_extension = getExtension(to.absFileName());
731
732         support::FileNameList const files = FileName(path).dirList(getExtension(from.absFileName()));
733         for (support::FileNameList::const_iterator it = files.begin();
734              it != files.end(); ++it) {
735                 string const from2 = it->absFileName();
736                 string const file2 = onlyFileName(from2);
737                 if (prefixIs(file2, base)) {
738                         string const to2 = changeExtension(
739                                 to_base + file2.substr(base.length()),
740                                 to_extension);
741                         LYXERR(Debug::FILES, "moving " << from2 << " to " << to2);
742
743                         Mover const & mover = getMover(fmt);
744                         bool const moved = copy
745                                 ? mover.copy(*it, FileName(to2))
746                                 : mover.rename(*it, FileName(to2));
747                         if (!moved && no_errors) {
748                                 Alert::error(_("Cannot convert file"),
749                                         bformat(copy ?
750                                                 _("Could not copy a temporary file from %1$s to %2$s.") :
751                                                 _("Could not move a temporary file from %1$s to %2$s."),
752                                                 from_utf8(from2), from_utf8(to2)));
753                                 no_errors = false;
754                         }
755                 }
756         }
757         return no_errors;
758 }
759
760
761 bool Converters::formatIsUsed(string const & format)
762 {
763         ConverterList::const_iterator cit = converterlist_.begin();
764         ConverterList::const_iterator end = converterlist_.end();
765         for (; cit != end; ++cit) {
766                 if (cit->from() == format || cit->to() == format)
767                         return true;
768         }
769         return false;
770 }
771
772
773 bool Converters::scanLog(Buffer const & buffer, string const & /*command*/,
774                          FileName const & filename, ErrorList & errorList)
775 {
776         OutputParams runparams(0);
777         runparams.flavor = OutputParams::LATEX;
778         LaTeX latex("", runparams, filename);
779         TeXErrors terr;
780         int const result = latex.scanLogFile(terr);
781
782         if (result & LaTeX::ERRORS)
783                 buffer.bufferErrors(terr, errorList);
784
785         return true;
786 }
787
788
789 bool Converters::runLaTeX(Buffer const & buffer, string const & command,
790                           OutputParams const & runparams, ErrorList & errorList)
791 {
792         buffer.setBusy(true);
793         buffer.message(_("Running LaTeX..."));
794
795         // do the LaTeX run(s)
796         string const name = buffer.latexName();
797         LaTeX latex(command, runparams, FileName(makeAbsPath(name)),
798                     buffer.filePath(), buffer.layoutPos(),
799                     buffer.lastPreviewError());
800         TeXErrors terr;
801         // The connection closes itself at the end of the scope when latex is
802         // destroyed. One cannot close (and destroy) buffer while the converter is
803         // running.
804         latex.message.connect([&buffer](docstring const & msg){
805                         buffer.message(msg);
806                 });
807         int const result = latex.run(terr);
808
809         if (result & LaTeX::ERRORS)
810                 buffer.bufferErrors(terr, errorList);
811
812         if (!errorList.empty()) {
813           // We will show the LaTeX Errors GUI later which contains
814           // specific error messages so it would be repetitive to give
815           // e.g. the "finished with an error" dialog in addition.
816         }
817         else if (result & LaTeX::NO_LOGFILE) {
818                 docstring const str =
819                         bformat(_("LaTeX did not run successfully. "
820                                                "Additionally, LyX could not locate "
821                                                "the LaTeX log %1$s."), from_utf8(name));
822                 Alert::error(_("LaTeX failed"), str);
823         } else if (result & LaTeX::NONZERO_ERROR) {
824                 docstring const str =
825                         bformat(_( "The external program\n%1$s\n"
826                               "finished with an error. "
827                               "It is recommended you fix the cause of the external "
828                               "program's error (check the logs). "), from_utf8(command));
829                 Alert::error(_("LaTeX failed"), str);
830         } else if (result & LaTeX::NO_OUTPUT) {
831                 Alert::warning(_("Output is empty"),
832                                _("No output file was generated."));
833         }
834
835
836         buffer.setBusy(false);
837
838         int const ERROR_MASK =
839                         LaTeX::NO_LOGFILE |
840                         LaTeX::ERRORS |
841                         LaTeX::NO_OUTPUT;
842
843         return (result & ERROR_MASK) == 0;
844 }
845
846
847
848 void Converters::buildGraph()
849 {
850         // clear graph's data structures
851         G_.init(theFormats().size());
852         // each of the converters knows how to convert one format to another
853         // so, for each of them, we create an arrow on the graph, going from
854         // the one to the other
855         ConverterList::iterator it = converterlist_.begin();
856         ConverterList::iterator const end = converterlist_.end();
857         for (; it != end ; ++it) {
858                 int const from = theFormats().getNumber(it->from());
859                 int const to   = theFormats().getNumber(it->to());
860                 LASSERT(from >= 0, continue);
861                 LASSERT(to >= 0, continue);
862                 G_.addEdge(from, to);
863         }
864 }
865
866
867 FormatList const Converters::intToFormat(vector<int> const & input)
868 {
869         FormatList result(input.size());
870
871         vector<int>::const_iterator it = input.begin();
872         vector<int>::const_iterator const end = input.end();
873         FormatList::iterator rit = result.begin();
874         for ( ; it != end; ++it, ++rit) {
875                 *rit = &theFormats().get(*it);
876         }
877         return result;
878 }
879
880
881 FormatList const Converters::getReachableTo(string const & target,
882                 bool const clear_visited)
883 {
884         vector<int> const & reachablesto =
885                 G_.getReachableTo(theFormats().getNumber(target), clear_visited);
886
887         return intToFormat(reachablesto);
888 }
889
890
891 FormatList const Converters::getReachable(string const & from,
892                 bool const only_viewable, bool const clear_visited,
893                 set<string> const & excludes)
894 {
895         set<int> excluded_numbers;
896
897         set<string>::const_iterator sit = excludes.begin();
898         set<string>::const_iterator const end = excludes.end();
899         for (; sit != end; ++sit)
900                 excluded_numbers.insert(theFormats().getNumber(*sit));
901
902         vector<int> const & reachables =
903                 G_.getReachable(theFormats().getNumber(from),
904                                 only_viewable,
905                                 clear_visited,
906                                 excluded_numbers);
907
908         return intToFormat(reachables);
909 }
910
911
912 bool Converters::isReachable(string const & from, string const & to)
913 {
914         return G_.isReachable(theFormats().getNumber(from),
915                               theFormats().getNumber(to));
916 }
917
918
919 Graph::EdgePath Converters::getPath(string const & from, string const & to)
920 {
921         return G_.getPath(theFormats().getNumber(from),
922                           theFormats().getNumber(to));
923 }
924
925
926 FormatList Converters::importableFormats()
927 {
928         vector<string> l = loaders();
929         FormatList result = getReachableTo(l[0], true);
930         vector<string>::const_iterator it = l.begin() + 1;
931         vector<string>::const_iterator en = l.end();
932         for (; it != en; ++it) {
933                 FormatList r = getReachableTo(*it, false);
934                 result.insert(result.end(), r.begin(), r.end());
935         }
936         return result;
937 }
938
939
940 FormatList Converters::exportableFormats(bool only_viewable)
941 {
942         vector<string> s = savers();
943         FormatList result = getReachable(s[0], only_viewable, true);
944         vector<string>::const_iterator it = s.begin() + 1;
945         vector<string>::const_iterator en = s.end();
946         for (; it != en; ++it) {
947                  FormatList r = getReachable(*it, only_viewable, false);
948                 result.insert(result.end(), r.begin(), r.end());
949         }
950         return result;
951 }
952
953
954 vector<string> Converters::loaders() const
955 {
956         vector<string> v;
957         v.push_back("lyx");
958         v.push_back("text");
959         v.push_back("textparagraph");
960         return v;
961 }
962
963
964 vector<string> Converters::savers() const
965 {
966         vector<string> v;
967         v.push_back("docbook");
968         v.push_back("latex");
969         v.push_back("literate");
970         v.push_back("luatex");
971         v.push_back("dviluatex");
972         v.push_back("lyx");
973         v.push_back("xhtml");
974         v.push_back("pdflatex");
975         v.push_back("platex");
976         v.push_back("text");
977         v.push_back("xetex");
978         return v;
979 }
980
981
982 } // namespace lyx