X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=bb9258c207d60c570e0e835bbe7b4454f31f827c;hb=9ee46b846e5e84ad40ceda4f4af94aeb86cd90a2;hp=0dab6668c32616ce5fe90c9c08b7d61a3ec34d95;hpb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 0dab6668c3..bb9258c207 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,42 +1,38 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. +/** + * \file Chktex.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * This file is Copyright 1997-1998 - * Asger Alstrup + * \author Asger Alstrup * - * ====================================================== + * Full author contact details are available in file CREDITS. */ #include -#include -#include // atoi - -#ifdef __GNUG__ -#pragma implementation -#endif - #include "Chktex.h" +#include "gettext.h" + #include "LaTeX.h" // TeXErrors + +#include "support/convert.h" #include "support/filetools.h" -#include "lyxlex.h" -#include "support/FileInfo.h" -#include "debug.h" -#include "support/syscall.h" -#include "support/syscontr.h" -#include "support/path.h" -#include "gettext.h" +#include "support/lstrings.h" +#include "support/systemcall.h" + +#include + +#include + +using lyx::support::ChangeExtension; +using lyx::support::OnlyFilename; +using lyx::support::split; +using lyx::support::Systemcall; -using std::ifstream; using std::getline; +using std::string; +using std::ifstream; -/* - * CLASS Chktex - */ Chktex::Chktex(string const & chktex, string const & f, string const & p) : cmd(chktex), file(f), path(p) @@ -47,10 +43,10 @@ Chktex::Chktex(string const & chktex, string const & f, string const & p) int Chktex::run(TeXErrors &terr) { // run bibtex - string log = ChangeExtension(file, ".log", true); + string log = OnlyFilename(ChangeExtension(file, ".log")); string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log; - Systemcalls one; - int result= one.startscript(Systemcalls::System, tmp); + Systemcall one; + int result = one.startscript(Systemcall::Wait, tmp); if (result == 0) { result = scanLogFile(terr); } else { @@ -65,20 +61,36 @@ int Chktex::scanLogFile(TeXErrors & terr) string token; int retval = 0; - string tmp = ChangeExtension(file, ".log", true); + string const tmp = OnlyFilename(ChangeExtension(file, ".log")); +#if USE_BOOST_FORMAT + boost::format msg(_("ChkTeX warning id # %1$d")); +#else + string const msg(_("ChkTeX warning id # ")); +#endif ifstream ifs(tmp.c_str()); while (getline(ifs, token)) { - string srcfile, line, pos, warno, warning; + string srcfile; + string line; + string pos; + string warno; + string warning; token = split(token, srcfile, ':'); token = split(token, line, ':'); token = split(token, pos, ':'); token = split(token, warno, ':'); token = split(token, warning, ':'); - int lineno = atoi(line.c_str()); - warno = _("ChkTeX warning id #") + warno; - terr.insertError(lineno, warno, warning); + int const lineno = convert(line); + +#if USE_BOOST_FORMAT + msg % warno; + terr.insertError(lineno, msg.str(), warning); + msg.clear(); +#else + terr.insertError(lineno, msg + warno, warning); +#endif + ++retval; } return retval;