diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2021-08-30 10:58:08 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2021-09-01 14:53:58 +0000 |
commit | 284817fae6514701902ccdb834c2faa46462f2e8 (patch) | |
tree | 44a8c7d9813dc110b61c4639036366c7696bd7e9 /src/plugins/cpptools/cppchecksymbols.h | |
parent | 3e1fa0f170d523971d2c3c12da15a6e291f56511 (diff) | |
download | qt-creator-284817fae6514701902ccdb834c2faa46462f2e8.tar.gz |
Merge CppTools into CppEditor
There was no proper separation of responsibilities between these
plugins. In particular, CppTools had lots of editor-related
functionality, so it's not clear why it was separated out in the first
place.
In fact, for a lot of code, it seemed quite arbitrary where it was put
(just one example: switchHeaderSource() was in CppTools, wheras
switchDeclarationDefinition() was in CppEditor).
Merging the plugins will enable us to get rid of various convoluted
pseudo-abstractions that were only introduced to keep up the artificial
separation.
Change-Id: Iafc3bce625b4794f6d4aa03df6cddc7f2d26716a
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cppchecksymbols.h')
-rw-r--r-- | src/plugins/cpptools/cppchecksymbols.h | 208 |
1 files changed, 0 insertions, 208 deletions
diff --git a/src/plugins/cpptools/cppchecksymbols.h b/src/plugins/cpptools/cppchecksymbols.h deleted file mode 100644 index fa1229977d..0000000000 --- a/src/plugins/cpptools/cppchecksymbols.h +++ /dev/null @@ -1,208 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2016 The Qt Company Ltd. -** Contact: https://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 https://www.qt.io/terms-conditions. For further -** information use the contact form at https://www.qt.io/contact-us. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3 as published by the Free Software -** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT -** included in the packaging of this file. Please review the following -** information to ensure the GNU General Public License requirements will -** be met: https://www.gnu.org/licenses/gpl-3.0.html. -** -****************************************************************************/ - -#pragma once - -#include "cpptools_global.h" -#include "cppsemanticinfo.h" -#include "semantichighlighter.h" - -#include <cplusplus/TypeOfExpression.h> - -#include <QFuture> -#include <QSet> -#include <QThreadPool> - -namespace CppTools { - -class CPPTOOLS_EXPORT CheckSymbols: - public QObject, - protected CPlusPlus::ASTVisitor, - public QRunnable, - public QFutureInterface<TextEditor::HighlightingResult> -{ - Q_OBJECT -public: - ~CheckSymbols() override; - - using Result = TextEditor::HighlightingResult; - using Kind = SemanticHighlighter::Kind; - - void run() override; - - using Future = QFuture<Result>; - - 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; - - enum FunctionKind - { - FunctionDeclaration, - FunctionCall - }; - - CheckSymbols(CPlusPlus::Document::Ptr doc, - const CPlusPlus::LookupContext &context, - const QList<Result> &otherUses); - - bool hasVirtualDestructor(CPlusPlus::Class *klass) const; - bool hasVirtualDestructor(CPlusPlus::ClassOrNamespace *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 = nullptr); - CPlusPlus::ClassOrNamespace *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::ClassOrNamespace *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, int argumentCount, - FunctionKind functionKind); - - bool isTemplateClass(CPlusPlus::Symbol *s) const; - - CPlusPlus::Scope *enclosingScope() const; - CPlusPlus::FunctionDefinitionAST *enclosingFunctionDefinition(bool skipTopOfStack = false) const; - CPlusPlus::TemplateDeclarationAST *enclosingTemplateDeclaration() const; - - bool preVisit(CPlusPlus::AST *) override; - void postVisit(CPlusPlus::AST *) override; - - bool visit(CPlusPlus::NamespaceAST *) override; - bool visit(CPlusPlus::UsingDirectiveAST *) override; - bool visit(CPlusPlus::SimpleDeclarationAST *) override; - bool visit(CPlusPlus::TypenameTypeParameterAST *ast) override; - bool visit(CPlusPlus::TemplateTypeParameterAST *ast) override; - bool visit(CPlusPlus::FunctionDefinitionAST *ast) override; - bool visit(CPlusPlus::ParameterDeclarationAST *ast) override; - - bool visit(CPlusPlus::ElaboratedTypeSpecifierAST *ast) override; - - bool visit(CPlusPlus::ObjCProtocolDeclarationAST *ast) override; - bool visit(CPlusPlus::ObjCProtocolForwardDeclarationAST *ast) override; - bool visit(CPlusPlus::ObjCClassDeclarationAST *ast) override; - bool visit(CPlusPlus::ObjCClassForwardDeclarationAST *ast) override; - bool visit(CPlusPlus::ObjCProtocolRefsAST *ast) override; - - bool visit(CPlusPlus::SimpleNameAST *ast) override; - bool visit(CPlusPlus::DestructorNameAST *ast) override; - bool visit(CPlusPlus::QualifiedNameAST *ast) override; - bool visit(CPlusPlus::TemplateIdAST *ast) override; - - bool visit(CPlusPlus::MemberAccessAST *ast) override; - bool visit(CPlusPlus::CallAST *ast) override; - bool visit(CPlusPlus::ObjCSelectorArgumentAST *ast) override; - bool visit(CPlusPlus::NewExpressionAST *ast) override; - - bool visit(CPlusPlus::GotoStatementAST *ast) override; - bool visit(CPlusPlus::LabeledStatementAST *ast) override; - bool visit(CPlusPlus::SimpleSpecifierAST *ast) override; - bool visit(CPlusPlus::ClassSpecifierAST *ast) override; - - bool visit(CPlusPlus::MemInitializerAST *ast) override; - bool visit(CPlusPlus::EnumeratorAST *ast) override; - - bool visit(CPlusPlus::DotDesignatorAST *ast) override; - - 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; - int _lineOfLastUsage; - QList<Result> _macroUses; -}; - -} // namespace CppTools |