2011-07-06 15:48:52 +00:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2011-05-09 13:25:32 +02:00
|
|
|
#include "findcdbbreakpoint.h"
|
|
|
|
|
|
|
|
|
|
#include <AST.h>
|
|
|
|
|
#include <TranslationUnit.h>
|
|
|
|
|
|
|
|
|
|
#include <typeinfo>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
|
|
|
|
|
FindCdbBreakpoint::FindCdbBreakpoint(TranslationUnit *unit)
|
|
|
|
|
: ASTVisitor(unit)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned FindCdbBreakpoint::searchFrom(unsigned line)
|
|
|
|
|
{
|
|
|
|
|
m_initialLine = line;
|
2011-05-09 15:27:22 +02:00
|
|
|
m_breakpointLine = NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
|
|
|
|
|
accept(translationUnit()->ast());
|
|
|
|
|
|
|
|
|
|
return m_breakpointLine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FindCdbBreakpoint::foundLine(unsigned tokenIndex)
|
|
|
|
|
{
|
|
|
|
|
unsigned dummy = 0;
|
|
|
|
|
getTokenStartPosition(tokenIndex, &m_breakpointLine, &dummy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned FindCdbBreakpoint::endLine(unsigned tokenIndex) const
|
|
|
|
|
{
|
|
|
|
|
unsigned line = 0, column = 0;
|
|
|
|
|
getTokenEndPosition(tokenIndex, &line, &column);
|
|
|
|
|
return line;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned FindCdbBreakpoint::endLine(AST *ast) const
|
|
|
|
|
{
|
|
|
|
|
if (ast)
|
|
|
|
|
return endLine(ast->lastToken() - 1);
|
|
|
|
|
else
|
2011-05-09 15:27:22 +02:00
|
|
|
return NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::preVisit(AST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_breakpointLine)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (endLine(ast) < m_initialLine)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(FunctionDefinitionAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (ast->function_body) {
|
|
|
|
|
if (CompoundStatementAST *stmt = ast->function_body->asCompoundStatement()) {
|
|
|
|
|
accept(stmt);
|
|
|
|
|
if (!m_breakpointLine)
|
2011-07-25 15:01:19 +02:00
|
|
|
foundLine(ast->function_body->firstToken());
|
2011-05-09 13:25:32 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(QtMemberDeclarationAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(CompoundStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement_list);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(DeclarationStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
2011-05-09 15:27:22 +02:00
|
|
|
return m_breakpointLine == NO_LINE_FOUND;
|
2011-05-09 13:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(DoStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
2011-05-09 15:27:22 +02:00
|
|
|
if (m_breakpointLine == NO_LINE_FOUND)
|
2011-05-09 13:25:32 +02:00
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ExpressionStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (ast->expression)
|
|
|
|
|
foundLine(ast->semicolon_token);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ForeachStatementAST *ast)
|
2012-02-19 16:33:25 +04:00
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(RangeBasedForStatementAST *ast)
|
2011-05-09 13:25:32 +02:00
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ForStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(IfStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
accept(ast->else_statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(LabeledStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(BreakStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ContinueStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(GotoStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ReturnStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
foundLine(ast->lastToken() - 1);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(SwitchStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(TryBlockStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(CatchClauseAST *ast)
|
|
|
|
|
{
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(WhileStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ObjCFastEnumerationAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FindCdbBreakpoint::visit(ObjCSynchronizedStatementAST *ast)
|
|
|
|
|
{
|
|
|
|
|
if (m_initialLine <= endLine(ast->rparen_token))
|
|
|
|
|
foundLine(ast->rparen_token);
|
|
|
|
|
|
|
|
|
|
accept(ast->statement);
|
|
|
|
|
return false;
|
|
|
|
|
}
|