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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
|
/****************************************************************************
**
** Copyright (C) 2019 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$
**
****************************************************************************/
/*
cppcodeparser.cpp
*/
#include "cppcodeparser.h"
#include "config.h"
#include "generator.h"
#include "loggingcategory.h"
#include "qdocdatabase.h"
#include <QtCore/qdebug.h>
#include <QtCore/qfile.h>
#include <algorithm>
#include <errno.h>
#include <stdio.h>
QT_BEGIN_NAMESPACE
/* qmake ignore Q_OBJECT */
QSet<QString> CppCodeParser::excludeDirs;
QSet<QString> CppCodeParser::excludeFiles;
static QSet<QString> topicCommands_;
static QSet<QString> metaCommands_;
/*!
The constructor initializes some regular expressions
and initializes the tokenizer variables.
*/
CppCodeParser::CppCodeParser()
{
if (topicCommands_.isEmpty()) {
topicCommands_ << COMMAND_CLASS << COMMAND_DITAMAP << COMMAND_DONTDOCUMENT << COMMAND_ENUM
<< COMMAND_EXAMPLE << COMMAND_EXTERNALPAGE << COMMAND_FN << COMMAND_GROUP
<< COMMAND_HEADERFILE << COMMAND_MACRO << COMMAND_MODULE << COMMAND_NAMESPACE
<< COMMAND_PAGE << COMMAND_PROPERTY << COMMAND_TYPEALIAS << COMMAND_TYPEDEF
<< COMMAND_VARIABLE << COMMAND_QMLTYPE << COMMAND_QMLPROPERTY
<< COMMAND_QMLPROPERTYGROUP // mws 13/03/2019
<< COMMAND_QMLATTACHEDPROPERTY << COMMAND_QMLSIGNAL
<< COMMAND_QMLATTACHEDSIGNAL << COMMAND_QMLMETHOD
<< COMMAND_QMLATTACHEDMETHOD << COMMAND_QMLBASICTYPE << COMMAND_QMLMODULE
<< COMMAND_JSTYPE << COMMAND_JSPROPERTY
<< COMMAND_JSPROPERTYGROUP // mws 13/03/2019
<< COMMAND_JSATTACHEDPROPERTY << COMMAND_JSSIGNAL << COMMAND_JSATTACHEDSIGNAL
<< COMMAND_JSMETHOD << COMMAND_JSATTACHEDMETHOD << COMMAND_JSBASICTYPE
<< COMMAND_JSMODULE << COMMAND_STRUCT << COMMAND_UNION;
}
if (metaCommands_.isEmpty()) {
metaCommands_ = commonMetaCommands();
metaCommands_ << COMMAND_CONTENTSPAGE << COMMAND_INHEADERFILE << COMMAND_NEXTPAGE
<< COMMAND_OVERLOAD << COMMAND_PREVIOUSPAGE << COMMAND_QMLINSTANTIATES
<< COMMAND_REIMP << COMMAND_RELATES;
}
}
/*!
The constructor initializes a map of special node types
for identifying important nodes. And it initializes
some filters for identifying and excluding certain kinds of files.
*/
void CppCodeParser::initializeParser()
{
CodeParser::initializeParser();
/*
All these can appear in a C++ namespace. Don't add
anything that can't be in a C++ namespace.
*/
nodeTypeMap_.insert(COMMAND_NAMESPACE, Node::Namespace);
nodeTypeMap_.insert(COMMAND_CLASS, Node::Class);
nodeTypeMap_.insert(COMMAND_STRUCT, Node::Struct);
nodeTypeMap_.insert(COMMAND_UNION, Node::Union);
nodeTypeMap_.insert(COMMAND_ENUM, Node::Enum);
nodeTypeMap_.insert(COMMAND_TYPEALIAS, Node::TypeAlias);
nodeTypeMap_.insert(COMMAND_TYPEDEF, Node::Typedef);
nodeTypeMap_.insert(COMMAND_PROPERTY, Node::Property);
nodeTypeMap_.insert(COMMAND_VARIABLE, Node::Variable);
nodeTypeTestFuncMap_.insert(COMMAND_NAMESPACE, &Node::isNamespace);
nodeTypeTestFuncMap_.insert(COMMAND_CLASS, &Node::isClassNode);
nodeTypeTestFuncMap_.insert(COMMAND_STRUCT, &Node::isStruct);
nodeTypeTestFuncMap_.insert(COMMAND_UNION, &Node::isUnion);
nodeTypeTestFuncMap_.insert(COMMAND_ENUM, &Node::isEnumType);
nodeTypeTestFuncMap_.insert(COMMAND_TYPEALIAS, &Node::isTypeAlias);
nodeTypeTestFuncMap_.insert(COMMAND_TYPEDEF, &Node::isTypedef);
nodeTypeTestFuncMap_.insert(COMMAND_PROPERTY, &Node::isProperty);
nodeTypeTestFuncMap_.insert(COMMAND_VARIABLE, &Node::isVariable);
Config &config = Config::instance();
QStringList exampleFilePatterns =
config.getStringList(CONFIG_EXAMPLES + Config::dot + CONFIG_FILEEXTENSIONS);
// Used for excluding dirs and files from the list of example files
const auto &excludeDirsList = config.getCanonicalPathList(CONFIG_EXCLUDEDIRS);
excludeDirs = QSet<QString>(excludeDirsList.cbegin(), excludeDirsList.cend());
const auto &excludeFilesList = config.getCanonicalPathList(CONFIG_EXCLUDEDIRS);
excludeFiles = QSet<QString>(excludeFilesList.cbegin(), excludeFilesList.cend());
if (!exampleFilePatterns.isEmpty())
exampleNameFilter = exampleFilePatterns.join(' ');
else
exampleNameFilter = "*.cpp *.h *.js *.xq *.svg *.xml *.dita *.ui";
QStringList exampleImagePatterns =
config.getStringList(CONFIG_EXAMPLES + Config::dot + CONFIG_IMAGEEXTENSIONS);
if (!exampleImagePatterns.isEmpty())
exampleImageFilter = exampleImagePatterns.join(' ');
else
exampleImageFilter = "*.png";
}
/*!
Clear the map of common node types and call
the same function in the base class.
*/
void CppCodeParser::terminateParser()
{
nodeTypeMap_.clear();
nodeTypeTestFuncMap_.clear();
excludeDirs.clear();
excludeFiles.clear();
CodeParser::terminateParser();
}
/*!
Returns a list of extensions for header files.
*/
QStringList CppCodeParser::headerFileNameFilter()
{
return QStringList();
}
/*!
Returns a list of extensions for source files, i.e. not
header files.
*/
QStringList CppCodeParser::sourceFileNameFilter()
{
return QStringList();
}
/*!
Returns the set of strings reopresenting the topic commands.
*/
const QSet<QString> &CppCodeParser::topicCommands()
{
return topicCommands_;
}
/*!
Process the topic \a command found in the \a doc with argument \a arg.
*/
Node *CppCodeParser::processTopicCommand(const Doc &doc, const QString &command,
const ArgLocPair &arg)
{
ExtraFuncData extra;
if (command == COMMAND_FN) {
Q_UNREACHABLE();
} else if (nodeTypeMap_.contains(command)) {
/*
We should only get in here if the command refers to
something that can appear in a C++ namespace,
i.e. a class, another namespace, an enum, a typedef,
a property or a variable. I think these are handled
this way to allow the writer to refer to the entity
without including the namespace qualifier.
*/
Node::NodeType type = nodeTypeMap_[command];
QStringList words = arg.first.split(QLatin1Char(' '));
QStringList path;
int idx = 0;
Node *node = nullptr;
if (type == Node::Variable && words.size() > 1)
idx = words.size() - 1;
path = words[idx].split("::");
node = qdb_->findNodeInOpenNamespace(path, nodeTypeTestFuncMap_[command]);
if (node == nullptr)
node = qdb_->findNodeByNameAndType(path, nodeTypeTestFuncMap_[command]);
if (node == nullptr) {
if (isWorthWarningAbout(doc)) {
doc.location().warning(
tr("Cannot find '%1' specified with '\\%2' in any header file")
.arg(arg.first)
.arg(command));
}
} else if (node->isAggregate()) {
if (type == Node::Namespace) {
NamespaceNode *ns = static_cast<NamespaceNode *>(node);
ns->markSeen();
ns->setWhereDocumented(ns->tree()->camelCaseModuleName());
}
/*
This treats a class as a namespace.
*/
if ((type == Node::Class) || (type == Node::Namespace) || (type == Node::Struct)
|| (type == Node::Union)) {
if (path.size() > 1) {
path.pop_back();
QString ns = path.join(QLatin1String("::"));
qdb_->insertOpenNamespace(ns);
}
}
}
return node;
} else if (command == COMMAND_EXAMPLE) {
if (Config::generateExamples) {
ExampleNode *en = new ExampleNode(qdb_->primaryTreeRoot(), arg.first);
en->setLocation(doc.startLocation());
setExampleFileLists(en);
return en;
}
} else if (command == COMMAND_EXTERNALPAGE) {
ExternalPageNode *epn = new ExternalPageNode(qdb_->primaryTreeRoot(), arg.first);
epn->setLocation(doc.startLocation());
return epn;
} else if (command == COMMAND_HEADERFILE) {
HeaderNode *hn = new HeaderNode(qdb_->primaryTreeRoot(), arg.first);
hn->setLocation(doc.startLocation());
return hn;
} else if (command == COMMAND_GROUP) {
CollectionNode *cn = qdb_->addGroup(arg.first);
cn->setLocation(doc.startLocation());
cn->markSeen();
return cn;
} else if (command == COMMAND_MODULE) {
CollectionNode *cn = qdb_->addModule(arg.first);
cn->setLocation(doc.startLocation());
cn->markSeen();
return cn;
} else if (command == COMMAND_QMLMODULE) {
QStringList blankSplit = arg.first.split(QLatin1Char(' '));
CollectionNode *cn = qdb_->addQmlModule(blankSplit[0]);
cn->setLogicalModuleInfo(blankSplit);
cn->setLocation(doc.startLocation());
cn->markSeen();
return cn;
} else if (command == COMMAND_JSMODULE) {
QStringList blankSplit = arg.first.split(QLatin1Char(' '));
CollectionNode *cn = qdb_->addJsModule(blankSplit[0]);
cn->setLogicalModuleInfo(blankSplit);
cn->setLocation(doc.startLocation());
cn->markSeen();
return cn;
} else if (command == COMMAND_PAGE) {
Node::PageType ptype = Node::ArticlePage;
QStringList args = arg.first.split(QLatin1Char(' '));
if (args.size() > 1) {
QString t = args[1].toLower();
if (t == "howto")
ptype = Node::HowToPage;
else if (t == "api")
ptype = Node::ApiPage;
else if (t == "example")
ptype = Node::ExamplePage;
else if (t == "overview")
ptype = Node::OverviewPage;
else if (t == "tutorial")
ptype = Node::TutorialPage;
else if (t == "faq")
ptype = Node::FAQPage;
else if (t == "attribution")
ptype = Node::AttributionPage;
}
PageNode *pn = new PageNode(qdb_->primaryTreeRoot(), args[0], ptype);
pn->setLocation(doc.startLocation());
return pn;
} else if (command == COMMAND_QMLTYPE) {
QmlTypeNode *qcn = nullptr;
Node *candidate = qdb_->primaryTreeRoot()->findChildNode(arg.first, Node::QML);
if (candidate != nullptr && candidate->isQmlType())
qcn = static_cast<QmlTypeNode *>(candidate);
else
qcn = new QmlTypeNode(qdb_->primaryTreeRoot(), arg.first);
qcn->setLocation(doc.startLocation());
return qcn;
} else if (command == COMMAND_JSTYPE) {
QmlTypeNode *qcn = nullptr;
Node *candidate = qdb_->primaryTreeRoot()->findChildNode(arg.first, Node::JS);
if (candidate != nullptr && candidate->isJsType())
qcn = static_cast<QmlTypeNode *>(candidate);
else
qcn = new QmlTypeNode(qdb_->primaryTreeRoot(), arg.first, Node::JsType);
qcn->setLocation(doc.startLocation());
return qcn;
} else if (command == COMMAND_QMLBASICTYPE) {
QmlBasicTypeNode *n = new QmlBasicTypeNode(qdb_->primaryTreeRoot(), arg.first);
n->setLocation(doc.startLocation());
return n;
} else if (command == COMMAND_JSBASICTYPE) {
QmlBasicTypeNode *n =
new QmlBasicTypeNode(qdb_->primaryTreeRoot(), arg.first, Node::JsBasicType);
n->setLocation(doc.startLocation());
return n;
} else if ((command == COMMAND_QMLSIGNAL) || (command == COMMAND_QMLMETHOD)
|| (command == COMMAND_QMLATTACHEDSIGNAL) || (command == COMMAND_QMLATTACHEDMETHOD)
|| (command == COMMAND_JSSIGNAL) || (command == COMMAND_JSMETHOD)
|| (command == COMMAND_JSATTACHEDSIGNAL) || (command == COMMAND_JSATTACHEDMETHOD)) {
Q_UNREACHABLE();
}
return nullptr;
}
/*!
A QML property argument has the form...
<type> <QML-type>::<name>
<type> <QML-module>::<QML-type>::<name>
This function splits the argument into one of those
two forms. The three part form is the old form, which
was used before the creation of Qt Quick 2 and Qt
Components. A <QML-module> is the QML equivalent of a
C++ namespace. So this function splits \a arg on "::"
and stores the parts in \a type, \a module, \a qmlTypeName,
and \a name, and returns \c true. If any part other than
\a module is not found, a qdoc warning is emitted and
false is returned.
\note The two QML types \e{Component} and \e{QtObject}
never have a module qualifier.
*/
bool CppCodeParser::splitQmlPropertyArg(const QString &arg, QString &type, QString &module,
QString &qmlTypeName, QString &name,
const Location &location)
{
QStringList blankSplit = arg.split(QLatin1Char(' '));
if (blankSplit.size() > 1) {
type = blankSplit[0];
QStringList colonSplit(blankSplit[1].split("::"));
if (colonSplit.size() == 3) {
module = colonSplit[0];
qmlTypeName = colonSplit[1];
name = colonSplit[2];
return true;
}
if (colonSplit.size() == 2) {
module.clear();
qmlTypeName = colonSplit[0];
name = colonSplit[1];
return true;
}
QString msg = "Unrecognizable QML module/component qualifier for " + arg;
location.warning(tr(msg.toLatin1().data()));
} else {
QString msg = "Missing property type for " + arg;
location.warning(tr(msg.toLatin1().data()));
}
return false;
}
/*!
*/
void CppCodeParser::processQmlProperties(const Doc &doc, NodeList &nodes, DocList &docs)
{
const TopicList &topics = doc.topicsUsed();
if (topics.isEmpty())
return;
QString arg;
QString type;
QString group;
QString module;
QString property;
QString qmlTypeName;
Topic topic = topics.at(0);
bool jsProps = isJSPropertyTopic(topic.topic);
arg = topic.args;
if (splitQmlPropertyArg(arg, type, module, qmlTypeName, property, doc.location())) {
int i = property.indexOf('.');
if (i != -1)
group = property.left(i);
}
NodeList sharedNodes;
QmlTypeNode *qmlType = qdb_->findQmlType(module, qmlTypeName);
if (qmlType == nullptr)
qmlType = new QmlTypeNode(qdb_->primaryTreeRoot(), qmlTypeName);
for (int i = 0; i < topics.size(); ++i) {
QString cmd = topics.at(i).topic;
arg = topics.at(i).args;
if ((cmd == COMMAND_QMLPROPERTY) || (cmd == COMMAND_QMLATTACHEDPROPERTY)
|| (cmd == COMMAND_JSPROPERTY) || (cmd == COMMAND_JSATTACHEDPROPERTY)) {
bool attached = topics.at(i).topic.contains(QLatin1String("attached"));
if (splitQmlPropertyArg(arg, type, module, qmlTypeName, property, doc.location())) {
if (qmlType != qdb_->findQmlType(module, qmlTypeName)) {
QString msg = tr("All properties in a group must belong to the same type: '%1'")
.arg(arg);
doc.startLocation().warning(msg);
continue;
}
if (qmlType->hasQmlProperty(property, attached) != nullptr) {
QString msg = tr("QML property documented multiple times: '%1'").arg(arg);
doc.startLocation().warning(msg);
continue;
}
QmlPropertyNode *qpn = new QmlPropertyNode(qmlType, property, type, attached);
qpn->setLocation(doc.startLocation());
qpn->setGenus(jsProps ? Node::JS : Node::QML);
nodes.append(qpn);
docs.append(doc);
sharedNodes << qpn;
}
} else {
doc.startLocation().warning(
tr("Command '\\%1'; not allowed with QML/JS property commands").arg(cmd));
}
}
// Construct a SharedCommentNode (scn) if multiple topics generated
// valid nodes. Note that it's important to do this *after* constructing
// the topic nodes - which need to be written to index before the related
// scn.
if (sharedNodes.count() > 1) {
SharedCommentNode *scn = new SharedCommentNode(qmlType, sharedNodes.count(), group);
scn->setLocation(doc.startLocation());
nodes.append(scn);
docs.append(doc);
for (const auto n : sharedNodes)
scn->append(n);
scn->sort();
}
}
/*!
Returns the set of strings representing the common metacommands
plus some other metacommands.
*/
const QSet<QString> &CppCodeParser::metaCommands()
{
return metaCommands_;
}
/*!
Process the metacommand \a command in the context of the
\a node associated with the topic command and the \a doc.
\a arg is the argument to the metacommand.
\a node is guaranteed to be non-null.
*/
void CppCodeParser::processMetaCommand(const Doc &doc, const QString &command,
const ArgLocPair &argLocPair, Node *node)
{
QString arg = argLocPair.first;
if (command == COMMAND_INHEADERFILE) {
if (node->isAggregate())
static_cast<Aggregate *>(node)->addIncludeFile(arg);
else
doc.location().warning(tr("Ignored '\\%1'").arg(COMMAND_INHEADERFILE));
} else if (command == COMMAND_OVERLOAD) {
/*
Note that this might set the overload flag of the
primary function. This is ok because the overload
flags and overload numbers will be resolved later
in Aggregate::normalizeOverloads().
*/
if (node->isFunction())
static_cast<FunctionNode *>(node)->setOverloadFlag();
else if (node->isSharedCommentNode())
static_cast<SharedCommentNode *>(node)->setOverloadFlags();
else
doc.location().warning(tr("Ignored '\\%1'").arg(COMMAND_OVERLOAD));
} else if (command == COMMAND_REIMP) {
if (node->parent() && !node->parent()->isInternal()) {
if (node->isFunction()) {
FunctionNode *fn = static_cast<FunctionNode *>(node);
// The clang visitor class will have set the
// qualified name of the ovverridden function.
// If the name of the overridden function isn't
// set, issue a warning.
if (fn->overridesThis().isEmpty() && isWorthWarningAbout(doc)) {
doc.location().warning(tr("Cannot find base function for '\\%1' in %2()")
.arg(COMMAND_REIMP)
.arg(node->name()),
tr("The function either doesn't exist in any "
"base class with the same signature or it "
"exists but isn't virtual."));
}
fn->setReimpFlag();
} else {
doc.location().warning(
tr("Ignored '\\%1' in %2").arg(COMMAND_REIMP).arg(node->name()));
}
}
} else if (command == COMMAND_RELATES) {
QStringList path = arg.split("::");
Aggregate *aggregate = qdb_->findRelatesNode(path);
if (aggregate == nullptr)
aggregate = new ProxyNode(node->root(), arg);
if (node->parent() == aggregate) { // node is already a child of aggregate
doc.location().warning(
tr("Invalid '\\%1' (already a member of '%2')").arg(COMMAND_RELATES, arg));
} else {
if (node->isAggregate()) {
doc.location().warning(tr("Invalid '\\%1' not allowed in '\\%2'")
.arg(COMMAND_RELATES, node->nodeTypeString()));
} else if (!node->isRelatedNonmember() &&
!node->parent()->isNamespace() && !node->parent()->isHeader()) {
if (!doc.isInternal()) {
doc.location().warning(tr("Invalid '\\%1' ('%2' must be global)")
.arg(COMMAND_RELATES, node->name()));
}
} else if (!node->isRelatedNonmember() && !node->parent()->isHeader()) {
aggregate->adoptChild(node);
node->setRelatedNonmember(true);
} else {
/*
There are multiple \relates commands. This
one is not the first, so clone the node as
a child of aggregate.
*/
Node *clone = node->clone(aggregate);
if (clone == nullptr) {
doc.location().warning(tr("Invalid '\\%1' (multiple uses not allowed in '%2')")
.arg(COMMAND_RELATES, node->nodeTypeString()));
} else {
clone->setRelatedNonmember(true);
}
}
}
} else if (command == COMMAND_CONTENTSPAGE) {
qCWarning(lcQdoc, "(qdoc) The \\contentspage command is obsolete and should not be used.");
setLink(node, Node::ContentsLink, arg);
} else if (command == COMMAND_NEXTPAGE) {
setLink(node, Node::NextLink, arg);
} else if (command == COMMAND_PREVIOUSPAGE) {
setLink(node, Node::PreviousLink, arg);
} else if (command == COMMAND_STARTPAGE) {
setLink(node, Node::StartLink, arg);
} else if (command == COMMAND_QMLINHERITS) {
if (node->name() == arg)
doc.location().warning(tr("%1 tries to inherit itself").arg(arg));
else if (node->isQmlType() || node->isJsType()) {
QmlTypeNode *qmlType = static_cast<QmlTypeNode *>(node);
qmlType->setQmlBaseName(arg);
}
} else if (command == COMMAND_QMLINSTANTIATES) {
if (node->isQmlType() || node->isJsType()) {
ClassNode *classNode = qdb_->findClassNode(arg.split("::"));
if (classNode)
node->setClassNode(classNode);
else
doc.location().warning(tr("C++ class %1 not found: \\instantiates %1").arg(arg));
} else
doc.location().warning(tr("\\instantiates is only allowed in \\qmltype"));
} else if (command == COMMAND_QMLDEFAULT) {
node->markDefault();
} else if (command == COMMAND_QMLREADONLY) {
node->markReadOnly(1);
} else if ((command == COMMAND_QMLABSTRACT) || (command == COMMAND_ABSTRACT)) {
if (node->isQmlType() || node->isJsType())
node->setAbstract(true);
} else if (command == COMMAND_DEPRECATED) {
node->setStatus(Node::Obsolete);
} else if (command == COMMAND_INGROUP || command == COMMAND_INPUBLICGROUP) {
// Note: \ingroup and \inpublicgroup are the same (and now recognized as such).
qdb_->addToGroup(arg, node);
} else if (command == COMMAND_INMODULE) {
qdb_->addToModule(arg, node);
} else if (command == COMMAND_INQMLMODULE) {
qdb_->addToQmlModule(arg, node);
} else if (command == COMMAND_INJSMODULE) {
qdb_->addToJsModule(arg, node);
} else if (command == COMMAND_MAINCLASS) {
node->doc().location().warning(
tr("'\\mainclass' is deprecated. Consider '\\ingroup mainclasses'"));
} else if (command == COMMAND_OBSOLETE) {
node->setStatus(Node::Obsolete);
} else if (command == COMMAND_NONREENTRANT) {
node->setThreadSafeness(Node::NonReentrant);
} else if (command == COMMAND_PRELIMINARY) {
// \internal wins.
if (!node->isInternal())
node->setStatus(Node::Preliminary);
} else if (command == COMMAND_INTERNAL) {
if (!showInternal())
node->markInternal();
} else if (command == COMMAND_REENTRANT) {
node->setThreadSafeness(Node::Reentrant);
} else if (command == COMMAND_SINCE) {
node->setSince(arg);
} else if (command == COMMAND_WRAPPER) {
node->setWrapper();
} else if (command == COMMAND_THREADSAFE) {
node->setThreadSafeness(Node::ThreadSafe);
} else if (command == COMMAND_TITLE) {
if (!node->setTitle(arg))
doc.location().warning(tr("Ignored '\\%1'").arg(COMMAND_TITLE));
else if (node->isExample())
qdb_->addExampleNode(static_cast<ExampleNode *>(node));
} else if (command == COMMAND_SUBTITLE) {
if (!node->setSubtitle(arg))
doc.location().warning(tr("Ignored '\\%1'").arg(COMMAND_SUBTITLE));
} else if (command == COMMAND_QTVARIABLE) {
node->setQtVariable(arg);
if (!node->isModule() && !node->isQmlModule())
doc.location().warning(
tr("Command '\\%1' is only meaningful in '\\module' and '\\qmlmodule'.")
.arg(COMMAND_QTVARIABLE));
} else if (command == COMMAND_NOAUTOLIST) {
node->setNoAutoList(true);
}
}
/*!
The topic command has been processed, and now \a doc and
\a node are passed to this function to get the metacommands
from \a doc and process them one at a time. \a node is the
node where \a doc resides.
*/
void CppCodeParser::processMetaCommands(const Doc &doc, Node *node)
{
const QStringList metaCommandsUsed = doc.metaCommandsUsed().values();
for (const auto &command : metaCommandsUsed) {
const ArgList args = doc.metaCommandArgs(command);
for (const auto &arg : args)
processMetaCommand(doc, command, arg, node);
}
}
/*!
Parse QML/JS signal/method topic commands.
*/
FunctionNode *CppCodeParser::parseOtherFuncArg(const QString &topic, const Location &location,
const QString &funcArg)
{
QString funcName;
QString returnType;
int leftParen = funcArg.indexOf(QChar('('));
if (leftParen > 0)
funcName = funcArg.left(leftParen);
else
funcName = funcArg;
int firstBlank = funcName.indexOf(QChar(' '));
if (firstBlank > 0) {
returnType = funcName.left(firstBlank);
funcName = funcName.right(funcName.length() - firstBlank - 1);
}
QStringList colonSplit(funcName.split("::"));
if (colonSplit.size() < 2) {
QString msg = "Unrecognizable QML module/component qualifier for " + funcArg;
location.warning(tr(msg.toLatin1().data()));
return nullptr;
}
QString moduleName;
QString elementName;
if (colonSplit.size() > 2) {
moduleName = colonSplit[0];
elementName = colonSplit[1];
} else {
elementName = colonSplit[0];
}
funcName = colonSplit.last();
Aggregate *aggregate = qdb_->findQmlType(moduleName, elementName);
if (aggregate == nullptr)
aggregate = qdb_->findQmlBasicType(moduleName, elementName);
if (aggregate == nullptr)
return nullptr;
QString params;
QStringList leftParenSplit = funcArg.split('(');
if (leftParenSplit.size() > 1) {
QStringList rightParenSplit = leftParenSplit[1].split(')');
if (rightParenSplit.size() > 0)
params = rightParenSplit[0];
}
FunctionNode::Metaness metaness = FunctionNode::getMetanessFromTopic(topic);
bool attached = topic.contains(QLatin1String("attached"));
FunctionNode *fn = new FunctionNode(metaness, aggregate, funcName, attached);
fn->setAccess(Node::Public);
fn->setLocation(location);
fn->setReturnType(returnType);
fn->setParameters(params);
return fn;
}
/*!
Parse the macro arguments in \a macroArg ad hoc, without using
any actual parser. If successful, return a pointer to the new
FunctionNode for the macro. Otherwise return null. \a location
is used for reporting errors.
*/
FunctionNode *CppCodeParser::parseMacroArg(const Location &location, const QString ¯oArg)
{
QStringList leftParenSplit = macroArg.split('(');
if (leftParenSplit.isEmpty())
return nullptr;
QString macroName;
FunctionNode *oldMacroNode = nullptr;
QStringList blankSplit = leftParenSplit[0].split(' ');
if (blankSplit.size() > 0) {
macroName = blankSplit.last();
oldMacroNode = qdb_->findMacroNode(macroName);
}
QString returnType;
if (blankSplit.size() > 1) {
blankSplit.removeLast();
returnType = blankSplit.join(' ');
}
QString params;
if (leftParenSplit.size() > 1) {
const QString &afterParen = leftParenSplit.at(1);
int rightParen = afterParen.indexOf(')');
if (rightParen >= 0)
params = afterParen.left(rightParen);
}
int i = 0;
while (i < macroName.length() && !macroName.at(i).isLetter())
i++;
if (i > 0) {
returnType += QChar(' ') + macroName.left(i);
macroName = macroName.mid(i);
}
FunctionNode::Metaness metaness = FunctionNode::MacroWithParams;
if (params.isEmpty())
metaness = FunctionNode::MacroWithoutParams;
FunctionNode *macro = new FunctionNode(metaness, qdb_->primaryTreeRoot(), macroName);
macro->setAccess(Node::Public);
macro->setLocation(location);
macro->setReturnType(returnType);
macro->setParameters(params);
if (oldMacroNode && macro->compare(oldMacroNode)) {
location.warning(tr("\\macro %1 documented more than once").arg(macroArg));
oldMacroNode->doc().location().warning(tr("(The previous doc is here)"));
}
return macro;
}
void CppCodeParser::setExampleFileLists(ExampleNode *en)
{
Config &config = Config::instance();
QString fullPath = config.getExampleProjectFile(en->name());
if (fullPath.isEmpty()) {
QString details = QLatin1String("Example directories: ")
+ config.getCanonicalPathList(CONFIG_EXAMPLEDIRS).join(QLatin1Char(' '));
en->location().warning(
tr("Cannot find project file for example '%1'").arg(en->name()), details);
return;
}
QDir exampleDir(QFileInfo(fullPath).dir());
QStringList exampleFiles = Config::getFilesHere(exampleDir.path(), exampleNameFilter, Location(),
excludeDirs, excludeFiles);
// Search for all image files under the example project, excluding doc/images directory.
QSet<QString> excludeDocDirs(excludeDirs);
excludeDocDirs.insert(exampleDir.path() + QLatin1String("/doc/images"));
QStringList imageFiles = Config::getFilesHere(exampleDir.path(), exampleImageFilter, Location(),
excludeDocDirs, excludeFiles);
if (!exampleFiles.isEmpty()) {
// move main.cpp to the end, if it exists
QString mainCpp;
const auto isGeneratedOrMainCpp = [&mainCpp](const QString &fileName) {
if (fileName.endsWith("/main.cpp")) {
if (mainCpp.isEmpty())
mainCpp = fileName;
return true;
}
return fileName.contains("/qrc_") || fileName.contains("/moc_")
|| fileName.contains("/ui_");
};
exampleFiles.erase(
std::remove_if(exampleFiles.begin(), exampleFiles.end(), isGeneratedOrMainCpp),
exampleFiles.end());
if (!mainCpp.isEmpty())
exampleFiles.append(mainCpp);
// Add any resource and project files
exampleFiles += Config::getFilesHere(exampleDir.path(),
QLatin1String("*.qrc *.pro *.qmlproject *.pyproject CMakeLists.txt qmldir"));
}
const int pathLen = exampleDir.path().size() - en->name().size();
for (auto &file : exampleFiles)
file = file.mid(pathLen);
for (auto &file : imageFiles)
file = file.mid(pathLen);
en->setFiles(exampleFiles, fullPath.mid(pathLen));
en->setImages(imageFiles);
}
/*!
returns true if \a t is \e {jssignal}, \e {jsmethod},
\e {jsattachedsignal}, or \e {jsattachedmethod}.
*/
bool CppCodeParser::isJSMethodTopic(const QString &t)
{
return (t == COMMAND_JSSIGNAL || t == COMMAND_JSMETHOD || t == COMMAND_JSATTACHEDSIGNAL
|| t == COMMAND_JSATTACHEDMETHOD);
}
/*!
returns true if \a t is \e {qmlsignal}, \e {qmlmethod},
\e {qmlattachedsignal}, or \e {qmlattachedmethod}.
*/
bool CppCodeParser::isQMLMethodTopic(const QString &t)
{
return (t == COMMAND_QMLSIGNAL || t == COMMAND_QMLMETHOD || t == COMMAND_QMLATTACHEDSIGNAL
|| t == COMMAND_QMLATTACHEDMETHOD);
}
/*!
Returns true if \a t is \e {jsproperty}, \e {jspropertygroup},
or \e {jsattachedproperty}.
*/
bool CppCodeParser::isJSPropertyTopic(const QString &t)
{
return (t == COMMAND_JSPROPERTY || t == COMMAND_JSATTACHEDPROPERTY);
}
/*!
Returns true if \a t is \e {qmlproperty}, \e {qmlpropertygroup},
or \e {qmlattachedproperty}.
*/
bool CppCodeParser::isQMLPropertyTopic(const QString &t)
{
return (t == COMMAND_QMLPROPERTY || t == COMMAND_QMLATTACHEDPROPERTY);
}
void CppCodeParser::processTopicArgs(const Doc &doc, const QString &topic, NodeList &nodes,
DocList &docs)
{
if (isQMLPropertyTopic(topic) || isJSPropertyTopic(topic)) {
processQmlProperties(doc, nodes, docs);
} else {
ArgList args = doc.metaCommandArgs(topic);
Node *node = nullptr;
if (args.size() == 1) {
if (topic == COMMAND_FN) {
if (showInternal() || !doc.isInternal())
node = parserForLanguage("Clang")->parseFnArg(doc.location(), args[0].first);
} else if (topic == COMMAND_MACRO) {
node = parseMacroArg(doc.location(), args[0].first);
} else if (isQMLMethodTopic(topic) || isJSMethodTopic(topic)) {
node = parseOtherFuncArg(topic, doc.location(), args[0].first);
} else if (topic == COMMAND_DONTDOCUMENT) {
qdb_->primaryTree()->addToDontDocumentMap(args[0].first);
} else {
node = processTopicCommand(doc, topic, args[0]);
}
if (node != nullptr) {
nodes.append(node);
docs.append(doc);
}
} else if (args.size() > 1) {
QVector<SharedCommentNode *> sharedCommentNodes;
for (const auto &arg : qAsConst(args)) {
node = nullptr;
if (topic == COMMAND_FN) {
if (showInternal() || !doc.isInternal())
node = parserForLanguage("Clang")->parseFnArg(doc.location(), arg.first);
} else if (topic == COMMAND_MACRO) {
node = parseMacroArg(doc.location(), arg.first);
} else if (isQMLMethodTopic(topic) || isJSMethodTopic(topic)) {
node = parseOtherFuncArg(topic, doc.location(), arg.first);
} else {
node = processTopicCommand(doc, topic, arg);
}
if (node != nullptr) {
bool found = false;
for (SharedCommentNode *scn : sharedCommentNodes) {
if (scn->parent() == node->parent()) {
scn->append(node);
found = true;
break;
}
}
if (!found) {
SharedCommentNode *scn = new SharedCommentNode(node);
sharedCommentNodes.append(scn);
nodes.append(scn);
docs.append(doc);
}
}
}
for (auto *scn : sharedCommentNodes)
scn->sort();
}
}
}
void CppCodeParser::processMetaCommands(NodeList &nodes, DocList &docs)
{
QVector<Doc>::Iterator d = docs.begin();
for (const auto &node : nodes) {
if (node != nullptr) {
processMetaCommands(*d, node);
node->setDoc(*d);
checkModuleInclusion(node);
if (node->isAggregate()) {
Aggregate *aggregate = static_cast<Aggregate *>(node);
if (aggregate->includeFiles().isEmpty()) {
Aggregate *parent = aggregate;
while (parent->physicalModuleName().isEmpty() && (parent->parent() != nullptr))
parent = parent->parent();
if (parent == aggregate)
aggregate->addIncludeFile(aggregate->name());
else
aggregate->setIncludeFiles(parent->includeFiles());
}
}
}
++d;
}
}
bool CppCodeParser::hasTooManyTopics(const Doc &doc) const
{
QSet<QString> topicCommandsUsed = topicCommands() & doc.metaCommandsUsed();
if (topicCommandsUsed.count() > 1) {
bool ok = true;
for (const auto &t : topicCommandsUsed) {
if (!t.startsWith(QLatin1String("qml")) && !t.startsWith(QLatin1String("js")))
ok = false;
}
if (ok)
return false;
QString topicList;
for (const auto &t : topicCommandsUsed)
topicList += QLatin1String(" \\") + t + QLatin1Char(',');
topicList[topicList.lastIndexOf(',')] = '.';
int i = topicList.lastIndexOf(',');
Q_ASSERT(i >= 0); // we had at least two commas
topicList[i] = ' ';
topicList.insert(i + 1, "and");
doc.location().warning(tr("Multiple topic commands found in comment:%1").arg(topicList));
return true;
}
return false;
}
QT_END_NAMESPACE
|