]> git.lyx.org Git - lyx.git/blob - src/LaTeX.cpp
a7b39037fbf7031c3c1e3adfc5c85464591919c3
[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         // Flag for 'File ended while scanning' message.
799         // We need to wait for subsequent processing.
800         string wait_for_error;
801         string child_name;
802         int pnest = 0;
803         stack <pair<string, int> > child;
804         children.clear();
805
806         terr.clearRefs();
807
808         string token;
809         while (getline(ifs, token)) {
810                 // MikTeX sometimes inserts \0 in the log file. They can't be
811                 // removed directly with the existing string utility
812                 // functions, so convert them first to \r, and remove all
813                 // \r's afterwards, since we need to remove them anyway.
814                 token = subst(token, '\0', '\r');
815                 token = subst(token, "\r", "");
816                 smatch sub;
817
818                 LYXERR(Debug::LATEX, "Log line: " << token);
819
820                 if (token.empty())
821                         continue;
822
823                 // Track child documents
824                 for (size_t i = 0; i < token.length(); ++i) {
825                         if (token[i] == '(') {
826                                 ++pnest;
827                                 size_t j = token.find('(', i + 1);
828                                 size_t len = j == string::npos
829                                                 ? token.substr(i + 1).length()
830                                                 : j - i - 1;
831                                 string const substr = token.substr(i + 1, len);
832                                 if (regex_match(substr, sub, child_file)) {
833                                         string const name = sub.str(1);
834                                         // Sometimes also masters have a name that matches
835                                         // (if their name starts with a number and _)
836                                         if (name != file.onlyFileName()) {
837                                                 child.push(make_pair(name, pnest));
838                                                 children.push_back(name);
839                                         }
840                                         i += len;
841                                 }
842                         } else if (token[i] == ')') {
843                                 if (!child.empty()
844                                     && child.top().second == pnest)
845                                         child.pop();
846                                 --pnest;
847                         }
848                 }
849                 child_name = child.empty() ? empty_string() : child.top().first;
850
851                 if (contains(token, "file:line:error style messages enabled"))
852                         fle_style = true;
853
854                 //Handles both "LaTeX Warning:" & "Package natbib Warning:"
855                 //Various handlers for missing citations below won't catch the problem if citation
856                 //key is long (>~25chars), because pdflatex splits output at line length 80.
857                 //TODO: TL 2020 engines will contain new commandline switch --cnf-line which we  
858                 //can use to set max_print_line variable for appropriate length and detect all
859                 //errors correctly.
860                 if (!runparams.includeall && (contains(token, "There were undefined citations.") ||
861                     prefixIs(token, "Package biblatex Warning: The following entry could not be found")))
862                         retval |= UNDEF_CIT;
863
864                 if (prefixIs(token, "LaTeX Warning:") ||
865                     prefixIs(token, "! pdfTeX warning")) {
866                         // Here shall we handle different
867                         // types of warnings
868                         retval |= LATEX_WARNING;
869                         LYXERR(Debug::LATEX, "LaTeX Warning.");
870                         if (contains(token, "Rerun to get cross-references")) {
871                                 retval |= RERUN;
872                                 LYXERR(Debug::LATEX, "We should rerun.");
873                         // package clefval needs 2 latex runs before bibtex
874                         } else if (contains(token, "Value of")
875                                    && contains(token, "on page")
876                                    && contains(token, "undefined")) {
877                                 retval |= ERROR_RERUN;
878                                 LYXERR(Debug::LATEX, "Force rerun.");
879                         // package etaremune
880                         } else if (contains(token, "Etaremune labels have changed")) {
881                                 retval |= ERROR_RERUN;
882                                 LYXERR(Debug::LATEX, "Force rerun.");
883                         // package enotez
884                         } else if (contains(token, "Endnotes may have changed. Rerun")) {
885                                 retval |= RERUN;
886                                 LYXERR(Debug::LATEX, "We should rerun.");
887                         //"Citation `cit' on page X undefined on input line X."
888                         } else if (!runparams.includeall && contains(token, "Citation")
889                                    //&& contains(token, "on input line") //often split to newline
890                                    && contains(token, "undefined")) {
891                                 retval |= UNDEF_CIT;
892                                 terr.insertRef(getLineNumber(token), from_ascii("Citation undefined"),
893                                         from_utf8(token), child_name);
894                         //"Reference `X' on page Y undefined on input line Z."
895                         } else if (contains(token, "Reference")
896                                    //&& contains(token, "on input line")) //often split to new line
897                                    && contains(token, "undefined")) {
898                                 retval |= UNDEF_REF;
899                                 terr.insertRef(getLineNumber(token), from_ascii("Reference undefined"),
900                                         from_utf8(token), child_name);
901
902                         //If label is too long pdlaftex log line splitting will make the above fail
903                         //so we catch at least this generic statement occuring for both CIT & REF.
904                         } else if (!runparams.includeall && contains(token, "There were undefined references.")) {
905                                 if (!(retval & UNDEF_CIT)) //if not handled already
906                                          retval |= UNDEF_REF;
907                         }
908
909                 } else if (prefixIs(token, "Package")) {
910                         // Package warnings
911                         retval |= PACKAGE_WARNING;
912                         if (contains(token, "natbib Warning:")) {
913                                 // Natbib warnings
914                                 if (!runparams.includeall
915                                     && contains(token, "Citation")
916                                     && contains(token, "on page")
917                                     && contains(token, "undefined")) {
918                                         retval |= UNDEF_CIT;
919                                         //Unf only keys up to ~6 chars will make it due to line splits
920                                         terr.insertRef(getLineNumber(token), from_ascii("Citation undefined"),
921                                                 from_utf8(token), child_name);
922                                 }
923                         } else if (!runparams.includeall && contains(token, "run BibTeX")) {
924                                 retval |= UNDEF_CIT;
925                         } else if (!runparams.includeall && contains(token, "run Biber")) {
926                                 retval |= UNDEF_CIT;
927                                 biber = true;
928                         } else if (contains(token, "Rerun LaTeX") ||
929                                    contains(token, "Please rerun LaTeX") ||
930                                    contains(token, "Rerun to get")) {
931                                 // at least longtable.sty and bibtopic.sty
932                                 // might use this.
933                                 LYXERR(Debug::LATEX, "We should rerun.");
934                                 retval |= RERUN;
935                         }
936                 } else if (prefixIs(token, "LETTRE WARNING:")) {
937                         if (contains(token, "veuillez recompiler")) {
938                                 // lettre.cls
939                                 LYXERR(Debug::LATEX, "We should rerun.");
940                                 retval |= RERUN;
941                         }
942                 } else if (token[0] == '(') {
943                         if (contains(token, "Rerun LaTeX") ||
944                             contains(token, "Rerun to get")) {
945                                 // Used by natbib
946                                 LYXERR(Debug::LATEX, "We should rerun.");
947                                 retval |= RERUN;
948                         }
949                 } else if (prefixIs(token, "! ")
950                             || (fle_style
951                                 && regex_match(token, sub, file_line_error)
952                                 && !contains(token, "pdfTeX warning"))) {
953                            // Ok, we have something that looks like a TeX Error
954                            // but what do we really have.
955
956                         // Just get the error description:
957                         string desc;
958                         if (prefixIs(token, "! "))
959                                 desc = string(token, 2);
960                         else if (fle_style)
961                                 desc = sub.str();
962                         if (contains(token, "LaTeX Error:"))
963                                 retval |= LATEX_ERROR;
964
965                         if (prefixIs(token, "! File ended while scanning")) {
966                                 if (prefixIs(token, "! File ended while scanning use of \\Hy@setref@link.")){
967                                         // bug 7344. We must rerun LaTeX if hyperref has been toggled.
968                                         retval |= ERROR_RERUN;
969                                         LYXERR(Debug::LATEX, "Force rerun.");
970                                 } else {
971                                         // bug 6445. At this point its not clear we finish with error.
972                                         wait_for_error = desc;
973                                         continue;
974                                 }
975                         }
976
977                         if (prefixIs(token, "! Incomplete \\if")) {
978                                 // bug 10666. At this point its not clear we finish with error.
979                                 wait_for_error = desc;
980                                 continue;
981                         }
982
983                         if (prefixIs(token, "! Paragraph ended before \\Hy@setref@link was complete.")){
984                                         // bug 7344. We must rerun LaTeX if hyperref has been toggled.
985                                         retval |= ERROR_RERUN;
986                                         LYXERR(Debug::LATEX, "Force rerun.");
987                         }
988
989                         if (!wait_for_error.empty() && prefixIs(token, "! Emergency stop.")){
990                                 retval |= LATEX_ERROR;
991                                 string errstr;
992                                 int count = 0;
993                                 errstr = wait_for_error;
994                                 wait_for_error.clear();
995                                 do {
996                                         if (!getline(ifs, tmp))
997                                                 break;
998                                         tmp = rtrim(tmp, "\r");
999                                         errstr += "\n" + tmp;
1000                                         if (++count > 5)
1001                                                 break;
1002                                 } while (!contains(tmp, "(job aborted"));
1003
1004                                 terr.insertError(0,
1005                                                  from_ascii("Emergency stop"),
1006                                                  from_local8bit(errstr),
1007                                                  child_name);
1008                         }
1009
1010                         // get the next line
1011                         int count = 0;
1012                         do {
1013                                 if (!getline(ifs, tmp))
1014                                         break;
1015                                 tmp = rtrim(tmp, "\r");
1016                                 // 15 is somewhat arbitrarily chosen, based on practice.
1017                                 // We used 10 for 14 years and increased it to 15 when we
1018                                 // saw one case.
1019                                 if (++count > 15)
1020                                         break;
1021                         } while (!prefixIs(tmp, "l."));
1022                         if (prefixIs(tmp, "l.")) {
1023                                 // we have a latex error
1024                                 retval |=  TEX_ERROR;
1025                                 if (contains(desc,
1026                                         "Package babel Error: You haven't defined the language")
1027                                     || contains(desc,
1028                                         "Package babel Error: You haven't loaded the option")
1029                                     || contains(desc,
1030                                         "Package babel Error: Unknown language"))
1031                                         retval |= ERROR_RERUN;
1032                                 // get the line number:
1033                                 int line = 0;
1034                                 sscanf(tmp.c_str(), "l.%d", &line);
1035                                 // get the rest of the message:
1036                                 string errstr(tmp, tmp.find(' '));
1037                                 errstr += '\n';
1038                                 getline(ifs, tmp);
1039                                 tmp = rtrim(tmp, "\r");
1040                                 while (!contains(errstr, "l.")
1041                                        && !tmp.empty()
1042                                        && !prefixIs(tmp, "! ")
1043                                        && !contains(tmp, "(job aborted")) {
1044                                         errstr += tmp;
1045                                         errstr += "\n";
1046                                         getline(ifs, tmp);
1047                                         tmp = rtrim(tmp, "\r");
1048                                 }
1049                                 LYXERR(Debug::LATEX, "line: " << line << '\n'
1050                                         << "Desc: " << desc << '\n' << "Text: " << errstr);
1051                                 if (line == last_line)
1052                                         ++line_count;
1053                                 else {
1054                                         line_count = 1;
1055                                         last_line = line;
1056                                 }
1057                                 if (line_count <= 5) {
1058                                         // FIXME UNICODE
1059                                         // We have no idea what the encoding of
1060                                         // the log file is.
1061                                         // It seems that the output from the
1062                                         // latex compiler itself is pure ASCII,
1063                                         // but it can include bits from the
1064                                         // document, so whatever encoding we
1065                                         // assume here it can be wrong.
1066                                         terr.insertError(line,
1067                                                          from_local8bit(desc),
1068                                                          from_local8bit(errstr),
1069                                                          child_name);
1070                                         ++num_errors;
1071                                 }
1072                         }
1073                 } else {
1074                         // information messages, TeX warnings and other
1075                         // warnings we have not caught earlier.
1076                         if (prefixIs(token, "Overfull ")) {
1077                                 retval |= TEX_WARNING;
1078                         } else if (prefixIs(token, "Underfull ")) {
1079                                 retval |= TEX_WARNING;
1080                         } else if (!runparams.includeall && contains(token, "Rerun to get citations")) {
1081                                 // Natbib seems to use this.
1082                                 retval |= UNDEF_CIT;
1083                         } else if (contains(token, "No pages of output")
1084                                 || contains(token, "no pages of output")) {
1085                                 // No output file (e.g. the DVI or PDF) was created
1086                                 retval |= NO_OUTPUT;
1087                         } else if (contains(token, "Error 256 (driver return code)")) {
1088                                 // This is a xdvipdfmx driver error reported by XeTeX.
1089                                 // We have to check whether an output PDF file was created.
1090                                 FileName pdffile = file;
1091                                 pdffile.changeExtension("pdf");
1092                                 if (!pdffile.exists())
1093                                         // No output PDF file was created (see #10076)
1094                                         retval |= NO_OUTPUT;
1095                         } else if (contains(token, "That makes 100 errors")) {
1096                                 // More than 100 errors were reported
1097                                 retval |= TOO_MANY_ERRORS;
1098                         } else if (prefixIs(token, "!pdfTeX error:")) {
1099                                 // otherwise we dont catch e.g.:
1100                                 // !pdfTeX error: pdflatex (file feyn10): Font feyn10 at 600 not found
1101                                 retval |= ERRORS;
1102                                 terr.insertError(0,
1103                                                  from_ascii("pdfTeX Error"),
1104                                                  from_local8bit(token),
1105                                                  child_name);
1106                         } else if (!ignore_missing_glyphs
1107                                    && prefixIs(token, "Missing character: There is no ")
1108                                    && !contains(token, "nullfont")) {
1109                                 // Warning about missing glyph in selected font
1110                                 // may be dataloss (bug 9610)
1111                                 // but can be ignored for 'nullfont' (bug 10394).
1112                                 // as well as for ZERO WIDTH NON-JOINER (0x200C) which is
1113                                 // missing in many fonts and output for ligature break (bug 10727).
1114                                 // Since this error only occurs with utf8 output, we can safely assume
1115                                 // that the log file is utf8-encoded
1116                                 docstring const utoken = from_utf8(token);
1117                                 if (!contains(utoken, 0x200C)) {
1118                                         retval |= LATEX_ERROR;
1119                                         terr.insertError(0,
1120                                                          from_ascii("Missing glyphs!"),
1121                                                          utoken,
1122                                                          child_name);
1123                                 }
1124                         } else if (!wait_for_error.empty()) {
1125                                 // We collect information until we know we have an error.
1126                                 wait_for_error += token + '\n';
1127                         }
1128                 }
1129         }
1130         LYXERR(Debug::LATEX, "Log line: " << token);
1131         return retval;
1132 }
1133
1134
1135 namespace {
1136
1137 bool insertIfExists(FileName const & absname, DepTable & head)
1138 {
1139         if (absname.exists() && !absname.isDirectory()) {
1140                 head.insert(absname, true);
1141                 return true;
1142         }
1143         return false;
1144 }
1145
1146
1147 bool handleFoundFile(string const & ff, DepTable & head)
1148 {
1149         // convert from native os path to unix path
1150         string foundfile = os::internal_path(trim(ff));
1151
1152         LYXERR(Debug::DEPEND, "Found file: " << foundfile);
1153
1154         // Ok now we found a file.
1155         // Now we should make sure that this is a file that we can
1156         // access through the normal paths.
1157         // We will not try any fancy search methods to
1158         // find the file.
1159
1160         // (1) foundfile is an
1161         //     absolute path and should
1162         //     be inserted.
1163         FileName absname;
1164         if (FileName::isAbsolute(foundfile)) {
1165                 LYXERR(Debug::DEPEND, "AbsolutePath file: " << foundfile);
1166                 // On initial insert we want to do the update at once
1167                 // since this file cannot be a file generated by
1168                 // the latex run.
1169                 absname.set(foundfile);
1170                 if (!insertIfExists(absname, head)) {
1171                         // check for spaces
1172                         string strippedfile = foundfile;
1173                         while (contains(strippedfile, " ")) {
1174                                 // files with spaces are often enclosed in quotation
1175                                 // marks; those have to be removed
1176                                 string unquoted = subst(strippedfile, "\"", "");
1177                                 absname.set(unquoted);
1178                                 if (insertIfExists(absname, head))
1179                                         return true;
1180                                 // strip off part after last space and try again
1181                                 string tmp = strippedfile;
1182                                 rsplit(tmp, strippedfile, ' ');
1183                                 absname.set(strippedfile);
1184                                 if (insertIfExists(absname, head))
1185                                         return true;
1186                         }
1187                 }
1188         }
1189
1190         string onlyfile = onlyFileName(foundfile);
1191         absname = makeAbsPath(onlyfile);
1192
1193         // check for spaces
1194         while (contains(foundfile, ' ')) {
1195                 if (absname.exists())
1196                         // everything o.k.
1197                         break;
1198                 else {
1199                         // files with spaces are often enclosed in quotation
1200                         // marks; those have to be removed
1201                         string unquoted = subst(foundfile, "\"", "");
1202                         absname = makeAbsPath(unquoted);
1203                         if (absname.exists())
1204                                 break;
1205                         // strip off part after last space and try again
1206                         string strippedfile;
1207                         rsplit(foundfile, strippedfile, ' ');
1208                         foundfile = strippedfile;
1209                         onlyfile = onlyFileName(strippedfile);
1210                         absname = makeAbsPath(onlyfile);
1211                 }
1212         }
1213
1214         // (2) foundfile is in the tmpdir
1215         //     insert it into head
1216         if (absname.exists() && !absname.isDirectory()) {
1217                 // FIXME: This regex contained glo, but glo is used by the old
1218                 // version of nomencl.sty. Do we need to put it back?
1219                 static regex const unwanted("^.*\\.(aux|log|dvi|bbl|ind)$");
1220                 if (regex_match(onlyfile, unwanted)) {
1221                         LYXERR(Debug::DEPEND, "We don't want " << onlyfile
1222                                 << " in the dep file");
1223                 } else if (suffixIs(onlyfile, ".tex")) {
1224                         // This is a tex file generated by LyX
1225                         // and latex is not likely to change this
1226                         // during its runs.
1227                         LYXERR(Debug::DEPEND, "Tmpdir TeX file: " << onlyfile);
1228                         head.insert(absname, true);
1229                 } else {
1230                         LYXERR(Debug::DEPEND, "In tmpdir file:" << onlyfile);
1231                         head.insert(absname);
1232                 }
1233                 return true;
1234         } else {
1235                 LYXERR(Debug::DEPEND, "Not a file or we are unable to find it.");
1236                 return false;
1237         }
1238 }
1239
1240
1241 bool completeFilename(string const & ff, DepTable & head)
1242 {
1243         // If we do not find a dot, we suspect
1244         // a fragmental file name
1245         if (!contains(ff, '.'))
1246                 return false;
1247
1248         // if we have a dot, we let handleFoundFile decide
1249         return handleFoundFile(ff, head);
1250 }
1251
1252
1253 int iterateLine(string const & token, regex const & reg, string const & opening,
1254                 string const & closing, int fragment_pos, DepTable & head)
1255 {
1256         smatch what;
1257         string::const_iterator first = token.begin();
1258         string::const_iterator end = token.end();
1259         bool fragment = false;
1260         string last_match;
1261
1262         while (regex_search(first, end, what, reg)) {
1263                 // if we have a dot, try to handle as file
1264                 if (contains(what.str(1), '.')) {
1265                         first = what[0].second;
1266                         if (what.str(2) == closing) {
1267                                 handleFoundFile(what.str(1), head);
1268                                 // since we had a closing bracket,
1269                                 // do not investigate further
1270                                 fragment = false;
1271                         } else if (what.str(2) == opening) {
1272                                 // if we have another opening bracket,
1273                                 // we might have a nested file chain
1274                                 // as is (file.ext (subfile.ext))
1275                                 fragment = !handleFoundFile(rtrim(what.str(1)), head);
1276                                 // decrease first position by one in order to
1277                                 // consider the opening delimiter on next iteration
1278                                 if (first > token.begin())
1279                                         --first;
1280                         } else
1281                                 // if we have no closing bracket,
1282                                 // try to handle as file nevertheless
1283                                 fragment = !handleFoundFile(
1284                                         what.str(1) + what.str(2), head);
1285                 }
1286                 // if we do not have a dot, check if the line has
1287                 // a closing bracket (else, we suspect a line break)
1288                 else if (what.str(2) != closing) {
1289                         first = what[0].second;
1290                         fragment = true;
1291                 } else {
1292                         // we have a closing bracket, so the content
1293                         // is not a file name.
1294                         // no need to investigate further
1295                         first = what[0].second;
1296                         fragment = false;
1297                 }
1298                 last_match = what.str(1);
1299         }
1300
1301         // We need to consider the result from previous line iterations:
1302         // We might not find a fragment here, but another one might follow
1303         // E.g.: (filename.ext) <filenam
1304         // Vice versa, we consider the search completed if a real match
1305         // follows a potential fragment from a previous iteration.
1306         // E.g. <some text we considered a fragment (filename.ext)
1307         // result = -1 means we did not find a fragment!
1308         int result = -1;
1309         int last_match_pos = -1;
1310         if (!last_match.empty() && token.find(last_match) != string::npos)
1311                 last_match_pos = int(token.find(last_match));
1312         if (fragment) {
1313                 if (last_match_pos > fragment_pos)
1314                         result = last_match_pos;
1315                 else
1316                         result = fragment_pos;
1317         } else
1318                 if (last_match_pos < fragment_pos)
1319                         result = fragment_pos;
1320
1321         return result;
1322 }
1323
1324 } // namespace
1325
1326
1327 void LaTeX::deplog(DepTable & head)
1328 {
1329         // This function reads the LaTeX log file end extracts all the
1330         // external files used by the LaTeX run. The files are then
1331         // entered into the dependency file.
1332
1333         string const logfile =
1334                 onlyFileName(changeExtension(file.absFileName(), ".log"));
1335
1336         static regex const reg1("File: (.+).*");
1337         static regex const reg2("No file (.+)(.).*");
1338         static regex const reg3a("\\\\openout[0-9]+.*=.*`(.+)(..).*");
1339         // LuaTeX has a slightly different output
1340         static regex const reg3b("\\\\openout[0-9]+.*=\\s*(.+)");
1341         // If an index should be created, MikTex does not write a line like
1342         //    \openout# = 'sample.idx'.
1343         // but instead only a line like this into the log:
1344         //   Writing index file sample.idx
1345         static regex const reg4("Writing index file (.+).*");
1346         static regex const regoldnomencl("Writing glossary file (.+).*");
1347         static regex const regnomencl(".*Writing nomenclature file (.+).*");
1348         // If a toc should be created, MikTex does not write a line like
1349         //    \openout# = `sample.toc'.
1350         // but only a line like this into the log:
1351         //    \tf@toc=\write#
1352         // This line is also written by tetex.
1353         // This line is not present if no toc should be created.
1354         static regex const miktexTocReg("\\\\tf@toc=\\\\write.*");
1355         // file names can be enclosed in <...> (anywhere on the line)
1356         static regex const reg5(".*<[^>]+.*");
1357         // and also (...) anywhere on the line
1358         static regex const reg6(".*\\([^)]+.*");
1359
1360         FileName const fn = makeAbsPath(logfile);
1361         ifstream ifs(fn.toFilesystemEncoding().c_str());
1362         string lastline;
1363         while (ifs) {
1364                 // Ok, the scanning of files here is not sufficient.
1365                 // Sometimes files are named by "File: xxx" only
1366                 // Therefore we use some regexps to find files instead.
1367                 // Note: all file names and paths might contains spaces.
1368                 // Also, file names might be broken across lines. Therefore
1369                 // we mark (potential) fragments and merge those lines.
1370                 bool fragment = false;
1371                 string token;
1372                 getline(ifs, token);
1373                 // MikTeX sometimes inserts \0 in the log file. They can't be
1374                 // removed directly with the existing string utility
1375                 // functions, so convert them first to \r, and remove all
1376                 // \r's afterwards, since we need to remove them anyway.
1377                 token = subst(token, '\0', '\r');
1378                 token = subst(token, "\r", "");
1379                 if (token.empty() || token == ")") {
1380                         lastline = string();
1381                         continue;
1382                 }
1383
1384                 // FIXME UNICODE: We assume that the file names in the log
1385                 // file are in the file system encoding.
1386                 token = to_utf8(from_filesystem8bit(token));
1387
1388                 // Sometimes, filenames are broken across lines.
1389                 // We care for that and save suspicious lines.
1390                 // Here we exclude some cases where we are sure
1391                 // that there is no continued filename
1392                 if (!lastline.empty()) {
1393                         static regex const package_info("Package \\w+ Info: .*");
1394                         static regex const package_warning("Package \\w+ Warning: .*");
1395                         if (prefixIs(token, "File:") || prefixIs(token, "(Font)")
1396                             || prefixIs(token, "Package:")
1397                             || prefixIs(token, "Language:")
1398                             || prefixIs(token, "LaTeX Info:")
1399                             || prefixIs(token, "LaTeX Font Info:")
1400                             || prefixIs(token, "\\openout[")
1401                             || prefixIs(token, "))")
1402                             || regex_match(token, package_info)
1403                             || regex_match(token, package_warning))
1404                                 lastline = string();
1405                 }
1406
1407                 if (!lastline.empty())
1408                         // probably a continued filename from last line
1409                         token = lastline + token;
1410                 if (token.length() > 255) {
1411                         // string too long. Cut off.
1412                         token.erase(0, token.length() - 251);
1413                 }
1414
1415                 smatch sub;
1416
1417                 // (1) "File: file.ext"
1418                 if (regex_match(token, sub, reg1)) {
1419                         // is this a fragmental file name?
1420                         fragment = !completeFilename(sub.str(1), head);
1421                         // However, ...
1422                         if (suffixIs(token, ")"))
1423                                 // no fragment for sure
1424                                 fragment = false;
1425                 // (2) "No file file.ext"
1426                 } else if (regex_match(token, sub, reg2)) {
1427                         // file names must contains a dot, line ends with dot
1428                         if (contains(sub.str(1), '.') && sub.str(2) == ".")
1429                                 fragment = !handleFoundFile(sub.str(1), head);
1430                         else
1431                                 // we suspect a line break
1432                                 fragment = true;
1433                 // (3)(a) "\openout<nr> = `file.ext'."
1434                 } else if (regex_match(token, sub, reg3a)) {
1435                         // search for closing '. at the end of the line
1436                         if (sub.str(2) == "\'.")
1437                                 fragment = !handleFoundFile(sub.str(1), head);
1438                         else
1439                                 // potential fragment
1440                                 fragment = true;
1441                 // (3)(b) "\openout<nr> = file.ext" (LuaTeX)
1442                 } else if (regex_match(token, sub, reg3b)) {
1443                         // file names must contains a dot
1444                         if (contains(sub.str(1), '.'))
1445                                 fragment = !handleFoundFile(sub.str(1), head);
1446                         else
1447                                 // potential fragment
1448                                 fragment = true;
1449                 // (4) "Writing index file file.ext"
1450                 } else if (regex_match(token, sub, reg4))
1451                         // fragmential file name?
1452                         fragment = !completeFilename(sub.str(1), head);
1453                 // (5) "Writing nomenclature file file.ext"
1454                 else if (regex_match(token, sub, regnomencl) ||
1455                            regex_match(token, sub, regoldnomencl))
1456                         // fragmental file name?
1457                         fragment= !completeFilename(sub.str(1), head);
1458                 // (6) "\tf@toc=\write<nr>" (for MikTeX)
1459                 else if (regex_match(token, sub, miktexTocReg))
1460                         fragment = !handleFoundFile(onlyFileName(changeExtension(
1461                                                 file.absFileName(), ".toc")), head);
1462                 else
1463                         // not found, but we won't check further
1464                         fragment = false;
1465
1466                 int fragment_pos = -1;
1467                 // (7) "<file.ext>"
1468                 // We can have several of these on one line
1469                 // (and in addition to those above)
1470                 if (regex_match(token, sub, reg5)) {
1471                         // search for strings in <...>
1472                         static regex const reg5_1("<([^>]+)(.)");
1473                         fragment_pos = iterateLine(token, reg5_1, "<", ">",
1474                                                    fragment_pos, head);
1475                         fragment = (fragment_pos != -1);
1476                 }
1477
1478                 // (8) "(file.ext)"
1479                 // We can have several of these on one line
1480                 // this must be queried separated, because of
1481                 // cases such as "File: file.ext (type eps)"
1482                 // where "File: file.ext" would be skipped
1483                 if (regex_match(token, sub, reg6)) {
1484                         // search for strings in (...)
1485                         static regex const reg6_1("\\(([^()]+)(.)");
1486                         fragment_pos = iterateLine(token, reg6_1, "(", ")",
1487                                                    fragment_pos, head);
1488                         fragment = (fragment_pos != -1);
1489                 }
1490
1491                 if (fragment)
1492                         // probable linebreak within file name:
1493                         // save this line
1494                         lastline = token;
1495                 else
1496                         // no linebreak: reset
1497                         lastline = string();
1498         }
1499
1500         // Make sure that the main .tex file is in the dependency file.
1501         head.insert(file, true);
1502 }
1503
1504
1505 int LaTeX::scanBlgFile(DepTable & dep, TeXErrors & terr)
1506 {
1507         FileName const blg_file(changeExtension(file.absFileName(), "blg"));
1508         LYXERR(Debug::LATEX, "Scanning blg file: " << blg_file);
1509
1510         ifstream ifs(blg_file.toFilesystemEncoding().c_str());
1511         string token;
1512         static regex const reg1(".*Found (bibtex|BibTeX) data (file|source) '([^']+).*");
1513         static regex const bibtexError("^(.*---line [0-9]+ of file).*$");
1514         static regex const bibtexError2("^(.*---while reading file).*$");
1515         static regex const bibtexError3("(A bad cross reference---).*");
1516         static regex const bibtexError4("(Sorry---you've exceeded BibTeX's).*");
1517         static regex const bibtexError5("\\*Please notify the BibTeX maintainer\\*");
1518         static regex const biberError("^.*> (FATAL|ERROR) - (.*)$");
1519         int retval = NO_ERRORS;
1520
1521         string prevtoken;
1522         while (getline(ifs, token)) {
1523                 token = rtrim(token, "\r");
1524                 smatch sub;
1525                 // FIXME UNICODE: We assume that citation keys and filenames
1526                 // in the aux file are in the file system encoding.
1527                 token = to_utf8(from_filesystem8bit(token));
1528                 if (regex_match(token, sub, reg1)) {
1529                         string data = sub.str(3);
1530                         if (!data.empty()) {
1531                                 LYXERR(Debug::LATEX, "Found bib file: " << data);
1532                                 handleFoundFile(data, dep);
1533                         }
1534                 }
1535                 else if (regex_match(token, sub, bibtexError)
1536                          || regex_match(token, sub, bibtexError2)
1537                          || regex_match(token, sub, bibtexError4)
1538                          || regex_match(token, sub, bibtexError5)) {
1539                         retval |= BIBTEX_ERROR;
1540                         string errstr = N_("BibTeX error: ") + token;
1541                         string msg;
1542                         if ((prefixIs(token, "while executing---line")
1543                              || prefixIs(token, "---line ")
1544                              || prefixIs(token, "*Please notify the BibTeX"))
1545                             && !prevtoken.empty()) {
1546                                 errstr = N_("BibTeX error: ") + prevtoken;
1547                                 msg = prevtoken + '\n';
1548                         }
1549                         msg += token;
1550                         terr.insertError(0,
1551                                          from_local8bit(errstr),
1552                                          from_local8bit(msg));
1553                 } else if (regex_match(prevtoken, sub, bibtexError3)) {
1554                         retval |= BIBTEX_ERROR;
1555                         string errstr = N_("BibTeX error: ") + prevtoken;
1556                         string msg = prevtoken + '\n' + token;
1557                         terr.insertError(0,
1558                                          from_local8bit(errstr),
1559                                          from_local8bit(msg));
1560                 } else if (regex_match(token, sub, biberError)) {
1561                         retval |= BIBTEX_ERROR;
1562                         string errstr = N_("Biber error: ") + sub.str(2);
1563                         string msg = token;
1564                         terr.insertError(0,
1565                                          from_local8bit(errstr),
1566                                          from_local8bit(msg));
1567                 }
1568                 prevtoken = token;
1569         }
1570         return retval;
1571 }
1572
1573
1574 int LaTeX::scanIlgFile(TeXErrors & terr)
1575 {
1576         FileName const ilg_file(changeExtension(file.absFileName(), "ilg"));
1577         LYXERR(Debug::LATEX, "Scanning ilg file: " << ilg_file);
1578
1579         ifstream ifs(ilg_file.toFilesystemEncoding().c_str());
1580         string token;
1581         int retval = NO_ERRORS;
1582
1583         string prevtoken;
1584         while (getline(ifs, token)) {
1585                 token = rtrim(token, "\r");
1586                 smatch sub;
1587                 if (prefixIs(token, "!! "))
1588                         prevtoken = token;
1589                 else if (!prevtoken.empty()) {
1590                         retval |= INDEX_ERROR;
1591                         string errstr = N_("Makeindex error: ") + prevtoken;
1592                         string msg = prevtoken + '\n';
1593                         msg += token;
1594                         terr.insertError(0,
1595                                          from_local8bit(errstr),
1596                                          from_local8bit(msg));
1597                         prevtoken.clear();
1598                 } else if (prefixIs(token, "ERROR: ")) {
1599                         retval |= BIBTEX_ERROR;
1600                         string errstr = N_("Xindy error: ") + token.substr(6);
1601                         string msg = token;
1602                         terr.insertError(0,
1603                                          from_local8bit(errstr),
1604                                          from_local8bit(msg));
1605                 }
1606         }
1607         return retval;
1608 }
1609
1610
1611
1612 } // namespace lyx