scramble email addresses
[lyx.git] / src / Chktex.cpp
blob2af1ed0487a20bdf118fd9b112a1e07bed8c52bf
1 /**
2 * \file Chktex.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Asger Alstrup
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "Chktex.h"
14 #include "gettext.h"
16 #include "LaTeX.h" // TeXErrors
18 #include "support/convert.h"
19 #include "support/docstream.h"
20 #include "support/filetools.h"
21 #include "support/lstrings.h"
22 #include "support/Systemcall.h"
24 #include <boost/format.hpp>
26 using std::getline;
27 using std::string;
30 namespace lyx {
32 using support::changeExtension;
33 using support::FileName;
34 using support::makeAbsPath;
35 using support::onlyFilename;
36 using support::split;
37 using support::Systemcall;
40 Chktex::Chktex(string const & chktex, string const & f, string const & p)
41 : cmd(chktex), file(f), path(p)
46 int Chktex::run(TeXErrors &terr)
48 // run bibtex
49 string log = onlyFilename(changeExtension(file, ".log"));
50 string tmp = cmd + " -q -v0 -b0 -x " + file + " -o " + log;
51 Systemcall one;
52 int result = one.startscript(Systemcall::Wait, tmp);
53 if (result == 0) {
54 result = scanLogFile(terr);
55 } else {
56 result = -1;
58 return result;
62 int Chktex::scanLogFile(TeXErrors & terr)
64 int retval = 0;
66 // FIXME: Find out whether onlyFilename() is really needed,
67 // or whether makeAbsPath(onlyFilename()) is a noop here
68 FileName const tmp(makeAbsPath(onlyFilename(changeExtension(file, ".log"))));
70 #if USE_BOOST_FORMAT
71 boost::basic_format<char_type> msg(_("ChkTeX warning id # %1$d"));
72 #else
73 docstring const msg(_("ChkTeX warning id # "));
74 #endif
75 docstring token;
76 // FIXME UNICODE
77 // We have no idea what the encoding of the error file is
78 idocfstream ifs(tmp.toFilesystemEncoding().c_str());
79 while (getline(ifs, token)) {
80 docstring srcfile;
81 docstring line;
82 docstring pos;
83 docstring warno;
84 docstring warning;
85 token = split(token, srcfile, ':');
86 token = split(token, line, ':');
87 token = split(token, pos, ':');
88 token = split(token, warno, ':');
89 token = split(token, warning, ':');
91 int const lineno = convert<int>(line);
93 #if USE_BOOST_FORMAT
94 msg % warno;
95 terr.insertError(lineno, msg.str(), warning);
96 msg.clear();
97 #else
98 terr.insertError(lineno, msg + warno, warning);
99 #endif
101 ++retval;
103 return retval;
107 } // namespace lyx