// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #ifndef APIEXTRACTOR_H #define APIEXTRACTOR_H #include "abstractmetalang_typedefs.h" #include "apiextractorflags.h" #include "header_paths.h" #include "clangparser/compilersupport.h" #include #include #include class ApiExtractorResult; class AbstractMetaClass; class AbstractMetaEnum; class AbstractMetaFunction; class ComplexTypeEntry; QT_BEGIN_NAMESPACE class QDebug; class QIODevice; QT_END_NAMESPACE struct ApiExtractorPrivate; class ApiExtractor { public: Q_DISABLE_COPY_MOVE(ApiExtractor) ApiExtractor(); ~ApiExtractor(); void setTypeSystem(const QString& typeSystemFileName); QString typeSystem() const; void setCppFileNames(const QFileInfoList &cppFileNames); QFileInfoList cppFileNames() const; void setSkipDeprecated(bool value); static void setSuppressWarnings(bool value); static void setSilent(bool value); static void addTypesystemSearchPath(const QString &path); static void addTypesystemSearchPath(const QStringList& paths); static void setTypesystemKeywords(const QStringList& keywords); void addIncludePath(const HeaderPath& path); void addIncludePath(const HeaderPaths& paths); HeaderPaths includePaths() const; void setLogDirectory(const QString& logDir); static bool setApiVersion(const QString &package, const QString &version); static void setDropTypeEntries(const QStringList &dropEntries); LanguageLevel languageLevel() const; void setLanguageLevel(LanguageLevel languageLevel); QStringList clangOptions() const; void setClangOptions(const QStringList &co); static void setUseGlobalHeader(bool h); const AbstractMetaEnumList &globalEnums() const; const AbstractMetaFunctionCList &globalFunctions() const; const AbstractMetaClassList &classes() const; const AbstractMetaClassList &smartPointers() const; std::optional run(ApiExtractorFlags flags); /// Forwards to AbstractMetaBuilder::inheritTemplateFunction() static AbstractMetaFunctionPtr inheritTemplateFunction(const AbstractMetaFunctionCPtr &function, const AbstractMetaTypeList &templateTypes); /// Forwards to AbstractMetaBuilder::inheritTemplateMember() static AbstractMetaFunctionPtr inheritTemplateMember(const AbstractMetaFunctionCPtr &function, const AbstractMetaTypeList &templateTypes, const AbstractMetaClass *templateClass, AbstractMetaClass *subclass); /// Forwards to AbstractMetaBuilder::inheritTemplateClass() static AbstractMetaClass * inheritTemplateClass(ComplexTypeEntry *te, const AbstractMetaClass *templateClass, const AbstractMetaTypeList &templateTypes, InheritTemplateFlags flags = {}); private: ApiExtractorPrivate *d; #ifndef QT_NO_DEBUG_STREAM friend QDebug operator<<(QDebug d, const ApiExtractor &ae); #endif }; #endif // APIEXTRACTOR_H