/* Copyright (C) 2002 by Roberto Raggi This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public version 2, License as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "problemreporter.h" #include "javasupportpart.h" #include "configproblemreporter.h" #include "backgroundparser.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class ProblemItem: public TDEListViewItem { public: ProblemItem( TQListView* parent, const TQString& level, const TQString& problem, const TQString& file, const TQString& line, const TQString& column ) : TDEListViewItem( parent, level, problem, file, line, column ) {} ProblemItem( TQListViewItem* parent, const TQString& level, const TQString& problem, const TQString& file, const TQString& line, const TQString& column ) : TDEListViewItem( parent, level, problem, file, line, column ) {} int compare( TQListViewItem* item, int column, bool ascending ) const { if( column == 2 || column == 3 ){ int a = text( column ).toInt(); int b = item->text( column ).toInt(); if( a == b ) return 0; return( a > b ? 1 : -1 ); } return TDEListViewItem::compare( item, column, ascending ); } }; ProblemReporter::ProblemReporter( JavaSupportPart* part, TQWidget* parent, const char* name ) : TDEListView( parent, name ? name : "problemreporter" ), m_javaSupport( part ), m_document( 0 ), m_markIface( 0 ) { TQWhatsThis::add(this, i18n("Problem reporter

This window shows various \"problems\" in your project. " "It displays TODO entries, FIXME's and errors reported by a language parser. " "To add a TODO or FIXME entry, just type
" "//@todo my todo
" "//TODO: my todo
" "//FIXME fix this")); addColumn( i18n("Level") ); addColumn( i18n("File") ); addColumn( i18n("Line") ); addColumn( i18n("Column") ); addColumn( i18n("Problem") ); setAllColumnsShowFocus( TRUE ); m_timer = new TQTimer( this ); connect( part->partController(), TQ_SIGNAL(activePartChanged(KParts::Part*)), this, TQ_SLOT(slotActivePartChanged(KParts::Part*)) ); connect( part->partController(), TQ_SIGNAL(partAdded(KParts::Part*)), this, TQ_SLOT(slotPartAdded(KParts::Part*)) ); connect( part->partController(), TQ_SIGNAL(partRemoved(KParts::Part*)), this, TQ_SLOT(slotPartRemoved(KParts::Part*)) ); connect( m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(reparse()) ); connect( this, TQ_SIGNAL(executed(TQListViewItem*)), this, TQ_SLOT(slotSelected(TQListViewItem*)) ); configure(); } ProblemReporter::~ProblemReporter() { } void ProblemReporter::slotActivePartChanged( KParts::Part* part ) { if( !part ) return; m_timer->stop(); if( m_document ) disconnect( m_document, 0, this, 0 ); m_document = dynamic_cast( part ); m_markIface = 0; if( !m_document ) return; m_fileName = m_document->url().path(); if( !m_javaSupport->isValidSource(m_fileName) ) return; connect( m_document, TQ_SIGNAL(textChanged()), this, TQ_SLOT(slotTextChanged()) ); m_markIface = dynamic_cast( part ); if( !m_javaSupport->backgroundParser() ) return; m_javaSupport->backgroundParser()->lock(); bool needReparse = false; if( !m_javaSupport->backgroundParser()->translationUnit(m_fileName) ) needReparse = true; m_javaSupport->backgroundParser()->unlock(); if( needReparse ) reparse(); } void ProblemReporter::slotTextChanged() { if( m_active ) m_timer->changeInterval( m_delay ); } void ProblemReporter::removeAllProblems( const TQString& filename ) { TQListViewItem* current = firstChild(); while( current ){ TQListViewItem* i = current; current = current->nextSibling(); if( i->text(1) == filename ) delete( i ); } if( m_document && m_markIface ){ TQPtrList marks = m_markIface->marks(); TQPtrListIterator it( marks ); while( it.current() ){ m_markIface->removeMark( it.current()->line, KTextEditor::MarkInterface::markType07 ); ++it; } } } void ProblemReporter::reparse() { if( !m_javaSupport->isValid() ) return; // @todo use the project database to decide which files to parse instead of this! // ugly hack: do not parse non .java ending files if ( !m_fileName.endsWith(".java") ) return; m_timer->stop(); kdDebug(9013) << "ProblemReporter::reparse()" << endl; m_javaSupport->backgroundParser()->addFile( m_fileName ); kdDebug(9013) << "---> file added " << m_fileName << endl; } void ProblemReporter::slotSelected( TQListViewItem* item ) { KURL url( item->text(1) ); int line = item->text( 2 ).toInt(); // int column = item->text( 3 ).toInt(); m_javaSupport->partController()->editDocument( url, line-1 ); // m_javaSupport->mainWindow()->lowerView( this ); } void ProblemReporter::reportProblem( const TQString& fileName, const Problem& p ) { int markType = levelToMarkType( p.level() ); if( markType != -1 && m_document && m_markIface && m_fileName == fileName ){ m_markIface->addMark( p.line(), markType ); } TQString msg = p.text(); msg = msg.replace( TQRegExp("\n"), "" ); new ProblemItem( this, levelToString( p.level() ), fileName, TQString::number( p.line() + 1 ), TQString::number( p.column() + 1 ), msg ); } void ProblemReporter::configure() { kdDebug(9013) << "ProblemReporter::configure()" << endl; TDEConfig* config = kapp->config(); config->setGroup( "General Options" ); m_active = config->readBoolEntry( "EnableJavaBgParser", TRUE ); m_delay = config->readNumEntry( "BgParserDelay", 500 ); } void ProblemReporter::configWidget( KDialogBase* dlg ) { TQVBox *vbox = dlg->addVBoxPage(i18n("Java Parsing")); ConfigureProblemReporter* w = new ConfigureProblemReporter( vbox ); //FIXME adymo: unused functionality w->groupBox3->hide(); connect(dlg, TQ_SIGNAL(okClicked()), w, TQ_SLOT(accept())); connect(dlg, TQ_SIGNAL(okClicked()), this, TQ_SLOT(configure())); } void ProblemReporter::slotPartAdded( KParts::Part* part ) { KTextEditor::MarkInterfaceExtension* iface = dynamic_cast( part ); if( !iface ) return; iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") ); } void ProblemReporter::slotPartRemoved( KParts::Part* part ) { kdDebug(9013) << "ProblemReporter::slotPartRemoved()" << endl; if( part == m_document ){ m_document = 0; m_timer->stop(); } } TQString ProblemReporter::levelToString( int level ) const { switch( level ) { case Problem::Level_Error: return TQString::fromLatin1( "Error" ); case Problem::Level_Warning: return TQString::fromLatin1( "Warning" ); case Problem::Level_Todo: return TQString::fromLatin1( "Todo" ); case Problem::Level_Fixme: return TQString::fromLatin1( "Fixme" ); default: return TQString(); } } int ProblemReporter::levelToMarkType( int level ) const { switch( level ) { case Problem::Level_Error: return KTextEditor::MarkInterface::markType07; case Problem::Level_Warning: return -1; case Problem::Level_Todo: return -1; case Problem::Level_Fixme: return -1; default: return -1; } } #include "problemreporter.moc"