X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=09c48a7eabe1a45963a5e7d861c3439839d6df72;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=35c6ba5455104a9bcfebec568f80089860093ae5;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 35c6ba5455..09c48a7eab 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,47 +1,42 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * Copyright (C) 1995 Matthias Ettrich - * Copyright (C) 1995-1998 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 (C) 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 "LaTeX.h" // TeXErrors -#include "filetools.h" -#include "lyxlex.h" -#include "FileInfo.h" -#include "error.h" -#include "syscall.h" -#include "syscontr.h" -#include "pathstack.h" #include "gettext.h" -// $Id: Chktex.C,v 1.1 1999/09/27 18:44:36 larsbj Exp $ +#include "LaTeX.h" // TeXErrors -#if !defined(lint) && !defined(WITH_WARNINGS) -static char vcid[] = "$Id: Chktex.C,v 1.1 1999/09/27 18:44:36 larsbj Exp $"; -#endif /* lint */ +#include "support/convert.h" +#include "support/docstream.h" +#include "support/filetools.h" +#include "support/lstrings.h" +#include "support/systemcall.h" +#include -/* - * CLASS Chktex - */ -Chktex::Chktex(LString const & chktex, LString const & f, LString const & p) +namespace lyx { + +using support::changeExtension; +using support::onlyFilename; +using support::split; +using support::Systemcall; + +using std::getline; +using std::string; +using std::ifstream; + + +Chktex::Chktex(string const & chktex, string const & f, string const & p) : cmd(chktex), file(f), path(p) { } @@ -50,10 +45,10 @@ Chktex::Chktex(LString const & chktex, LString const & f, LString const & p) int Chktex::run(TeXErrors &terr) { // run bibtex - LString log = ChangeExtension(file, ".log", true); - LString tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log; - Systemcalls one; - int result= one.Startscript(Systemcalls::System, tmp); + string log = onlyFilename(changeExtension(file, ".log")); + string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log; + Systemcall one; + int result = one.startscript(Systemcall::Wait, tmp); if (result == 0) { result = scanLogFile(terr); } else { @@ -63,37 +58,47 @@ int Chktex::run(TeXErrors &terr) } -int Chktex::scanLogFile(TeXErrors &terr) +int Chktex::scanLogFile(TeXErrors & terr) { - LString token; int retval = 0; - LyXLex lex(NULL, 0); + string const tmp = onlyFilename(changeExtension(file, ".log")); - LString 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.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; - - LString srcfile, line, pos, warno, warning; - token.split(srcfile, ':'); - token.split(line, ':'); - token.split(pos, ':'); - token.split(warno, ':'); - token.split(warning, ':'); - - int lineno = atoi(line.c_str()); - warno = _("ChkTeX warning id #") + warno; - terr.insertError(lineno, warno, warning); - retval++; + ++retval; } return retval; } + + +} // namespace lyx