X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=981999f303fb0c5b33275982cabc356d824e91ae;hb=8765ab59cdddad67284007813ef25934ea0042ce;hp=fbe1f047fcb7207f5acd38b81fc57068605b23ca;hpb=b8cad4ca9d2fe8379b496b326956ab5d16ddc1eb;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index fbe1f047fc..981999f303 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,42 +1,41 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 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 - -#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 "debug.h" -#include "support/syscall.h" -#include "support/syscontr.h" -#include "support/path.h" #include "support/lstrings.h" -#include "gettext.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::ifstream; 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) @@ -47,10 +46,10 @@ Chktex::Chktex(string const & chktex, string const & f, string const & p) int Chktex::run(TeXErrors &terr) { // run bibtex - string log = OnlyFilename(ChangeExtension(file, ".log")); + 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 { @@ -62,28 +61,47 @@ int Chktex::run(TeXErrors &terr) int Chktex::scanLogFile(TeXErrors & terr) { - string token; int retval = 0; - string tmp = OnlyFilename(ChangeExtension(file, ".log")); + // FIXME: Find out whether onlyFilename() is really needed, + // or whether makeAbsPath(onlyFilename()) is a noop here + FileName const tmp(makeAbsPath(onlyFilename(changeExtension(file, ".log")))); - ifstream ifs(tmp.c_str()); +#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)) { - string srcfile; - string line; - string pos; - string warno; - string warning; + 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 lineno = lyx::atoi(line); - 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; } + + +} // namespace lyx