forked from qt-creator/qt-creator
Change-Id: I4231d0b98fef2f2f3f1ebdf74c7dfc48ec879e83 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
328 lines
12 KiB
C++
328 lines
12 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing
|
|
**
|
|
** 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
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
|
** use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "functionutils.h"
|
|
|
|
#include "typehierarchybuilder.h"
|
|
|
|
#include <cplusplus/CppDocument.h>
|
|
#include <cplusplus/LookupContext.h>
|
|
#include <cplusplus/Symbols.h>
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QList>
|
|
|
|
using namespace CPlusPlus;
|
|
using namespace CppTools;
|
|
|
|
enum VirtualType { Virtual, PureVirtual };
|
|
|
|
static bool isVirtualFunction_helper(const Function *function,
|
|
const LookupContext &context,
|
|
VirtualType virtualType,
|
|
const Function **firstVirtual)
|
|
{
|
|
enum { Unknown, False, True } res = Unknown;
|
|
|
|
if (firstVirtual)
|
|
*firstVirtual = 0;
|
|
|
|
if (!function)
|
|
return false;
|
|
|
|
if (virtualType == PureVirtual)
|
|
res = function->isPureVirtual() ? True : False;
|
|
|
|
if (function->isVirtual()) {
|
|
if (firstVirtual)
|
|
*firstVirtual = function;
|
|
if (res == Unknown)
|
|
res = True;
|
|
}
|
|
|
|
if (!firstVirtual && res != Unknown)
|
|
return res == True;
|
|
|
|
QList<LookupItem> results = context.lookup(function->name(), function->enclosingScope());
|
|
if (!results.isEmpty()) {
|
|
const bool isDestructor = function->name()->isDestructorNameId();
|
|
foreach (const LookupItem &item, results) {
|
|
if (Symbol *symbol = item.declaration()) {
|
|
if (Function *functionType = symbol->type()->asFunctionType()) {
|
|
if (functionType->name()->isDestructorNameId() != isDestructor)
|
|
continue;
|
|
if (functionType == function) // already tested
|
|
continue;
|
|
if (!function->isSignatureEqualTo(functionType))
|
|
continue;
|
|
if (functionType->isFinal())
|
|
return res == True;
|
|
if (functionType->isVirtual()) {
|
|
if (!firstVirtual)
|
|
return true;
|
|
if (res == Unknown)
|
|
res = True;
|
|
*firstVirtual = functionType;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return res == True;
|
|
}
|
|
|
|
bool FunctionUtils::isVirtualFunction(const Function *function,
|
|
const LookupContext &context,
|
|
const Function **firstVirtual)
|
|
{
|
|
return isVirtualFunction_helper(function, context, Virtual, firstVirtual);
|
|
}
|
|
|
|
bool FunctionUtils::isPureVirtualFunction(const Function *function,
|
|
const LookupContext &context,
|
|
const Function **firstVirtual)
|
|
{
|
|
return isVirtualFunction_helper(function, context, PureVirtual, firstVirtual);
|
|
}
|
|
|
|
QList<Function *> FunctionUtils::overrides(Function *function, Class *functionsClass,
|
|
Class *staticClass, const Snapshot &snapshot)
|
|
{
|
|
QList<Function *> result;
|
|
QTC_ASSERT(function && functionsClass && staticClass, return result);
|
|
|
|
FullySpecifiedType referenceType = function->type();
|
|
const Name *referenceName = function->name();
|
|
QTC_ASSERT(referenceName && referenceType.isValid(), return result);
|
|
|
|
// Find overrides
|
|
TypeHierarchyBuilder builder(staticClass, snapshot);
|
|
const TypeHierarchy &staticClassHierarchy = builder.buildDerivedTypeHierarchy();
|
|
|
|
QList<TypeHierarchy> l;
|
|
if (functionsClass != staticClass)
|
|
l.append(TypeHierarchy(functionsClass));
|
|
l.append(staticClassHierarchy);
|
|
|
|
while (!l.isEmpty()) {
|
|
// Add derived
|
|
const TypeHierarchy hierarchy = l.takeFirst();
|
|
QTC_ASSERT(hierarchy.symbol(), continue);
|
|
Class *c = hierarchy.symbol()->asClass();
|
|
QTC_ASSERT(c, continue);
|
|
|
|
foreach (const TypeHierarchy &t, hierarchy.hierarchy()) {
|
|
if (!l.contains(t))
|
|
l << t;
|
|
}
|
|
|
|
// Check member functions
|
|
for (int i = 0, total = c->memberCount(); i < total; ++i) {
|
|
Symbol *candidate = c->memberAt(i);
|
|
const Name *candidateName = candidate->name();
|
|
Function *candidateFunc = candidate->type()->asFunctionType();
|
|
if (!candidateName || !candidateFunc)
|
|
continue;
|
|
if (candidateName->match(referenceName)
|
|
&& candidateFunc->isSignatureEqualTo(function)) {
|
|
result << candidateFunc;
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
#ifdef WITH_TESTS
|
|
#include "cpptoolsplugin.h"
|
|
|
|
#include <QTest>
|
|
|
|
namespace CppTools {
|
|
namespace Internal {
|
|
|
|
enum Virtuality
|
|
{
|
|
NotVirtual,
|
|
Virtual,
|
|
PureVirtual
|
|
};
|
|
typedef QList<Virtuality> VirtualityList;
|
|
} // Internal namespace
|
|
} // CppTools namespace
|
|
|
|
Q_DECLARE_METATYPE(CppTools::Internal::Virtuality)
|
|
Q_DECLARE_METATYPE(CppTools::Internal::VirtualityList)
|
|
Q_DECLARE_METATYPE(QList<int>)
|
|
|
|
namespace CppTools {
|
|
namespace Internal {
|
|
|
|
void CppToolsPlugin::test_functionutils_virtualFunctions()
|
|
{
|
|
// Create and parse document
|
|
QFETCH(QByteArray, source);
|
|
QFETCH(VirtualityList, virtualityList);
|
|
QFETCH(QList<int>, firstVirtualList);
|
|
Document::Ptr document = Document::create(QLatin1String("virtuals"));
|
|
document->setUtf8Source(source);
|
|
document->check(); // calls parse();
|
|
QCOMPARE(document->diagnosticMessages().size(), 0);
|
|
QVERIFY(document->translationUnit()->ast());
|
|
QList<const Function *> allFunctions;
|
|
const Function *firstVirtual = 0;
|
|
|
|
// Iterate through Function symbols
|
|
Snapshot snapshot;
|
|
snapshot.insert(document);
|
|
const LookupContext context(document, snapshot);
|
|
Control *control = document->translationUnit()->control();
|
|
Symbol **end = control->lastSymbol();
|
|
for (Symbol **it = control->firstSymbol(); it != end; ++it) {
|
|
if (const Function *function = (*it)->asFunction()) {
|
|
allFunctions.append(function);
|
|
QTC_ASSERT(!virtualityList.isEmpty(), return);
|
|
Virtuality virtuality = virtualityList.takeFirst();
|
|
QTC_ASSERT(!firstVirtualList.isEmpty(), return);
|
|
int firstVirtualIndex = firstVirtualList.takeFirst();
|
|
bool isVirtual = FunctionUtils::isVirtualFunction(function, context, &firstVirtual);
|
|
bool isPureVirtual = FunctionUtils::isPureVirtualFunction(function, context,
|
|
&firstVirtual);
|
|
|
|
// Test for regressions introduced by firstVirtual
|
|
QCOMPARE(FunctionUtils::isVirtualFunction(function, context), isVirtual);
|
|
QCOMPARE(FunctionUtils::isPureVirtualFunction(function, context), isPureVirtual);
|
|
if (isVirtual) {
|
|
if (isPureVirtual)
|
|
QCOMPARE(virtuality, PureVirtual);
|
|
else
|
|
QCOMPARE(virtuality, Virtual);
|
|
} else {
|
|
QEXPECT_FAIL("virtual-dtor-dtor", "Not implemented", Abort);
|
|
if (allFunctions.size() == 3)
|
|
QEXPECT_FAIL("dtor-virtual-dtor-dtor", "Not implemented", Abort);
|
|
QCOMPARE(virtuality, NotVirtual);
|
|
}
|
|
if (firstVirtualIndex == -1)
|
|
QVERIFY(!firstVirtual);
|
|
else
|
|
QCOMPARE(firstVirtual, allFunctions.at(firstVirtualIndex));
|
|
}
|
|
}
|
|
QVERIFY(virtualityList.isEmpty());
|
|
QVERIFY(firstVirtualList.isEmpty());
|
|
}
|
|
|
|
void CppToolsPlugin::test_functionutils_virtualFunctions_data()
|
|
{
|
|
typedef QByteArray _;
|
|
QTest::addColumn<QByteArray>("source");
|
|
QTest::addColumn<VirtualityList>("virtualityList");
|
|
QTest::addColumn<QList<int> >("firstVirtualList");
|
|
|
|
QTest::newRow("none")
|
|
<< _("struct None { void foo() {} };\n")
|
|
<< (VirtualityList() << NotVirtual)
|
|
<< (QList<int>() << -1);
|
|
|
|
QTest::newRow("single-virtual")
|
|
<< _("struct V { virtual void foo() {} };\n")
|
|
<< (VirtualityList() << Virtual)
|
|
<< (QList<int>() << 0);
|
|
|
|
QTest::newRow("single-pure-virtual")
|
|
<< _("struct PV { virtual void foo() = 0; };\n")
|
|
<< (VirtualityList() << PureVirtual)
|
|
<< (QList<int>() << 0);
|
|
|
|
QTest::newRow("virtual-derived-with-specifier")
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
"struct Derived : Base { virtual void foo() {} };\n")
|
|
<< (VirtualityList() << Virtual << Virtual)
|
|
<< (QList<int>() << 0 << 0);
|
|
|
|
QTest::newRow("virtual-derived-implicit")
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
"struct Derived : Base { void foo() {} };\n")
|
|
<< (VirtualityList() << Virtual << Virtual)
|
|
<< (QList<int>() << 0 << 0);
|
|
|
|
QTest::newRow("not-virtual-then-virtual")
|
|
<< _("struct Base { void foo() {} };\n"
|
|
"struct Derived : Base { virtual void foo() {} };\n")
|
|
<< (VirtualityList() << NotVirtual << Virtual)
|
|
<< (QList<int>() << -1 << 1);
|
|
|
|
QTest::newRow("virtual-final-not-virtual")
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
"struct Derived : Base { void foo() final {} };\n"
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
<< (VirtualityList() << Virtual << Virtual << NotVirtual)
|
|
<< (QList<int>() << 0 << 0 << -1);
|
|
|
|
QTest::newRow("virtual-then-pure")
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
"struct Derived : Base { virtual void foo() = 0; };\n"
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
<< (VirtualityList() << Virtual << PureVirtual << Virtual)
|
|
<< (QList<int>() << 0 << 0 << 0);
|
|
|
|
QTest::newRow("virtual-virtual-final-not-virtual")
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
"struct Derived : Base { virtual void foo() final {} };\n"
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
<< (VirtualityList() << Virtual << Virtual << NotVirtual)
|
|
<< (QList<int>() << 0 << 0 << -1);
|
|
|
|
QTest::newRow("ctor-virtual-dtor")
|
|
<< _("struct Base { Base() {} virtual ~Base() {} };\n")
|
|
<< (VirtualityList() << NotVirtual << Virtual)
|
|
<< (QList<int>() << -1 << 1);
|
|
|
|
QTest::newRow("virtual-dtor-dtor")
|
|
<< _("struct Base { virtual ~Base() {} };\n"
|
|
"struct Derived : Base { ~Derived() {} };\n")
|
|
<< (VirtualityList() << Virtual << Virtual)
|
|
<< (QList<int>() << 0 << 0);
|
|
|
|
QTest::newRow("dtor-virtual-dtor-dtor")
|
|
<< _("struct Base { ~Base() {} };\n"
|
|
"struct Derived : Base { virtual ~Derived() {} };\n"
|
|
"struct Derived2 : Derived { ~Derived2() {} };\n")
|
|
<< (VirtualityList() << NotVirtual << Virtual << Virtual)
|
|
<< (QList<int>() << -1 << 1 << 1);
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace CppTools
|
|
|
|
#endif
|