]> git.lyx.org Git - lyx.git/blobdiff - src/Chktex.C
Add GTK bibitem dialog
[lyx.git] / src / Chktex.C
index 707b0cdc0c500ed7638d5cc9b09b914ddb7dbaff..bb9258c207d60c570e0e835bbe7b4454f31f827c 100644 (file)
@@ -1,38 +1,38 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor        
- *          Copyright 1995 Matthias Ettrich
- *           Copyright 1995-1999 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 <config.h>
 
-#include <cstdlib> // atoi
-
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "Chktex.h"
+#include "gettext.h"
+
 #include "LaTeX.h" // TeXErrors
+
+#include "support/convert.h"
 #include "support/filetools.h"
-#include "lyxlex.h"
-#include "support/FileInfo.h"
-#include "debug.h"
-#include "support/syscall.h"
-#include "support/syscontr.h"
-#include "pathstack.h"
-#include "gettext.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;
 
-/*
- * CLASS Chktex
- */
 
 Chktex::Chktex(string const & chktex, string const & f, string const & p)
                : cmd(chktex), file(f), path(p)
@@ -43,10 +43,10 @@ Chktex::Chktex(string const & chktex, string const & f, string const & p)
 int Chktex::run(TeXErrors &terr)
 {
        // run bibtex
-       string log = ChangeExtension(file, ".log", true);
+       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 {
@@ -56,37 +56,42 @@ int Chktex::run(TeXErrors &terr)
 }
 
 
-int Chktex::scanLogFile(TeXErrors &terr)
+int Chktex::scanLogFile(TeXErrors & terr)
 {
        string token;
        int retval = 0;
 
-       LyXLex lex(0, 0);
+       string const tmp = OnlyFilename(ChangeExtension(file, ".log"));
 
-       string tmp = ChangeExtension(file, ".log", true);
-
-       if (!lex.setFile(tmp)) {
-               // Unable to open file. Return at once
-               return -1;
-       }
+#if USE_BOOST_FORMAT
+       boost::format msg(_("ChkTeX warning id # %1$d"));
+#else
+       string const msg(_("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
 
-       while (lex.IsOK()) {
-               if (lex.EatLine())
-                       token = lex.GetString();
-               else // blank line in the file being read
-                       continue;
-
-               string srcfile, line, pos, warno, warning;
-               token=split(token, srcfile, ':');
-               token=split(token, line, ':');
-               token=split(token, pos, ':');
-               token=split(token, warno, ':');
-               token=split(token, warning, ':');
-
-               int lineno = atoi(line.c_str());
-               warno = _("ChkTeX warning id #") + warno;
-               terr.insertError(lineno, warno, warning);
-               retval++;
+               ++retval;
        }
        return retval;
 }