/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the tools applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** 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. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include #include #include #include #include #include "clangcodeparser.h" #include "codemarker.h" #include "codeparser.h" #include "config.h" #include "cppcodemarker.h" #include "cppcodeparser.h" #include "doc.h" #include "htmlgenerator.h" #include "jscodemarker.h" #include "location.h" #include "loggingcategory.h" #include "puredocparser.h" #include "qmlcodemarker.h" #include "qmlcodeparser.h" #include "qdoccommandlineparser.h" #include "qdocdatabase.h" #include "qdocglobals.h" #include "qtranslator.h" #include "tokenizer.h" #include "tree.h" #include "webxmlgenerator.h" #ifndef QT_BOOTSTRAPPED # include "qcoreapplication.h" #endif QT_BEGIN_NAMESPACE Q_LOGGING_CATEGORY(lcQdoc, "qt.qdoc") bool creationTimeBefore(const QFileInfo &fi1, const QFileInfo &fi2) { return fi1.lastModified() < fi2.lastModified(); } #ifndef QT_NO_TRANSLATION typedef QPair Translator; static QList translators; #endif static ClangCodeParser* clangParser_ = nullptr; static QDocGlobals qdocGlobals; /*! Read some XML indexes containing definitions from other documentation sets. \a config contains a variable that lists directories where index files can be found. It also contains the \c depends variable, which lists the modules that the current module depends on. \a formats contains a list of output formats; each format may have a different output subdirectory where index files are located. */ static void loadIndexFiles(Config& config, const QSet &formats) { QDocDatabase* qdb = QDocDatabase::qdocDB(); QStringList indexFiles; QStringList configIndexes = config.getStringList(CONFIG_INDEXES); foreach (const QString &index, configIndexes) { QFileInfo fi(index); if (fi.exists() && fi.isFile()) indexFiles << index; else Location::null.warning(QString("Index file not found: %1").arg(index)); } qdocGlobals.dependModules() += config.getStringList(CONFIG_DEPENDS); qdocGlobals.dependModules().removeDuplicates(); QSet subDirs; for (const auto &format : formats) { if (config.getBool(format + Config::dot + "nosubdirs")) { QString singleOutputSubdir = config.getString(format + Config::dot + "outputsubdir"); if (singleOutputSubdir.isEmpty()) singleOutputSubdir = "html"; subDirs << singleOutputSubdir; } } if (qdocGlobals.dependModules().size() > 0) { if (qdocGlobals.indexDirs().size() > 0) { for (int i = 0; i < qdocGlobals.indexDirs().size(); i++) { if (qdocGlobals.indexDirs()[i].startsWith("..")) { const QString prefix(QDir(qdocGlobals.currentDir()).relativeFilePath(qdocGlobals.previousCurrentDir())); if (!prefix.isEmpty()) qdocGlobals.indexDirs()[i].prepend(prefix + QLatin1Char('/')); } } /* Add all subdirectories of the indexdirs as dependModules, when an asterisk is used in the 'depends' list. */ if (qdocGlobals.dependModules().contains("*")) { qdocGlobals.dependModules().removeOne("*"); for (int i = 0; i < qdocGlobals.indexDirs().size(); i++) { QDir scanDir = QDir(qdocGlobals.indexDirs()[i]); scanDir.setFilter(QDir::Dirs | QDir::NoDotAndDotDot); QFileInfoList dirList = scanDir.entryInfoList(); for (int j = 0; j < dirList.size(); j++) { if (dirList[j].fileName().toLower() != config.getString(CONFIG_PROJECT).toLower()) qdocGlobals.dependModules().append(dirList[j].fileName()); } } } for (int i = 0; i < qdocGlobals.dependModules().size(); i++) { QString indexToAdd; QList foundIndices; // Always look in module-specific subdir, even with *.nosubdirs config subDirs << qdocGlobals.dependModules()[i]; for (int j = 0; j < qdocGlobals.indexDirs().size(); j++) { for (const auto &subDir : subDirs) { QString fileToLookFor = qdocGlobals.indexDirs()[j] + QLatin1Char('/') + subDir + QLatin1Char('/') + qdocGlobals.dependModules()[i] + ".index"; if (QFile::exists(fileToLookFor)) { QFileInfo tempFileInfo(fileToLookFor); if (!foundIndices.contains(tempFileInfo)) foundIndices.append(tempFileInfo); } } } subDirs.remove(qdocGlobals.dependModules()[i]); std::sort(foundIndices.begin(), foundIndices.end(), creationTimeBefore); if (foundIndices.size() > 1) { /* QDoc should always use the last entry in the multimap when there are multiple index files for a module, since the last modified file has the highest UNIX timestamp. */ QStringList indexPaths; for (int k = 0; k < foundIndices.size(); k++) indexPaths << foundIndices[k].absoluteFilePath(); Location::null.warning(QString("Multiple index files found for dependency \"%1\":\n%2").arg( qdocGlobals.dependModules()[i], indexPaths.join('\n'))); Location::null.warning(QString("Using %1 as index file for dependency \"%2\"").arg( foundIndices[foundIndices.size() - 1].absoluteFilePath(), qdocGlobals.dependModules()[i])); indexToAdd = foundIndices[foundIndices.size() - 1].absoluteFilePath(); } else if (foundIndices.size() == 1) { indexToAdd = foundIndices[0].absoluteFilePath(); } if (!indexToAdd.isEmpty()) { if (!indexFiles.contains(indexToAdd)) indexFiles << indexToAdd; } else { Location::null.warning(QString("\"%1\" Cannot locate index file for dependency \"%2\"").arg( config.getString(CONFIG_PROJECT), qdocGlobals.dependModules()[i])); } } } else { Location::null.warning(QLatin1String("Dependent modules specified, but no index directories were set. There will probably be errors for missing links.")); } } qdb->readIndexes(indexFiles); } /*! Processes the qdoc config file \a fileName. This is the controller for all of qdoc. */ static void processQdocconfFile(const QString &fileName) { /* The Config instance represents the configuration data for qdoc. All the other classes are initialized with the config. Below, we initialize the configuration with some default values. I don't think the call to translate() does anything here. For one thing, the translators haven't been installed at this point. And I doubt any translator would translate QDoc anyway. But I left it here because it does no harm. */ Config config(QCoreApplication::translate("QDoc", "qdoc")); QHash::iterator iter; for (iter = qdocGlobals.defaults().begin(); iter != qdocGlobals.defaults().end(); ++iter) config.setStringList(iter.key(), QStringList() << iter.value()); config.setStringList(CONFIG_SYNTAXHIGHLIGHTING, QStringList(qdocGlobals.highlighting() ? "true" : "false")); config.setStringList(CONFIG_SHOWINTERNAL, QStringList(qdocGlobals.showInternal() ? "true" : "false")); config.setStringList(CONFIG_SINGLEEXEC, QStringList(qdocGlobals.singleExec() ? "true" : "false")); config.setStringList(CONFIG_WRITEQAPAGES, QStringList(qdocGlobals.writeQaPages() ? "true" : "false")); config.setStringList(CONFIG_REDIRECTDOCUMENTATIONTODEVNULL, QStringList(qdocGlobals.redirectDocumentationToDevNull() ? "true" : "false")); config.setStringList(CONFIG_NOLINKERRORS, QStringList(qdocGlobals.noLinkErrors() ? "true" : "false")); config.setStringList(CONFIG_AUTOLINKERRORS, QStringList(qdocGlobals.autolinkErrors() ? "true" : "false")); config.setStringList(CONFIG_OBSOLETELINKS, QStringList(qdocGlobals.obsoleteLinks() ? "true" : "false")); qdocGlobals.setPreviousCurrentDir(QDir::currentPath()); /* With the default configuration values in place, load the qdoc configuration file. Note that the configuration file may include other configuration files. The Location class keeps track of the current location in the file being processed, mainly for error reporting purposes. */ Location::initialize(config); config.load(fileName); QString project = config.getString(CONFIG_PROJECT); QString moduleHeader = config.getString(CONFIG_MODULEHEADER); /* Add the defines to the configuration variables. */ QStringList defs = qdocGlobals.defines() + config.getStringList(CONFIG_DEFINES); config.setStringList(CONFIG_DEFINES,defs); QStringList incs = qdocGlobals.includesPaths() + config.getStringList(CONFIG_INCLUDEPATHS); config.setStringList(CONFIG_INCLUDEPATHS, incs); Location::terminate(); qdocGlobals.setCurrentDir(QFileInfo(fileName).path()); if (!qdocGlobals.currentDir().isEmpty()) QDir::setCurrent(qdocGlobals.currentDir()); QString phase = " in "; if (Generator::singleExec()) phase += "single process mode, "; else phase += "dual process mode, "; if (Generator::preparing()) phase += "(prepare phase)"; else if (Generator::generating()) phase += "(generate phase)"; QString msg = "Start qdoc for " + config.getString(CONFIG_PROJECT) + phase; Location::logToStdErrAlways(msg); /* Initialize all the classes and data structures with the qdoc configuration. This is safe to do for each qdocconf file processed, because all the data structures created are either cleared after they have been used, or they are cleared in the terminate() functions below. */ Location::initialize(config); Tokenizer::initialize(config); CodeMarker::initialize(config); CodeParser::initialize(config); Generator::initialize(config); Doc::initialize(config); #ifndef QT_NO_TRANSLATION /* Load the language translators, if the configuration specifies any, but only if they haven't already been loaded. This works in both -prepare/-generate mode and -singleexec mode. */ QStringList fileNames = config.getStringList(CONFIG_TRANSLATORS); QStringList::ConstIterator fn = fileNames.constBegin(); while (fn != fileNames.constEnd()) { bool found = false; if (!translators.isEmpty()) { for (int i=0; iload(*fn)) { config.lastLocation().error(QCoreApplication::translate("QDoc", "Cannot load translator '%1'").arg(*fn)); } else { QCoreApplication::instance()->installTranslator(translator); translators.append(Translator(*fn, translator)); } } ++fn; } #endif //QSet outputLanguages = config.getStringSet(CONFIG_OUTPUTLANGUAGES); /* Get the source language (Cpp) from the configuration and the location in the configuration file where the source language was set. */ QString lang = config.getString(CONFIG_LANGUAGE); Location langLocation = config.lastLocation(); /* Initialize the qdoc database, where all the parsed source files will be stored. The database includes a tree of nodes, which gets built as the source files are parsed. The documentation output is generated by traversing that tree. Note: qdocDB() allocates a new instance only if no instance exists. So it is safe to call qdocDB() any time. */ QDocDatabase* qdb = QDocDatabase::qdocDB(); qdb->setVersion(config.getString(CONFIG_VERSION)); qdb->setShowInternal(config.getBool(CONFIG_SHOWINTERNAL)); qdb->setSingleExec(config.getBool(CONFIG_SINGLEEXEC)); /* By default, the only output format is HTML. */ QSet outputFormats = config.getOutputFormats(); Location outputFormatsLocation = config.lastLocation(); qdb->clearSearchOrder(); if (!Generator::singleExec()) { if (!Generator::preparing()) { qCDebug(lcQdoc, " loading index files"); loadIndexFiles(config, outputFormats); qCDebug(lcQdoc, " done loading index files"); } qdb->newPrimaryTree(project); } else if (Generator::preparing()) qdb->newPrimaryTree(project); else qdb->setPrimaryTree(project); if (!moduleHeader.isNull()) clangParser_->setModuleHeader(moduleHeader); else clangParser_->setModuleHeader(project); qdocGlobals.dependModules() = config.getStringList(CONFIG_DEPENDS); qdocGlobals.dependModules().removeDuplicates(); qdb->setSearchOrder(qdocGlobals.dependModules()); // Store the title of the index (landing) page NamespaceNode* root = qdb->primaryTreeRoot(); if (root) { QString title = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_LANDINGPAGE); root->tree()->setIndexTitle(config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_LANDINGTITLE, title)); } QSet excludedDirs = QSet::fromList(config.getCanonicalPathList(CONFIG_EXCLUDEDIRS)); QSet excludedFiles = QSet::fromList(config.getCanonicalPathList(CONFIG_EXCLUDEFILES)); qCDebug(lcQdoc, "Adding doc/image dirs found in exampledirs to imagedirs"); QSet exampleImageDirs; QStringList exampleImageList = config.getExampleImageFiles(excludedDirs, excludedFiles); for (int i = 0; i < exampleImageList.size(); ++i) { if (exampleImageList[i].contains("doc/images")) { QString t = exampleImageList[i].left(exampleImageList[i].lastIndexOf("doc/images") + 10); if (!exampleImageDirs.contains(t)) { exampleImageDirs.insert(t); } } } Generator::augmentImageDirs(exampleImageDirs); if (!Generator::singleExec() || !Generator::generating()) { QStringList headerList; QStringList sourceList; qCDebug(lcQdoc, "Reading headerdirs"); headerList = config.getAllFiles(CONFIG_HEADERS,CONFIG_HEADERDIRS,excludedDirs,excludedFiles); QMap headers; QMultiMap headerFileNames; for (int i=0; i sources; QMultiMap sourceFileNames; for (int i=0; i::ConstIterator h = headers.constBegin(); while (h != headers.constEnd()) { CodeParser *codeParser = CodeParser::parserForHeaderFile(h.key()); if (codeParser) { ++parsed; qCDebug(lcQdoc, "Parsing %s", qPrintable(h.key())); codeParser->parseHeaderFile(config.location(), h.key()); } ++h; } clangParser_->precompileHeaders(); /* Parse each source text file in the set using the appropriate parser and add it to the big tree. */ parsed = 0; Location::logToStdErrAlways("Parse source files for " + project); QMap::ConstIterator s = sources.constBegin(); while (s != sources.constEnd()) { CodeParser *codeParser = CodeParser::parserForSourceFile(s.key()); if (codeParser) { ++parsed; qCDebug(lcQdoc, "Parsing %s", qPrintable(s.key())); codeParser->parseSourceFile(config.location(), s.key()); } ++s; } Location::logToStdErrAlways("Source files parsed for " + project); /* Now the primary tree has been built from all the header and source files. Resolve all the class names, function names, targets, URLs, links, and other stuff that needs resolving. */ qCDebug(lcQdoc, "Resolving stuff prior to generating docs"); qdb->resolveInheritance(); qdb->resolveIssues(); } else { qdb->resolveStuff(); } /* The primary tree is built and all the stuff that needed resolving has been resolved. Now traverse the tree and generate the documentation output. More than one output format can be requested. The tree is traversed for each one. */ qCDebug(lcQdoc, "Generating docs"); QSet::ConstIterator of = outputFormats.constBegin(); while (of != outputFormats.constEnd()) { Generator* generator = Generator::generatorForFormat(*of); if (generator == nullptr) outputFormatsLocation.fatal(QCoreApplication::translate("QDoc", "Unknown output format '%1'").arg(*of)); generator->initializeFormat(config); generator->generateDocs(); ++of; } #if 0 if (Generator::generating() && Generator::writeQaPages()) qdb->printLinkCounts(project); #endif qdb->clearLinkCounts(); qCDebug(lcQdoc, "Terminating qdoc classes"); if (Generator::debugging()) Generator::stopDebugging(project); msg = "End qdoc for " + config.getString(CONFIG_PROJECT) + phase; Location::logToStdErrAlways(msg); QDocDatabase::qdocDB()->setVersion(QString()); Generator::terminate(); CodeParser::terminate(); CodeMarker::terminate(); Doc::terminate(); Tokenizer::terminate(); Location::terminate(); QDir::setCurrent(qdocGlobals.previousCurrentDir()); qCDebug(lcQdoc, "qdoc classes terminated"); } QT_END_NAMESPACE int main(int argc, char **argv) { QT_USE_NAMESPACE // Initialize Qt: #ifndef QT_BOOTSTRAPPED qSetGlobalQHashSeed(0); // set the hash seed to 0 if it wasn't set yet #endif QCoreApplication app(argc, argv); app.setApplicationVersion(QLatin1String(QT_VERSION_STR)); // Instantiate various singletons (used via static methods): /* Create code parsers for the languages to be parsed, and create a tree for C++. */ ClangCodeParser clangParser; clangParser_ = &clangParser; QmlCodeParser qmlParser; PureDocParser docParser; /* Create code markers for plain text, C++, javascript, and QML. */ PlainCodeMarker plainMarker; CppCodeMarker cppMarker; JsCodeMarker jsMarker; QmlCodeMarker qmlMarker; HtmlGenerator htmlGenerator; WebXMLGenerator webXMLGenerator; // Set the globals declared at the top of this file: QDocCommandLineParser parser; parser.process(app, qdocGlobals); // Get the list of files to act on: QStringList qdocFiles = parser.positionalArguments(); if (qdocFiles.isEmpty()) parser.showHelp(); if (qdocGlobals.singleExec()) qdocFiles = Config::loadMaster(qdocFiles.at(0)); // Main loop (adapted, when needed, to handle single exec mode): if (Generator::singleExec()) Generator::setQDocPass(Generator::Prepare); foreach (const QString &qf, qdocFiles) { qdocGlobals.dependModules().clear(); processQdocconfFile(qf); } if (Generator::singleExec()) { Generator::setQDocPass(Generator::Generate); QDocDatabase* qdb = QDocDatabase::qdocDB(); qdb->processForest(); foreach (const QString &qf, qdocFiles) { qdocGlobals.dependModules().clear(); processQdocconfFile(qf); } } // Tidy everything away: #ifndef QT_NO_TRANSLATION if (!translators.isEmpty()) { for (int i=0; i