X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=981999f303fb0c5b33275982cabc356d824e91ae;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6b86ed68504b3956c4d36512d66b4dd2b7d50e80;hpb=d0a3af12d9ae8b208f7a70099db29632ad8a7dba;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 6b86ed6850..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 -#ifdef __GNUG__ -#pragma implementation -#endif - #include "Chktex.h" -#include "LaTeX.h" // TeXErrors -#include "lyxlex.h" -#include "debug.h" #include "gettext.h" -#include "support/FileInfo.h" +#include "LaTeX.h" // TeXErrors + +#include "support/convert.h" +#include "support/docstream.h" #include "support/filetools.h" -#include "support/systemcall.h" -#include "support/path.h" #include "support/lstrings.h" +#include "support/systemcall.h" + +#include + -#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; - Systemcall one; - int result= one.startscript(Systemcall::Wait, 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