X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=981999f303fb0c5b33275982cabc356d824e91ae;hb=8765ab59cdddad67284007813ef25934ea0042ce;hp=2f2dd73427ae6b911e16b923fe47e116f50153cf;hpb=0eccdd1c3613e5170deb77b22174dd0afde833e9;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 2f2dd73427..981999f303 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,38 +1,41 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 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 // atoi - -#ifdef __GNUG__ -#pragma implementation -#endif - #include "Chktex.h" +#include "gettext.h" + #include "LaTeX.h" // TeXErrors + +#include "support/convert.h" +#include "support/docstream.h" #include "support/filetools.h" -#include "lyxlex.h" -#include "support/FileInfo.h" -#include "error.h" -#include "support/syscall.h" -#include "support/syscontr.h" -#include "pathstack.h" -#include "gettext.h" +#include "support/lstrings.h" +#include "support/systemcall.h" + +#include + + +namespace lyx { + +using support::changeExtension; +using support::FileName; +using support::makeAbsPath; +using support::onlyFilename; +using support::split; +using support::Systemcall; + +using std::getline; +using std::string; -/* - * CLASS Chktex - */ Chktex::Chktex(string const & chktex, string const & f, string const & p) : cmd(chktex), file(f), path(p) @@ -43,10 +46,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 { @@ -56,37 +59,49 @@ int Chktex::run(TeXErrors &terr) } -int Chktex::scanLogFile(TeXErrors &terr) +int Chktex::scanLogFile(TeXErrors & terr) { - string token; int retval = 0; - LyXLex lex(0, 0); + // FIXME: Find out whether onlyFilename() is really needed, + // or whether makeAbsPath(onlyFilename()) is a noop here + FileName const tmp(makeAbsPath(onlyFilename(changeExtension(file, ".log")))); - string tmp = ChangeExtension(file, ".log", true); - - if (!lex.setFile(tmp)) { - // Unable to open file. Return at once - return -1; - } +#if USE_BOOST_FORMAT + boost::basic_format msg(_("ChkTeX warning id # %1$d")); +#else + docstring const msg(_("ChkTeX warning id # ")); +#endif + docstring token; + // FIXME UNICODE + // We have no idea what the encoding of the error file is + idocfstream ifs(tmp.toFilesystemEncoding().c_str()); + while (getline(ifs, token)) { + docstring srcfile; + docstring line; + docstring pos; + docstring warno; + docstring warning; + token = split(token, srcfile, ':'); + token = split(token, line, ':'); + token = split(token, pos, ':'); + token = split(token, warno, ':'); + token = split(token, 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 - while (lex.IsOK()) { - if (lex.EatLine()) - token = lex.GetString(); - else // blank line in the file being read - continue; - - string srcfile, line, pos, warno, 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); - retval++; + ++retval; } return retval; } + + +} // namespace lyx