2014-06-09 22:02:57 -04:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-06-09 22:02:57 -04:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
**
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2014-06-09 22:02:57 -04:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2014-06-09 22:02:57 -04:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "cppcanonicalsymbol.h"
|
|
|
|
|
|
|
|
#include <cpptools/cpptoolsreuse.h>
|
2014-06-13 14:16:14 -04:00
|
|
|
|
2014-06-09 22:02:57 -04:00
|
|
|
#include <cplusplus/ExpressionUnderCursor.h>
|
|
|
|
|
2017-09-21 12:35:24 +02:00
|
|
|
#include <utils/textutils.h>
|
|
|
|
|
2014-06-09 22:02:57 -04:00
|
|
|
#include <QTextCursor>
|
2014-06-13 14:16:14 -04:00
|
|
|
#include <QTextDocument>
|
2014-06-09 22:02:57 -04:00
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
2017-05-23 15:38:16 +02:00
|
|
|
namespace CppTools {
|
2014-06-09 22:02:57 -04:00
|
|
|
|
2014-06-13 14:16:14 -04:00
|
|
|
CanonicalSymbol::CanonicalSymbol(const Document::Ptr &document,
|
2014-06-09 22:02:57 -04:00
|
|
|
const Snapshot &snapshot)
|
2014-06-13 14:16:14 -04:00
|
|
|
: m_document(document),
|
2014-06-09 22:02:57 -04:00
|
|
|
m_snapshot(snapshot)
|
|
|
|
{
|
|
|
|
m_typeOfExpression.init(document, snapshot);
|
|
|
|
m_typeOfExpression.setExpandTemplates(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const LookupContext &CanonicalSymbol::context() const
|
|
|
|
{
|
|
|
|
return m_typeOfExpression.context();
|
|
|
|
}
|
|
|
|
|
|
|
|
Scope *CanonicalSymbol::getScopeAndExpression(const QTextCursor &cursor, QString *code)
|
|
|
|
{
|
|
|
|
if (!m_document)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
QTextCursor tc = cursor;
|
|
|
|
int line, column;
|
2017-09-21 12:35:24 +02:00
|
|
|
Utils::Text::convertPosition(cursor.document(), tc.position(), &line, &column);
|
2014-06-09 22:02:57 -04:00
|
|
|
++column; // 1-based line and 1-based column
|
|
|
|
|
|
|
|
int pos = tc.position();
|
2014-06-13 14:16:14 -04:00
|
|
|
QTextDocument *textDocument = cursor.document();
|
2014-06-09 22:02:57 -04:00
|
|
|
if (!CppTools::isValidIdentifierChar(textDocument->characterAt(pos)))
|
|
|
|
if (!(pos > 0 && CppTools::isValidIdentifierChar(textDocument->characterAt(pos - 1))))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (CppTools::isValidIdentifierChar(textDocument->characterAt(pos)))
|
|
|
|
++pos;
|
|
|
|
tc.setPosition(pos);
|
|
|
|
|
2015-02-26 09:14:38 +02:00
|
|
|
ExpressionUnderCursor expressionUnderCursor(m_document->languageFeatures());
|
2014-06-09 22:02:57 -04:00
|
|
|
*code = expressionUnderCursor(tc);
|
|
|
|
return m_document->scopeAt(line, column);
|
|
|
|
}
|
|
|
|
|
|
|
|
Symbol *CanonicalSymbol::operator()(const QTextCursor &cursor)
|
|
|
|
{
|
|
|
|
QString code;
|
|
|
|
|
|
|
|
if (Scope *scope = getScopeAndExpression(cursor, &code))
|
|
|
|
return operator()(scope, code);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Symbol *CanonicalSymbol::operator()(Scope *scope, const QString &code)
|
|
|
|
{
|
|
|
|
return canonicalSymbol(scope, code, m_typeOfExpression);
|
|
|
|
}
|
|
|
|
|
|
|
|
Symbol *CanonicalSymbol::canonicalSymbol(Scope *scope, const QString &code,
|
|
|
|
TypeOfExpression &typeOfExpression)
|
|
|
|
{
|
|
|
|
const QList<LookupItem> results =
|
|
|
|
typeOfExpression(code.toUtf8(), scope, TypeOfExpression::Preprocess);
|
|
|
|
|
|
|
|
for (int i = results.size() - 1; i != -1; --i) {
|
|
|
|
const LookupItem &r = results.at(i);
|
|
|
|
Symbol *decl = r.declaration();
|
|
|
|
|
|
|
|
if (!(decl && decl->enclosingScope()))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (Class *classScope = r.declaration()->enclosingScope()->asClass()) {
|
|
|
|
const Identifier *declId = decl->identifier();
|
|
|
|
const Identifier *classId = classScope->identifier();
|
|
|
|
|
|
|
|
if (classId && classId->match(declId))
|
|
|
|
continue; // skip it, it's a ctor or a dtor.
|
|
|
|
|
|
|
|
if (Function *funTy = r.declaration()->type()->asFunctionType()) {
|
|
|
|
if (funTy->isVirtual())
|
|
|
|
return r.declaration();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < results.size(); ++i) {
|
|
|
|
const LookupItem &r = results.at(i);
|
|
|
|
|
|
|
|
if (r.declaration())
|
|
|
|
return r.declaration();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace CppEditor
|