| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- /****************************************************************************
- **
- ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
- ** Contact: http://www.qt-project.org/legal
- **
- ** 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 Digia. For licensing terms and
- ** conditions see http://www.qt.io/licensing. 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, Digia gives you certain additional
- ** rights. These rights are described in the Digia Qt 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;
- }
|