X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeX.C;h=84b7748ef0f37d5f8d5a218b075f57469bb722ff;hb=37d42d45f3f4a5d3e916a080af50b37ae4a9d118;hp=845fdc322dae602e293dda71d843b1550b84fcf0;hpb=d6ce49384fb37f224d8dbabb0e439b82534e80d7;p=lyx.git diff --git a/src/LaTeX.C b/src/LaTeX.C index 845fdc322d..84b7748ef0 100644 --- a/src/LaTeX.C +++ b/src/LaTeX.C @@ -21,13 +21,13 @@ #include "debug.h" #include "DepTable.h" #include "support/filetools.h" -#include "support/FileInfo.h" -#include "support/tostr.h" +#include "support/convert.h" #include "support/lstrings.h" #include "support/lyxlib.h" #include "support/systemcall.h" #include "support/os.h" +#include #include #include @@ -36,7 +36,6 @@ using lyx::support::AbsolutePath; using lyx::support::bformat; using lyx::support::ChangeExtension; using lyx::support::contains; -using lyx::support::FileInfo; using lyx::support::findtexfile; using lyx::support::getcwd; using lyx::support::OnlyFilename; @@ -44,12 +43,14 @@ using lyx::support::prefixIs; using lyx::support::QuoteName; using lyx::support::rtrim; using lyx::support::split; +using lyx::support::subst; using lyx::support::suffixIs; using lyx::support::Systemcall; using lyx::support::unlink; using lyx::support::trim; namespace os = lyx::support::os; +namespace fs = boost::filesystem; using boost::regex; using boost::smatch; @@ -83,7 +84,7 @@ namespace { string runMessage(unsigned int count) { - return bformat(_("Waiting for LaTeX run number %1$s"), tostr(count)); + return bformat(_("Waiting for LaTeX run number %1$d"), count); } } // anon namespace @@ -196,8 +197,7 @@ int LaTeX::run(TeXErrors & terr) // remake the dependency file. // - FileInfo fi(depfile); - bool had_depfile = fi.exist(); + bool had_depfile = fs::exists(depfile); bool run_bibtex = false; string aux_file = OnlyFilename(ChangeExtension(file, "aux")); @@ -213,7 +213,7 @@ int LaTeX::run(TeXErrors & terr) // Can't just check if anything has changed because it might have aborted // on error last time... in which cas we need to re-run latex // and collect the error messages (even if they are the same). - if (!FileInfo(output_file).exist()) { + if (!fs::exists(output_file)) { lyxerr[Debug::DEPEND] << "re-running LaTeX because output file doesn't exist." << endl; } else if (!head.sumchange()) { @@ -274,7 +274,7 @@ int LaTeX::run(TeXErrors & terr) // no checks for now lyxerr[Debug::LATEX] << "Running MakeIndex." << endl; message(_("Running MakeIndex.")); - rerun = runMakeIndex(OnlyFilename(ChangeExtension(file, ".idx"))); + rerun = runMakeIndex(OnlyFilename(ChangeExtension(file, ".idx")), runparams); } // run bibtex @@ -342,7 +342,7 @@ int LaTeX::run(TeXErrors & terr) // no checks for now lyxerr[Debug::LATEX] << "Running MakeIndex." << endl; message(_("Running MakeIndex.")); - rerun = runMakeIndex(OnlyFilename(ChangeExtension(file, ".idx"))); + rerun = runMakeIndex(OnlyFilename(ChangeExtension(file, ".idx")), runparams); } // 2 @@ -383,27 +383,19 @@ int LaTeX::run(TeXErrors & terr) int LaTeX::startscript() { -#ifndef __EMX__ - string tmp = cmd + ' ' + QuoteName(file) + " > /dev/null"; -#else // cmd.exe (OS/2) causes SYS0003 error at "/dev/null" - string tmp = cmd + ' ' + file + " > nul"; -#endif + string tmp = cmd + ' ' + QuoteName(file) + " > " + os::nulldev(); Systemcall one; return one.startscript(Systemcall::Wait, tmp); } -bool LaTeX::runMakeIndex(string const & f) +bool LaTeX::runMakeIndex(string const & f, OutputParams const & runparams) { lyxerr[Debug::LATEX] << "idx file has been made," " running makeindex on file " << f << endl; - - // It should be possible to set the switches for makeindex - // sorting style and such. It would also be very convenient - // to be able to make style files from within LyX. This has - // to come for a later time. - string tmp = "makeindex -c -q "; + string tmp = lyxrc.index_command + " "; + tmp = subst(tmp, "$$lang", runparams.document_language); tmp += QuoteName(f); Systemcall one; one.startscript(Systemcall::Wait, tmp); @@ -419,10 +411,10 @@ LaTeX::scanAuxFiles(string const & file) result.push_back(scanAuxFile(file)); for (int i = 1; i < 1000; ++i) { - string file2 = ChangeExtension(file, "") + '.' + tostr(i) + string const file2 = ChangeExtension(file, "") + + '.' + convert(i) + ".aux"; - FileInfo fi(file2); - if (!fi.exist()) + if (!fs::exists(file2)) break; result.push_back(scanAuxFile(file2)); } @@ -553,7 +545,8 @@ int LaTeX::scanLogFile(TeXErrors & terr) if (token.empty()) continue; - if (prefixIs(token, "LaTeX Warning:")) { + if (prefixIs(token, "LaTeX Warning:") || + prefixIs(token, "! pdfTeX warning")) { // Here shall we handle different // types of warnings retval |= LATEX_WARNING; @@ -695,7 +688,7 @@ void handleFoundFile(string const & ff, DepTable & head) // On initial insert we want to do the update at once // since this file can not be a file generated by // the latex run. - if (FileInfo(foundfile).exist()) + if (fs::exists(foundfile)) head.insert(foundfile, true); return; @@ -705,7 +698,7 @@ void handleFoundFile(string const & ff, DepTable & head) // (2) foundfile is in the tmpdir // insert it into head - if (FileInfo(onlyfile).exist()) { + if (fs::exists(onlyfile)) { static regex unwanted("^.*\\.(aux|log|dvi|bbl|ind|glo)$"); if (regex_match(onlyfile, unwanted)) { lyxerr[Debug::DEPEND]