You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kile/src/kile/latexoutputfilter.h

140 lines
4.2 KiB

/***************************************************************************
begin : Die Sep 16 2003
copyright : (C) 2003 by Jeroen Wijnhout
email : wijnhout@science.uva.nl
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef LATEXOUTPUTFILTER_H
#define LATEXOUTPUTFILTER_H
#include <tqvaluestack.h>
#include <tqstring.h>
#include "outputfilter.h"
#include "latexoutputinfo.h"
#include "kileextensions.h"
/**An object of this class is used to parse the output messages
generated by a TeX/LaTeX-compiler.
@author Thorsten Lck
*@author Jeroen Wijnhout
*/
class KTextEdit;
class LOFStackItem
{
public:
LOFStackItem(const TQString & file = TQString(), bool sure = false) : m_file(file), m_reliable(sure) {}
const TQString & file() const { return m_file; }
void setFile(const TQString & file) { m_file = file; }
bool reliable() const { return m_reliable; }
void setReliable(bool sure) { m_reliable = sure; }
private:
TQString m_file;
bool m_reliable;
};
class LatexOutputFilter : public OutputFilter
{
public:
LatexOutputFilter(LatexOutputInfoArray* LatexOutputInfoArray, KileDocument::Extensions *extensions);
~LatexOutputFilter();
virtual bool Run(const TQString & logfile);
void sendProblems();
void updateInfoLists(const TQString &texfilename, int selrow, int docrow);
enum {Start = 0, FileName, FileNameHeuristic, Error, Warning, BadBox, LineNumber};
protected:
/**
Parses the given line for the start of new files or the end of
old files.
*/
void updateFileStack(const TQString &strLine, short & dwCookie);
void updateFileStackHeuristic(const TQString &strLine, short & dwCookie);
/**
Forwards the currently parsed item to the item list.
*/
void flushCurrentItem();
// overridings
public:
/** Return number of errors etc. found in log-file. */
void getErrorCount(int *errors, int *warnings, int *badboxes);
void clearErrorCount() { m_nErrors=m_nWarnings=m_nBadBoxes=0 ; }
protected:
virtual bool OnPreCreate();
virtual short parseLine(const TQString & strLine, short dwCookie);
bool detectError(const TQString & strLine, short &dwCookie);
bool detectWarning(const TQString & strLine, short &dwCookie);
bool detectBadBox(const TQString & strLine, short &dwCookie);
bool detectLaTeXLineNumber(TQString & warning, short & dwCookie, int len);
bool detectBadBoxLineNumber(TQString & strLine, short & dwCookie, int len);
bool fileExists(const TQString & name);
private:
// types
protected:
/**
These constants are describing, which item types is currently
parsed.
*/
enum tagCookies
{
itmNone = 0,
itmError,
itmWarning,
itmBadBox
};
// attributes
public:
/** number or errors detected */
int m_nErrors;
/** number of warning detected */
int m_nWarnings;
/** number of bad boxes detected */
int m_nBadBoxes;
int m_nParens;
private:
/**
Stack containing the files parsed by the compiler. The top-most
element is the currently parsed file.
*/
TQValueStack<LOFStackItem> m_stackFile;
/** The item currently parsed. */
LatexOutputInfo m_currentItem;
public: // Public attributes
/** Pointer to list of Latex output information */
LatexOutputInfoArray *m_InfoList;
private:
KileDocument::Extensions *m_extensions;
};
#endif