forked from qt-creator/qt-creator
		
	Change-Id: Ide74482b133dd1fec40a725d9aa81bd749385f37 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
		
			
				
	
	
		
			203 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			7.3 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.
 | |
| **
 | |
| ****************************************************************************/
 | |
| 
 | |
| #ifndef CPLUSPLUSCHECKSYMBOLS_H
 | |
| #define CPLUSPLUSCHECKSYMBOLS_H
 | |
| 
 | |
| #include "cpptools_global.h"
 | |
| #include "cppsemanticinfo.h"
 | |
| #include "semantichighlighter.h"
 | |
| 
 | |
| #include <cplusplus/TypeOfExpression.h>
 | |
| 
 | |
| #include <QSet>
 | |
| #include <QFuture>
 | |
| #include <QtConcurrentRun>
 | |
| 
 | |
| namespace CppTools {
 | |
| 
 | |
| class CPPTOOLS_EXPORT CheckSymbols:
 | |
|         public QObject,
 | |
|         protected CPlusPlus::ASTVisitor,
 | |
|         public QRunnable,
 | |
|         public QFutureInterface<TextEditor::HighlightingResult>
 | |
| {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     virtual ~CheckSymbols();
 | |
| 
 | |
|     typedef TextEditor::HighlightingResult Result;
 | |
|     typedef SemanticHighlighter::Kind Kind;
 | |
| 
 | |
|     virtual void run();
 | |
| 
 | |
|     typedef QFuture<Result> Future;
 | |
| 
 | |
|     Future start()
 | |
|     {
 | |
|         this->setRunnable(this);
 | |
|         this->reportStarted();
 | |
|         Future future = this->future();
 | |
|         QThreadPool::globalInstance()->start(this, QThread::LowestPriority);
 | |
|         return future;
 | |
|     }
 | |
| 
 | |
|     static Future go(CPlusPlus::Document::Ptr doc,
 | |
|                      const CPlusPlus::LookupContext &context,
 | |
|                      const QList<Result> ¯oUses);
 | |
|     static CheckSymbols * create(CPlusPlus::Document::Ptr doc,
 | |
|                                  const CPlusPlus::LookupContext &context,
 | |
|                                  const QList<Result> ¯oUses);
 | |
| 
 | |
|     static QMap<int, QVector<Result> > chunks(const QFuture<Result> &future, int from, int to)
 | |
|     {
 | |
|         QMap<int, QVector<Result> > chunks;
 | |
| 
 | |
|         for (int i = from; i < to; ++i) {
 | |
|             const Result use = future.resultAt(i);
 | |
|             if (use.isInvalid())
 | |
|                 continue;
 | |
| 
 | |
|             const int blockNumber = use.line - 1;
 | |
|             chunks[blockNumber].append(use);
 | |
|         }
 | |
| 
 | |
|         return chunks;
 | |
|     }
 | |
| 
 | |
| signals:
 | |
|     void codeWarningsUpdated(CPlusPlus::Document::Ptr document,
 | |
|                              const QList<CPlusPlus::Document::DiagnosticMessage> selections);
 | |
| 
 | |
| protected:
 | |
|     using ASTVisitor::visit;
 | |
|     using ASTVisitor::endVisit;
 | |
| 
 | |
|     CheckSymbols(CPlusPlus::Document::Ptr doc,
 | |
|                  const CPlusPlus::LookupContext &context,
 | |
|                  const QList<Result> &otherUses);
 | |
| 
 | |
|     bool hasVirtualDestructor(CPlusPlus::Class *klass) const;
 | |
|     bool hasVirtualDestructor(CPlusPlus::LookupScope *binding) const;
 | |
| 
 | |
|     bool warning(unsigned line, unsigned column, const QString &text, unsigned length = 0);
 | |
|     bool warning(CPlusPlus::AST *ast, const QString &text);
 | |
| 
 | |
|     QByteArray textOf(CPlusPlus::AST *ast) const;
 | |
| 
 | |
|     bool maybeType(const CPlusPlus::Name *name) const;
 | |
|     bool maybeField(const CPlusPlus::Name *name) const;
 | |
|     bool maybeStatic(const CPlusPlus::Name *name) const;
 | |
|     bool maybeFunction(const CPlusPlus::Name *name) const;
 | |
| 
 | |
|     void checkNamespace(CPlusPlus::NameAST *name);
 | |
|     void checkName(CPlusPlus::NameAST *ast, CPlusPlus::Scope *scope = 0);
 | |
|     CPlusPlus::LookupScope *checkNestedName(CPlusPlus::QualifiedNameAST *ast);
 | |
| 
 | |
|     void addUse(const Result &use);
 | |
|     void addUse(unsigned tokenIndex, Kind kind);
 | |
|     void addUse(CPlusPlus::NameAST *name, Kind kind);
 | |
| 
 | |
|     void addType(CPlusPlus::LookupScope *b, CPlusPlus::NameAST *ast);
 | |
| 
 | |
|     bool maybeAddTypeOrStatic(const QList<CPlusPlus::LookupItem> &candidates,
 | |
|                               CPlusPlus::NameAST *ast);
 | |
|     bool maybeAddField(const QList<CPlusPlus::LookupItem> &candidates,
 | |
|                        CPlusPlus::NameAST *ast);
 | |
|     bool maybeAddFunction(const QList<CPlusPlus::LookupItem> &candidates,
 | |
|                           CPlusPlus::NameAST *ast, unsigned argumentCount);
 | |
| 
 | |
|     bool isTemplateClass(CPlusPlus::Symbol *s) const;
 | |
| 
 | |
|     CPlusPlus::Scope *enclosingScope() const;
 | |
|     CPlusPlus::FunctionDefinitionAST *enclosingFunctionDefinition(bool skipTopOfStack = false) const;
 | |
|     CPlusPlus::TemplateDeclarationAST *enclosingTemplateDeclaration() const;
 | |
| 
 | |
|     virtual bool preVisit(CPlusPlus::AST *);
 | |
|     virtual void postVisit(CPlusPlus::AST *);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::NamespaceAST *);
 | |
|     virtual bool visit(CPlusPlus::UsingDirectiveAST *);
 | |
|     virtual bool visit(CPlusPlus::SimpleDeclarationAST *);
 | |
|     virtual bool visit(CPlusPlus::TypenameTypeParameterAST *ast);
 | |
|     virtual bool visit(CPlusPlus::TemplateTypeParameterAST *ast);
 | |
|     virtual bool visit(CPlusPlus::FunctionDefinitionAST *ast);
 | |
|     virtual bool visit(CPlusPlus::ParameterDeclarationAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::ElaboratedTypeSpecifierAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::SimpleNameAST *ast);
 | |
|     virtual bool visit(CPlusPlus::DestructorNameAST *ast);
 | |
|     virtual bool visit(CPlusPlus::QualifiedNameAST *ast);
 | |
|     virtual bool visit(CPlusPlus::TemplateIdAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::MemberAccessAST *ast);
 | |
|     virtual bool visit(CPlusPlus::CallAST *ast);
 | |
|     virtual bool visit(CPlusPlus::NewExpressionAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::GotoStatementAST *ast);
 | |
|     virtual bool visit(CPlusPlus::LabeledStatementAST *ast);
 | |
|     virtual bool visit(CPlusPlus::SimpleSpecifierAST *ast);
 | |
|     virtual bool visit(CPlusPlus::ClassSpecifierAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::MemInitializerAST *ast);
 | |
|     virtual bool visit(CPlusPlus::EnumeratorAST *ast);
 | |
| 
 | |
|     virtual bool visit(CPlusPlus::DotDesignatorAST *ast);
 | |
| 
 | |
|     CPlusPlus::NameAST *declaratorId(CPlusPlus::DeclaratorAST *ast) const;
 | |
| 
 | |
|     static unsigned referenceToken(CPlusPlus::NameAST *name);
 | |
| 
 | |
|     void flush();
 | |
| 
 | |
| private:
 | |
|     bool isConstructorDeclaration(CPlusPlus::Symbol *declaration);
 | |
| 
 | |
|     CPlusPlus::Document::Ptr _doc;
 | |
|     CPlusPlus::LookupContext _context;
 | |
|     CPlusPlus::TypeOfExpression typeOfExpression;
 | |
|     QString _fileName;
 | |
|     QSet<QByteArray> _potentialTypes;
 | |
|     QSet<QByteArray> _potentialFields;
 | |
|     QSet<QByteArray> _potentialFunctions;
 | |
|     QSet<QByteArray> _potentialStatics;
 | |
|     QList<CPlusPlus::AST *> _astStack;
 | |
|     QVector<Result> _usages;
 | |
|     QList<CPlusPlus::Document::DiagnosticMessage> _diagMsgs;
 | |
|     int _chunkSize;
 | |
|     unsigned _lineOfLastUsage;
 | |
|     QList<Result> _macroUses;
 | |
| };
 | |
| 
 | |
| } // namespace CppTools
 | |
| 
 | |
| #endif // CPLUSPLUSCHECKSYMBOLS_H
 |