mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
43b77ba2d7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14952 a592a061-630c-0410-9148-cb99ea01b6c8
98 lines
2.0 KiB
C
98 lines
2.0 KiB
C
/**
|
|
* \file Chktex.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Chktex.h"
|
|
#include "gettext.h"
|
|
|
|
#include "LaTeX.h" // TeXErrors
|
|
|
|
#include "support/convert.h"
|
|
#include "support/filetools.h"
|
|
#include "support/lstrings.h"
|
|
#include "support/systemcall.h"
|
|
|
|
#include <boost/format.hpp>
|
|
|
|
#include <fstream>
|
|
|
|
using lyx::support::changeExtension;
|
|
using lyx::support::onlyFilename;
|
|
using lyx::support::split;
|
|
using lyx::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)
|
|
{
|
|
}
|
|
|
|
|
|
int Chktex::run(TeXErrors &terr)
|
|
{
|
|
// run bibtex
|
|
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 {
|
|
result = -1;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
int Chktex::scanLogFile(TeXErrors & terr)
|
|
{
|
|
string token;
|
|
int retval = 0;
|
|
|
|
string const tmp = onlyFilename(changeExtension(file, ".log"));
|
|
|
|
#if USE_BOOST_FORMAT
|
|
boost::format msg(lyx::to_utf8(_("ChkTeX warning id # %1$d")));
|
|
#else
|
|
string const msg(lyx::to_utf8(_("ChkTeX warning id # ")));
|
|
#endif
|
|
ifstream ifs(tmp.c_str());
|
|
while (getline(ifs, token)) {
|
|
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 const lineno = convert<int>(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;
|
|
}
|