]> git.lyx.org Git - lyx.git/blob - src/LaTeX.cpp
f0017c83ae5abcc77c9fdcb530790364467910fc
[lyx.git] / src / LaTeX.cpp
1 /**
2  * \file LaTeX.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author Angus Leeming
10  * \author Dekel Tsur
11  * \author Jürgen Spitzmüller
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "Buffer.h"
19 #include "BufferList.h"
20 #include "BufferParams.h"
21 #include "LaTeX.h"
22 #include "LyXRC.h"
23 #include "LyX.h"
24 #include "DepTable.h"
25 #include "Encoding.h"
26
27 #include "support/debug.h"
28 #include "support/convert.h"
29 #include "support/FileName.h"
30 #include "support/filetools.h"
31 #include "support/gettext.h"
32 #include "support/lstrings.h"
33 #include "support/Systemcall.h"
34 #include "support/os.h"
35
36 #include "support/regex.h"
37
38 #include <fstream>
39 #include <stack>
40
41
42 using namespace std;
43 using namespace lyx::support;
44
45 namespace lyx {
46
47 namespace os = support::os;
48
49 // TODO: in no particular order
50 // - get rid of the call to
51 //   BufferList::updateIncludedTeXfiles, this should either
52 //   be done before calling LaTeX::funcs or in a completely
53 //   different way.
54 // - the makeindex style files should be taken care of with
55 //   the dependency mechanism.
56
57 namespace {
58
59 docstring runMessage(unsigned int count)
60 {
61         return bformat(_("Waiting for LaTeX run number %1$d"), count);
62 }
63
64 } // namespace
65
66 /*
67  * CLASS TEXERRORS
68  */
69
70 void TeXErrors::insertError(int line, docstring const & error_desc,
71                             docstring const & error_text,
72                             string const & child_name)
73 {
74         Error newerr(line, error_desc, error_text, child_name);
75         errors.push_back(newerr);
76 }
77
78
79 void TeXErrors::insertRef(int line, docstring const & error_desc,
80                             docstring const & error_text,
81                             string const & child_name)
82 {
83         Error newerr(line, error_desc, error_text, child_name);
84         undef_ref.push_back(newerr);
85 }
86
87
88 bool operator==(AuxInfo const & a, AuxInfo const & o)
89 {
90         return a.aux_file == o.aux_file
91                 && a.citations == o.citations
92                 && a.databases == o.databases
93                 && a.styles == o.styles;
94 }
95
96
97 bool operator!=(AuxInfo const & a, AuxInfo const & o)
98 {
99         return !(a == o);
100 }
101
102
103 /*
104  * CLASS LaTeX
105  */
106
107 LaTeX::LaTeX(string const & latex, OutputParams const & rp,
108              FileName const & f, string const & p, string const & lp, 
109              bool allow_cancellation, bool const clean_start)
110         : cmd(latex), file(f), path(p), lpath(lp), runparams(rp), biber(false),
111           allow_cancel(allow_cancellation)
112 {
113         num_errors = 0;
114         // lualatex can still produce a DVI with --output-format=dvi. However,
115         // we do not use that internally (we use the "dvilualatex" command) so
116         // it would only happen from a custom converter. Thus, it is better to
117         // guess that lualatex produces a PDF than to guess a DVI.
118         // FIXME we should base the extension on the output format, which we should
119         // get in a robust way, e.g. from the converter.
120         if (prefixIs(cmd, "pdf") || prefixIs(cmd, "lualatex") || prefixIs(cmd, "xelatex")) {
121                 depfile = FileName(file.absFileName() + ".dep-pdf");
122                 output_file =
123                         FileName(changeExtension(file.absFileName(), ".pdf"));
124         } else {
125                 depfile = FileName(file.absFileName() + ".dep");
126                 output_file =
127                         FileName(changeExtension(file.absFileName(), ".dvi"));
128         }
129         if (clean_start)
130                 removeAuxiliaryFiles();
131 }
132
133
134 void LaTeX::removeAuxiliaryFiles() const
135 {
136         // Note that we do not always call this function when there is an error.
137         // For example, if there is an error but an output file is produced we
138         // still would like to output (export/view) the file.
139
140         // What files do we have to delete?
141
142         // This will at least make latex do all the runs
143         depfile.removeFile();
144
145         // but the reason for the error might be in a generated file...
146
147         // bibtex file
148         FileName const bbl(changeExtension(file.absFileName(), ".bbl"));
149         bbl.removeFile();
150
151         // biber file
152         FileName const bcf(changeExtension(file.absFileName(), ".bcf"));
153         bcf.removeFile();
154
155         // makeindex file
156         FileName const ind(changeExtension(file.absFileName(), ".ind"));
157         ind.removeFile();
158
159         // nomencl file
160         FileName const nls(changeExtension(file.absFileName(), ".nls"));
161         nls.removeFile();
162
163         // nomencl file (old version of the package)
164         FileName const gls(changeExtension(file.absFileName(), ".gls"));
165         gls.removeFile();
166
167         // endnotes file
168         FileName const ent(changeExtension(file.absFileName(), ".ent"));
169         ent.removeFile();
170
171         // Also remove the aux file
172         FileName const aux(changeExtension(file.absFileName(), ".aux"));
173         aux.removeFile();
174
175         // Also remove the .out file (e.g. hyperref bookmarks) (#9963)
176         FileName const out(changeExtension(file.absFileName(), ".out"));
177         out.removeFile();
178
179         // Remove the output file, which is often generated even if error
180         output_file.removeFile();
181 }
182
183
184 int LaTeX::run(TeXErrors & terr)
185         // We know that this function will only be run if the lyx buffer
186         // has been changed. We also know that a newly written .tex file
187         // is always different from the previous one because of the date
188         // in it. However it seems safe to run latex (at least) one time
189         // each time the .tex file changes.
190 {
191         int scanres = NO_ERRORS;
192         int bscanres = NO_ERRORS;
193         int iscanres = NO_ERRORS;
194         unsigned int count = 0; // number of times run
195         num_errors = 0; // just to make sure.
196         unsigned int const MAX_RUN = 6;
197         DepTable head; // empty head
198         bool rerun = false; // rerun requested
199
200         // The class LaTeX does not know the temp path.
201         theBufferList().updateIncludedTeXfiles(FileName::getcwd().absFileName(),
202                 runparams);
203
204         // 0
205         // first check if the file dependencies exist:
206         //     ->If it does exist
207         //             check if any of the files mentioned in it have
208         //             changed (done using a checksum).
209         //                 -> if changed:
210         //                        run latex once and
211         //                        remake the dependency file
212         //                 -> if not changed:
213         //                        just return there is nothing to do for us.
214         //     ->if it doesn't exist
215         //             make it and
216         //             run latex once (we need to run latex once anyway) and
217         //             remake the dependency file.
218         //
219
220         bool had_depfile = depfile.exists();
221         bool run_bibtex = false;
222         FileName const aux_file(changeExtension(file.absFileName(), ".aux"));
223
224         if (had_depfile) {
225                 LYXERR(Debug::DEPEND, "Dependency file exists");
226                 // Read the dep file:
227                 had_depfile = head.read(depfile);
228         }
229
230         if (had_depfile) {
231                 if (runparams.includeall) {
232                         // On an "includeall" call (whose purpose is to set up/maintain counters and references
233                         // for includeonly), we remove the master from the dependency list since
234                         // (1) it will be checked anyway on the subsequent includeonly run
235                         // (2) the master is always changed (due to the \includeonly line), and this alone would
236                         //     trigger a complete, expensive run each time
237                         head.remove_file(file);
238                         // Also remove all children which are included
239                         Buffer const * buf = theBufferList().getBufferFromTmp(file.absFileName());
240                         if (buf && buf->params().maintain_unincluded_children == BufferParams::CM_Mostly) {
241                                 for (auto const incfile : buf->params().getIncludedChildren()) {
242                                         string const incm =
243                                                 DocFileName(changeExtension(makeAbsPath(incfile, path)
244                                                                             .absFileName(), ".tex")).mangledFileName();
245                                         FileName inc = makeAbsPath(incm, file.onlyPath().realPath());
246                                         head.remove_file(inc);
247                                 }
248                         }
249                 }
250                 // Update the checksums
251                 head.update();
252                 // Can't just check if anything has changed because it might
253                 // have aborted on error last time... in which cas we need
254                 // to re-run latex and collect the error messages
255                 // (even if they are the same).
256                 if (!output_file.exists()) {
257                         LYXERR(Debug::DEPEND,
258                                 "re-running LaTeX because output file doesn't exist.");
259                 } else if (!head.sumchange()) {
260                         LYXERR(Debug::DEPEND, "return no_change");
261                         return NO_CHANGE;
262                 } else {
263                         LYXERR(Debug::DEPEND, "Dependency file has changed");
264                 }
265
266                 if (head.extchanged(".bib") || head.extchanged(".bst"))
267                         run_bibtex = true;
268         } else
269                 LYXERR(Debug::DEPEND,
270                         "Dependency file does not exist, or has wrong format");
271
272         /// We scan the aux file even when had_depfile = false,
273         /// because we can run pdflatex on the file after running latex on it,
274         /// in which case we will not need to run bibtex again.
275         vector<AuxInfo> bibtex_info_old;
276         if (!run_bibtex)
277                 bibtex_info_old = scanAuxFiles(aux_file, runparams.only_childbibs);
278
279         ++count;
280         LYXERR(Debug::LATEX, "Run #" << count);
281         message(runMessage(count));
282
283         int exit_code = startscript();
284         if (exit_code == Systemcall::KILLED)
285                 return Systemcall::KILLED;
286
287         scanres = scanLogFile(terr);
288         if (scanres & ERROR_RERUN) {
289                 LYXERR(Debug::LATEX, "Rerunning LaTeX");
290                 terr.clearErrors();
291                 exit_code = startscript();
292                 if (exit_code == Systemcall::KILLED)
293                         return Systemcall::KILLED;
294                 scanres = scanLogFile(terr);
295         }
296
297         vector<AuxInfo> const bibtex_info = scanAuxFiles(aux_file, runparams.only_childbibs);
298         if (!run_bibtex && bibtex_info_old != bibtex_info)
299                 run_bibtex = true;
300
301         // update the dependencies.
302         deplog(head); // reads the latex log
303         head.update();
304
305         // 1
306         // At this point we must run external programs if needed.
307         // makeindex will be run if a .idx file changed or was generated.
308         // And if there were undefined citations or changes in references
309         // the .aux file is checked for signs of bibtex. Bibtex is then run
310         // if needed.
311
312         // memoir (at least) writes an empty *idx file in the first place.
313         // A second latex run is needed.
314         FileName const idxfile(changeExtension(file.absFileName(), ".idx"));
315         rerun = idxfile.exists() && idxfile.isFileEmpty();
316
317         // run makeindex
318         if (head.haschanged(idxfile)) {
319                 // no checks for now
320                 LYXERR(Debug::LATEX, "Running MakeIndex.");
321                 message(_("Running Index Processor."));
322                 // onlyFileName() is needed for cygwin
323                 int const ret = 
324                                 runMakeIndex(onlyFileName(idxfile.absFileName()), runparams);
325                 if (ret == Systemcall::KILLED)
326                         return Systemcall::KILLED;
327                 FileName const ilgfile(changeExtension(file.absFileName(), ".ilg"));
328                 if (ilgfile.exists())
329                         iscanres = scanIlgFile(terr);
330                 rerun = true;
331         }
332
333         FileName const nlofile(changeExtension(file.absFileName(), ".nlo"));
334         // If all nomencl entries are removed, nomencl writes an empty nlo file.
335         // DepTable::hasChanged() returns false in this case, since it does not
336         // distinguish empty files from non-existing files. This is why we need
337         // the extra checks here (to trigger a rerun). Cf. discussions in #8905.
338         // FIXME: Sort out the real problem in DepTable.
339         if (head.haschanged(nlofile) || (nlofile.exists() && nlofile.isFileEmpty())) {
340                 int const ret = runMakeIndexNomencl(file, ".nlo", ".nls");
341                 if (ret == Systemcall::KILLED)
342                         return Systemcall::KILLED;
343                 rerun = true;
344         }
345
346         FileName const glofile(changeExtension(file.absFileName(), ".glo"));
347         if (head.haschanged(glofile)) {
348                 int const ret = runMakeIndexNomencl(file, ".glo", ".gls");
349                 if (ret)
350                         return ret;
351                 rerun = true;
352         }
353
354
355         // check if we're using biber instead of bibtex
356         // biber writes no info to the aux file, so we just check
357         // if a bcf file exists (and if it was updated)
358         FileName const bcffile(changeExtension(file.absFileName(), ".bcf"));
359         biber |= head.exist(bcffile);
360
361         // run bibtex
362         // if (scanres & UNDEF_CIT || scanres & RERUN || run_bibtex)
363         // We do not run bibtex/biber on an "includeall" call (whose purpose is
364         // to set up/maintain counters and references for includeonly) since
365         // (1) bibliographic references will be updated on the subsequent includeonly run
366         // (2) this would trigger a complete run each time (as references in non-included
367         //     children are removed on subsequent includeonly runs)
368         if (!runparams.includeall && (scanres & UNDEF_CIT || run_bibtex)) {
369                 // Here we must scan the .aux file and look for
370                 // "\bibdata" and/or "\bibstyle". If one of those
371                 // tags is found -> run bibtex and set rerun = true;
372                 // no checks for now
373                 LYXERR(Debug::LATEX, "Running BibTeX.");
374                 message(_("Running BibTeX."));
375                 updateBibtexDependencies(head, bibtex_info);
376                 int exit_code;
377                 rerun |= runBibTeX(bibtex_info, runparams, exit_code);
378                 if (exit_code == Systemcall::KILLED)
379                         return Systemcall::KILLED;
380                 FileName const blgfile(changeExtension(file.absFileName(), ".blg"));
381                 if (blgfile.exists())
382                         bscanres = scanBlgFile(head, terr);
383         } else if (!had_depfile) {
384                 /// If we run pdflatex on the file after running latex on it,
385                 /// then we do not need to run bibtex, but we do need to
386                 /// insert the .bib and .bst files into the .dep-pdf file.
387                 updateBibtexDependencies(head, bibtex_info);
388         }
389
390         // 2
391         // we know on this point that latex has been run once (or we just
392         // returned) and the question now is to decide if we need to run
393         // it any more. This is done by asking if any of the files in the
394         // dependency file has changed. (remember that the checksum for
395         // a given file is reported to have changed if it just was created)
396         //     -> if changed or rerun == true:
397         //             run latex once more and
398         //             update the dependency structure
399         //     -> if not changed:
400         //             we do nothing at this point
401         //
402         if (rerun || head.sumchange()) {
403                 rerun = false;
404                 ++count;
405                 LYXERR(Debug::DEPEND, "Dep. file has changed or rerun requested");
406                 LYXERR(Debug::LATEX, "Run #" << count);
407                 message(runMessage(count));
408                 int exit_code = startscript();
409                 if (exit_code == Systemcall::KILLED)
410                         return Systemcall::KILLED;
411                 scanres = scanLogFile(terr);
412
413                 // update the depedencies
414                 deplog(head); // reads the latex log
415                 head.update();
416         } else {
417                 LYXERR(Debug::DEPEND, "Dep. file has NOT changed");
418         }
419
420         // 3
421         // rerun bibtex?
422         // Complex bibliography packages such as Biblatex require
423         // an additional bibtex cycle sometimes.
424         // We do not run bibtex/biber on an "includeall" call (whose purpose is
425         // to set up/maintain counters and references for includeonly) since
426         // (1) bibliographic references will be updated on the subsequent includeonly run
427         // (2) this would trigger a complete run each time (as references in non-included
428         //     children are removed on subsequent includeonly runs)
429         if (!runparams.includeall && scanres & UNDEF_CIT) {
430                 // Here we must scan the .aux file and look for
431                 // "\bibdata" and/or "\bibstyle". If one of those
432                 // tags is found -> run bibtex and set rerun = true;
433                 // no checks for now
434                 LYXERR(Debug::LATEX, "Running BibTeX.");
435                 message(_("Running BibTeX."));
436                 updateBibtexDependencies(head, bibtex_info);
437                 int exit_code;
438                 rerun |= runBibTeX(bibtex_info, runparams, exit_code);
439                 if (exit_code == Systemcall::KILLED)
440                         return Systemcall::KILLED;
441                 FileName const blgfile(changeExtension(file.absFileName(), ".blg"));
442                 if (blgfile.exists())
443                         bscanres = scanBlgFile(head, terr);
444         }
445
446         // 4
447         // The inclusion of files generated by external programs such as
448         // makeindex or bibtex might have done changes to pagenumbering,
449         // etc. And because of this we must run the external programs
450         // again to make sure everything is redone correctly.
451         // Also there should be no need to run the external programs any
452         // more after this.
453
454         // run makeindex if the <file>.idx has changed or was generated.
455         if (head.haschanged(idxfile)) {
456                 // no checks for now
457                 LYXERR(Debug::LATEX, "Running MakeIndex.");
458                 message(_("Running Index Processor."));
459                 // onlyFileName() is needed for cygwin
460                 int const ret = runMakeIndex(onlyFileName(changeExtension(
461                                 file.absFileName(), ".idx")), runparams);
462                 if (ret == Systemcall::KILLED)
463                         return Systemcall::KILLED;
464                 FileName const ilgfile(changeExtension(file.absFileName(), ".ilg"));
465                 if (ilgfile.exists())
466                         iscanres = scanIlgFile(terr);
467                 rerun = true;
468         }
469
470         // MSVC complains that bool |= int is unsafe. Not sure why.
471         if (head.haschanged(nlofile))
472                 rerun |= (runMakeIndexNomencl(file, ".nlo", ".nls") != 0);
473         if (head.haschanged(glofile))
474                 rerun |= (runMakeIndexNomencl(file, ".glo", ".gls") != 0);
475
476         // 5
477         // we will only run latex more if the log file asks for it.
478         // or if the sumchange() is true.
479         //     -> rerun asked for:
480         //             run latex and
481         //             remake the dependency file
482         //             goto 2 or return if max runs are reached.
483         //     -> rerun not asked for:
484         //             just return (fall out of bottom of func)
485         //
486         while ((head.sumchange() || rerun || (scanres & RERUN))
487                && count < MAX_RUN) {
488                 // Yes rerun until message goes away, or until
489                 // MAX_RUNS are reached.
490                 rerun = false;
491                 ++count;
492                 LYXERR(Debug::LATEX, "Run #" << count);
493                 message(runMessage(count));
494                 startscript();
495                 scanres = scanLogFile(terr);
496
497                 // keep this updated
498                 head.update();
499         }
500
501         // Write the dependencies to file.
502         head.write(depfile);
503
504         if (exit_code) {
505                 // add flag here, just before return, instead of when exit_code
506                 // is defined because scanres is sometimes overwritten above
507                 // (e.g. rerun)
508                 scanres |= NONZERO_ERROR;
509         }
510
511         LYXERR(Debug::LATEX, "Done.");
512
513         if (bscanres & ERRORS)
514                 return bscanres; // return on error
515
516         if (iscanres & ERRORS)
517                 return iscanres; // return on error
518
519         return scanres;
520 }
521
522
523 int LaTeX::startscript()
524 {
525         // onlyFileName() is needed for cygwin
526         string tmp = cmd + ' '
527                      + quoteName(onlyFileName(file.toFilesystemEncoding()))
528                      + " > " + os::nulldev();
529         Systemcall one;
530         Systemcall::Starttype const starttype = 
531                 allow_cancel ? Systemcall::WaitLoop : Systemcall::Wait;
532         return one.startscript(starttype, tmp, path, lpath, true);
533 }
534
535
536 int LaTeX::runMakeIndex(string const & f, OutputParams const & rp,
537                          string const & params)
538 {
539         string tmp = rp.use_japanese ?
540                 lyxrc.jindex_command : lyxrc.index_command;
541
542         if (!rp.index_command.empty())
543                 tmp = rp.index_command;
544         
545         if (contains(tmp, "$$x")) {
546                 // This adds appropriate [te]xindy options
547                 // such as language and codepage (for the
548                 // main document language/encoding) as well
549                 // as input markup (latex or xelatex)
550                 string xdyopts = rp.xindy_language;
551                 if (!xdyopts.empty())
552                         xdyopts = "-L " + xdyopts;
553                 if (rp.isFullUnicode() && rp.encoding->package() == Encoding::none) {
554                         if (!xdyopts.empty())
555                                 xdyopts += " ";
556                         // xelatex includes lualatex
557                         xdyopts += "-I xelatex";
558                 }
559                 else if (rp.encoding->iconvName() == "UTF-8") {
560                         if (!xdyopts.empty())
561                                 xdyopts += " ";
562                         // -I not really needed for texindy, but for xindy
563                         xdyopts += "-C utf8 -I latex";
564                 }
565                 else {
566                         if (!xdyopts.empty())
567                                 xdyopts += " ";
568                         // not really needed for texindy, but for xindy
569                         xdyopts += "-I latex";
570                 }
571                 tmp = subst(tmp, "$$x", xdyopts);
572         }
573
574         if (contains(tmp, "$$b")) {
575                 // advise xindy to write a log file
576                 tmp = subst(tmp, "$$b", removeExtension(f));
577         }
578
579         LYXERR(Debug::LATEX,
580                 "idx file has been made, running index processor ("
581                 << tmp << ") on file " << f);
582
583         tmp = subst(tmp, "$$lang", rp.document_language);
584         if (rp.use_indices) {
585                 tmp = lyxrc.splitindex_command + " -m " + quoteName(tmp);
586                 LYXERR(Debug::LATEX,
587                 "Multiple indices. Using splitindex command: " << tmp);
588         }
589         tmp += ' ';
590         tmp += quoteName(f);
591         tmp += params;
592         Systemcall one;
593         Systemcall::Starttype const starttype = 
594                 allow_cancel ? Systemcall::WaitLoop : Systemcall::Wait;
595         return one.startscript(starttype, tmp, path, lpath, true);
596 }
597
598
599 int LaTeX::runMakeIndexNomencl(FileName const & fname,
600                 string const & nlo, string const & nls)
601 {
602         LYXERR(Debug::LATEX, "Running MakeIndex for nomencl.");
603         message(_("Running MakeIndex for nomencl."));
604         string tmp = lyxrc.nomencl_command + ' ';
605         // onlyFileName() is needed for cygwin
606         tmp += quoteName(onlyFileName(changeExtension(fname.absFileName(), nlo)));
607         tmp += " -o "
608                 + onlyFileName(changeExtension(fname.toFilesystemEncoding(), nls));
609         Systemcall one;
610         Systemcall::Starttype const starttype = 
611                 allow_cancel ? Systemcall::WaitLoop : Systemcall::Wait;
612         return one.startscript(starttype, tmp, path, lpath, true);
613 }
614
615
616 vector<AuxInfo> const
617 LaTeX::scanAuxFiles(FileName const & fname, bool const only_childbibs)
618 {
619         vector<AuxInfo> result;
620
621         // With chapterbib, we have to bibtex all children's aux files
622         // but _not_ the master's!
623         if (only_childbibs) {
624                 for (string const &s: children) {
625                         FileName fn =
626                                 makeAbsPath(s, fname.onlyPath().realPath());
627                         fn.changeExtension("aux");
628                         if (fn.exists())
629                                 result.push_back(scanAuxFile(fn));
630                 }
631                 return result;
632         }
633
634         result.push_back(scanAuxFile(fname));
635
636         // This is for bibtopic
637         string const basename = removeExtension(fname.absFileName());
638         for (int i = 1; i < 1000; ++i) {
639                 FileName const file2(basename
640                         + '.' + convert<string>(i)
641                         + ".aux");
642                 if (!file2.exists())
643                         break;
644                 result.push_back(scanAuxFile(file2));
645         }
646         return result;
647 }
648
649
650 AuxInfo const LaTeX::scanAuxFile(FileName const & fname)
651 {
652         AuxInfo result;
653         result.aux_file = fname;
654         scanAuxFile(fname, result);
655         return result;
656 }
657
658
659 void LaTeX::scanAuxFile(FileName const & fname, AuxInfo & aux_info)
660 {
661         LYXERR(Debug::LATEX, "Scanning aux file: " << fname);
662
663         ifstream ifs(fname.toFilesystemEncoding().c_str());
664         string token;
665         static regex const reg1("\\\\citation\\{([^}]+)\\}");
666         static regex const reg2("\\\\bibdata\\{([^}]+)\\}");
667         static regex const reg3("\\\\bibstyle\\{([^}]+)\\}");
668         static regex const reg4("\\\\@input\\{([^}]+)\\}");
669
670         while (getline(ifs, token)) {
671                 token = rtrim(token, "\r");
672                 smatch sub;
673                 // FIXME UNICODE: We assume that citation keys and filenames
674                 // in the aux file are in the file system encoding.
675                 token = to_utf8(from_filesystem8bit(token));
676                 if (regex_match(token, sub, reg1)) {
677                         string data = sub.str(1);
678                         while (!data.empty()) {
679                                 string citation;
680                                 data = split(data, citation, ',');
681                                 LYXERR(Debug::LATEX, "Citation: " << citation);
682                                 aux_info.citations.insert(citation);
683                         }
684                 } else if (regex_match(token, sub, reg2)) {
685                         string data = sub.str(1);
686                         // data is now all the bib files separated by ','
687                         // get them one by one and pass them to the helper
688                         while (!data.empty()) {
689                                 string database;
690                                 data = split(data, database, ',');
691                                 database = changeExtension(database, "bib");
692                                 LYXERR(Debug::LATEX, "BibTeX database: `" << database << '\'');
693                                 aux_info.databases.insert(database);
694                         }
695                 } else if (regex_match(token, sub, reg3)) {
696                         string style = sub.str(1);
697                         // token is now the style file
698                         // pass it to the helper
699                         style = changeExtension(style, "bst");
700                         LYXERR(Debug::LATEX, "BibTeX style: `" << style << '\'');
701                         aux_info.styles.insert(style);
702                 } else if (regex_match(token, sub, reg4)) {
703                         string const file2 = sub.str(1);
704                         scanAuxFile(makeAbsPath(file2), aux_info);
705                 }
706         }
707 }
708
709
710 void LaTeX::updateBibtexDependencies(DepTable & dep,
711                                      vector<AuxInfo> const & bibtex_info)
712 {
713         // Since a run of Bibtex mandates more latex runs it is ok to
714         // remove all ".bib" and ".bst" files.
715         dep.remove_files_with_extension(".bib");
716         dep.remove_files_with_extension(".bst");
717         //string aux = OnlyFileName(ChangeExtension(file, ".aux"));
718
719         for (vector<AuxInfo>::const_iterator it = bibtex_info.begin();
720              it != bibtex_info.end(); ++it) {
721                 for (set<string>::const_iterator it2 = it->databases.begin();
722                      it2 != it->databases.end(); ++it2) {
723                         FileName const file = findtexfile(*it2, "bib");
724                         if (!file.empty())
725                                 dep.insert(file, true);
726                 }
727
728                 for (set<string>::const_iterator it2 = it->styles.begin();
729                      it2 != it->styles.end(); ++it2) {
730                         FileName const file = findtexfile(*it2, "bst");
731                         if (!file.empty())
732                                 dep.insert(file, true);
733                 }
734         }
735
736         // biber writes nothing into the aux file.
737         // Instead, we have to scan the blg file
738         if (biber) {
739                 TeXErrors terr;
740                 scanBlgFile(dep, terr);
741         }
742 }
743
744
745 bool LaTeX::runBibTeX(vector<AuxInfo> const & bibtex_info,
746                       OutputParams const & rp, int & exit_code)
747 {
748         bool result = false;
749         exit_code = 0;
750         for (vector<AuxInfo>::const_iterator it = bibtex_info.begin();
751              it != bibtex_info.end(); ++it) {
752                 if (!biber && it->databases.empty())
753                         continue;
754                 result = true;
755
756                 string tmp = rp.bibtex_command;
757                 tmp += " ";
758                 // onlyFileName() is needed for cygwin
759                 tmp += quoteName(onlyFileName(removeExtension(
760                                 it->aux_file.absFileName())));
761                 Systemcall one;
762                 Systemcall::Starttype const starttype = 
763                 allow_cancel ? Systemcall::WaitLoop : Systemcall::Wait;
764                 exit_code = one.startscript(starttype, tmp, path, lpath, true);
765                 if (exit_code) {
766                         return result;
767                 }
768         }
769         // Return whether bibtex was run
770         return result;
771 }
772
773
774 //helper func for scanLogFile; gets line number X from strings "... on input line X ..."
775 //returns 0 if none is found
776 int getLineNumber(const string &token){
777         string l = support::token(token, ' ', tokenPos(token,' ',"line") + 1);
778         return l.empty() ? 0 : convert<int>(l);
779 }
780
781
782 int LaTeX::scanLogFile(TeXErrors & terr)
783 {
784         int last_line = -1;
785         int line_count = 1;
786         int retval = NO_ERRORS;
787         string tmp =
788                 onlyFileName(changeExtension(file.absFileName(), ".log"));
789         LYXERR(Debug::LATEX, "Log file: " << tmp);
790         FileName const fn = FileName(makeAbsPath(tmp));
791         // FIXME we should use an ifdocstream here and a docstring for token
792         // below. The encoding of the log file depends on the _output_ (font)
793         // encoding of the TeX file (T1, TU etc.). See #10728.
794         ifstream ifs(fn.toFilesystemEncoding().c_str());
795         bool fle_style = false;
796         static regex const file_line_error(".+\\.\\D+:[0-9]+: (.+)");
797         static regex const child_file("[^0-9]*([0-9]+[A-Za-z]*_.+\\.tex).*");
798         static regex const undef_ref(".*Reference `(\\w+)\\' on page.*");
799         // Flag for 'File ended while scanning' message.
800         // We need to wait for subsequent processing.
801         string wait_for_error;
802         string child_name;
803         int pnest = 0;
804         stack <pair<string, int> > child;
805         children.clear();
806
807         terr.clearRefs();
808
809         string token;
810         while (getline(ifs, token)) {
811                 // MikTeX sometimes inserts \0 in the log file. They can't be
812                 // removed directly with the existing string utility
813                 // functions, so convert them first to \r, and remove all
814                 // \r's afterwards, since we need to remove them anyway.
815                 token = subst(token, '\0', '\r');
816                 token = subst(token, "\r", "");
817                 smatch sub;
818
819                 LYXERR(Debug::LATEX, "Log line: " << token);
820
821                 if (token.empty())
822                         continue;
823
824                 // Track child documents
825                 for (size_t i = 0; i < token.length(); ++i) {
826                         if (token[i] == '(') {
827                                 ++pnest;
828                                 size_t j = token.find('(', i + 1);
829                                 size_t len = j == string::npos
830                                                 ? token.substr(i + 1).length()
831                                                 : j - i - 1;
832                                 string const substr = token.substr(i + 1, len);
833                                 if (regex_match(substr, sub, child_file)) {
834                                         string const name = sub.str(1);
835                                         // Sometimes also masters have a name that matches
836                                         // (if their name starts with a number and _)
837                                         if (name != file.onlyFileName()) {
838                                                 child.push(make_pair(name, pnest));
839                                                 children.push_back(name);
840                                         }
841                                         i += len;
842                                 }
843                         } else if (token[i] == ')') {
844                                 if (!child.empty()
845                                     && child.top().second == pnest)
846                                         child.pop();
847                                 --pnest;
848                         }
849                 }
850                 child_name = child.empty() ? empty_string() : child.top().first;
851
852                 if (contains(token, "file:line:error style messages enabled"))
853                         fle_style = true;
854
855                 //Handles both "LaTeX Warning:" & "Package natbib Warning:"
856                 //Various handlers for missing citations below won't catch the problem if citation
857                 //key is long (>~25chars), because pdflatex splits output at line length 80.
858                 //TODO: TL 2020 engines will contain new commandline switch --cnf-line which we  
859                 //can use to set max_print_line variable for appropriate length and detect all
860                 //errors correctly.
861                 if (!runparams.includeall && (contains(token, "There were undefined citations.") ||
862                     prefixIs(token, "Package biblatex Warning: The following entry could not be found")))
863                         retval |= UNDEF_CIT;
864
865                 if (prefixIs(token, "LaTeX Warning:") ||
866                     prefixIs(token, "! pdfTeX warning")) {
867                         // Here shall we handle different
868                         // types of warnings
869                         retval |= LATEX_WARNING;
870                         LYXERR(Debug::LATEX, "LaTeX Warning.");
871                         if (contains(token, "Rerun to get cross-references")) {
872                                 retval |= RERUN;
873                                 LYXERR(Debug::LATEX, "We should rerun.");
874                         // package clefval needs 2 latex runs before bibtex
875                         } else if (contains(token, "Value of")
876                                    && contains(token, "on page")
877                                    && contains(token, "undefined")) {
878                                 retval |= ERROR_RERUN;
879                                 LYXERR(Debug::LATEX, "Force rerun.");
880                         // package etaremune
881                         } else if (contains(token, "Etaremune labels have changed")) {
882                                 retval |= ERROR_RERUN;
883                                 LYXERR(Debug::LATEX, "Force rerun.");
884                         // package enotez
885                         } else if (contains(token, "Endnotes may have changed. Rerun")) {
886                                 retval |= RERUN;
887                                 LYXERR(Debug::LATEX, "We should rerun.");
888                         //"Citation `cit' on page X undefined on input line X."
889                         } else if (!runparams.includeall && contains(token, "Citation")
890                                    //&& contains(token, "on input line") //often split to newline
891                                    && contains(token, "undefined")) {
892                                 retval |= UNDEF_CIT;
893                                 terr.insertRef(getLineNumber(token), from_ascii("Citation undefined"),
894                                         from_utf8(token), child_name);
895                         //"Reference `X' on page Y undefined on input line Z."
896                         } else if (contains(token, "Reference")
897                                    //&& contains(token, "on input line")) //often split to new line
898                                    && contains(token, "undefined")) {
899                                 if (regex_match(token, sub, undef_ref)) {
900                                         string const ref = sub.str(1);
901                                         Buffer const * buf = theBufferList().getBufferFromTmp(file.absFileName());
902                                         if (!buf || !buf->masterBuffer()->activeLabel(from_utf8(ref))) {
903                                                 terr.insertRef(getLineNumber(token), from_ascii("Reference undefined"),
904                                                         from_utf8(token), child_name);
905                                                 retval |= UNDEF_UNKNOWN_REF;
906                                         }
907                                 }
908                                 retval |= UNDEF_REF;
909
910                         //If label is too long pdlaftex log line splitting will make the above fail
911                         //so we catch at least this generic statement occuring for both CIT & REF.
912                         } else if (!runparams.includeall && contains(token, "There were undefined references.")) {
913                                 if (!(retval & UNDEF_CIT)) //if not handled already
914                                         retval |= UNDEF_REF;
915                         }
916
917                 } else if (prefixIs(token, "Package")) {
918                         // Package warnings
919                         retval |= PACKAGE_WARNING;
920                         if (contains(token, "natbib Warning:")) {
921                                 // Natbib warnings
922                                 if (!runparams.includeall
923                                     && contains(token, "Citation")
924                                     && contains(token, "on page")
925                                     && contains(token, "undefined")) {
926                                         retval |= UNDEF_CIT;
927                                         //Unf only keys up to ~6 chars will make it due to line splits
928                                         terr.insertRef(getLineNumber(token), from_ascii("Citation undefined"),
929                                                 from_utf8(token), child_name);
930                                 }
931                         } else if (!runparams.includeall && contains(token, "run BibTeX")) {
932                                 retval |= UNDEF_CIT;
933                         } else if (!runparams.includeall && contains(token, "run Biber")) {
934                                 retval |= UNDEF_CIT;
935                                 biber = true;
936                         } else if (contains(token, "Rerun LaTeX") ||
937                                    contains(token, "Please rerun LaTeX") ||
938                                    contains(token, "Rerun to get")) {
939                                 // at least longtable.sty and bibtopic.sty
940                                 // might use this.
941                                 LYXERR(Debug::LATEX, "We should rerun.");
942                                 retval |= RERUN;
943                         }
944                 } else if (prefixIs(token, "LETTRE WARNING:")) {
945                         if (contains(token, "veuillez recompiler")) {
946                                 // lettre.cls
947                                 LYXERR(Debug::LATEX, "We should rerun.");
948                                 retval |= RERUN;
949                         }
950                 } else if (token[0] == '(') {
951                         if (contains(token, "Rerun LaTeX") ||
952                             contains(token, "Rerun to get")) {
953                                 // Used by natbib
954                                 LYXERR(Debug::LATEX, "We should rerun.");
955                                 retval |= RERUN;
956                         }
957                 } else if (prefixIs(token, "! ")
958                             || (fle_style
959                                 && regex_match(token, sub, file_line_error)
960                                 && !contains(token, "pdfTeX warning"))) {
961                            // Ok, we have something that looks like a TeX Error
962                            // but what do we really have.
963
964                         // Just get the error description:
965                         string desc;
966                         if (prefixIs(token, "! "))
967                                 desc = string(token, 2);
968                         else if (fle_style)
969                                 desc = sub.str();
970                         if (contains(token, "LaTeX Error:"))
971                                 retval |= LATEX_ERROR;
972
973                         if (prefixIs(token, "! File ended while scanning")) {
974                                 if (prefixIs(token, "! File ended while scanning use of \\Hy@setref@link.")){
975                                         // bug 7344. We must rerun LaTeX if hyperref has been toggled.
976                                         retval |= ERROR_RERUN;
977                                         LYXERR(Debug::LATEX, "Force rerun.");
978                                 } else {
979                                         // bug 6445. At this point its not clear we finish with error.
980                                         wait_for_error = desc;
981                                         continue;
982                                 }
983                         }
984
985                         if (prefixIs(token, "! Incomplete \\if")) {
986                                 // bug 10666. At this point its not clear we finish with error.
987                                 wait_for_error = desc;
988                                 continue;
989                         }
990
991                         if (prefixIs(token, "! Paragraph ended before \\Hy@setref@link was complete.")){
992                                         // bug 7344. We must rerun LaTeX if hyperref has been toggled.
993                                         retval |= ERROR_RERUN;
994                                         LYXERR(Debug::LATEX, "Force rerun.");
995                         }
996
997                         if (!wait_for_error.empty() && prefixIs(token, "! Emergency stop.")){
998                                 retval |= LATEX_ERROR;
999                                 string errstr;
1000                                 int count = 0;
1001                                 errstr = wait_for_error;
1002                                 wait_for_error.clear();
1003                                 do {
1004                                         if (!getline(ifs, tmp))
1005                                                 break;
1006                                         tmp = rtrim(tmp, "\r");
1007                                         errstr += "\n" + tmp;
1008                                         if (++count > 5)
1009                                                 break;
1010                                 } while (!contains(tmp, "(job aborted"));
1011
1012                                 terr.insertError(0,
1013                                                  from_ascii("Emergency stop"),
1014                                                  from_local8bit(errstr),
1015                                                  child_name);
1016                         }
1017
1018                         // get the next line
1019                         int count = 0;
1020                         do {
1021                                 if (!getline(ifs, tmp))
1022                                         break;
1023                                 tmp = rtrim(tmp, "\r");
1024                                 // 15 is somewhat arbitrarily chosen, based on practice.
1025                                 // We used 10 for 14 years and increased it to 15 when we
1026                                 // saw one case.
1027                                 if (++count > 15)
1028                                         break;
1029                         } while (!prefixIs(tmp, "l."));
1030                         if (prefixIs(tmp, "l.")) {
1031                                 // we have a latex error
1032                                 retval |=  TEX_ERROR;
1033                                 if (contains(desc,
1034                                         "Package babel Error: You haven't defined the language")
1035                                     || contains(desc,
1036                                         "Package babel Error: You haven't loaded the option")
1037                                     || contains(desc,
1038                                         "Package babel Error: Unknown language"))
1039                                         retval |= ERROR_RERUN;
1040                                 // get the line number:
1041                                 int line = 0;
1042                                 sscanf(tmp.c_str(), "l.%d", &line);
1043                                 // get the rest of the message:
1044                                 string errstr(tmp, tmp.find(' '));
1045                                 errstr += '\n';
1046                                 getline(ifs, tmp);
1047                                 tmp = rtrim(tmp, "\r");
1048                                 while (!contains(errstr, "l.")
1049                                        && !tmp.empty()
1050                                        && !prefixIs(tmp, "! ")
1051                                        && !contains(tmp, "(job aborted")) {
1052                                         errstr += tmp;
1053                                         errstr += "\n";
1054                                         getline(ifs, tmp);
1055                                         tmp = rtrim(tmp, "\r");
1056                                 }
1057                                 LYXERR(Debug::LATEX, "line: " << line << '\n'
1058                                         << "Desc: " << desc << '\n' << "Text: " << errstr);
1059                                 if (line == last_line)
1060                                         ++line_count;
1061                                 else {
1062                                         line_count = 1;
1063                                         last_line = line;
1064                                 }
1065                                 if (line_count <= 5) {
1066                                         // FIXME UNICODE
1067                                         // We have no idea what the encoding of
1068                                         // the log file is.
1069                                         // It seems that the output from the
1070                                         // latex compiler itself is pure ASCII,
1071                                         // but it can include bits from the
1072                                         // document, so whatever encoding we
1073                                         // assume here it can be wrong.
1074                                         terr.insertError(line,
1075                                                          from_local8bit(desc),
1076                                                          from_local8bit(errstr),
1077                                                          child_name);
1078                                         ++num_errors;
1079                                 }
1080                         }
1081                 } else {
1082                         // information messages, TeX warnings and other
1083                         // warnings we have not caught earlier.
1084                         if (prefixIs(token, "Overfull ")) {
1085                                 retval |= TEX_WARNING;
1086                         } else if (prefixIs(token, "Underfull ")) {
1087                                 retval |= TEX_WARNING;
1088                         } else if (!runparams.includeall && contains(token, "Rerun to get citations")) {
1089                                 // Natbib seems to use this.
1090                                 retval |= UNDEF_CIT;
1091                         } else if (contains(token, "No pages of output")
1092                                 || contains(token, "no pages of output")) {
1093                                 // No output file (e.g. the DVI or PDF) was created
1094                                 retval |= NO_OUTPUT;
1095                         } else if (contains(token, "Error 256 (driver return code)")) {
1096                                 // This is a xdvipdfmx driver error reported by XeTeX.
1097                                 // We have to check whether an output PDF file was created.
1098                                 FileName pdffile = file;
1099                                 pdffile.changeExtension("pdf");
1100                                 if (!pdffile.exists())
1101                                         // No output PDF file was created (see #10076)
1102                                         retval |= NO_OUTPUT;
1103                         } else if (contains(token, "That makes 100 errors")) {
1104                                 // More than 100 errors were reported
1105                                 retval |= TOO_MANY_ERRORS;
1106                         } else if (prefixIs(token, "!pdfTeX error:")) {
1107                                 // otherwise we dont catch e.g.:
1108                                 // !pdfTeX error: pdflatex (file feyn10): Font feyn10 at 600 not found
1109                                 retval |= ERRORS;
1110                                 terr.insertError(0,
1111                                                  from_ascii("pdfTeX Error"),
1112                                                  from_local8bit(token),
1113                                                  child_name);
1114                         } else if (!ignore_missing_glyphs
1115                                    && prefixIs(token, "Missing character: There is no ")
1116                                    && !contains(token, "nullfont")) {
1117                                 // Warning about missing glyph in selected font
1118                                 // may be dataloss (bug 9610)
1119                                 // but can be ignored for 'nullfont' (bug 10394).
1120                                 // as well as for ZERO WIDTH NON-JOINER (0x200C) which is
1121                                 // missing in many fonts and output for ligature break (bug 10727).
1122                                 // Since this error only occurs with utf8 output, we can safely assume
1123                                 // that the log file is utf8-encoded
1124                                 docstring const utoken = from_utf8(token);
1125                                 if (!contains(utoken, 0x200C)) {
1126                                         retval |= LATEX_ERROR;
1127                                         terr.insertError(0,
1128                                                          from_ascii("Missing glyphs!"),
1129                                                          utoken,
1130                                                          child_name);
1131                                 }
1132                         } else if (!wait_for_error.empty()) {
1133                                 // We collect information until we know we have an error.
1134                                 wait_for_error += token + '\n';
1135                         }
1136                 }
1137         }
1138         LYXERR(Debug::LATEX, "Log line: " << token);
1139         return retval;
1140 }
1141
1142
1143 namespace {
1144
1145 bool insertIfExists(FileName const & absname, DepTable & head)
1146 {
1147         if (absname.exists() && !absname.isDirectory()) {
1148                 head.insert(absname, true);
1149                 return true;
1150         }
1151         return false;
1152 }
1153
1154
1155 bool handleFoundFile(string const & ff, DepTable & head)
1156 {
1157         // convert from native os path to unix path
1158         string foundfile = os::internal_path(trim(ff));
1159
1160         LYXERR(Debug::DEPEND, "Found file: " << foundfile);
1161
1162         // Ok now we found a file.
1163         // Now we should make sure that this is a file that we can
1164         // access through the normal paths.
1165         // We will not try any fancy search methods to
1166         // find the file.
1167
1168         // (1) foundfile is an
1169         //     absolute path and should
1170         //     be inserted.
1171         FileName absname;
1172         if (FileName::isAbsolute(foundfile)) {
1173                 LYXERR(Debug::DEPEND, "AbsolutePath file: " << foundfile);
1174                 // On initial insert we want to do the update at once
1175                 // since this file cannot be a file generated by
1176                 // the latex run.
1177                 absname.set(foundfile);
1178                 if (!insertIfExists(absname, head)) {
1179                         // check for spaces
1180                         string strippedfile = foundfile;
1181                         while (contains(strippedfile, " ")) {
1182                                 // files with spaces are often enclosed in quotation
1183                                 // marks; those have to be removed
1184                                 string unquoted = subst(strippedfile, "\"", "");
1185                                 absname.set(unquoted);
1186                                 if (insertIfExists(absname, head))
1187                                         return true;
1188                                 // strip off part after last space and try again
1189                                 string tmp = strippedfile;
1190                                 rsplit(tmp, strippedfile, ' ');
1191                                 absname.set(strippedfile);
1192                                 if (insertIfExists(absname, head))
1193                                         return true;
1194                         }
1195                 }
1196         }
1197
1198         string onlyfile = onlyFileName(foundfile);
1199         absname = makeAbsPath(onlyfile);
1200
1201         // check for spaces
1202         while (contains(foundfile, ' ')) {
1203                 if (absname.exists())
1204                         // everything o.k.
1205                         break;
1206                 else {
1207                         // files with spaces are often enclosed in quotation
1208                         // marks; those have to be removed
1209                         string unquoted = subst(foundfile, "\"", "");
1210                         absname = makeAbsPath(unquoted);
1211                         if (absname.exists())
1212                                 break;
1213                         // strip off part after last space and try again
1214                         string strippedfile;
1215                         rsplit(foundfile, strippedfile, ' ');
1216                         foundfile = strippedfile;
1217                         onlyfile = onlyFileName(strippedfile);
1218                         absname = makeAbsPath(onlyfile);
1219                 }
1220         }
1221
1222         // (2) foundfile is in the tmpdir
1223         //     insert it into head
1224         if (absname.exists() && !absname.isDirectory()) {
1225                 // FIXME: This regex contained glo, but glo is used by the old
1226                 // version of nomencl.sty. Do we need to put it back?
1227                 static regex const unwanted("^.*\\.(aux|log|dvi|bbl|ind)$");
1228                 if (regex_match(onlyfile, unwanted)) {
1229                         LYXERR(Debug::DEPEND, "We don't want " << onlyfile
1230                                 << " in the dep file");
1231                 } else if (suffixIs(onlyfile, ".tex")) {
1232                         // This is a tex file generated by LyX
1233                         // and latex is not likely to change this
1234                         // during its runs.
1235                         LYXERR(Debug::DEPEND, "Tmpdir TeX file: " << onlyfile);
1236                         head.insert(absname, true);
1237                 } else {
1238                         LYXERR(Debug::DEPEND, "In tmpdir file:" << onlyfile);
1239                         head.insert(absname);
1240                 }
1241                 return true;
1242         } else {
1243                 LYXERR(Debug::DEPEND, "Not a file or we are unable to find it.");
1244                 return false;
1245         }
1246 }
1247
1248
1249 bool completeFilename(string const & ff, DepTable & head)
1250 {
1251         // If we do not find a dot, we suspect
1252         // a fragmental file name
1253         if (!contains(ff, '.'))
1254                 return false;
1255
1256         // if we have a dot, we let handleFoundFile decide
1257         return handleFoundFile(ff, head);
1258 }
1259
1260
1261 int iterateLine(string const & token, regex const & reg, string const & opening,
1262                 string const & closing, int fragment_pos, DepTable & head)
1263 {
1264         smatch what;
1265         string::const_iterator first = token.begin();
1266         string::const_iterator end = token.end();
1267         bool fragment = false;
1268         string last_match;
1269
1270         while (regex_search(first, end, what, reg)) {
1271                 // if we have a dot, try to handle as file
1272                 if (contains(what.str(1), '.')) {
1273                         first = what[0].second;
1274                         if (what.str(2) == closing) {
1275                                 handleFoundFile(what.str(1), head);
1276                                 // since we had a closing bracket,
1277                                 // do not investigate further
1278                                 fragment = false;
1279                         } else if (what.str(2) == opening) {
1280                                 // if we have another opening bracket,
1281                                 // we might have a nested file chain
1282                                 // as is (file.ext (subfile.ext))
1283                                 fragment = !handleFoundFile(rtrim(what.str(1)), head);
1284                                 // decrease first position by one in order to
1285                                 // consider the opening delimiter on next iteration
1286                                 if (first > token.begin())
1287                                         --first;
1288                         } else
1289                                 // if we have no closing bracket,
1290                                 // try to handle as file nevertheless
1291                                 fragment = !handleFoundFile(
1292                                         what.str(1) + what.str(2), head);
1293                 }
1294                 // if we do not have a dot, check if the line has
1295                 // a closing bracket (else, we suspect a line break)
1296                 else if (what.str(2) != closing) {
1297                         first = what[0].second;
1298                         fragment = true;
1299                 } else {
1300                         // we have a closing bracket, so the content
1301                         // is not a file name.
1302                         // no need to investigate further
1303                         first = what[0].second;
1304                         fragment = false;
1305                 }
1306                 last_match = what.str(1);
1307         }
1308
1309         // We need to consider the result from previous line iterations:
1310         // We might not find a fragment here, but another one might follow
1311         // E.g.: (filename.ext) <filenam
1312         // Vice versa, we consider the search completed if a real match
1313         // follows a potential fragment from a previous iteration.
1314         // E.g. <some text we considered a fragment (filename.ext)
1315         // result = -1 means we did not find a fragment!
1316         int result = -1;
1317         int last_match_pos = -1;
1318         if (!last_match.empty() && token.find(last_match) != string::npos)
1319                 last_match_pos = int(token.find(last_match));
1320         if (fragment) {
1321                 if (last_match_pos > fragment_pos)
1322                         result = last_match_pos;
1323                 else
1324                         result = fragment_pos;
1325         } else
1326                 if (last_match_pos < fragment_pos)
1327                         result = fragment_pos;
1328
1329         return result;
1330 }
1331
1332 } // namespace
1333
1334
1335 void LaTeX::deplog(DepTable & head)
1336 {
1337         // This function reads the LaTeX log file end extracts all the
1338         // external files used by the LaTeX run. The files are then
1339         // entered into the dependency file.
1340
1341         string const logfile =
1342                 onlyFileName(changeExtension(file.absFileName(), ".log"));
1343
1344         static regex const reg1("File: (.+).*");
1345         static regex const reg2("No file (.+)(.).*");
1346         static regex const reg3a("\\\\openout[0-9]+.*=.*`(.+)(..).*");
1347         // LuaTeX has a slightly different output
1348         static regex const reg3b("\\\\openout[0-9]+.*=\\s*(.+)");
1349         // If an index should be created, MikTex does not write a line like
1350         //    \openout# = 'sample.idx'.
1351         // but instead only a line like this into the log:
1352         //   Writing index file sample.idx
1353         static regex const reg4("Writing index file (.+).*");
1354         static regex const regoldnomencl("Writing glossary file (.+).*");
1355         static regex const regnomencl(".*Writing nomenclature file (.+).*");
1356         // If a toc should be created, MikTex does not write a line like
1357         //    \openout# = `sample.toc'.
1358         // but only a line like this into the log:
1359         //    \tf@toc=\write#
1360         // This line is also written by tetex.
1361         // This line is not present if no toc should be created.
1362         static regex const miktexTocReg("\\\\tf@toc=\\\\write.*");
1363         // file names can be enclosed in <...> (anywhere on the line)
1364         static regex const reg5(".*<[^>]+.*");
1365         // and also (...) anywhere on the line
1366         static regex const reg6(".*\\([^)]+.*");
1367
1368         FileName const fn = makeAbsPath(logfile);
1369         ifstream ifs(fn.toFilesystemEncoding().c_str());
1370         string lastline;
1371         while (ifs) {
1372                 // Ok, the scanning of files here is not sufficient.
1373                 // Sometimes files are named by "File: xxx" only
1374                 // Therefore we use some regexps to find files instead.
1375                 // Note: all file names and paths might contains spaces.
1376                 // Also, file names might be broken across lines. Therefore
1377                 // we mark (potential) fragments and merge those lines.
1378                 bool fragment = false;
1379                 string token;
1380                 getline(ifs, token);
1381                 // MikTeX sometimes inserts \0 in the log file. They can't be
1382                 // removed directly with the existing string utility
1383                 // functions, so convert them first to \r, and remove all
1384                 // \r's afterwards, since we need to remove them anyway.
1385                 token = subst(token, '\0', '\r');
1386                 token = subst(token, "\r", "");
1387                 if (token.empty() || token == ")") {
1388                         lastline = string();
1389                         continue;
1390                 }
1391
1392                 // FIXME UNICODE: We assume that the file names in the log
1393                 // file are in the file system encoding.
1394                 token = to_utf8(from_filesystem8bit(token));
1395
1396                 // Sometimes, filenames are broken across lines.
1397                 // We care for that and save suspicious lines.
1398                 // Here we exclude some cases where we are sure
1399                 // that there is no continued filename
1400                 if (!lastline.empty()) {
1401                         static regex const package_info("Package \\w+ Info: .*");
1402                         static regex const package_warning("Package \\w+ Warning: .*");
1403                         if (prefixIs(token, "File:") || prefixIs(token, "(Font)")
1404                             || prefixIs(token, "Package:")
1405                             || prefixIs(token, "Language:")
1406                             || prefixIs(token, "LaTeX Info:")
1407                             || prefixIs(token, "LaTeX Font Info:")
1408                             || prefixIs(token, "\\openout[")
1409                             || prefixIs(token, "))")
1410                             || regex_match(token, package_info)
1411                             || regex_match(token, package_warning))
1412                                 lastline = string();
1413                 }
1414
1415                 if (!lastline.empty())
1416                         // probably a continued filename from last line
1417                         token = lastline + token;
1418                 if (token.length() > 255) {
1419                         // string too long. Cut off.
1420                         token.erase(0, token.length() - 251);
1421                 }
1422
1423                 smatch sub;
1424
1425                 // (1) "File: file.ext"
1426                 if (regex_match(token, sub, reg1)) {
1427                         // is this a fragmental file name?
1428                         fragment = !completeFilename(sub.str(1), head);
1429                         // However, ...
1430                         if (suffixIs(token, ")"))
1431                                 // no fragment for sure
1432                                 fragment = false;
1433                 // (2) "No file file.ext"
1434                 } else if (regex_match(token, sub, reg2)) {
1435                         // file names must contains a dot, line ends with dot
1436                         if (contains(sub.str(1), '.') && sub.str(2) == ".")
1437                                 fragment = !handleFoundFile(sub.str(1), head);
1438                         else
1439                                 // we suspect a line break
1440                                 fragment = true;
1441                 // (3)(a) "\openout<nr> = `file.ext'."
1442                 } else if (regex_match(token, sub, reg3a)) {
1443                         // search for closing '. at the end of the line
1444                         if (sub.str(2) == "\'.")
1445                                 fragment = !handleFoundFile(sub.str(1), head);
1446                         else
1447                                 // potential fragment
1448                                 fragment = true;
1449                 // (3)(b) "\openout<nr> = file.ext" (LuaTeX)
1450                 } else if (regex_match(token, sub, reg3b)) {
1451                         // file names must contains a dot
1452                         if (contains(sub.str(1), '.'))
1453                                 fragment = !handleFoundFile(sub.str(1), head);
1454                         else
1455                                 // potential fragment
1456                                 fragment = true;
1457                 // (4) "Writing index file file.ext"
1458                 } else if (regex_match(token, sub, reg4))
1459                         // fragmential file name?
1460                         fragment = !completeFilename(sub.str(1), head);
1461                 // (5) "Writing nomenclature file file.ext"
1462                 else if (regex_match(token, sub, regnomencl) ||
1463                            regex_match(token, sub, regoldnomencl))
1464                         // fragmental file name?
1465                         fragment= !completeFilename(sub.str(1), head);
1466                 // (6) "\tf@toc=\write<nr>" (for MikTeX)
1467                 else if (regex_match(token, sub, miktexTocReg))
1468                         fragment = !handleFoundFile(onlyFileName(changeExtension(
1469                                                 file.absFileName(), ".toc")), head);
1470                 else
1471                         // not found, but we won't check further
1472                         fragment = false;
1473
1474                 int fragment_pos = -1;
1475                 // (7) "<file.ext>"
1476                 // We can have several of these on one line
1477                 // (and in addition to those above)
1478                 if (regex_match(token, sub, reg5)) {
1479                         // search for strings in <...>
1480                         static regex const reg5_1("<([^>]+)(.)");
1481                         fragment_pos = iterateLine(token, reg5_1, "<", ">",
1482                                                    fragment_pos, head);
1483                         fragment = (fragment_pos != -1);
1484                 }
1485
1486                 // (8) "(file.ext)"
1487                 // We can have several of these on one line
1488                 // this must be queried separated, because of
1489                 // cases such as "File: file.ext (type eps)"
1490                 // where "File: file.ext" would be skipped
1491                 if (regex_match(token, sub, reg6)) {
1492                         // search for strings in (...)
1493                         static regex const reg6_1("\\(([^()]+)(.)");
1494                         fragment_pos = iterateLine(token, reg6_1, "(", ")",
1495                                                    fragment_pos, head);
1496                         fragment = (fragment_pos != -1);
1497                 }
1498
1499                 if (fragment)
1500                         // probable linebreak within file name:
1501                         // save this line
1502                         lastline = token;
1503                 else
1504                         // no linebreak: reset
1505                         lastline = string();
1506         }
1507
1508         // Make sure that the main .tex file is in the dependency file.
1509         head.insert(file, true);
1510 }
1511
1512
1513 int LaTeX::scanBlgFile(DepTable & dep, TeXErrors & terr)
1514 {
1515         FileName const blg_file(changeExtension(file.absFileName(), "blg"));
1516         LYXERR(Debug::LATEX, "Scanning blg file: " << blg_file);
1517
1518         ifstream ifs(blg_file.toFilesystemEncoding().c_str());
1519         string token;
1520         static regex const reg1(".*Found (bibtex|BibTeX) data (file|source) '([^']+).*");
1521         static regex const bibtexError("^(.*---line [0-9]+ of file).*$");
1522         static regex const bibtexError2("^(.*---while reading file).*$");
1523         static regex const bibtexError3("(A bad cross reference---).*");
1524         static regex const bibtexError4("(Sorry---you've exceeded BibTeX's).*");
1525         static regex const bibtexError5("\\*Please notify the BibTeX maintainer\\*");
1526         static regex const biberError("^.*> (FATAL|ERROR) - (.*)$");
1527         int retval = NO_ERRORS;
1528
1529         string prevtoken;
1530         while (getline(ifs, token)) {
1531                 token = rtrim(token, "\r");
1532                 smatch sub;
1533                 // FIXME UNICODE: We assume that citation keys and filenames
1534                 // in the aux file are in the file system encoding.
1535                 token = to_utf8(from_filesystem8bit(token));
1536                 if (regex_match(token, sub, reg1)) {
1537                         string data = sub.str(3);
1538                         if (!data.empty()) {
1539                                 LYXERR(Debug::LATEX, "Found bib file: " << data);
1540                                 handleFoundFile(data, dep);
1541                         }
1542                 }
1543                 else if (regex_match(token, sub, bibtexError)
1544                          || regex_match(token, sub, bibtexError2)
1545                          || regex_match(token, sub, bibtexError4)
1546                          || regex_match(token, sub, bibtexError5)) {
1547                         retval |= BIBTEX_ERROR;
1548                         string errstr = N_("BibTeX error: ") + token;
1549                         string msg;
1550                         if ((prefixIs(token, "while executing---line")
1551                              || prefixIs(token, "---line ")
1552                              || prefixIs(token, "*Please notify the BibTeX"))
1553                             && !prevtoken.empty()) {
1554                                 errstr = N_("BibTeX error: ") + prevtoken;
1555                                 msg = prevtoken + '\n';
1556                         }
1557                         msg += token;
1558                         terr.insertError(0,
1559                                          from_local8bit(errstr),
1560                                          from_local8bit(msg));
1561                 } else if (regex_match(prevtoken, sub, bibtexError3)) {
1562                         retval |= BIBTEX_ERROR;
1563                         string errstr = N_("BibTeX error: ") + prevtoken;
1564                         string msg = prevtoken + '\n' + token;
1565                         terr.insertError(0,
1566                                          from_local8bit(errstr),
1567                                          from_local8bit(msg));
1568                 } else if (regex_match(token, sub, biberError)) {
1569                         retval |= BIBTEX_ERROR;
1570                         string errstr = N_("Biber error: ") + sub.str(2);
1571                         string msg = token;
1572                         terr.insertError(0,
1573                                          from_local8bit(errstr),
1574                                          from_local8bit(msg));
1575                 }
1576                 prevtoken = token;
1577         }
1578         return retval;
1579 }
1580
1581
1582 int LaTeX::scanIlgFile(TeXErrors & terr)
1583 {
1584         FileName const ilg_file(changeExtension(file.absFileName(), "ilg"));
1585         LYXERR(Debug::LATEX, "Scanning ilg file: " << ilg_file);
1586
1587         ifstream ifs(ilg_file.toFilesystemEncoding().c_str());
1588         string token;
1589         int retval = NO_ERRORS;
1590
1591         string prevtoken;
1592         while (getline(ifs, token)) {
1593                 token = rtrim(token, "\r");
1594                 smatch sub;
1595                 if (prefixIs(token, "!! "))
1596                         prevtoken = token;
1597                 else if (!prevtoken.empty()) {
1598                         retval |= INDEX_ERROR;
1599                         string errstr = N_("Makeindex error: ") + prevtoken;
1600                         string msg = prevtoken + '\n';
1601                         msg += token;
1602                         terr.insertError(0,
1603                                          from_local8bit(errstr),
1604                                          from_local8bit(msg));
1605                         prevtoken.clear();
1606                 } else if (prefixIs(token, "ERROR: ")) {
1607                         retval |= BIBTEX_ERROR;
1608                         string errstr = N_("Xindy error: ") + token.substr(6);
1609                         string msg = token;
1610                         terr.insertError(0,
1611                                          from_local8bit(errstr),
1612                                          from_local8bit(msg));
1613                 }
1614         }
1615         return retval;
1616 }
1617
1618
1619
1620 } // namespace lyx