forked from qt-creator/qt-creator
		
	
		
			
				
	
	
		
			301 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			301 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /**************************************************************************
 | |
| **
 | |
| ** This file is part of Qt Creator
 | |
| **
 | |
| ** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
 | |
| **
 | |
| ** Contact: Nokia Corporation (qt-info@nokia.com)
 | |
| **
 | |
| ** Commercial Usage
 | |
| **
 | |
| ** Licensees holding valid Qt Commercial licenses may use this file in
 | |
| ** accordance with the Qt Commercial License Agreement provided with the
 | |
| ** Software or, alternatively, in accordance with the terms contained in
 | |
| ** a written agreement between you and Nokia.
 | |
| **
 | |
| ** 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 as published by the Free Software
 | |
| ** Foundation and appearing in the file LICENSE.LGPL included in the
 | |
| ** packaging of this file.  Please review the following information to
 | |
| ** ensure the GNU Lesser General Public License version 2.1 requirements
 | |
| ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | |
| **
 | |
| ** If you are unsure which license is appropriate for your use, please
 | |
| ** contact the sales department at http://qt.nokia.com/contact.
 | |
| **
 | |
| **************************************************************************/
 | |
| // 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.
 | |
| 
 | |
| #ifndef CPLUSPLUS_BIND_H
 | |
| #define CPLUSPLUS_BIND_H
 | |
| 
 | |
| #include "ASTVisitor.h"
 | |
| #include "FullySpecifiedType.h"
 | |
| 
 | |
