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