1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
|
//This file has been taken from KILE, merged together with their outputfilter
/************************************************************************************
begin : Die Sep 16 2003
copyright : (C) 2003 by Jeroen Wijnhout (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. *
* *
***************************************************************************/
// 2007-03-12 dani
// - use KileDocument::Extensions
#include "latexoutputfilter.h"
using namespace std;
//====================texstudio log data struct=======================
LatexLogEntry::LatexLogEntry()
: file(""), type(LT_NONE), oldline(-1), logline(-1), message("") {
}
LatexLogEntry::LatexLogEntry(QString aFile, LogType aType, int aOldline, int aLogline, QString aMessage)
: file(aFile), type(aType), oldline(aOldline), logline(aLogline), message(aMessage) {
}
QString LatexLogEntry::niceMessage() const {
QString pre="";
switch (type) {
case LT_BADBOX:
pre=QObject::tr("BadBox: ");
break;
case LT_WARNING:
pre=QObject::tr("Warning: ");
break;
case LT_ERROR:
pre=QObject::tr("Error: ");
break;
default:;
}
return pre+message;
}
void LatexLogEntry::clear(){
file="";
type=LT_NONE;
oldline=-1;
logline=-1;
message="";
}
//===========================OutputFilter===============================
OutputFilter::OutputFilter() : QObject(),
m_nOutputLines(0), m_log(QString())
{
}
OutputFilter::~ OutputFilter()
{
}
short OutputFilter::parseLine(const QString & /*strLine*/, short /*dwCookie*/)
{
return 0;
}
bool OutputFilter::OnTerminate()
{
return true;
}
void OutputFilter::setSource(const QString &src)
{
m_source = src;
m_srcPath = QFileInfo(src).path();
}
bool OutputFilter::run(const QTextDocument* log)
{
short sCookie = 0;
QString s;
//QFile f(logfile);
m_log.clear();
m_nOutputLines = 0;
//if(f.open(QIODevice::ReadOnly)) {
QString pt=log->toPlainText();
QTextStream t(&pt,QIODevice::ReadOnly);
while(!t.atEnd()) {
// KILE_DEBUG() << "line " << m_nOutputLines << endl;
s = t.readLine() + '\n';
sCookie = parseLine(s.trimmed(), sCookie);
++m_nOutputLines;
m_log += s;
}
/*f.close();
}
else {
QMessageBox::warning(0,"MakerX", tr("Cannot open log file; did you run LaTeX?"));
return false;
}*/
return OnTerminate();
}
int OutputFilter::GetCurrentOutputLine() const
{
return m_nOutputLines;
}
//=========================LatexOutputFilter===============================
LatexOutputFilter::LatexOutputFilter() : OutputFilter(),
m_nErrors(0),
m_nWarnings(0),
m_nBadBoxes(0),
m_nParens(0)
{
}
LatexOutputFilter::~ LatexOutputFilter()
{
}
bool LatexOutputFilter::OnPreCreate()
{
m_nErrors = 0;
m_nWarnings = 0;
m_nBadBoxes = 0;
return true;
}
bool LatexOutputFilter::fileExists(const QString & name){
return absoluteFileName(name)!="";
}
QString LatexOutputFilter::absoluteFileName(const QString & name)
{
static QFileInfo fi;
if (m_filelookup.contains(name))
return m_filelookup[name];
if (QDir::isAbsolutePath(name)) {
fi.setFile(name);
if(fi.exists() && !fi.isDir()) {
m_filelookup[name]=fi.absoluteFilePath();
return m_filelookup[name];
}
else {
m_filelookup[name]="";
return m_filelookup[name];
}
}
fi.setFile(path() + '/' + name);
if(fi.exists() && !fi.isDir()) {
m_filelookup[name]=fi.absoluteFilePath();
return m_filelookup[name];
}
fi.setFile(path() + '/' + name + ".tex");//m_extensions->latexDocumentDefault());
if(fi.exists() && !fi.isDir()) {
m_filelookup[name]=fi.absoluteFilePath();
return m_filelookup[name];
}
/* // try to determine the LaTeX source file
QStringList extlist = m_extensions->latexDocuments().split(' ');
for(QStringList::Iterator it = extlist.begin(); it!=extlist.end(); ++it) {
fi.setFile(path() + '/' + name + (*it));
if(fi.exists() && !fi.isDir()) {
m_filelookup[name]=fi.absoluteFilePath();
return m_filelookup[name];
}
}*/
m_filelookup[name]="";
return m_filelookup[name];
}
// There are basically two ways to detect the current file TeX is processing:
// 1) Use \Input (i.c.w. srctex.sty or srcltx.sty) and \include exclusively. This will
// cause (La)TeX to print the line ":<+ filename" in the log file when opening a file,
// ":<-" when closing a file. Filenames pushed on the stack in this mode are marked
// as reliable.
//
// 2) Since people will probably also use the \input command, we also have to be
// to detect the old-fashioned way. TeX prints '(filename' when opening a file and a ')'
// when closing one. It is impossible to detect this with 100% certainty (TeX prints many messages
// and even text (a context) from the TeX source file, there could be unbalanced parentheses),
// so we use a heuristic algorithm. In heuristic mode a ')' will only be considered as a signal that
// TeX is closing a file if the top of the stack is not marked as "reliable".
// Also, when scanning for a TeX error linenumber (which sometimes causes a context to be printed
// to the log-file), updateFileStack is not called, helping not to pick up unbalanced parentheses
// from the context.
void LatexOutputFilter::updateFileStack(const QString &strLine, short& dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::updateFileStack()================" << endl;
static QString strPartialFileName;
switch (dwCookie) {
//we're looking for a filename
case Start : case FileNameHeuristic :
//TeX is opening a file
if(strLine.startsWith(":<+ ")) {
// KILE_DEBUG() << "filename detected" << endl;
//grab the filename, it might be a partial name (i.e. continued on the next line)
strPartialFileName = strLine.mid(4).trimmed();
//change the cookie so we remember we aren't sure the filename is complete
dwCookie = FileName;
}
//TeX closed a file
else if(strLine.startsWith(":<-")) {
// KILE_DEBUG() << "\tpopping : " << m_stackFile.top().file() << endl;
m_stackFile.pop();
dwCookie = Start;
}
else {
//fallback to the heuristic detection of filenames
updateFileStackHeuristic(strLine, dwCookie);
}
break;
case FileName :
//The partial filename was followed by '(', this means that TeX is signalling it is
//opening the file. We are sure the filename is complete now. Don't call updateFileStackHeuristic
//since we don't want the filename on the stack twice.
if(strLine.startsWith('(') || strLine.startsWith("\\openout")) {
//push the filename on the stack and mark it as 'reliable'
m_stackFile.push(LOFStackItem(strPartialFileName, true));
// KILE_DEBUG() << "\tpushed : " << strPartialFileName << endl;
strPartialFileName.clear();
dwCookie = Start;
}
//The partial filename was followed by an TeX error, meaning the file doesn't exist.
//Don't push it on the stack, instead try to detect the error.
else if(strLine.startsWith('!')) {
// KILE_DEBUG() << "oops!" << endl;
dwCookie = Start;
strPartialFileName.clear();
detectError(strLine, dwCookie);
}
else if(strLine.startsWith("No file")) {
// KILE_DEBUG() << "No file: " << strLine << endl;
dwCookie = Start;
strPartialFileName.clear();
detectWarning(strLine, dwCookie);
}
//Partial filename still isn't complete.
else {
// KILE_DEBUG() << "\tpartial file name, adding" << endl;
strPartialFileName = strPartialFileName + strLine.trimmed();
}
break;
default:
break;
}
}
void LatexOutputFilter::updateFileStackHeuristic(const QString &strLine, short & dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::updateFileStackHeuristic()================";
static QString strPartialFileName;
static bool quotedFileName = false;
bool expectFileName = (dwCookie == FileNameHeuristic);
int index = 0;
// handle special case (bug fix for 101810)
if(expectFileName && strLine.length() > 0 && strLine[0] == ')') {
m_stackFile.push(LOFStackItem(strPartialFileName));
expectFileName = false;
dwCookie = Start;
}
//scan for parentheses and grab filenames
for(int i = 0; i < strLine.length(); ++i) {
/*
We're expecting a filename. If a filename really ends at this position one of the following must be true:
1) Next character is a space, the file before the space exists and no " was read
historical notes: Next character is a space (indicating the end of a filename (yes, there can't spaces in the
path, this is a TeX limitation).
comment by tbraun: there is a workround \include{{"file name"}} according to http://groups.google.com/group/comp.text.tex/browse_thread/thread/af873534f0644e4f/cd7e0cdb61a8b837?lnk=st&q=include+space+tex#cd7e0cdb61a8b837,
but this is currently not supported by kile.
2) We're at the end of the line, the filename is probably continued on the next line.
3) The TeX was closed already, signalled by the ')'.
*/
bool isLastChar = (i+1 == strLine.length());
bool nextIsTerminator = isLastChar
? false
: ( (strLine[i+1].isSpace()
&& !quotedFileName
&& fileExists(strPartialFileName + strLine.mid(index, i-index + 1)))
|| strLine[i+1] == ')');
if(expectFileName && (isLastChar || nextIsTerminator)) {
//KILE_DEBUG() << "Update the partial filename " << strPartialFileName << endl;
strPartialFileName = strPartialFileName + strLine.mid(index, i-index + 1);
if (strPartialFileName.startsWith('"')) strPartialFileName.remove(0,1), quotedFileName = true;
if (strPartialFileName.endsWith('"')) strPartialFileName.remove(strPartialFileName.length()-1,1);
if(strPartialFileName.isEmpty()){ // nothing left to do here
continue;
}
//FIXME: improve these heuristics
if((isLastChar && (i < 78)) || nextIsTerminator || fileExists(strPartialFileName)) {
m_stackFile.push(LOFStackItem(strPartialFileName));
// KILE_DEBUG() << "\tpushed (i = " << i << " length = " << strLine.length() << "): " << strPartialFileName << endl;
expectFileName = false;
dwCookie = Start;
}
//Guess the filename is continued on the next line, only if the current strPartialFileName does not exist, see bug # 162899
else if(isLastChar) {
if(fileExists(strPartialFileName)) {
m_stackFile.push(LOFStackItem(strPartialFileName));
//KILE_DEBUG() << "pushed (i = " << i << " length = " << strLine.length() << "): " << strPartialFileName << endl;
expectFileName = false;
dwCookie = Start;
}
else {
//KILE_DEBUG() << "Filename spans more than one line." << endl;
dwCookie = FileNameHeuristic;
}
}
//bail out
else {
dwCookie = Start;
strPartialFileName.clear();
expectFileName = false;
quotedFileName = false;
}
}
//TeX is opening a file
else if(strLine[i] == '(') {
//we need to extract the filename
expectFileName = true;
strPartialFileName.clear();
quotedFileName = false;
dwCookie = Start;
//this is were the filename is supposed to start
index = i + 1;
}
//TeX is closing a file
else if(strLine[i] == ')') {
// KILE_DEBUG() << "\tpopping : " << m_stackFile.top().file() << endl;
//If this filename was pushed on the stack by the reliable ":<+-" method, don't pop
//a ":<-" will follow. This helps in preventing unbalanced ')' from popping filenames
//from the stack too soon.
if(m_stackFile.count() > 1 && !m_stackFile.top().reliable()) {
m_stackFile.pop();
}
else {
//KILE_DEBUG() << "\t\toh no, forget about it!";
}
}
}
}
void LatexOutputFilter::flushCurrentItem()
{
//KILE_DEBUG() << "==LatexOutputFilter::flushCurrentItem()================" << endl;
int nItemType = m_currentItem.type;
while( m_stackFile.count() > 0 && (!fileExists(m_stackFile.top().file())) && (m_stackFile.count() > 1)) {
m_stackFile.pop();
}
m_currentItem.file=absoluteFileName(m_stackFile.top().file());
switch (nItemType) {
case LT_ERROR:
++m_nErrors;
m_infoList.push_back(m_currentItem);
//KILE_DEBUG() << "Flushing Error in" << m_currentItem.source() << "@" << m_currentItem.sourceLine() << " reported in line " << m_currentItem.outputLine() << endl;
break;
case LT_WARNING:
++m_nWarnings;
m_infoList.push_back(m_currentItem);
//KILE_DEBUG() << "Flushing Warning in " << m_currentItem.source() << "@" << m_currentItem.sourceLine() << " reported in line " << m_currentItem.outputLine() << endl;
break;
case LT_BADBOX:
++m_nBadBoxes;
m_infoList.push_back(m_currentItem);
//KILE_DEBUG() << "Flushing BadBox in " << m_currentItem.source() << "@" << m_currentItem.sourceLine() << " reported in line " << m_currentItem.outputLine() << endl;
break;
default: break;
}
m_currentItem.clear();
}
bool LatexOutputFilter::detectError(const QString & strLine, short &dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::detectError(" << strLine.length() << ")================" << endl;
bool found = false, flush = false;
static QRegExp reLaTeXError("^! LaTeX Error: (.*)$", Qt::CaseInsensitive);
static QRegExp rePDFLaTeXError("^Error: pdflatex (.*)$", Qt::CaseInsensitive);
static QRegExp reTeXError("^! (.*)\\.$");
static QRegExp rePackageError("^! Package (.*) Error:(.*)$", Qt::CaseInsensitive);
static QRegExp reLineNumber("^l\\.([0-9]+)(.*)");
switch (dwCookie) {
case Start :
if(reLaTeXError.indexIn(strLine) != -1) {
//KILE_DEBUG() << "\tError : " << reLaTeXError.cap(1) << endl;
m_currentItem.message=reLaTeXError.cap(1);
found = true;
}
else if(rePDFLaTeXError.indexIn(strLine) != -1) {
//KILE_DEBUG() << "\tError : " << rePDFLaTeXError.cap(1) << endl;
m_currentItem.message=rePDFLaTeXError.cap(1);
found = true;
}
else if(reTeXError.indexIn(strLine) != -1) {
//KILE_DEBUG() << "\tError : " << reTeXError.cap(1) << endl;
m_currentItem.message=reTeXError.cap(1);
found = true;
}
else if(rePackageError.indexIn(strLine) != -1) {
//KILE_DEBUG() << "\tError : " << reTeXError.cap(1) << endl;
m_currentItem.message=rePackageError.cap(1)+":"+rePackageError.cap(2);
found = true;
}
if(found) {
dwCookie = strLine.endsWith('.') ? LineNumber : Error;
m_currentItem.logline=GetCurrentOutputLine();
}
break;
case Error :
//KILE_DEBUG() << "\tError (cont'd): " << strLine << endl;
if(strLine.endsWith('.')) {
dwCookie = LineNumber;
m_currentItem.message=m_currentItem.message + strLine;
}
else if(GetCurrentOutputLine() - m_currentItem.logline > 3) {
//kWarning() << "\tBAILING OUT: error description spans more than three lines" << endl;
dwCookie = Start;
flush = true;
}
break;
case LineNumber :
//KILE_DEBUG() << "\tLineNumber " << endl;
if(reLineNumber.indexIn(strLine) != -1) {
dwCookie = Start;
flush = true;
//KILE_DEBUG() << "\tline number: " << reLineNumber.cap(1) << endl;
m_currentItem.oldline=reLineNumber.cap(1).toInt();
m_currentItem.message=m_currentItem.message + reLineNumber.cap(2);
}
else if(GetCurrentOutputLine() - m_currentItem.logline > 10) {
dwCookie = Start;
flush = true;
//kWarning() << "\tBAILING OUT: did not detect a TeX line number for an error" << endl;
m_currentItem.oldline=0;
}
break;
default : break;
}
if(found) {
m_currentItem.type=LT_ERROR;
m_currentItem.logline=GetCurrentOutputLine();
}
if(flush) {
flushCurrentItem();
}
return found;
}
bool LatexOutputFilter::detectWarning(const QString & strLine, short &dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::detectWarning(" << strLine.length() << ")================" << endl;
bool found = false, flush = false;
QString warning;
static QRegExp reLaTeXWarning("^(((! )?(La|pdf)TeX)|Package|Class) .*Warning.*:(.*)", Qt::CaseInsensitive);
static QRegExp reNoFile("No file (.*)");
static QRegExp reNoAsyFile("File .* does not exist."); // FIXME can be removed when http://sourceforge.net/tracker/index.php?func=detail&aid=1772022&group_id=120000&atid=685683 has promoted to the users
switch(dwCookie) {
//detect the beginning of a warning
case Start :
if(reLaTeXWarning.indexIn(strLine) != -1) {
warning = reLaTeXWarning.cap(5);
//KILE_DEBUG() << "\tWarning found: " << warning << endl;
found = true;
dwCookie = Start;
m_currentItem.message=(warning);
m_currentItem.logline=GetCurrentOutputLine();
//do we expect a line number?
flush = detectLaTeXLineNumber(warning, dwCookie, strLine.length());
}
else if(reNoFile.indexIn(strLine) != -1) {
found = true;
flush = true;
m_currentItem.oldline=(0);
m_currentItem.message=(reNoFile.cap(0));
m_currentItem.logline=GetCurrentOutputLine();
}
else if(reNoAsyFile.indexIn(strLine) != -1) {
found = true;
flush = true;
m_currentItem.oldline=(0);
m_currentItem.message=(reNoAsyFile.cap(0));
m_currentItem.logline=GetCurrentOutputLine();
}
break;
//warning spans multiple lines, detect the end
case Warning :
warning = m_currentItem.message + strLine;
//KILE_DEBUG() << "'\tWarning (cont'd) : " << warning << endl;
flush = detectLaTeXLineNumber(warning, dwCookie, strLine.length());
m_currentItem.message=(warning);
break;
default:
break;
}
if(found) {
m_currentItem.type=LT_WARNING;
m_currentItem.logline=GetCurrentOutputLine();
}
if(flush) {
flushCurrentItem();
}
return found;
}
bool LatexOutputFilter::detectLaTeXLineNumber(QString & warning, short & dwCookie, int len)
{
//KILE_DEBUG() << "==LatexOutputFilter::detectLaTeXLineNumber(" << warning.length() << ")================" << endl;
static QRegExp reLaTeXLineNumber("(.*) on input[ ]?line ([0-9]+)\\.$", Qt::CaseInsensitive);
static QRegExp reInternationalLaTeXLineNumber("(.*)([0-9]+)\\.$", Qt::CaseInsensitive);
if((reLaTeXLineNumber.indexIn(warning) != -1) || (reInternationalLaTeXLineNumber.indexIn(warning) != -1)) {
//KILE_DEBUG() << "een" << endl;
m_currentItem.oldline=(reLaTeXLineNumber.cap(2).toInt());
warning += reLaTeXLineNumber.cap(1);
dwCookie = Start;
return true;
}
else if(warning.endsWith('.')) {
//KILE_DEBUG() << "twee" << endl;
m_currentItem.oldline=(0);
dwCookie = Start;
return true;
}
//bailing out, did not find a line number
else if((GetCurrentOutputLine() - m_currentItem.logline > 4) || (len == 0)) {
//KILE_DEBUG() << "drie current " << GetCurrentOutputLine() << " " << m_currentItem.outputLine() << " len " << len << endl;
m_currentItem.oldline=(0);
dwCookie = Start;
return true;
}
//error message is continued on the other line
else {
//KILE_DEBUG() << "vier" << endl;
dwCookie = Warning;
return false;
}
}
bool LatexOutputFilter::detectBadBox(const QString & strLine, short & dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::detectBadBox(" << strLine.length() << ")================" << endl;
bool found = false, flush = false;
QString badbox;
static QRegExp reBadBox("^(Over|Under)(full \\\\[hv]box .*)", Qt::CaseInsensitive);
switch(dwCookie) {
case Start :
if(reBadBox.indexIn(strLine) != -1) {
found = true;
dwCookie = Start;
badbox = strLine;
flush = detectBadBoxLineNumber(badbox, dwCookie, strLine.length());
m_currentItem.message=(badbox);
}
break;
case BadBox :
badbox = m_currentItem.message + strLine;
flush = detectBadBoxLineNumber(badbox, dwCookie, strLine.length());
m_currentItem.message=(badbox);
break;
default:
break;
}
if(found) {
m_currentItem.type=(LT_BADBOX);
m_currentItem.logline=GetCurrentOutputLine();
}
if(flush) {
flushCurrentItem();
}
return found;
}
bool LatexOutputFilter::detectBadBoxLineNumber(QString & strLine, short & dwCookie, int len)
{
//KILE_DEBUG() << "==LatexOutputFilter::detectBadBoxLineNumber(" << strLine.length() << ")================" << endl;
static QRegExp reBadBoxLines("(.*) at lines ([0-9]+)--([0-9]+)", Qt::CaseInsensitive);
static QRegExp reBadBoxLine("(.*) at line ([0-9]+)", Qt::CaseInsensitive);
//Use the following only, if you know how to get the source line for it.
// This is not simple, as TeX is not reporting it.
static QRegExp reBadBoxOutput("(.*)has occurred while \\\\output is active^", Qt::CaseInsensitive);
if(reBadBoxLines.indexIn(strLine) != -1) {
dwCookie = Start;
strLine = reBadBoxLines.cap(1);
int n1 = reBadBoxLines.cap(2).toInt();
int n2 = reBadBoxLines.cap(3).toInt();
m_currentItem.oldline=(n1 < n2 ? n1 : n2);
return true;
}
else if(reBadBoxLine.indexIn(strLine) != -1) {
dwCookie = Start;
strLine = reBadBoxLine.cap(1);
m_currentItem.oldline=(reBadBoxLine.cap(2).toInt());
//KILE_DEBUG() << "\tBadBox@" << reBadBoxLine.cap(2) << "." << endl;
return true;
}
else if(reBadBoxOutput.indexIn(strLine) != -1) {
dwCookie = Start;
strLine = reBadBoxLines.cap(1);
m_currentItem.oldline=(0);
return true;
}
//bailing out, did not find a line number
else if((GetCurrentOutputLine() - m_currentItem.logline > 3) || (len == 0)) {
dwCookie = Start;
m_currentItem.oldline=(0);
return true;
}
else {
dwCookie = BadBox;
}
return false;
}
short LatexOutputFilter::parseLine(const QString & strLine, short dwCookie)
{
//KILE_DEBUG() << "==LatexOutputFilter::parseLine(" << strLine.length() << ")================" << endl;
switch (dwCookie) {
case Start :
if(!(detectBadBox(strLine, dwCookie) || detectWarning(strLine, dwCookie) || detectError(strLine, dwCookie))) {
updateFileStack(strLine, dwCookie);
}
break;
case Warning :
detectWarning(strLine, dwCookie);
break;
case Error : case LineNumber :
detectError(strLine, dwCookie);
break;
case BadBox :
detectBadBox(strLine, dwCookie);
break;
case FileName : case FileNameHeuristic :
updateFileStack(strLine, dwCookie);
break;
default:
dwCookie = Start;
break;
}
return dwCookie;
}
// split old Run() into three parts
// - Run() : parse the logfile
// - updateInfoLists() : needed by QuickPreview
// - sendProblems() : emit signals
//
// dani 18.02.2005
bool LatexOutputFilter::run(const QTextDocument* log)
{
m_filelookup.clear();
m_infoList.clear();
m_nErrors = m_nWarnings = m_nBadBoxes = m_nParens = 0;
m_stackFile.clear();
m_stackFile.push(LOFStackItem(QFileInfo(source()).fileName(), true));
return OutputFilter::run(log);
}
/*
void LatexOutputFilter::updateInfoLists(const QString &texfilename, int selrow, int docrow)
{
// get a short name for the original tex file
QString filename = "./" + QFileInfo(texfilename).fileName();
setSource(texfilename);
//print detailed error info
for(int i = 0; i < m_infoList.count(); ++i) {
// perhaps correct filename and line number in OutputInfo
OutputInfo *info = &(*m_infoList)[i];
info->setSource(filename);
int linenumber = selrow + info->sourceLine() - docrow;
if(linenumber < 0) {
linenumber = 0;
}
info->setSourceLine(linenumber);
}
}
void LatexOutputFilter::sendProblems()
{
QString message;
int type;
QList<KileWidget::LogWidget::ProblemInformation> problemList;
//print detailed error info
for(QList<LatexOutputInfo>::iterator i = m_infoList.begin();
i != m_infoList.end(); ++i) {
LatexOutputInfo info = *i;
message = info.source() + ':' + QString::number(info.sourceLine()) + ':' + info.message();
switch(info.type()) {
case LatexOutputInfo::LT_BADBOX:
type = KileTool::ProblemBadBox;
break;
case LatexOutputInfo::LT_ERROR:
type = KileTool::ProblemError;
break;
case LatexOutputInfo::LT_WARNING:
type = KileTool::ProblemWarning;
break;
default:
type = KileTool::Info;
break;
}
KileWidget::LogWidget::ProblemInformation problem;
problem.type = type;
problem.message = message;
problem.outputInfo = info;
problemList.push_back(problem);
}
emit(problems(problemList));
}
*/
|