mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
d0a3af12d9
I'm committing all the little, but uncontroversial, changes that have built up in my tree. This will result in an almost total recompilation for you all but will mean that things are less painfull when the other changes go in! * Rename files syscall.[Ch] as systemcall.[Ch]. * Rename class Systemcalls as class Systemcall as one instance of the class represents a single child process. Remove the default constructor too. * Add a running() method to class Timeout. Results in recompilation of almost the entire tree because pretty well everything depends on LyXView.h which #includes "frontends/Timeout.h", so... * Make the Timeout instances in classes LyXView and minibuffer pointers, allowing us to forward declare class Timeout. * Add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to commandtags.h in anticipation of something wonderful! * Add a signal showForks to Dialogs.h, again anticipating some real code. * wrap the structs firster, seconder in frontends/controllers/helper_funcs.h in a namespace to prevent a clash with similarly named structs in support/lyxalgo.h As you see, lots of irritating bits and pieces which don't make much sense in themselves but do in light of the other changes I've got here. I'll post the big changes to the list for proper perusal. Angus git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3566 a592a061-630c-0410-9148-cb99ea01b6c8
90 lines
1.8 KiB
C
90 lines
1.8 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* This file is Copyright 1997-1998
|
|
* Asger Alstrup
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#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 "support/filetools.h"
|
|
#include "support/systemcall.h"
|
|
#include "support/path.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <fstream>
|
|
|
|
using std::ifstream;
|
|
using std::getline;
|
|
|
|
/*
|
|
* CLASS Chktex
|
|
*/
|
|
|
|
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 tmp = OnlyFilename(ChangeExtension(file, ".log"));
|
|
|
|
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 lineno = lyx::atoi(line);
|
|
warno = _("ChkTeX warning id #") + warno;
|
|
terr.insertError(lineno, warno, warning);
|
|
++retval;
|
|
}
|
|
return retval;
|
|
}
|