X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.C;h=8e315bd9bdd0bd2a4a555d6afd8cd76499829faa;hb=fc8465aa1f6f29774d2f35d627b40198fa489cb1;hp=707b0cdc0c500ed7638d5cc9b09b914ddb7dbaff;hpb=35584afc1162dec2cf9fff79305e95cb3b75aefb;p=lyx.git diff --git a/src/Chktex.C b/src/Chktex.C index 707b0cdc0c..8e315bd9bd 100644 --- a/src/Chktex.C +++ b/src/Chktex.C @@ -1,19 +1,19 @@ /* This file is part of - * ====================================================== + * ====================================================== * * LyX, The Document Processor * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 The LyX Team. + * Copyright 1995-2000 The LyX Team. * * This file is Copyright 1997-1998 * Asger Alstrup * - *====================================================== + * ====================================================== */ #include -#include // atoi +#include #ifdef __GNUG__ #pragma implementation @@ -27,9 +27,12 @@ #include "debug.h" #include "support/syscall.h" #include "support/syscontr.h" -#include "pathstack.h" +#include "support/path.h" #include "gettext.h" +using std::ifstream; +using std::getline; + /* * CLASS Chktex */ @@ -43,10 +46,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); + int result= one.startscript(Systemcalls::System, tmp); if (result == 0) { result = scanLogFile(terr); } else { @@ -56,37 +59,26 @@ 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 tmp = ChangeExtension(file, ".log", true); - - if (!lex.setFile(tmp)) { - // Unable to open file. Return at once - return -1; - } - - while (lex.IsOK()) { - if (lex.EatLine()) - token = lex.GetString(); - else // blank line in the file being read - continue; + string tmp = OnlyFilename(ChangeExtension(file, ".log")); + ifstream ifs(tmp.c_str()); + while (getline(ifs, token)) { 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, ':'); + 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()); + int lineno = lyx::atoi(line); warno = _("ChkTeX warning id #") + warno; terr.insertError(lineno, warno, warning); - retval++; + ++retval; } return retval; }