]> git.lyx.org Git - lyx.git/blob - src/LaTeX.cpp
As improbable as it may be, an error could occur in both master and child
[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 "DepTable.h"
22
23 #include "support/debug.h"
24 #include "support/convert.h"
25 #include "support/FileName.h"
26 #include "support/filetools.h"
27 #include "support/gettext.h"
28 #include "support/lstrings.h"
29 #include "support/Systemcall.h"
30 #include "support/os.h"
31
32 #include "support/regex.h"
33
34 #include <fstream>
35 #include <stack>
36
37
38 using namespace std;
39 using namespace lyx::support;
40
41 namespace lyx {
42
43 namespace os = support::os;
44
45 // TODO: in no particular order
46 // - get rid of the call to
47 //   BufferList::updateIncludedTeXfiles, this should either
48 //   be done before calling LaTeX::funcs or in a completely
49 //   different way.
50 // - the makeindex style files should be taken care of with
51 //   the dependency mechanism.
52 // - we should perhaps also scan the bibtex log file
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 } // anon 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 bool operator==(AuxInfo const & a, AuxInfo const & o)
77 {
78         return a.aux_file == o.aux_file
79                 && a.citations == o.citations
80                 && a.databases == o.databases
81                 && a.styles == o.styles;
82 }
83
84
85 bool operator!=(AuxInfo const & a, AuxInfo const & o)
86 {
87         return !(a == o);
88 }
89
90
91 /*
92  * CLASS LaTeX
93  */
94
95 LaTeX::LaTeX(string const & latex, OutputParams const & rp,
96              FileName const & f)
97         : cmd(latex), file(f), runparams(rp)
98 {
99         num_errors = 0;
100         if (prefixIs(cmd, "pdf")) { // Do we use pdflatex ?
101                 depfile = FileName(file.absFileName() + ".dep-pdf");
102                 output_file =
103                         FileName(changeExtension(file.absFileName(), ".pdf"));
104         } else {
105                 depfile = FileName(file.absFileName() + ".dep");
106                 output_file =
107                         FileName(changeExtension(file.absFileName(), ".dvi"));
108         }
109 }
110
111
112 void LaTeX::deleteFilesOnError() const
113 {
114         // currently just a dummy function.
115
116         // What files do we have to delete?
117
118         // This will at least make latex do all the runs
119         depfile.removeFile();
120
121         // but the reason for the error might be in a generated file...
122
123         // bibtex file
124         FileName const bbl(changeExtension(file.absFileName(), ".bbl"));
125         bbl.removeFile();
126
127         // biber file
128         FileName const bcf(changeExtension(file.absFileName(), ".bcf"));
129         bcf.removeFile();
130
131         // makeindex file
132         FileName const ind(changeExtension(file.absFileName(), ".ind"));
133         ind.removeFile();
134
135         // nomencl file
136         FileName const nls(changeExtension(file.absFileName(), ".nls"));
137         nls.removeFile();
138
139         // nomencl file (old version of the package)
140         FileName const gls(changeExtension(file.absFileName(), ".gls"));
141         gls.removeFile();
142
143         // Also remove the aux file
144         FileName const aux(changeExtension(file.absFileName(), ".aux"));
145         aux.removeFile();
146 }
147
148
149 int LaTeX::run(TeXErrors & terr)
150         // We know that this function will only be run if the lyx buffer
151         // has been changed. We also know that a newly written .tex file
152         // is always different from the previous one because of the date
153         // in it. However it seems safe to run latex (at least) one time
154         // each time the .tex file changes.
155 {
156         int scanres = NO_ERRORS;
157         unsigned int count = 0; // number of times run
158         num_errors = 0; // just to make sure.
159         unsigned int const MAX_RUN = 6;
160         DepTable head; // empty head
161         bool rerun = false; // rerun requested
162
163         // The class LaTeX does not know the temp path.
164         theBufferList().updateIncludedTeXfiles(FileName::getcwd().absFileName(),
165                 runparams);
166
167         // Never write the depfile if an error was encountered.
168
169         // 0
170         // first check if the file dependencies exist:
171         //     ->If it does exist
172         //             check if any of the files mentioned in it have
173         //             changed (done using a checksum).
174         //                 -> if changed:
175         //                        run latex once and
176         //                        remake the dependency file
177         //                 -> if not changed:
178         //                        just return there is nothing to do for us.
179         //     ->if it doesn't exist
180         //             make it and
181         //             run latex once (we need to run latex once anyway) and
182         //             remake the dependency file.
183         //
184
185         bool had_depfile = depfile.exists();
186         bool run_bibtex = false;
187         FileName const aux_file(changeExtension(file.absFileName(), "aux"));
188
189         if (had_depfile) {
190                 LYXERR(Debug::DEPEND, "Dependency file exists");
191                 // Read the dep file:
192                 had_depfile = head.read(depfile);
193         }
194
195         if (had_depfile) {
196                 // Update the checksums
197                 head.update();
198                 // Can't just check if anything has changed because it might
199                 // have aborted on error last time... in which cas we need
200                 // to re-run latex and collect the error messages
201                 // (even if they are the same).
202                 if (!output_file.exists()) {
203                         LYXERR(Debug::DEPEND,
204                                 "re-running LaTeX because output file doesn't exist.");
205                 } else if (!head.sumchange()) {
206                         LYXERR(Debug::DEPEND, "return no_change");
207                         return NO_CHANGE;
208                 } else {
209                         LYXERR(Debug::DEPEND, "Dependency file has changed");
210                 }
211
212                 if (head.extchanged(".bib") || head.extchanged(".bst"))
213                         run_bibtex = true;
214         } else
215                 LYXERR(Debug::DEPEND,
216                         "Dependency file does not exist, or has wrong format");
217
218         /// We scan the aux file even when had_depfile = false,
219         /// because we can run pdflatex on the file after running latex on it,
220         /// in which case we will not need to run bibtex again.
221         vector<AuxInfo> bibtex_info_old;
222         if (!run_bibtex)
223                 bibtex_info_old = scanAuxFiles(aux_file);
224
225         ++count;
226         LYXERR(Debug::LATEX, "Run #" << count);
227         message(runMessage(count));
228
229         startscript();
230         scanres = scanLogFile(terr);
231         if (scanres & ERROR_RERUN) {
232                 LYXERR(Debug::LATEX, "Rerunning LaTeX");
233                 startscript();
234                 scanres = scanLogFile(terr);
235         }
236
237         if (scanres & ERRORS) {
238                 deleteFilesOnError();
239                 return scanres; // return on error
240         }
241
242         vector<AuxInfo> const bibtex_info = scanAuxFiles(aux_file);
243         if (!run_bibtex && bibtex_info_old != bibtex_info)
244                 run_bibtex = true;
245
246         // update the dependencies.
247         deplog(head); // reads the latex log
248         head.update();
249
250         // 1
251         // At this point we must run external programs if needed.
252         // makeindex will be run if a .idx file changed or was generated.
253         // And if there were undefined citations or changes in references
254         // the .aux file is checked for signs of bibtex. Bibtex is then run
255         // if needed.
256
257         // memoir (at least) writes an empty *idx file in the first place.
258         // A second latex run is needed.
259         FileName const idxfile(changeExtension(file.absFileName(), ".idx"));
260         rerun = idxfile.exists() && idxfile.isFileEmpty();
261
262         // run makeindex
263         if (head.haschanged(idxfile)) {
264                 // no checks for now
265                 LYXERR(Debug::LATEX, "Running MakeIndex.");
266                 message(_("Running Index Processor."));
267                 // onlyFileName() is needed for cygwin
268                 rerun |= runMakeIndex(onlyFileName(idxfile.absFileName()),
269                                 runparams);
270         }
271         FileName const nlofile(changeExtension(file.absFileName(), ".nlo"));
272         if (head.haschanged(nlofile))
273                 rerun |= runMakeIndexNomencl(file, ".nlo", ".nls");
274         FileName const glofile(changeExtension(file.absFileName(), ".glo"));
275         if (head.haschanged(glofile))
276                 rerun |= runMakeIndexNomencl(file, ".glo", ".gls");
277
278         // check if we're using biber instead of bibtex
279         // biber writes no info to the aux file, so we just check
280         // if a bcf file exists (and if it was updated)
281         FileName const bcffile(changeExtension(file.absFileName(), ".bcf"));
282         bool const biber = head.exist(bcffile);
283
284         // run bibtex
285         // if (scanres & UNDEF_CIT || scanres & RERUN || run_bibtex)
286         if (scanres & UNDEF_CIT || run_bibtex) {
287                 // Here we must scan the .aux file and look for
288                 // "\bibdata" and/or "\bibstyle". If one of those
289                 // tags is found -> run bibtex and set rerun = true;
290                 // no checks for now
291                 LYXERR(Debug::LATEX, "Running BibTeX.");
292                 message(_("Running BibTeX."));
293                 updateBibtexDependencies(head, bibtex_info, biber);
294                 rerun |= runBibTeX(bibtex_info, runparams, biber);
295                 if (biber) {
296                         // since biber writes no info to the aux file, we have
297                         // to parse the blg file (which only exists after biber
298                         // was first issued)
299                         FileName const blgfile(changeExtension(file.absFileName(), ".blg"));
300                         if (blgfile.exists())
301                                 scanBlgFile(head);
302                 }
303         } else if (!had_depfile) {
304                 /// If we run pdflatex on the file after running latex on it,
305                 /// then we do not need to run bibtex, but we do need to
306                 /// insert the .bib and .bst files into the .dep-pdf file.
307                 updateBibtexDependencies(head, bibtex_info, biber);
308         }
309
310         // 2
311         // we know on this point that latex has been run once (or we just
312         // returned) and the question now is to decide if we need to run
313         // it any more. This is done by asking if any of the files in the
314         // dependency file has changed. (remember that the checksum for
315         // a given file is reported to have changed if it just was created)
316         //     -> if changed or rerun == true:
317         //             run latex once more and
318         //             update the dependency structure
319         //     -> if not changed:
320         //             we do nothing at this point
321         //
322         if (rerun || head.sumchange()) {
323                 rerun = false;
324                 ++count;
325                 LYXERR(Debug::DEPEND, "Dep. file has changed or rerun requested");
326                 LYXERR(Debug::LATEX, "Run #" << count);
327                 message(runMessage(count));
328                 startscript();
329                 scanres = scanLogFile(terr);
330                 if (scanres & ERRORS) {
331                         deleteFilesOnError();
332                         return scanres; // return on error
333                 }
334
335                 // update the depedencies
336                 deplog(head); // reads the latex log
337                 head.update();
338         } else {
339                 LYXERR(Debug::DEPEND, "Dep. file has NOT changed");
340         }
341         
342         // 3
343         // rerun bibtex?
344         // Complex bibliography packages such as Biblatex require
345         // an additional bibtex cycle sometimes.
346         if (scanres & UNDEF_CIT) {
347                 // Here we must scan the .aux file and look for
348                 // "\bibdata" and/or "\bibstyle". If one of those
349                 // tags is found -> run bibtex and set rerun = true;
350                 // no checks for now
351                 LYXERR(Debug::LATEX, "Running BibTeX.");
352                 message(_("Running BibTeX."));
353                 updateBibtexDependencies(head, bibtex_info, biber);
354                 rerun |= runBibTeX(bibtex_info, runparams, biber);
355         }
356
357         // 4
358         // The inclusion of files generated by external programs such as
359         // makeindex or bibtex might have done changes to pagenumbering,
360         // etc. And because of this we must run the external programs
361         // again to make sure everything is redone correctly.
362         // Also there should be no need to run the external programs any
363         // more after this.
364
365         // run makeindex if the <file>.idx has changed or was generated.
366         if (head.haschanged(idxfile)) {
367                 // no checks for now
368                 LYXERR(Debug::LATEX, "Running MakeIndex.");
369                 message(_("Running Index Processor."));
370                 // onlyFileName() is needed for cygwin
371                 rerun = runMakeIndex(onlyFileName(changeExtension(
372                                 file.absFileName(), ".idx")), runparams);
373         }
374
375         // I am not pretty sure if need this twice.
376         if (head.haschanged(nlofile))
377                 rerun |= runMakeIndexNomencl(file, ".nlo", ".nls");
378         if (head.haschanged(glofile))
379                 rerun |= runMakeIndexNomencl(file, ".glo", ".gls");
380
381         // 5
382         // we will only run latex more if the log file asks for it.
383         // or if the sumchange() is true.
384         //     -> rerun asked for:
385         //             run latex and
386         //             remake the dependency file
387         //             goto 2 or return if max runs are reached.
388         //     -> rerun not asked for:
389         //             just return (fall out of bottom of func)
390         //
391         while ((head.sumchange() || rerun || (scanres & RERUN))
392                && count < MAX_RUN) {
393                 // Yes rerun until message goes away, or until
394                 // MAX_RUNS are reached.
395                 rerun = false;
396                 ++count;
397                 LYXERR(Debug::LATEX, "Run #" << count);
398                 message(runMessage(count));
399                 startscript();
400                 scanres = scanLogFile(terr);
401                 if (scanres & ERRORS) {
402                         deleteFilesOnError();
403                         return scanres; // return on error
404                 }
405
406                 // keep this updated
407                 head.update();
408         }
409
410         // Write the dependencies to file.
411         head.write(depfile);
412         LYXERR(Debug::LATEX, "Done.");
413         return scanres;
414 }
415
416
417 int LaTeX::startscript()
418 {
419         // onlyFileName() is needed for cygwin
420         string tmp = cmd + ' '
421                      + quoteName(onlyFileName(file.toFilesystemEncoding()))
422                      + " > " + os::nulldev();
423         Systemcall one;
424         return one.startscript(Systemcall::Wait, tmp);
425 }
426
427
428 bool LaTeX::runMakeIndex(string const & f, OutputParams const & runparams,
429                          string const & params)
430 {
431         string tmp = runparams.use_japanese ?
432                 lyxrc.jindex_command : lyxrc.index_command;
433         
434         if (!runparams.index_command.empty())
435                 tmp = runparams.index_command;
436
437         LYXERR(Debug::LATEX,
438                 "idx file has been made, running index processor ("
439                 << tmp << ") on file " << f);
440
441         tmp = subst(tmp, "$$lang", runparams.document_language);
442         if (runparams.use_indices) {
443                 tmp = lyxrc.splitindex_command + " -m " + quoteName(tmp);
444                 LYXERR(Debug::LATEX,
445                 "Multiple indices. Using splitindex command: " << tmp);
446         }
447         tmp += ' ';
448         tmp += quoteName(f);
449         tmp += params;
450         Systemcall one;
451         one.startscript(Systemcall::Wait, tmp);
452         return true;
453 }
454
455
456 bool LaTeX::runMakeIndexNomencl(FileName const & file,
457                 string const & nlo, string const & nls)
458 {
459         LYXERR(Debug::LATEX, "Running MakeIndex for nomencl.");
460         message(_("Running MakeIndex for nomencl."));
461         string tmp = lyxrc.nomencl_command + ' ';
462         // onlyFileName() is needed for cygwin
463         tmp += quoteName(onlyFileName(changeExtension(file.absFileName(), nlo)));
464         tmp += " -o "
465                 + onlyFileName(changeExtension(file.toFilesystemEncoding(), nls));
466         Systemcall one;
467         one.startscript(Systemcall::Wait, tmp);
468         return true;
469 }
470
471
472 vector<AuxInfo> const
473 LaTeX::scanAuxFiles(FileName const & file)
474 {
475         vector<AuxInfo> result;
476
477         result.push_back(scanAuxFile(file));
478
479         string const basename = removeExtension(file.absFileName());
480         for (int i = 1; i < 1000; ++i) {
481                 FileName const file2(basename
482                         + '.' + convert<string>(i)
483                         + ".aux");
484                 if (!file2.exists())
485                         break;
486                 result.push_back(scanAuxFile(file2));
487         }
488         return result;
489 }
490
491
492 AuxInfo const LaTeX::scanAuxFile(FileName const & file)
493 {
494         AuxInfo result;
495         result.aux_file = file;
496         scanAuxFile(file, result);
497         return result;
498 }
499
500
501 void LaTeX::scanAuxFile(FileName const & file, AuxInfo & aux_info)
502 {
503         LYXERR(Debug::LATEX, "Scanning aux file: " << file);
504
505         ifstream ifs(file.toFilesystemEncoding().c_str());
506         string token;
507         static regex const reg1("\\\\citation\\{([^}]+)\\}");
508         static regex const reg2("\\\\bibdata\\{([^}]+)\\}");
509         static regex const reg3("\\\\bibstyle\\{([^}]+)\\}");
510         static regex const reg4("\\\\@input\\{([^}]+)\\}");
511
512         while (getline(ifs, token)) {
513                 token = rtrim(token, "\r");
514                 smatch sub;
515                 // FIXME UNICODE: We assume that citation keys and filenames
516                 // in the aux file are in the file system encoding.
517                 token = to_utf8(from_filesystem8bit(token));
518                 if (regex_match(token, sub, reg1)) {
519                         string data = sub.str(1);
520                         while (!data.empty()) {
521                                 string citation;
522                                 data = split(data, citation, ',');
523                                 LYXERR(Debug::LATEX, "Citation: " << citation);
524                                 aux_info.citations.insert(citation);
525                         }
526                 } else if (regex_match(token, sub, reg2)) {
527                         string data = sub.str(1);
528                         // data is now all the bib files separated by ','
529                         // get them one by one and pass them to the helper
530                         while (!data.empty()) {
531                                 string database;
532                                 data = split(data, database, ',');
533                                 database = changeExtension(database, "bib");
534                                 LYXERR(Debug::LATEX, "BibTeX database: `" << database << '\'');
535                                 aux_info.databases.insert(database);
536                         }
537                 } else if (regex_match(token, sub, reg3)) {
538                         string style = sub.str(1);
539                         // token is now the style file
540                         // pass it to the helper
541                         style = changeExtension(style, "bst");
542                         LYXERR(Debug::LATEX, "BibTeX style: `" << style << '\'');
543                         aux_info.styles.insert(style);
544                 } else if (regex_match(token, sub, reg4)) {
545                         string const file2 = sub.str(1);
546                         scanAuxFile(makeAbsPath(file2), aux_info);
547                 }
548         }
549 }
550
551
552 void LaTeX::updateBibtexDependencies(DepTable & dep,
553                                      vector<AuxInfo> const & bibtex_info,
554                                      bool biber)
555 {
556         // Since a run of Bibtex mandates more latex runs it is ok to
557         // remove all ".bib" and ".bst" files.
558         dep.remove_files_with_extension(".bib");
559         dep.remove_files_with_extension(".bst");
560         //string aux = OnlyFileName(ChangeExtension(file, ".aux"));
561
562         for (vector<AuxInfo>::const_iterator it = bibtex_info.begin();
563              it != bibtex_info.end(); ++it) {
564                 for (set<string>::const_iterator it2 = it->databases.begin();
565                      it2 != it->databases.end(); ++it2) {
566                         FileName const file = findtexfile(*it2, "bib");
567                         if (!file.empty())
568                                 dep.insert(file, true);
569                 }
570
571                 for (set<string>::const_iterator it2 = it->styles.begin();
572                      it2 != it->styles.end(); ++it2) {
573                         FileName const file = findtexfile(*it2, "bst");
574                         if (!file.empty())
575                                 dep.insert(file, true);
576                 }
577         }
578
579         // biber writes nothing into the aux file.
580         // Instead, we have to scan the blg file
581         if (biber) {
582                 scanBlgFile(dep);
583         }
584 }
585
586
587 bool LaTeX::runBibTeX(vector<AuxInfo> const & bibtex_info,
588                       OutputParams const & runparams, bool biber)
589 {
590         bool result = false;
591         for (vector<AuxInfo>::const_iterator it = bibtex_info.begin();
592              it != bibtex_info.end(); ++it) {
593                 if (!biber && it->databases.empty())
594                         continue;
595                 result = true;
596
597                 string tmp = runparams.use_japanese ?
598                         lyxrc.jbibtex_command : lyxrc.bibtex_command;
599
600                 if (!runparams.bibtex_command.empty())
601                         tmp = runparams.bibtex_command;
602                 tmp += " ";
603                 // onlyFileName() is needed for cygwin
604                 tmp += quoteName(onlyFileName(removeExtension(
605                                 it->aux_file.absFileName())));
606                 Systemcall one;
607                 one.startscript(Systemcall::Wait, tmp);
608         }
609         // Return whether bibtex was run
610         return result;
611 }
612
613
614 int LaTeX::scanLogFile(TeXErrors & terr)
615 {
616         int last_line = -1;
617         int line_count = 1;
618         int retval = NO_ERRORS;
619         string tmp =
620                 onlyFileName(changeExtension(file.absFileName(), ".log"));
621         LYXERR(Debug::LATEX, "Log file: " << tmp);
622         FileName const fn = FileName(makeAbsPath(tmp));
623         ifstream ifs(fn.toFilesystemEncoding().c_str());
624         bool fle_style = false;
625         static regex file_line_error(".+\\.\\D+:[0-9]+: (.+)");
626         static regex child_file(".*([0-9]+[A-Za-z]*_.+\\.tex).*");
627         // Flag for 'File ended while scanning' message.
628         // We need to wait for subsequent processing.
629         string wait_for_error;
630         string child_name;
631         int pnest = 0;
632         stack <pair<string, int> > child;
633
634         string token;
635         while (getline(ifs, token)) {
636                 // MikTeX sometimes inserts \0 in the log file. They can't be
637                 // removed directly with the existing string utility
638                 // functions, so convert them first to \r, and remove all
639                 // \r's afterwards, since we need to remove them anyway.
640                 token = subst(token, '\0', '\r');
641                 token = subst(token, "\r", "");
642                 smatch sub;
643
644                 LYXERR(Debug::LATEX, "Log line: " << token);
645
646                 if (token.empty())
647                         continue;
648
649                 // Track child documents
650                 for (size_t i = 0; i < token.length(); ++i) {
651                         if (token[i] == '(') {
652                                 ++pnest;
653                                 size_t j = token.find('(', i + 1);
654                                 size_t len = j == string::npos
655                                                 ? token.substr(i + 1).length()
656                                                 : j - i - 1;
657                                 if (regex_match(token.substr(i + 1, len),
658                                                         sub, child_file)) {
659                                         string const name = sub.str(1);
660                                         child.push(make_pair(name, pnest));
661                                         i += len;
662                                 }
663                         } else if (token[i] == ')') {
664                                 if (!child.empty()
665                                     && child.top().second == pnest)
666                                         child.pop();
667                                 --pnest;
668                         }
669                 }
670                 child_name = child.empty() ? empty_string() : child.top().first;
671
672                 if (contains(token, "file:line:error style messages enabled"))
673                         fle_style = true;
674
675                 if (prefixIs(token, "LaTeX Warning:") ||
676                     prefixIs(token, "! pdfTeX warning")) {
677                         // Here shall we handle different
678                         // types of warnings
679                         retval |= LATEX_WARNING;
680                         LYXERR(Debug::LATEX, "LaTeX Warning.");
681                         if (contains(token, "Rerun to get cross-references")) {
682                                 retval |= RERUN;
683                                 LYXERR(Debug::LATEX, "We should rerun.");
684                         // package clefval needs 2 latex runs before bibtex
685                         } else if (contains(token, "Value of")
686                                    && contains(token, "on page")
687                                    && contains(token, "undefined")) {
688                                 retval |= ERROR_RERUN;
689                                 LYXERR(Debug::LATEX, "Force rerun.");
690                         // package etaremune
691                         } else if (contains(token, "Etaremune labels have changed")) {
692                                 retval |= ERROR_RERUN;
693                                 LYXERR(Debug::LATEX, "Force rerun.");
694                         } else if (contains(token, "Citation")
695                                    && contains(token, "on page")
696                                    && contains(token, "undefined")) {
697                                 retval |= UNDEF_CIT;
698                         }
699                 } else if (prefixIs(token, "Package")) {
700                         // Package warnings
701                         retval |= PACKAGE_WARNING;
702                         if (contains(token, "natbib Warning:")) {
703                                 // Natbib warnings
704                                 if (contains(token, "Citation")
705                                     && contains(token, "on page")
706                                     && contains(token, "undefined")) {
707                                         retval |= UNDEF_CIT;
708                                 }
709                         } else if (contains(token, "run BibTeX")) {
710                                 retval |= UNDEF_CIT;
711                         } else if (contains(token, "Rerun LaTeX") ||
712                                    contains(token, "Please rerun LaTeX") ||
713                                    contains(token, "Rerun to get")) {
714                                 // at least longtable.sty and bibtopic.sty
715                                 // might use this.
716                                 LYXERR(Debug::LATEX, "We should rerun.");
717                                 retval |= RERUN;
718                         }
719                 } else if (prefixIs(token, "LETTRE WARNING:")) {
720                         if (contains(token, "veuillez recompiler")) {
721                                 // lettre.cls
722                                 LYXERR(Debug::LATEX, "We should rerun.");
723                                 retval |= RERUN;
724                         }
725                 } else if (token[0] == '(') {
726                         if (contains(token, "Rerun LaTeX") ||
727                             contains(token, "Rerun to get")) {
728                                 // Used by natbib
729                                 LYXERR(Debug::LATEX, "We should rerun.");
730                                 retval |= RERUN;
731                         }
732                 } else if (prefixIs(token, "! ")
733                             || (fle_style
734                                 && regex_match(token, sub, file_line_error)
735                                 && !contains(token, "pdfTeX warning"))) {
736                            // Ok, we have something that looks like a TeX Error
737                            // but what do we really have.
738
739                         // Just get the error description:
740                         string desc;
741                         if (prefixIs(token, "! "))
742                                 desc = string(token, 2);
743                         else if (fle_style)
744                                 desc = sub.str();
745                         if (contains(token, "LaTeX Error:"))
746                                 retval |= LATEX_ERROR;
747
748                         // bug 6445. At this point its not clear we finish with error.
749                         if (prefixIs(token, "! File ended while scanning")){
750                                 wait_for_error = desc;
751                                 continue;
752                         }
753                         if (!wait_for_error.empty() && prefixIs(token, "! Emergency stop.")){
754                                 retval |= LATEX_ERROR;
755                                 string errstr;
756                                 int count = 0;
757                                 errstr = wait_for_error;
758                                 do {
759                                         if (!getline(ifs, tmp))
760                                                 break;
761                                         tmp = rtrim(tmp, "\r");
762                                         errstr += "\n" + tmp;
763                                         if (++count > 5)
764                                                 break;
765                                 } while (!contains(tmp, "(job aborted"));
766
767                                 terr.insertError(0,
768                                                  from_local8bit("Emergency stop"),
769                                                  from_local8bit(errstr),
770                                                  child_name);
771                         }
772
773                         // get the next line
774                         string tmp;
775                         int count = 0;
776                         do {
777                                 if (!getline(ifs, tmp))
778                                         break;
779                                 tmp = rtrim(tmp, "\r");
780                                 if (++count > 10)
781                                         break;
782                         } while (!prefixIs(tmp, "l."));
783                         if (prefixIs(tmp, "l.")) {
784                                 // we have a latex error
785                                 retval |=  TEX_ERROR;
786                                 if (contains(desc,
787                                     "Package babel Error: You haven't defined the language") ||
788                                     contains(desc,
789                                     "Package babel Error: You haven't loaded the option"))
790                                         retval |= ERROR_RERUN;
791                                 // get the line number:
792                                 int line = 0;
793                                 sscanf(tmp.c_str(), "l.%d", &line);
794                                 // get the rest of the message:
795                                 string errstr(tmp, tmp.find(' '));
796                                 errstr += '\n';
797                                 getline(ifs, tmp);
798                                 tmp = rtrim(tmp, "\r");
799                                 while (!contains(errstr, "l.")
800                                        && !tmp.empty()
801                                        && !prefixIs(tmp, "! ")
802                                        && !contains(tmp, "(job aborted")) {
803                                         errstr += tmp;
804                                         errstr += "\n";
805                                         getline(ifs, tmp);
806                                         tmp = rtrim(tmp, "\r");
807                                 }
808                                 LYXERR(Debug::LATEX, "line: " << line << '\n'
809                                         << "Desc: " << desc << '\n' << "Text: " << errstr);
810                                 if (line == last_line)
811                                         ++line_count;
812                                 else {
813                                         line_count = 1;
814                                         last_line = line;
815                                 }
816                                 if (line_count <= 5) {
817                                         // FIXME UNICODE
818                                         // We have no idea what the encoding of
819                                         // the log file is.
820                                         // It seems that the output from the
821                                         // latex compiler itself is pure ASCII,
822                                         // but it can include bits from the
823                                         // document, so whatever encoding we
824                                         // assume here it can be wrong.
825                                         terr.insertError(line,
826                                                          from_local8bit(desc),
827                                                          from_local8bit(errstr),
828                                                          child_name);
829                                         ++num_errors;
830                                 }
831                         }
832                 } else {
833                         // information messages, TeX warnings and other
834                         // warnings we have not caught earlier.
835                         if (prefixIs(token, "Overfull ")) {
836                                 retval |= TEX_WARNING;
837                         } else if (prefixIs(token, "Underfull ")) {
838                                 retval |= TEX_WARNING;
839                         } else if (contains(token, "Rerun to get citations")) {
840                                 // Natbib seems to use this.
841                                 retval |= UNDEF_CIT;
842                         } else if (contains(token, "No pages of output")) {
843                                 // A dvi file was not created
844                                 retval |= NO_OUTPUT;
845                         } else if (contains(token, "That makes 100 errors")) {
846                                 // More than 100 errors were reprted
847                                 retval |= TOO_MANY_ERRORS;
848                         } else if (prefixIs(token, "!pdfTeX error:")){
849                                 // otherwise we dont catch e.g.:
850                                 // !pdfTeX error: pdflatex (file feyn10): Font feyn10 at 600 not found
851                                 retval |= ERRORS;
852                                         terr.insertError(0,
853                                                          from_local8bit("pdfTeX Error"),
854                                                          from_local8bit(token),
855                                                          child_name);
856                         }
857                 }
858         }
859         LYXERR(Debug::LATEX, "Log line: " << token);
860         return retval;
861 }
862
863
864 namespace {
865
866 bool insertIfExists(FileName const & absname, DepTable & head)
867 {
868         if (absname.exists() && !absname.isDirectory()) {
869                 head.insert(absname, true);
870                 return true;
871         }
872         return false;
873 }
874
875
876 bool handleFoundFile(string const & ff, DepTable & head)
877 {
878         // convert from native os path to unix path
879         string foundfile = os::internal_path(trim(ff));
880
881         LYXERR(Debug::DEPEND, "Found file: " << foundfile);
882
883         // Ok now we found a file.
884         // Now we should make sure that this is a file that we can
885         // access through the normal paths.
886         // We will not try any fancy search methods to
887         // find the file.
888
889         // (1) foundfile is an
890         //     absolute path and should
891         //     be inserted.
892         FileName absname;
893         if (FileName::isAbsolute(foundfile)) {
894                 LYXERR(Debug::DEPEND, "AbsolutePath file: " << foundfile);
895                 // On initial insert we want to do the update at once
896                 // since this file cannot be a file generated by
897                 // the latex run.
898                 absname.set(foundfile);
899                 if (!insertIfExists(absname, head)) {
900                         // check for spaces
901                         string strippedfile = foundfile;
902                         while (contains(strippedfile, " ")) {
903                                 // files with spaces are often enclosed in quotation
904                                 // marks; those have to be removed
905                                 string unquoted = subst(strippedfile, "\"", "");
906                                 absname.set(unquoted);
907                                 if (insertIfExists(absname, head))
908                                         return true;
909                                 // strip off part after last space and try again
910                                 string tmp = strippedfile;
911                                 string const stripoff =
912                                         rsplit(tmp, strippedfile, ' ');
913                                 absname.set(strippedfile);
914                                 if (insertIfExists(absname, head))
915                                         return true;
916                         }
917                 }
918         }
919
920         string onlyfile = onlyFileName(foundfile);
921         absname = makeAbsPath(onlyfile);
922
923         // check for spaces
924         while (contains(foundfile, ' ')) {
925                 if (absname.exists())
926                         // everything o.k.
927                         break;
928                 else {
929                         // files with spaces are often enclosed in quotation
930                         // marks; those have to be removed
931                         string unquoted = subst(foundfile, "\"", "");
932                         absname = makeAbsPath(unquoted);
933                         if (absname.exists())
934                                 break;
935                         // strip off part after last space and try again
936                         string strippedfile;
937                         string const stripoff =
938                                 rsplit(foundfile, strippedfile, ' ');
939                         foundfile = strippedfile;
940                         onlyfile = onlyFileName(strippedfile);
941                         absname = makeAbsPath(onlyfile);
942                 }
943         }
944
945         // (2) foundfile is in the tmpdir
946         //     insert it into head
947         if (absname.exists() && !absname.isDirectory()) {
948                 // FIXME: This regex contained glo, but glo is used by the old
949                 // version of nomencl.sty. Do we need to put it back?
950                 static regex const unwanted("^.*\\.(aux|log|dvi|bbl|ind)$");
951                 if (regex_match(onlyfile, unwanted)) {
952                         LYXERR(Debug::DEPEND, "We don't want " << onlyfile
953                                 << " in the dep file");
954                 } else if (suffixIs(onlyfile, ".tex")) {
955                         // This is a tex file generated by LyX
956                         // and latex is not likely to change this
957                         // during its runs.
958                         LYXERR(Debug::DEPEND, "Tmpdir TeX file: " << onlyfile);
959                         head.insert(absname, true);
960                 } else {
961                         LYXERR(Debug::DEPEND, "In tmpdir file:" << onlyfile);
962                         head.insert(absname);
963                 }
964                 return true;
965         } else {
966                 LYXERR(Debug::DEPEND, "Not a file or we are unable to find it.");
967                 return false;
968         }
969 }
970
971
972 bool checkLineBreak(string const & ff, DepTable & head)
973 {
974         if (!contains(ff, '.'))
975                 return false;
976
977         // if we have a dot, we let handleFoundFile decide
978         return handleFoundFile(ff, head);
979 }
980
981 } // anon namespace
982
983
984 void LaTeX::deplog(DepTable & head)
985 {
986         // This function reads the LaTeX log file end extracts all the
987         // external files used by the LaTeX run. The files are then
988         // entered into the dependency file.
989
990         string const logfile =
991                 onlyFileName(changeExtension(file.absFileName(), ".log"));
992
993         static regex const reg1("File: (.+).*");
994         static regex const reg2("No file (.+)(.).*");
995         static regex const reg3("\\\\openout[0-9]+.*=.*`(.+)(..).*");
996         // If an index should be created, MikTex does not write a line like
997         //    \openout# = 'sample.idx'.
998         // but instead only a line like this into the log:
999         //   Writing index file sample.idx
1000         static regex const reg4("Writing index file (.+).*");
1001         // files also can be enclosed in <...>
1002         static regex const reg5("<([^>]+)(.).*");
1003         static regex const regoldnomencl("Writing glossary file (.+).*");
1004         static regex const regnomencl("Writing nomenclature file (.+).*");
1005         // If a toc should be created, MikTex does not write a line like
1006         //    \openout# = `sample.toc'.
1007         // but only a line like this into the log:
1008         //    \tf@toc=\write#
1009         // This line is also written by tetex.
1010         // This line is not present if no toc should be created.
1011         static regex const miktexTocReg("\\\\tf@toc=\\\\write.*");
1012         static regex const reg6(".*\\([^)]+.*");
1013
1014         FileName const fn = makeAbsPath(logfile);
1015         ifstream ifs(fn.toFilesystemEncoding().c_str());
1016         string lastline;
1017         while (ifs) {
1018                 // Ok, the scanning of files here is not sufficient.
1019                 // Sometimes files are named by "File:� xxx" only
1020                 // So I think we should use some regexps to find files instead.
1021                 // Note: all file names and paths might contains spaces.
1022                 bool found_file = false;
1023                 string token;
1024                 getline(ifs, token);
1025                 // MikTeX sometimes inserts \0 in the log file. They can't be
1026                 // removed directly with the existing string utility
1027                 // functions, so convert them first to \r, and remove all
1028                 // \r's afterwards, since we need to remove them anyway.
1029                 token = subst(token, '\0', '\r');
1030                 token = subst(token, "\r", "");
1031                 if (token.empty() || token == ")") {
1032                         lastline = string();
1033                         continue;
1034                 }
1035
1036                 // Sometimes, filenames are broken across lines.
1037                 // We care for that and save suspicious lines.
1038                 // Here we exclude some cases where we are sure
1039                 // that there is no continued filename
1040                 if (!lastline.empty()) {
1041                         static regex const package_info("Package \\w+ Info: .*");
1042                         static regex const package_warning("Package \\w+ Warning: .*");
1043                         if (prefixIs(token, "File:") || prefixIs(token, "(Font)")
1044                             || prefixIs(token, "Package:")
1045                             || prefixIs(token, "Language:")
1046                             || prefixIs(token, "LaTeX Info:")
1047                             || prefixIs(token, "LaTeX Font Info:")
1048                             || prefixIs(token, "\\openout[")
1049                             || prefixIs(token, "))")
1050                             || regex_match(token, package_info)
1051                             || regex_match(token, package_warning))
1052                                 lastline = string();
1053                 }
1054
1055                 if (!lastline.empty())
1056                         // probably a continued filename from last line
1057                         token = lastline + token;
1058                 if (token.length() > 255) {
1059                         // string too long. Cut off.
1060                         token.erase(0, token.length() - 251);
1061                 }
1062
1063                 smatch sub;
1064
1065                 // FIXME UNICODE: We assume that the file names in the log
1066                 // file are in the file system encoding.
1067                 token = to_utf8(from_filesystem8bit(token));
1068
1069                 // (1) "File: file.ext"
1070                 if (regex_match(token, sub, reg1)) {
1071                         // check for dot
1072                         found_file = checkLineBreak(sub.str(1), head);
1073                         // However, ...
1074                         if (suffixIs(token, ")"))
1075                                 // no line break for sure
1076                                 // pretend we've been successfully searching
1077                                 found_file = true;
1078                 // (2) "No file file.ext"
1079                 } else if (regex_match(token, sub, reg2)) {
1080                         // file names must contains a dot, line ends with dot
1081                         if (contains(sub.str(1), '.') && sub.str(2) == ".")
1082                                 found_file = handleFoundFile(sub.str(1), head);
1083                         else
1084                                 // we suspect a line break
1085                                 found_file = false;
1086                 // (3) "\openout<nr> = `file.ext'."
1087                 } else if (regex_match(token, sub, reg3)) {
1088                         // search for closing '. at the end of the line
1089                         if (sub.str(2) == "\'.")
1090                                 found_file = handleFoundFile(sub.str(1), head);
1091                         else
1092                                 // probable line break
1093                                 found_file = false;
1094                 // (4) "Writing index file file.ext"
1095                 } else if (regex_match(token, sub, reg4))
1096                         // check for dot
1097                         found_file = checkLineBreak(sub.str(1), head);
1098                 // (5) "<file.ext>"
1099                 else if (regex_match(token, sub, reg5)) {
1100                         // search for closing '>' and dot ('*.*>') at the eol
1101                         if (contains(sub.str(1), '.') && sub.str(2) == ">")
1102                                 found_file = handleFoundFile(sub.str(1), head);
1103                         else
1104                                 // probable line break
1105                                 found_file = false;
1106                 // (6) "Writing nomenclature file file.ext"
1107                 } else if (regex_match(token, sub, regnomencl) ||
1108                            regex_match(token, sub, regoldnomencl))
1109                         // check for dot
1110                         found_file = checkLineBreak(sub.str(1), head);
1111                 // (7) "\tf@toc=\write<nr>" (for MikTeX)
1112                 else if (regex_match(token, sub, miktexTocReg))
1113                         found_file = handleFoundFile(onlyFileName(changeExtension(
1114                                                 file.absFileName(), ".toc")), head);
1115                 else
1116                         // not found, but we won't check further
1117                         // pretend we've been successfully searching
1118                         found_file = true;
1119
1120                 // (8) "(file.ext"
1121                 // note that we can have several of these on one line
1122                 // this must be queried separated, because of
1123                 // cases such as "File: file.ext (type eps)"
1124                 // where "File: file.ext" would be skipped
1125                 if (regex_match(token, sub, reg6)) {
1126                         // search for strings in (...)
1127                         static regex reg6_1("\\(([^()]+)(.)");
1128                         smatch what;
1129                         string::const_iterator first = token.begin();
1130                         string::const_iterator end = token.end();
1131
1132                         while (regex_search(first, end, what, reg6_1)) {
1133                                 // if we have a dot, try to handle as file
1134                                 if (contains(what.str(1), '.')) {
1135                                         first = what[0].second;
1136                                         if (what.str(2) == ")") {
1137                                                 handleFoundFile(what.str(1), head);
1138                                                 // since we had a closing bracket,
1139                                                 // do not investigate further
1140                                                 found_file = true;
1141                                         } else
1142                                                 // if we have no closing bracket,
1143                                                 // try to handle as file nevertheless
1144                                                 found_file = handleFoundFile(
1145                                                         what.str(1) + what.str(2), head);
1146                                 }
1147                                 // if we do not have a dot, check if the line has
1148                                 // a closing bracket (else, we suspect a line break)
1149                                 else if (what.str(2) != ")") {
1150                                         first = what[0].second;
1151                                         found_file = false;
1152                                 } else {
1153                                         // we have a closing bracket, so the content
1154                                         // is not a file name.
1155                                         // no need to investigate further
1156                                         // pretend we've been successfully searching
1157                                         first = what[0].second;
1158                                         found_file = true;
1159                                 }
1160                         }
1161                 }
1162
1163                 if (!found_file)
1164                         // probable linebreak:
1165                         // save this line
1166                         lastline = token;
1167                 else
1168                         // no linebreak: reset
1169                         lastline = string();
1170         }
1171
1172         // Make sure that the main .tex file is in the dependency file.
1173         head.insert(file, true);
1174 }
1175
1176
1177 void LaTeX::scanBlgFile(DepTable & dep)
1178 {
1179         FileName const blg_file(changeExtension(file.absFileName(), "blg"));
1180         LYXERR(Debug::LATEX, "Scanning blg file: " << blg_file);
1181
1182         ifstream ifs(blg_file.toFilesystemEncoding().c_str());
1183         string token;
1184         static regex const reg1(".*Found bibtex data file '([^']+).*");
1185
1186         while (getline(ifs, token)) {
1187                 token = rtrim(token, "\r");
1188                 smatch sub;
1189                 // FIXME UNICODE: We assume that citation keys and filenames
1190                 // in the aux file are in the file system encoding.
1191                 token = to_utf8(from_filesystem8bit(token));
1192                 if (regex_match(token, sub, reg1)) {
1193                         string data = sub.str(1);
1194                         if (!data.empty()) {
1195                                 LYXERR(Debug::LATEX, "Found bib file: " << data);
1196                                 handleFoundFile(data, dep);
1197                         }
1198                 }
1199         } 
1200 }
1201
1202
1203 } // namespace lyx