summaryrefslogtreecommitdiff
path: root/src/qdoc/puredocparser.cpp
blob: 09dcc4839c640f505f830cb8fb58bc55202aef32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "puredocparser.h"

#include "qdocdatabase.h"
#include "tokenizer.h"

#include <cerrno>

QT_BEGIN_NAMESPACE

/*!
  Returns a list of the kinds of files that the pure doc
  parser is meant to parse. The elements of the list are
  file suffixes.
 */
QStringList PureDocParser::sourceFileNameFilter()
{
    return QStringList() << "*.qdoc"
                         << "*.qtx"
                         << "*.qtt"
                         << "*.js";
}

/*!
  Parses the source file identified by \a filePath and adds its
  parsed contents to the database. The \a location is used for
  reporting errors.
 */
void PureDocParser::parseSourceFile(const Location &location, const QString &filePath, CppCodeParser& cpp_code_parser)
{
    QFile in(filePath);
    if (!in.open(QIODevice::ReadOnly)) {
        location.error(
                QStringLiteral("Can't open source file '%1' (%2)").arg(filePath, strerror(errno)));
        return;
    }

    /*
      The set of open namespaces is cleared before parsing
      each source file. The word "source" here means cpp file.
     */
    m_qdb->clearOpenNamespaces();

    processQdocComments(in, cpp_code_parser);
    in.close();
}

/*!
  This is called by parseSourceFile() to do the actual parsing
  and tree building. It only processes qdoc comments. It skips
  everything else.
 */
void PureDocParser::processQdocComments(QFile& input_file, CppCodeParser& cpp_code_parser)
{
    Tokenizer tokenizer(Location{input_file.fileName()}, input_file);

    const QSet<QString> &commands = CppCodeParser::topic_commands + CppCodeParser::meta_commands;

    int token = tokenizer.getToken();
    while (token != Tok_Eoi) {
        if (token != Tok_Doc) {
            token = tokenizer.getToken();
            continue;
        }
        QString comment = tokenizer.lexeme(); // returns an entire qdoc comment.
        Location start_loc(tokenizer.location());
        token = tokenizer.getToken();

        Doc::trimCStyleComment(start_loc, comment);
        Location end_loc(tokenizer.location());

        // Doc constructor parses the comment.
        Doc doc(start_loc, end_loc, comment, commands, CppCodeParser::topic_commands);
        const TopicList &topics = doc.topicsUsed();
        if (topics.isEmpty()) {
            doc.location().warning(QStringLiteral("This qdoc comment contains no topic command "
                                                  "(e.g., '\\%1', '\\%2').")
                                           .arg(COMMAND_MODULE, COMMAND_PAGE));
            continue;
        }

        if (cpp_code_parser.hasTooManyTopics(doc))
            continue;

        DocList docs;
        NodeList nodes;
        QString topic = topics[0].m_topic;

        cpp_code_parser.processTopicArgs(doc, topic, nodes, docs);
        cpp_code_parser.processMetaCommands(nodes, docs);
    }
}

QT_END_NAMESPACE