From 202d7e34ae799b3b9a80c1185d90b129b07cd220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Mon, 7 Feb 2011 07:04:58 +0000 Subject: [PATCH] * LaTeX.{cpp,h}: run biber if necessary (bug 7281). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@37539 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LaTeX.cpp | 21 ++++++++++++++++----- src/LaTeX.h | 3 ++- status.16x | 1 + 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/src/LaTeX.cpp b/src/LaTeX.cpp index 01690e6da3..95c0c6df91 100644 --- a/src/LaTeX.cpp +++ b/src/LaTeX.cpp @@ -126,6 +126,10 @@ void LaTeX::deleteFilesOnError() const FileName const bbl(changeExtension(file.absFilename(), ".bbl")); bbl.removeFile(); + // biber file + FileName const bcf(changeExtension(file.absFilename(), ".bcf")); + bcf.removeFile(); + // makeindex file FileName const ind(changeExtension(file.absFilename(), ".ind")); ind.removeFile(); @@ -207,7 +211,8 @@ int LaTeX::run(TeXErrors & terr) LYXERR(Debug::DEPEND, "Dependency file has changed"); } - if (head.extchanged(".bib") || head.extchanged(".bst")) + if (head.extchanged(".bib") || head.extchanged(".bst") + || head.extchanged(".bcf")) run_bibtex = true; } else LYXERR(Debug::DEPEND, @@ -273,6 +278,12 @@ int LaTeX::run(TeXErrors & terr) if (head.haschanged(glofile)) rerun |= runMakeIndexNomencl(file, ".glo", ".gls"); + // check if we're using biber instead of bibtex + // biber writes no info to the aux file, so we just check + // if a bcf file exists (and, above, if it was updated) + FileName const bcffile(changeExtension(file.absFilename(), ".bcf")); + bool const biber = bcffile.exists(); + // run bibtex // if (scanres & UNDEF_CIT || scanres & RERUN || run_bibtex) if (scanres & UNDEF_CIT || run_bibtex) { @@ -283,7 +294,7 @@ int LaTeX::run(TeXErrors & terr) LYXERR(Debug::LATEX, "Running BibTeX."); message(_("Running BibTeX.")); updateBibtexDependencies(head, bibtex_info); - rerun |= runBibTeX(bibtex_info, runparams); + rerun |= runBibTeX(bibtex_info, runparams, biber); } else if (!had_depfile) { /// If we run pdflatex on the file after running latex on it, /// then we do not need to run bibtex, but we do need to @@ -335,7 +346,7 @@ int LaTeX::run(TeXErrors & terr) LYXERR(Debug::LATEX, "Running BibTeX."); message(_("Running BibTeX.")); updateBibtexDependencies(head, bibtex_info); - rerun |= runBibTeX(bibtex_info, runparams); + rerun |= runBibTeX(bibtex_info, runparams, biber); } // 4 @@ -552,12 +563,12 @@ void LaTeX::updateBibtexDependencies(DepTable & dep, bool LaTeX::runBibTeX(vector const & bibtex_info, - OutputParams const & runparams) + OutputParams const & runparams, bool biber) { bool result = false; for (vector::const_iterator it = bibtex_info.begin(); it != bibtex_info.end(); ++it) { - if (it->databases.empty()) + if (!biber && it->databases.empty()) continue; result = true; diff --git a/src/LaTeX.h b/src/LaTeX.h index 477cad222a..065b774ddf 100644 --- a/src/LaTeX.h +++ b/src/LaTeX.h @@ -189,7 +189,8 @@ private: std::vector const &); /// - bool runBibTeX(std::vector const &, OutputParams const &); + bool runBibTeX(std::vector const &, + OutputParams const &, bool biber); /// void deleteFilesOnError() const; diff --git a/status.16x b/status.16x index f71231f520..f40e109c01 100644 --- a/status.16x +++ b/status.16x @@ -24,6 +24,7 @@ What's new * DOCUMENT INPUT/OUTPUT +- Run biber instead of bibtex if requested (bug 7281). * USER INTERFACE