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.
tdevelop/languages/pascal/backgroundparser.cpp

96 lines
2.7 KiB

/***************************************************************************
* Copyright (C) 2002 by Roberto Raggi *
* roberto@kdevelop.org *
* *
* 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. *
* *
***************************************************************************/
#include <sstream>
#include "backgroundparser.h"
#include "problemreporter.h"
#include "PascalLexer.h"
#include "PascalParser.h"
#include "PascalAST.h"
#include <kdebug.h>
#include <tqfile.h>
#include <antlr/ASTFactory.h>
BackgroundParser::BackgroundParser( ProblemReporter* reporter,
const TQString& source,
const TQString& filename )
: m_reporter( reporter ),
m_source( source.unicode(), source.length() ),
m_fileName( filename )
{
}
BackgroundParser::~BackgroundParser()
{
}
void BackgroundParser::run()
{
kdDebug() << "11" << endl;
TQCString _fn = TQFile::encodeName(m_fileName);
std::string fn( _fn.data() );
TQCString text = m_source.utf8();
std::istringstream stream( text.data() );
kdDebug() << "12" << endl;
PascalLexer lexer( stream );
lexer.setFilename( fn );
lexer.setProblemReporter( m_reporter );
kdDebug() << "13" << endl;
PascalParser parser( lexer );
parser.setFilename( fn );
parser.setProblemReporter( m_reporter );
antlr::ASTFactory my_factory( "PascalAST", PascalAST::factory );
parser.initializeASTFactory(my_factory);
parser.setASTFactory( &my_factory );
kdDebug() << "14" << endl;
try{
kdDebug() << "15" << endl;
lexer.resetErrors();
parser.resetErrors();
kdDebug() << "16" << endl;
parser.compilationUnit();
kdDebug() << "17" << endl;
int errors = lexer.numberOfErrors() + parser.numberOfErrors();
kdDebug() << "18" << endl;
} catch( antlr::ANTLRException& ex ){
kdDebug() << "19" << endl;
kdDebug() << "*exception*: " << ex.toString().c_str() << endl;
m_reporter->reportError( ex.getMessage().c_str(),
m_fileName,
lexer.getLine(),
lexer.getColumn() );
}
kdDebug(9013) << "FINISHED!!" << endl;
}