source: trunk/tools/qdoc3/cppcodeparser.h@ 674

Last change on this file since 674 was 651, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.2 sources.

File size: 7.4 KB
RevLine 
[2]1/****************************************************************************
2**
[651]3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
[561]4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
[2]6**
7** This file is part of the tools applications of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
[561]24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
[2]27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
[561]36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
[2]38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42/*
43 cppcodeparser.h
44*/
45
46#ifndef CPPCODEPARSER_H
47#define CPPCODEPARSER_H
48
49#include <qregexp.h>
50
51#include "codeparser.h"
52#include "node.h"
53
54QT_BEGIN_NAMESPACE
55
56class ClassNode;
57class CodeChunk;
58class CppCodeParserPrivate;
59class FunctionNode;
60class InnerNode;
61class Tokenizer;
62
63class CppCodeParser : public CodeParser
64{
65 public:
66 CppCodeParser();
67 ~CppCodeParser();
68
69 virtual void initializeParser(const Config& config);
70 virtual void terminateParser();
71 virtual QString language();
72 virtual QString headerFileNameFilter();
73 virtual QString sourceFileNameFilter();
74 virtual void parseHeaderFile(const Location& location,
75 const QString& filePath,
76 Tree *tree);
77 virtual void parseSourceFile(const Location& location,
78 const QString& filePath,
79 Tree *tree);
80 virtual void doneParsingHeaderFiles(Tree *tree);
81 virtual void doneParsingSourceFiles(Tree *tree);
82
83 const FunctionNode *findFunctionNode(const QString& synopsis,
84 Tree *tree,
85 Node *relative = 0,
86 bool fuzzy = false);
87
88 protected:
89 virtual QSet<QString> topicCommands();
90 virtual Node *processTopicCommand(const Doc& doc,
91 const QString& command,
92 const QString& arg);
[561]93#ifdef QDOC_QML
94 // might need to implement this in QsCodeParser as well.
95 virtual Node *processTopicCommandGroup(const Doc& doc,
96 const QString& command,
97 const QStringList& args);
98 bool splitQmlPropertyArg(const Doc& doc,
99 const QString& arg,
100 QString& type,
101 QString& element,
102 QString& name);
103 bool splitQmlMethodArg(const Doc& doc,
104 const QString& arg,
105 QString& type,
106 QString& element);
107#endif
[2]108 virtual QSet<QString> otherMetaCommands();
109 virtual void processOtherMetaCommand(const Doc& doc,
110 const QString& command,
111 const QString& arg,
112 Node *node);
113 void processOtherMetaCommands(const Doc& doc, Node *node);
114
115 private:
116 void reset(Tree *tree);
117 void readToken();
118 const Location& location();
119 QString previousLexeme();
120 QString lexeme();
121 bool match(int target);
122 bool matchCompat();
123 bool matchTemplateAngles(CodeChunk *type = 0);
124 bool matchTemplateHeader();
125 bool matchDataType(CodeChunk *type, QString *var = 0);
126 bool matchParameter(FunctionNode *func);
127 bool matchFunctionDecl(InnerNode *parent,
128 QStringList *parentPathPtr = 0,
129 FunctionNode **funcPtr = 0,
[561]130 const QString &templateStuff = QString(),
131 Node::Type type = Node::Function,
132 bool attached = false);
[2]133 bool matchBaseSpecifier(ClassNode *classe, bool isClass);
134 bool matchBaseList(ClassNode *classe, bool isClass);
135 bool matchClassDecl(InnerNode *parent,
136 const QString &templateStuff = QString());
137 bool matchNamespaceDecl(InnerNode *parent);
138 bool matchUsingDecl();
139 bool matchEnumItem(InnerNode *parent, EnumNode *enume);
140 bool matchEnumDecl(InnerNode *parent);
141 bool matchTypedefDecl(InnerNode *parent);
142 bool matchProperty(InnerNode *parent);
143 bool matchDeclList(InnerNode *parent);
144 bool matchDocsAndStuff();
145 bool makeFunctionNode(const QString &synopsis,
146 QStringList *parentPathPtr,
147 FunctionNode **funcPtr,
[561]148 InnerNode *root = 0,
149 Node::Type type = Node::Function,
150 bool attached = false);
151 FunctionNode* makeFunctionNode(const Doc& doc,
152 const QString& sig,
153 InnerNode* parent,
154 Node::Type type,
155 bool attached,
156 QString qdoctag);
[2]157 void parseQiteratorDotH(const Location &location, const QString &filePath);
158 void instantiateIteratorMacro(const QString &container,
159 const QString &includeFile,
160 const QString &macroDef,
161 Tree *tree);
162 void createExampleFileNodes(FakeNode *fake);
163
164 QMap<QString, Node::Type> nodeTypeMap;
165 Tree *tre;
166 Tokenizer *tokenizer;
167 int tok;
168 Node::Access access;
169 FunctionNode::Metaness metaness;
170 QString moduleName;
171 QStringList lastPath;
172 QRegExp varComment;
173 QRegExp sep;
174
175 QString sequentialIteratorDefinition;
176 QString mutableSequentialIteratorDefinition;
177 QString associativeIteratorDefinition;
178 QString mutableAssociativeIteratorDefinition;
179 QSet<QString> usedNamespaces;
180 QMap<QString, QString> sequentialIteratorClasses;
181 QMap<QString, QString> mutableSequentialIteratorClasses;
182 QMap<QString, QString> associativeIteratorClasses;
183 QMap<QString, QString> mutableAssociativeIteratorClasses;
184
185 static QStringList exampleFiles;
186 static QStringList exampleDirs;
187 QString exampleNameFilter;
[561]188 QString exampleImageFilter;
[2]189};
190
191QT_END_NAMESPACE
192
193#endif
Note: See TracBrowser for help on using the repository browser.