Files
qt-creator/src/libs/3rdparty/cplusplus/Names.h

317 lines
8.6 KiB
C
Raw Normal View History

2008-12-02 12:01:29 +01:00
// Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#pragma once
2008-12-02 12:01:29 +01:00
#include "CPlusPlusForwardDeclarations.h"
#include "Name.h"
#include "FullySpecifiedType.h"
2009-12-01 12:46:15 +01:00
#include <vector>
2008-12-02 12:01:29 +01:00
namespace CPlusPlus {
2008-12-02 12:01:29 +01:00
class CPLUSPLUS_EXPORT QualifiedNameId: public Name
{
public:
QualifiedNameId(const Name *base, const Name *name)
: _base(base), _name(name) {}
2009-12-01 14:38:42 +01:00
2008-12-02 12:01:29 +01:00
virtual ~QualifiedNameId();
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
const Name *base() const;
const Name *name() const;
2008-12-02 12:01:29 +01:00
virtual const QualifiedNameId *asQualifiedNameId() const
{ return this; }
2008-12-02 12:01:29 +01:00
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
2008-12-02 12:01:29 +01:00
private:
const Name *_base;
const Name *_name;
2008-12-02 12:01:29 +01:00
};
class CPLUSPLUS_EXPORT DestructorNameId: public Name
{
public:
DestructorNameId(const Name *name);
2008-12-02 12:01:29 +01:00
virtual ~DestructorNameId();
virtual const Name *name() const;
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
2008-12-02 12:01:29 +01:00
virtual const DestructorNameId *asDestructorNameId() const
{ return this; }
2008-12-02 12:01:29 +01:00
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
2008-12-02 12:01:29 +01:00
private:
const Name *_name;
2008-12-02 12:01:29 +01:00
};
class CPLUSPLUS_EXPORT TemplateArgument
{
public:
TemplateArgument()
: _expressionTy(nullptr)
, _numericLiteral(nullptr)
{}
TemplateArgument(const FullySpecifiedType &type, const NumericLiteral *numericLiteral = nullptr)
: _expressionTy(type)
, _numericLiteral(numericLiteral)
{}
bool hasType() const { return _expressionTy.isValid(); }
bool hasNumericLiteral() const { return _numericLiteral != nullptr; }
const FullySpecifiedType &type() const { return _expressionTy; }
FullySpecifiedType &type() { return _expressionTy; }
const NumericLiteral *numericLiteral() const { return _numericLiteral; }
bool operator==(const TemplateArgument &other) const
{
return _expressionTy == other._expressionTy && _numericLiteral == other._numericLiteral;
}
bool operator!=(const TemplateArgument &other) const
{
return _expressionTy != other._expressionTy || _numericLiteral != other._numericLiteral;
}
bool operator<(const TemplateArgument &other) const
{
if (_expressionTy == other._expressionTy) {
return _numericLiteral < other._numericLiteral;
}
return _expressionTy < other._expressionTy;
}
bool match(const TemplateArgument &otherTy, Matcher *matcher = nullptr) const;
private:
FullySpecifiedType _expressionTy;
const NumericLiteral *_numericLiteral = nullptr;
};
2008-12-02 12:01:29 +01:00
class CPLUSPLUS_EXPORT TemplateNameId: public Name
{
public:
template <typename Iterator>
TemplateNameId(const Identifier *identifier, bool isSpecialization, Iterator first,
Iterator last)
: _identifier(identifier)
, _templateArguments(first, last)
, _isSpecialization(isSpecialization) {}
2009-12-01 14:38:42 +01:00
2008-12-02 12:01:29 +01:00
virtual ~TemplateNameId();
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
2008-12-02 12:01:29 +01:00
// ### find a better name
int templateArgumentCount() const;
const TemplateArgument &templateArgumentAt(int index) const;
2008-12-02 12:01:29 +01:00
virtual const TemplateNameId *asTemplateNameId() const
{ return this; }
typedef std::vector<TemplateArgument>::const_iterator TemplateArgumentIterator;
2009-12-01 14:38:42 +01:00
TemplateArgumentIterator firstTemplateArgument() const { return _templateArguments.begin(); }
TemplateArgumentIterator lastTemplateArgument() const { return _templateArguments.end(); }
bool isSpecialization() const { return _isSpecialization; }
// Comparator needed to distinguish between two different TemplateNameId(e.g.:used in std::map)
struct Compare {
bool operator()(const TemplateNameId *name, const TemplateNameId *other) const;
};
2009-12-01 14:38:42 +01:00
2008-12-02 12:01:29 +01:00
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
2008-12-02 12:01:29 +01:00
private:
2009-12-01 11:33:13 +01:00
const Identifier *_identifier;
std::vector<TemplateArgument> _templateArguments;
// now TemplateNameId can be a specialization or an instantiation
bool _isSpecialization;
2008-12-02 12:01:29 +01:00
};
class CPLUSPLUS_EXPORT OperatorNameId: public Name
{
public:
/*
new delete new[] delete[]
+ - * / % ^ & | ~
! = < > += -= *= /= %=
^= &= |= << >> >>= <<= == !=
<= >= && || ++ -- , ->* ->
() []
*/
enum Kind {
InvalidOp,
NewOp,
DeleteOp,
NewArrayOp,
DeleteArrayOp,
PlusOp,
MinusOp,
StarOp,
SlashOp,
PercentOp,
CaretOp,
AmpOp,
PipeOp,
TildeOp,
ExclaimOp,
EqualOp,
LessOp,
GreaterOp,
PlusEqualOp,
MinusEqualOp,
StarEqualOp,
SlashEqualOp,
PercentEqualOp,
CaretEqualOp,
AmpEqualOp,
PipeEqualOp,
LessLessOp,
GreaterGreaterOp,
LessLessEqualOp,
GreaterGreaterEqualOp,
EqualEqualOp,
ExclaimEqualOp,
LessEqualOp,
GreaterEqualOp,
AmpAmpOp,
PipePipeOp,
PlusPlusOp,
MinusMinusOp,
CommaOp,
ArrowStarOp,
ArrowOp,
FunctionCallOp,
ArrayAccessOp
};
public:
OperatorNameId(Kind kind);
2008-12-02 12:01:29 +01:00
virtual ~OperatorNameId();
Kind kind() const;
2008-12-02 12:01:29 +01:00
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
2008-12-02 12:01:29 +01:00
virtual const OperatorNameId *asOperatorNameId() const
{ return this; }
2008-12-02 12:01:29 +01:00
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
2008-12-02 12:01:29 +01:00
private:
Kind _kind;
2008-12-02 12:01:29 +01:00
};
class CPLUSPLUS_EXPORT ConversionNameId: public Name
{
public:
ConversionNameId(const FullySpecifiedType &type);
2008-12-02 12:01:29 +01:00
virtual ~ConversionNameId();
FullySpecifiedType type() const;
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
2008-12-02 12:01:29 +01:00
virtual const ConversionNameId *asConversionNameId() const
{ return this; }
2008-12-02 12:01:29 +01:00
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
2008-12-02 12:01:29 +01:00
private:
FullySpecifiedType _type;
};
class CPLUSPLUS_EXPORT SelectorNameId: public Name
{
public:
template <typename Iterator>
SelectorNameId(Iterator first, Iterator last, bool hasArguments)
2009-12-01 14:38:42 +01:00
: _names(first, last), _hasArguments(hasArguments) {}
virtual ~SelectorNameId();
2009-12-01 11:33:13 +01:00
virtual const Identifier *identifier() const;
int nameCount() const;
const Name *nameAt(int index) const;
bool hasArguments() const;
virtual const SelectorNameId *asSelectorNameId() const
{ return this; }
2009-12-01 14:38:42 +01:00
typedef std::vector<const Name *>::const_iterator NameIterator;
NameIterator firstName() const { return _names.begin(); }
NameIterator lastName() const { return _names.end(); }
protected:
2009-12-01 12:46:15 +01:00
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
private:
2009-12-01 12:46:15 +01:00
std::vector<const Name *> _names;
bool _hasArguments;
};
class CPLUSPLUS_EXPORT AnonymousNameId: public Name
{
public:
AnonymousNameId(int classTokenIndex);
virtual ~AnonymousNameId();
int classTokenIndex() const;
virtual const Identifier *identifier() const;
virtual const AnonymousNameId *asAnonymousNameId() const
{ return this; }
protected:
virtual void accept0(NameVisitor *visitor) const;
virtual bool match0(const Name *otherName, Matcher *matcher) const;
private:
int _classTokenIndex;
};
} // namespace CPlusPlus