| namespace CPlusPlus {
 | |
| 
 | |
| class CPLUSPLUS_EXPORT Bind: protected ASTVisitor
 | |
| {
 | |
| public:
 | |
|     Bind(TranslationUnit *unit);
 | |
| 
 | |
|     void operator()(TranslationUnitAST *ast, Namespace *globalNamespace);
 | |
|     void operator()(DeclarationAST *ast, Scope *scope);
 | |
|     void operator()(ExpressionAST *ast, Scope *scope);
 | |
| 
 | |
|     bool skipFunctionBodies() const;
 | |
|     void setSkipFunctionBodies(bool skipFunctionBodies);
 | |
| 
 | |
| protected:
 | |
|     using ASTVisitor::translationUnit;
 | |
| 
 | |
|     static int visibilityForAccessSpecifier(int tokenKind);
 | |
|     static int visibilityForClassKey(int tokenKind);
 | |
| 
 | |
|     void setDeclSpecifiers(Symbol *symbol, const FullySpecifiedType &declSpecifiers);
 | |
| 
 | |
|     typedef FullySpecifiedType ExpressionTy;
 | |
|     ExpressionTy expression(ExpressionAST *ast);
 | |
| 
 | |
|     const Name *name(NameAST *ast);
 | |
| 
 | |
|     void statement(StatementAST *ast);
 | |
|     void declaration(DeclarationAST *ast);
 | |
| 
 | |
|     FullySpecifiedType specifier(SpecifierAST *ast, const FullySpecifiedType &init);
 | |
|     FullySpecifiedType ptrOperator(PtrOperatorAST *ast, const FullySpecifiedType &init);
 | |
|     FullySpecifiedType coreDeclarator(CoreDeclaratorAST *ast, const FullySpecifiedType &init);
 | |
|     FullySpecifiedType postfixDeclarator(PostfixDeclaratorAST *ast, const FullySpecifiedType &init);
 | |
| 
 | |
|     Scope *switchScope(Scope *scope);
 | |
|     int switchVisibility(int visibility);
 | |
|     int switchMethodKey(int methodKey);
 | |
| 
 | |
|     unsigned calculateScopeStart(ObjCClassDeclarationAST *ast) const;
 | |
|     unsigned calculateScopeStart(ObjCProtocolDeclarationAST *ast) const;
 | |
| 
 | |
|     const Name *objCSelectorArgument(ObjCSelectorArgumentAST *ast, bool *hasArg);
 | |
|     void attribute(AttributeAST *ast);
 | |
|     FullySpecifiedType declarator(DeclaratorAST *ast, const FullySpecifiedType &init, DeclaratorIdAST **declaratorId);
 | |
|     void qtPropertyDeclarationItem(QtPropertyDeclarationItemAST *ast);
 | |
|     void qtInterfaceName(QtInterfaceNameAST *ast);
 | |
|     void baseSpecifier(BaseSpecifierAST *ast, unsigned colon_token, Class *klass);
 | |
|     void ctorInitializer(CtorInitializerAST *ast, Function *fun);
 | |
|     void enumerator(EnumeratorAST *ast, Enum *symbol);
 | |
|     FullySpecifiedType exceptionSpecification(ExceptionSpecificationAST *ast, const FullySpecifiedType &init);
 | |
|     void memInitializer(MemInitializerAST *ast, Function *fun);
 | |
|     const Name *nestedNameSpecifier(NestedNameSpecifierAST *ast);
 | |
|     void newPlacement(NewPlacementAST *ast);
 | |
|     FullySpecifiedType newArrayDeclarator(NewArrayDeclaratorAST *ast, const FullySpecifiedType &init);
 | |
|     void newInitializer(NewInitializerAST *ast);
 | |
|     FullySpecifiedType newTypeId(NewTypeIdAST *ast);
 | |
|     int cppOperator(OperatorAST *ast);
 | |
|     void parameterDeclarationClause(ParameterDeclarationClauseAST *ast, unsigned lparen_token, Function *fun);
 | |
|     void translationUnit(TranslationUnitAST *ast);
 | |
|     void objCProtocolRefs(ObjCProtocolRefsAST *ast, Symbol *objcClassOrProtocol);
 | |
|     void objCMessageArgument(ObjCMessageArgumentAST *ast);
 | |
|     void objCTypeName(ObjCTypeNameAST *ast);
 | |
|     void objCInstanceVariablesDeclaration(ObjCInstanceVariablesDeclarationAST *ast, ObjCClass *klass);
 | |
|     void objCPropertyAttribute(ObjCPropertyAttributeAST *ast);
 | |
|     void objCMessageArgumentDeclaration(ObjCMessageArgumentDeclarationAST *ast);
 | |
|     void objCMethodPrototype(ObjCMethodPrototypeAST *ast);
 | |
|     void objCSynthesizedProperty(ObjCSynthesizedPropertyAST *ast);
 | |
|     void lambdaIntroducer(LambdaIntroducerAST *ast);
 | |
|     void lambdaCapture(LambdaCaptureAST *ast);
 | |
|     void capture(CaptureAST *ast);
 | |
|     void lambdaDeclarator(LambdaDeclaratorAST *ast);
 | |
|     FullySpecifiedType trailingReturnType(TrailingReturnTypeAST *ast, const FullySpecifiedType &init);
 | |
| 
 | |
|     // AST
 | |
|     virtual bool visit(ObjCSelectorArgumentAST *ast);
 | |
|     virtual bool visit(AttributeAST *ast);
 | |
|     virtual bool visit(DeclaratorAST *ast);
 | |
|     virtual bool visit(QtPropertyDeclarationItemAST *ast);
 | |
|     virtual bool visit(QtInterfaceNameAST *ast);
 | |
|     virtual bool visit(BaseSpecifierAST *ast);
 | |
|     virtual bool visit(CtorInitializerAST *ast);
 | |
|     virtual bool visit(EnumeratorAST *ast);
 | |
|     virtual bool visit(ExceptionSpecificationAST *ast);
 | |
|     virtual bool visit(MemInitializerAST *ast);
 | |
|     virtual bool visit(NestedNameSpecifierAST *ast);
 | |
|     virtual bool visit(NewPlacementAST *ast);
 | |
|     virtual bool visit(NewArrayDeclaratorAST *ast);
 | |
|     virtual bool visit(NewInitializerAST *ast);
 | |
|     virtual bool visit(NewTypeIdAST *ast);
 | |
|     virtual bool visit(OperatorAST *ast);
 | |
|     virtual bool visit(ParameterDeclarationClauseAST *ast);
 | |
|     virtual bool visit(TranslationUnitAST *ast);
 | |
|     virtual bool visit(ObjCProtocolRefsAST *ast);
 | |
|     virtual bool visit(ObjCMessageArgumentAST *ast);
 | |
|     virtual bool visit(ObjCTypeNameAST *ast);
 | |
|     virtual bool visit(ObjCInstanceVariablesDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCPropertyAttributeAST *ast);
 | |
|     virtual bool visit(ObjCMessageArgumentDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCMethodPrototypeAST *ast);
 | |
|     virtual bool visit(ObjCSynthesizedPropertyAST *ast);
 | |
|     virtual bool visit(LambdaIntroducerAST *ast);
 | |
|     virtual bool visit(LambdaCaptureAST *ast);
 | |
|     virtual bool visit(CaptureAST *ast);
 | |
|     virtual bool visit(LambdaDeclaratorAST *ast);
 | |
|     virtual bool visit(TrailingReturnTypeAST *ast);
 | |
| 
 | |
|     // StatementAST
 | |
|     virtual bool visit(QtMemberDeclarationAST *ast);
 | |
|     virtual bool visit(CaseStatementAST *ast);
 | |
|     virtual bool visit(CompoundStatementAST *ast);
 | |
|     virtual bool visit(DeclarationStatementAST *ast);
 | |
|     virtual bool visit(DoStatementAST *ast);
 | |
|     virtual bool visit(ExpressionOrDeclarationStatementAST *ast);
 | |
|     virtual bool visit(ExpressionStatementAST *ast);
 | |
|     virtual bool visit(ForeachStatementAST *ast);
 | |
|     virtual bool visit(ForStatementAST *ast);
 | |
|     virtual bool visit(IfStatementAST *ast);
 | |
|     virtual bool visit(LabeledStatementAST *ast);
 | |
|     virtual bool visit(BreakStatementAST *ast);
 | |
|     virtual bool visit(ContinueStatementAST *ast);
 | |
|     virtual bool visit(GotoStatementAST *ast);
 | |
|     virtual bool visit(ReturnStatementAST *ast);
 | |
|     virtual bool visit(SwitchStatementAST *ast);
 | |
|     virtual bool visit(TryBlockStatementAST *ast);
 | |
|     virtual bool visit(CatchClauseAST *ast);
 | |
|     virtual bool visit(WhileStatementAST *ast);
 | |
|     virtual bool visit(ObjCFastEnumerationAST *ast);
 | |
|     virtual bool visit(ObjCSynchronizedStatementAST *ast);
 | |
| 
 | |
|     // ExpressionAST
 | |
|     virtual bool visit(IdExpressionAST *ast);
 | |
|     virtual bool visit(CompoundExpressionAST *ast);
 | |
|     virtual bool visit(CompoundLiteralAST *ast);
 | |
|     virtual bool visit(QtMethodAST *ast);
 | |
|     virtual bool visit(BinaryExpressionAST *ast);
 | |
|     virtual bool visit(CastExpressionAST *ast);
 | |
|     virtual bool visit(ConditionAST *ast);
 | |
|     virtual bool visit(ConditionalExpressionAST *ast);
 | |
|     virtual bool visit(CppCastExpressionAST *ast);
 | |
|     virtual bool visit(DeleteExpressionAST *ast);
 | |
|     virtual bool visit(ArrayInitializerAST *ast);
 | |
|     virtual bool visit(NewExpressionAST *ast);
 | |
|     virtual bool visit(TypeidExpressionAST *ast);
 | |
|     virtual bool visit(TypenameCallExpressionAST *ast);
 | |
|     virtual bool visit(TypeConstructorCallAST *ast);
 | |
|     virtual bool visit(SizeofExpressionAST *ast);
 | |
|     virtual bool visit(NumericLiteralAST *ast);
 | |
|     virtual bool visit(BoolLiteralAST *ast);
 | |
|     virtual bool visit(ThisExpressionAST *ast);
 | |
|     virtual bool visit(NestedExpressionAST *ast);
 | |
|     virtual bool visit(StringLiteralAST *ast);
 | |
|     virtual bool visit(ThrowExpressionAST *ast);
 | |
|     virtual bool visit(TypeIdAST *ast);
 | |
|     virtual bool visit(UnaryExpressionAST *ast);
 | |
|     virtual bool visit(ObjCMessageExpressionAST *ast);
 | |
|     virtual bool visit(ObjCProtocolExpressionAST *ast);
 | |
|     virtual bool visit(ObjCEncodeExpressionAST *ast);
 | |
|     virtual bool visit(ObjCSelectorExpressionAST *ast);
 | |
|     virtual bool visit(LambdaExpressionAST *ast);
 | |
|     virtual bool visit(BracedInitializerAST *ast);
 | |
| 
 | |
|     // DeclarationAST
 | |
|     virtual bool visit(SimpleDeclarationAST *ast);
 | |
|     virtual bool visit(EmptyDeclarationAST *ast);
 | |
|     virtual bool visit(AccessDeclarationAST *ast);
 | |
|     virtual bool visit(QtObjectTagAST *ast);
 | |
|     virtual bool visit(QtPrivateSlotAST *ast);
 | |
|     virtual bool visit(QtPropertyDeclarationAST *ast);
 | |
|     virtual bool visit(QtEnumDeclarationAST *ast);
 | |
|     virtual bool visit(QtFlagsDeclarationAST *ast);
 | |
|     virtual bool visit(QtInterfacesDeclarationAST *ast);
 | |
|     virtual bool visit(AsmDefinitionAST *ast);
 | |
|     virtual bool visit(ExceptionDeclarationAST *ast);
 | |
|     virtual bool visit(FunctionDefinitionAST *ast);
 | |
|     virtual bool visit(LinkageBodyAST *ast);
 | |
|     virtual bool visit(LinkageSpecificationAST *ast);
 | |
|     virtual bool visit(NamespaceAST *ast);
 | |
|     virtual bool visit(NamespaceAliasDefinitionAST *ast);
 | |
|     virtual bool visit(ParameterDeclarationAST *ast);
 | |
|     virtual bool visit(TemplateDeclarationAST *ast);
 | |
|     virtual bool visit(TypenameTypeParameterAST *ast);
 | |
|     virtual bool visit(TemplateTypeParameterAST *ast);
 | |
|     virtual bool visit(UsingAST *ast);
 | |
|     virtual bool visit(UsingDirectiveAST *ast);
 | |
|     virtual bool visit(ObjCClassForwardDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCClassDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCProtocolForwardDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCProtocolDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCVisibilityDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCPropertyDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCMethodDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCSynthesizedPropertiesDeclarationAST *ast);
 | |
|     virtual bool visit(ObjCDynamicPropertiesDeclarationAST *ast);
 | |
| 
 | |
|     // NameAST
 | |
|     virtual bool visit(ObjCSelectorAST *ast);
 | |
|     virtual bool visit(QualifiedNameAST *ast);
 | |
|     virtual bool visit(OperatorFunctionIdAST *ast);
 | |
|     virtual bool visit(ConversionFunctionIdAST *ast);
 | |
|     virtual bool visit(SimpleNameAST *ast);
 | |
|     virtual bool visit(DestructorNameAST *ast);
 | |
|     virtual bool visit(TemplateIdAST *ast);
 | |
| 
 | |
|     // SpecifierAST
 | |
|     virtual bool visit(SimpleSpecifierAST *ast);
 | |
|     virtual bool visit(AttributeSpecifierAST *ast);
 | |
|     virtual bool visit(TypeofSpecifierAST *ast);
 | |
|     virtual bool visit(ClassSpecifierAST *ast);
 | |
|     virtual bool visit(NamedTypeSpecifierAST *ast);
 | |
|     virtual bool visit(ElaboratedTypeSpecifierAST *ast);
 | |
|     virtual bool visit(EnumSpecifierAST *ast);
 | |
| 
 | |
|     // PtrOperatorAST
 | |
|     virtual bool visit(PointerToMemberAST *ast);
 | |
|     virtual bool visit(PointerAST *ast);
 | |
|     virtual bool visit(ReferenceAST *ast);
 | |
| 
 | |
|     // PostfixAST
 | |
|     virtual bool visit(CallAST *ast);
 | |
|     virtual bool visit(ArrayAccessAST *ast);
 | |
|     virtual bool visit(PostIncrDecrAST *ast);
 | |
|     virtual bool visit(MemberAccessAST *ast);
 | |
| 
 | |
|     // CoreDeclaratorAST
 | |
|     virtual bool visit(DeclaratorIdAST *ast);
 | |
|     virtual bool visit(NestedDeclaratorAST *ast);
 | |
| 
 | |
|     // PostfixDeclaratorAST
 | |
|     virtual bool visit(FunctionDeclaratorAST *ast);
 | |
|     virtual bool visit(ArrayDeclaratorAST *ast);
 | |
| 
 | |
| private:
 | |
|     Scope *_scope;
 | |
|     ExpressionTy _expression;
 | |
|     const Name *_name;
 | |
|     FullySpecifiedType _type;
 | |
|     DeclaratorIdAST **_declaratorId;
 | |
|     int _visibility;
 | |
|     int _methodKey;
 | |
|     bool _skipFunctionBodies;
 | |
| };
 | |
| 
 | |
| } // end of namespace CPlusPlus
 | |
| 
 | |
| #endif // CPLUSPLUS_BIND_H
 |