/**************************************************************************** ** ** 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 "CppDocument.h" #include "LookupContext.h" #include "PreprocessorEnvironment.h" #include #include #include #include #include namespace CPlusPlus { class Environment; class Macro; class CPLUSPLUS_EXPORT TypeOfExpression { Q_DISABLE_COPY(TypeOfExpression) public: TypeOfExpression(); /** * Sets the documents used to evaluate expressions. Should be set before * calling this functor. * * Also clears the lookup context, so can be used to make sure references * to the documents previously used are removed. */ void init(Document::Ptr thisDocument, const Snapshot &snapshot, QSharedPointer bindings = QSharedPointer(), const QSet &autoDeclarationsBeingResolved = QSet()); enum PreprocessMode { NoPreprocess, Preprocess }; /** * Returns a list of possible fully specified types associated with the * given expression. * * NOTE: The fully specified types only stay valid for as long as this * expression evaluator instance still exists, and no new call to evaluate * has been made! * * @param utf8code The code of expression to evaluate. * @param scope The scope enclosing the expression. */ QList operator()(const QByteArray &utf8code, Scope *scope, PreprocessMode mode = NoPreprocess); /** * Returns a list of possible fully specified types associated with the * given expression AST from the given document. * * NOTE: The fully specified types only stay valid for as long as this * expression evaluator instance still exists, and no new call to evaluate * has been made! * * @param expression The expression to evaluate. * @param document The document in which the expression lives. * @param scope The scope enclosing the expression. */ QList operator()(ExpressionAST *expression, Document::Ptr document, Scope *scope); QList reference(const QByteArray &utf8code, Scope *scope, PreprocessMode mode = NoPreprocess); QList reference(ExpressionAST *expression, Document::Ptr document, Scope *scope); // Returns UTF-8. QByteArray preprocess(const QByteArray &utf8code) const; /** * Returns the AST of the last evaluated expression. */ ExpressionAST *ast() const; /** * Returns the lookup context of the last evaluated expression. */ const LookupContext &context() const; Scope *scope() const; ExpressionAST *expressionAST() const; QByteArray preprocessedExpression(const QByteArray &utf8code) const; void setExpandTemplates(bool expandTemplates) { if (m_bindings) m_bindings->setExpandTemplates(expandTemplates); m_expandTemplates = expandTemplates; } private: void processEnvironment(Document::Ptr doc, Environment *env, QSet *processed) const; private: Document::Ptr m_thisDocument; Snapshot m_snapshot; QSharedPointer m_bindings; ExpressionAST *m_ast; Scope *m_scope; LookupContext m_lookupContext; mutable QSharedPointer m_environment; bool m_expandTemplates; // FIXME: This is a temporary hack to avoid dangling pointers. // Keep the expression documents and thus all the symbols and // their types alive until they are not needed any more. QList m_documents; QSet m_autoDeclarationsBeingResolved; }; ExpressionAST CPLUSPLUS_EXPORT *extractExpressionAST(Document::Ptr doc); Document::Ptr CPLUSPLUS_EXPORT documentForExpression(const QByteArray &utf8code); } // namespace CPlusPlus