forked from qt-creator/qt-creator
Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
372 lines
9.7 KiB
C++
372 lines
9.7 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 "Matcher.h"
|
|
#include "CoreTypes.h"
|
|
#include "Symbols.h"
|
|
#include "Names.h"
|
|
#include "Literals.h"
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
static Matcher *defaultMatcher()
|
|
{
|
|
static Matcher matcher;
|
|
return &matcher;
|
|
}
|
|
|
|
Matcher::Matcher()
|
|
{
|
|
}
|
|
|
|
Matcher::~Matcher()
|
|
{
|
|
}
|
|
|
|
bool Matcher::match(const Type *type, const Type *otherType, Matcher *matcher)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
if (!type || !otherType)
|
|
return false;
|
|
|
|
return type->match0(otherType, matcher ? matcher : defaultMatcher());
|
|
}
|
|
|
|
bool Matcher::match(const Name *name, const Name *otherName, Matcher *matcher)
|
|
{
|
|
if (name == otherName)
|
|
return true;
|
|
if (!name || !otherName)
|
|
return false;
|
|
|
|
return name->match0(otherName, matcher ? matcher : defaultMatcher());
|
|
}
|
|
|
|
bool Matcher::match(const UndefinedType *, const UndefinedType *)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const VoidType *, const VoidType *)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const IntegerType *type, const IntegerType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (type->kind() != otherType->kind())
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const FloatType *type, const FloatType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (type->kind() != otherType->kind())
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const PointerToMemberType *type, const PointerToMemberType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->memberName(), otherType->memberName(), this))
|
|
return false;
|
|
|
|
else if (! type->elementType().match(otherType->elementType(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const PointerType *type, const PointerType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! type->elementType().match(otherType->elementType(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ReferenceType *type, const ReferenceType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (type->isRvalueReference() != otherType->isRvalueReference())
|
|
return false;
|
|
|
|
else if (! type->elementType().match(otherType->elementType(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ArrayType *type, const ArrayType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (type->size() != otherType->size())
|
|
return false;
|
|
|
|
else if (! type->elementType().match(otherType->elementType(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const NamedType *type, const NamedType *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
const Name *name = type->name();
|
|
if (const QualifiedNameId *q = name->asQualifiedNameId())
|
|
name = q->name();
|
|
|
|
const Name *otherName = otherType->name();
|
|
if (const QualifiedNameId *q = otherName->asQualifiedNameId())
|
|
otherName = q->name();
|
|
|
|
if (! Matcher::match(name, otherName, this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Function *type, const Function *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! type->isSignatureEqualTo(otherType, this))
|
|
return false;
|
|
|
|
else if (! type->returnType().match(otherType->returnType(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Enum *type, const Enum *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Namespace *type, const Namespace *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Template *type, const Template *otherType)
|
|
{
|
|
if (type != otherType)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ForwardClassDeclaration *type, const ForwardClassDeclaration *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->name(), otherType->name(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Class *type, const Class *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ObjCClass *type, const ObjCClass *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ObjCProtocol *type, const ObjCProtocol *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ObjCForwardClassDeclaration *type, const ObjCForwardClassDeclaration *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->name(), otherType->name(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ObjCForwardProtocolDeclaration *type, const ObjCForwardProtocolDeclaration *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->name(), otherType->name(), this))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const ObjCMethod *type, const ObjCMethod *otherType)
|
|
{
|
|
if (type == otherType)
|
|
return true;
|
|
|
|
else if (! Matcher::match(type->unqualifiedName(), otherType->unqualifiedName(), this))
|
|
return false;
|
|
|
|
else if (type->argumentCount() != otherType->argumentCount())
|
|
return false;
|
|
|
|
else if (! type->returnType().match(otherType->returnType(), this))
|
|
return false;
|
|
|
|
for (unsigned i = 0; i < type->argumentCount(); ++i) {
|
|
Symbol *l = type->argumentAt(i);
|
|
Symbol *r = otherType->argumentAt(i);
|
|
if (! l->type().match(r->type(), this))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const Identifier *name, const Identifier *otherName)
|
|
{
|
|
if (name == otherName)
|
|
return true;
|
|
return name->equalTo(otherName);
|
|
}
|
|
|
|
bool Matcher::match(const AnonymousNameId *name, const AnonymousNameId *otherName)
|
|
{
|
|
return otherName && name->classTokenIndex() == otherName->classTokenIndex();
|
|
}
|
|
|
|
bool Matcher::match(const TemplateNameId *name, const TemplateNameId *otherName)
|
|
{
|
|
const Identifier *l = name->identifier();
|
|
const Identifier *r = otherName->identifier();
|
|
if (! match(l, r))
|
|
return false;
|
|
if (name->templateArgumentCount() != otherName->templateArgumentCount())
|
|
return false;
|
|
for (unsigned i = 0, ei = name->templateArgumentCount(); i != ei; ++i) {
|
|
const FullySpecifiedType &l = name->templateArgumentAt(i);
|
|
const FullySpecifiedType &r = otherName->templateArgumentAt(i);
|
|
if (! l.match(r, this))
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Matcher::match(const DestructorNameId *name, const DestructorNameId *otherName)
|
|
{
|
|
return Matcher::match(name->name(), otherName->name(), this);
|
|
}
|
|
|
|
bool Matcher::match(const OperatorNameId *name, const OperatorNameId *otherName)
|
|
{
|
|
return name->kind() == otherName->kind();
|
|
}
|
|
|
|
bool Matcher::match(const ConversionNameId *name, const ConversionNameId *otherName)
|
|
{
|
|
return name->type().match(otherName->type(), this);
|
|
}
|
|
|
|
bool Matcher::match(const QualifiedNameId *name, const QualifiedNameId *otherName)
|
|
{
|
|
if (Matcher::match(name->base(), otherName->base(), this))
|
|
return Matcher::match(name->name(), otherName->name(), this);
|
|
return false;
|
|
}
|
|
|
|
bool Matcher::match(const SelectorNameId *name, const SelectorNameId *otherName)
|
|
{
|
|
const unsigned nc = name->nameCount();
|
|
if (name->hasArguments() != otherName->hasArguments() || nc != otherName->nameCount())
|
|
return false;
|
|
for (unsigned i = 0; i < nc; ++i)
|
|
if (! Matcher::match(name->nameAt(i), otherName->nameAt(i), this))
|
|
return false;
|
|
return true;
|
|
}
|