116 enum class Kind {
None=-1,
Class,
Struct,
Union,
Interface,
Exception,
Protocol,
Category,
Enum,
Service,
Singleton };
253 std::unique_ptr<R> *p = std::get_if<std::unique_ptr<R>>(&
m_variant);
254 return p ? p->get() :
nullptr;
260 const std::unique_ptr<R> *p = std::get_if<std::unique_ptr<R>>(&
m_variant);
261 return p ? p->get() :
nullptr;
265 template<
class R,
typename... Args>
330#define p_warn(fmt,...) do { \
331 warn(m_locator->fileName(),m_locator->lineNr(),fmt,##__VA_ARGS__); \
349 void endElement(
const QCString &name );
353 warn(fileName,lineNr,
"{}",
msg);
357 void buildLists(
const std::shared_ptr<Entry> &root);
377 p_warn(
"tag 'compound' was not expected!");
390 if (protStr==
"protected")
394 else if (protStr==
"private")
398 if (virtStr==
"virtual")
402 else if (virtStr==
"pure")
406 if (staticStr==
"yes")
434 p_warn(
"Unexpected tag 'member' found");
453 p_warn(
"Found 'enumvalue' tag outside of member tag");
487 p_warn(
"Unexpected tag 'docanchor' found");
551 p_warn(
"Unexpected tag 'class' found");
579 p_warn(
"Unexpected tag 'concept' found");
595 p_warn(
"Unexpected tag 'module' found");
623 p_warn(
"Unexpected tag 'namespace' found");
645 p_warn(
"Unexpected tag 'file' found");
661 p_warn(
"Unexpected tag 'page' found");
677 p_warn(
"Unexpected tag 'subpage' found");
693 p_warn(
"Unexpected tag 'dir' found");
718 p_warn(
"Unexpected tag 'type' found");
744 p_warn(
"Unexpected tag 'name' found");
759 if (protStr==
"protected")
763 else if (protStr==
"private")
767 if (virtStr==
"virtual")
775 p_warn(
"Unexpected tag 'base' found");
788 p_warn(
"Unexpected tag 'base' found");
814 p_warn(
"Unexpected tag 'includes' found");
827 p_warn(
"Unexpected tag 'templarg' found");
850 p_warn(
"Unexpected tag 'filename' found");
872 p_warn(
"Unexpected tag 'path' found");
890 p_warn(
"Unexpected tag 'anchor' found");
912 p_warn(
"Unexpected tag 'clangid' found");
926 p_warn(
"Unexpected tag 'anchorfile' found");
938 p_warn(
"Unexpected tag 'arglist' found");
959 p_warn(
"Unexpected tag 'title' found");
973 p_warn(
"Unexpected tag 'subgroup' found");
985 void buildMemberList(
const std::shared_ptr<Entry> &ce,
const std::vector<TagMemberInfo> &members);
986 void addDocAnchors(
const std::shared_ptr<Entry> &e,
const std::vector<TagAnchorInfo> &l);
1116 it->second.startCb(*
this,attrib);
1120 p_warn(
"Unknown start tag '{}' found!",name);
1130 it->second.endCb(*
this);
1134 p_warn(
"Unknown end tag '{}' found!",name);
1154 p_warn(
"Unknown compound attribute '{}' found!",kind);
1159 if (isObjC==
"yes" && classInfo)
1182 for (
const auto &md : cd->
members)
1228 for (
const auto &md : nd->
members)
1257 for (
const auto &md : fd->
members)
1266 for (
const auto &ii : fd->
includes)
1290 for (
const auto &fi : gd->
fileList)
1298 for (
const auto &pg : gd->
pageList)
1303 for (
const auto &md : gd->
members)
1335 for (
const auto &fi : dd->
fileList)
1351 for (
const auto &ta : l)
1358 ta.label,ta.fileName,-1,ta.title,
1360 e->anchors.push_back(si);
1367 ta.label,ta.fileName,-1,ta.title,
1375 for (
const auto &tmi : members)
1377 std::shared_ptr<Entry> me = std::make_shared<Entry>();
1378 me->type = tmi.type;
1379 me->name = tmi.name;
1380 me->args = tmi.arglist;
1381 if (!me->args.isEmpty())
1385 if (tmi.enumValues.size()>0)
1387 me->spec.setStrong(
true);
1388 for (
const auto &evi : tmi.enumValues)
1390 std::shared_ptr<Entry> ev = std::make_shared<Entry>();
1392 ev->name = evi.name;
1393 ev->id = evi.clangid;
1394 ev->section = EntryType::makeVariable();
1396 ev->tagInfoData.anchor = evi.anchor;
1397 ev->tagInfoData.fileName = evi.file;
1398 ev->hasTagInfo =
TRUE;
1399 me->moveToSubEntryAndKeep(ev);
1402 me->protection = tmi.prot;
1403 me->virt = tmi.virt;
1404 me->isStatic = tmi.isStatic;
1405 me->fileName = ce->fileName;
1406 me->id = tmi.clangId;
1407 me->startLine = tmi.lineNr;
1408 if (ce->section.isGroupDoc())
1414 me->tagInfoData.anchor = tmi.anchor;
1415 me->tagInfoData.fileName = tmi.anchorFile;
1416 me->hasTagInfo =
TRUE;
1417 if (tmi.kind==
"define")
1420 me->section = EntryType::makeDefine();
1422 else if (tmi.kind==
"enumvalue")
1424 me->section = EntryType::makeVariable();
1427 else if (tmi.kind==
"property")
1429 me->section = EntryType::makeVariable();
1432 else if (tmi.kind==
"event")
1434 me->section = EntryType::makeVariable();
1437 else if (tmi.kind==
"variable")
1439 me->section = EntryType::makeVariable();
1442 else if (tmi.kind==
"typedef")
1444 me->section = EntryType::makeVariable();
1445 me->type.prepend(
"typedef ");
1448 else if (tmi.kind==
"enumeration")
1450 me->section = EntryType::makeEnum();
1453 else if (tmi.kind==
"function")
1455 me->section = EntryType::makeFunction();
1458 else if (tmi.kind==
"signal")
1460 me->section = EntryType::makeFunction();
1463 else if (tmi.kind==
"prototype")
1465 me->section = EntryType::makeFunction();
1468 else if (tmi.kind==
"friend")
1470 me->section = EntryType::makeFunction();
1471 me->type.prepend(
"friend ");
1474 else if (tmi.kind==
"dcop")
1476 me->section = EntryType::makeFunction();
1479 else if (tmi.kind==
"slot")
1481 me->section = EntryType::makeFunction();
1484 ce->moveToSubEntryAndKeep(me);
1500 std::shared_ptr<Entry> ce = std::make_shared<Entry>();
1501 ce->section = EntryType::makeClass();
1518 ce->name = tci->
name;
1525 ce->tagInfoData.anchor = tci->
anchor;
1526 ce->tagInfoData.fileName = tci->
filename;
1527 ce->startLine = tci->
lineNr;
1529 ce->hasTagInfo =
TRUE;
1533 ce->extends = tci->
bases;
1541 a.
name = argName.c_str();
1548 root->moveToSubEntryAndKeep(ce);
1558 std::shared_ptr<Entry> fe = std::make_shared<Entry>();
1560 fe->name = tfi->
name;
1563 fe->tagInfoData.fileName = tfi->
filename;
1564 fe->hasTagInfo =
TRUE;
1567 fe->fileName = fullName;
1568 fe->startLine = tfi->
lineNr;
1575 mn->push_back(std::move(fd));
1580 mn->push_back(std::move(fd));
1583 root->moveToSubEntryAndKeep(fe);
1593 std::shared_ptr<Entry> ce = std::make_shared<Entry>();
1594 ce->section = EntryType::makeConcept();
1595 ce->name = tci->
name;
1598 ce->tagInfoData.fileName = tci->
filename;
1599 ce->startLine = tci->
lineNr;
1601 ce->hasTagInfo =
TRUE;
1604 root->moveToSubEntryAndKeep(ce);
1621 std::vector<const SectionInfo *> anchorList;
1629 ta.label,ta.fileName,-1,ta.title,
1631 anchorList.push_back(si);
1635 p_warn(
"Duplicate anchor {} found",ta.label);
1650 std::shared_ptr<Entry> ne = std::make_shared<Entry>();
1651 ne->section = EntryType::makeNamespace();
1652 ne->name = tni->
name;
1655 ne->tagInfoData.fileName = tni->
filename;
1656 ne->startLine = tni->
lineNr;
1658 ne->hasTagInfo =
TRUE;
1662 root->moveToSubEntryAndKeep(ne);
1672 std::shared_ptr<Entry> pe = std::make_shared<Entry>();
1673 pe->section = EntryType::makePackage();
1674 pe->name = tpgi->
name;
1677 pe->tagInfoData.fileName = tpgi->
filename;
1678 pe->startLine = tpgi->
lineNr;
1680 pe->hasTagInfo =
TRUE;
1683 root->moveToSubEntryAndKeep(pe);
1693 std::shared_ptr<Entry> ge = std::make_shared<Entry>();
1694 ge->section = EntryType::makeGroupDoc();
1695 ge->name = tgi->
name;
1696 ge->type = tgi->
title;
1699 ge->tagInfoData.fileName = tgi->
filename;
1700 ge->startLine = tgi->
lineNr;
1702 ge->hasTagInfo =
TRUE;
1705 root->moveToSubEntryAndKeep(ge);
1717 const auto &children = root->children();
1718 auto i = std::find_if(children.begin(),children.end(),
1719 [&](
const std::shared_ptr<Entry> &e) { return e->name == sg.c_str(); });
1720 if (i!=children.end())
1734 std::shared_ptr<Entry> pe = std::make_shared<Entry>();
1736 pe->section = isIndex ? EntryType::makeMainpageDoc() : EntryType::makePageDoc();
1737 pe->name = tpi->
name;
1738 pe->args = tpi->
title;
1739 for (
const auto &subpage : tpi->
subpages)
1748 pe->startLine = tpi->
lineNr;
1750 pe->hasTagInfo =
TRUE;
1751 root->moveToSubEntryAndKeep(pe);
1767 for (
const auto &fd : *fn)
1773 for (
const auto &ii : tfi->
includes)
1780 for (
const auto &ifd : *ifn)
1784 if (ifd->getOutputFileBase()==
QCString(ii.id))
1791 else if (ii.isImported)
1795 else if (ii.isLocal)
1799 fd->addIncludeDependency(ifd.get(),ii.text,kind);
1821 handlers.
startDocument = [&tagFileParser]() { tagFileParser.startDocument(); };
1823 handlers.
endElement = [&tagFileParser](
const std::string &name) { tagFileParser.endElement(
QCString(name)); };
1824 handlers.
characters = [&tagFileParser](
const std::string &chars) { tagFileParser.characters(
QCString(chars)); };
1825 handlers.
error = [&tagFileParser](
const std::string &fileName,
int lineNr,
const std::string &
msg) { tagFileParser.error(
QCString(fileName),lineNr,
QCString(
msg)); };
1827 tagFileParser.setDocumentLocator(&parser);
1829 [&]() { DebugLex::print(Debug::Lex_xml,
"Entering",
"libxml/xml.l",fullName); },
1830 [&]() { DebugLex::print(Debug::Lex_xml,
"Finished",
"libxml/xml.l",fullName); }
1832 tagFileParser.buildLists(root);
1833 tagFileParser.addIncludes();
1836 tagFileParser.dump();
static bool looksGenerated(const std::string &anchor)
Returns true if anchor is a potentially generated anchor.
This class represents an function or template argument list.
void push_back(const Argument &a)
static bool isFlagSet(const DebugMask mask)
static void print(DebugMask mask, int prio, fmt::format_string< Args... > fmt, Args &&... args)
virtual void addSectionsToDefinition(const std::vector< const SectionInfo * > &anchorList)=0
static FileNameLinkedMap * inputNameLinkedMap
Class representing all files with a certain base name.
static ModuleManager & instance()
This is an alternative implementation of QCString.
QCString stripWhiteSpace() const
returns a copy of this string with leading and trailing whitespace removed
const std::string & str() const
const char * data() const
Returns a pointer to the contents of the string in the form of a 0-terminated C string.
class that provide information about a section.
SectionInfo * replace(const QCString &label, const QCString &fileName, int lineNr, const QCString &title, SectionType type, int level, const QCString &ref=QCString())
SectionInfo * add(const SectionInfo &si)
static SectionManager & instance()
returns a reference to the singleton
static constexpr int Anchor
Wrapper class for a number of boolean properties.
Event handlers that can installed by the client and called while parsing a XML document.
std::unordered_map< std::string, std::string > Attributes
std::function< EndElementType > endElement
handler invoked when a closing tag has been found
std::function< StartElementType > startElement
handler invoked when an opening tag has been found
std::function< CharsType > characters
handler invoked when content between tags has been found
static std::string value(const Attributes &attrib, const std::string &key)
std::function< ErrorType > error
handler invoked when the parser encounters an error
std::function< StartDocType > startDocument
handler invoked at the start of the document
void parse(const char *fileName, const char *inputString, bool debugEnabled, std::function< void()> debugStart, std::function< void()> debugEnd, std::function< Transcode > transcoder=[](std::string &s, const char *){ return true;})
TagAnchorInfo(const QCString &f, const QCString &l, const QCString &t=QCString())
Variant class that holds a unique pointer to one of the specific container types.
TagPageInfo * getPageInfo()
const TagDirInfo * getDirInfo() const
TagGroupInfo * getGroupInfo()
const R * get() const
Generic const getter.
std::variant< std::monostate, TagClassInfoPtr, TagConceptInfoPtr, TagNamespaceInfoPtr, TagPackageInfoPtr, TagFileInfoPtr, TagGroupInfoPtr, TagPageInfoPtr, TagDirInfoPtr, TagModuleInfoPtr > VariantT
const TagConceptInfo * getConceptInfo() const
TagCompoundVariant(const TagCompoundVariant &)=delete
TagModuleInfo * getModuleInfo()
TagNamespaceInfo * getNamespaceInfo()
static TagCompoundVariant make(Args &&... args)
Generic factory method to create a variant holding a unique pointer to a given compound type.
const TagPackageInfo * getPackageInfo() const
TagCompoundVariant & operator=(const TagCompoundVariant &)=delete
const TagGroupInfo * getGroupInfo() const
~TagCompoundVariant()=default
TagConceptInfo * getConceptInfo()
TagDirInfo * getDirInfo()
const TagModuleInfo * getModuleInfo() const
const TagClassInfo * getClassInfo() const
TagCompoundVariant(VariantT &&v)
const TagPageInfo * getPageInfo() const
TagPackageInfo * getPackageInfo()
const TagFileInfo * getFileInfo() const
TagFileInfo * getFileInfo()
const TagNamespaceInfo * getNamespaceInfo() const
R * get()
Generic non-const getter.
TagCompoundInfo * getCompoundInfo()
Convenience method to get the shared compound info.
TagCompoundVariant(TagCompoundVariant &&)=default
TagCompoundVariant & operator=(TagCompoundVariant &&)=default
TagClassInfo * getClassInfo()
Container for enum values that are scoped within an enum.
void addDocAnchors(const std::shared_ptr< Entry > &e, const std::vector< TagAnchorInfo > &l)
void startIncludes(const XMLHandlers::Attributes &attrib)
void startDocAnchor(const XMLHandlers::Attributes &attrib)
void endElement(const QCString &name)
TagFileParser(const char *tagName)
void startElement(const QCString &name, const XMLHandlers::Attributes &attrib)
const XMLLocator * m_locator
void startStringValue(const XMLHandlers::Attributes &)
void setDocumentLocator(const XMLLocator *locator)
TagCompoundVariant m_curCompound
void startBase(const XMLHandlers::Attributes &attrib)
void error(const QCString &fileName, int lineNr, const QCString &msg)
TagMemberInfo m_curMember
void startIgnoreElement(const XMLHandlers::Attributes &)
void characters(const QCString &ch)
void buildLists(const std::shared_ptr< Entry > &root)
TagEnumValueInfo m_curEnumValue
void startMember(const XMLHandlers::Attributes &attrib)
void buildMemberList(const std::shared_ptr< Entry > &ce, const std::vector< TagMemberInfo > &members)
void startCompound(const XMLHandlers::Attributes &attrib)
TagIncludeInfo m_curIncludes
std::vector< TagCompoundVariant > m_tagFileCompounds
std::stack< State > m_stateStack
void startEnumValue(const XMLHandlers::Attributes &attrib)
Container for include info that can be read from a tagfile.
Container for member specific info that can be read from a tagfile.
std::vector< TagEnumValueInfo > enumValues
std::vector< TagAnchorInfo > docAnchors
std::vector< std::string > StringVector
std::unique_ptr< ArgumentList > stringToArgumentList(SrcLangExt lang, const QCString &argsString, QCString *extraTypeChars=nullptr)
std::unique_ptr< FileDef > createFileDef(const QCString &p, const QCString &n, const QCString &ref, const QCString &dn)
#define warn(file, line, fmt,...)
std::unique_ptr< TagPackageInfo > TagPackageInfoPtr
std::unique_ptr< TagFileInfo > TagFileInfoPtr
std::unique_ptr< TagClassInfo > TagClassInfoPtr
std::unique_ptr< TagNamespaceInfo > TagNamespaceInfoPtr
std::unique_ptr< TagDirInfo > TagDirInfoPtr
static const std::map< std::string, CompoundFactory > g_compoundFactory
std::unique_ptr< TagConceptInfo > TagConceptInfoPtr
std::unique_ptr< TagModuleInfo > TagModuleInfoPtr
std::unique_ptr< TagPageInfo > TagPageInfoPtr
ElementCallbacks::EndCallback endCb(void(TagFileParser::*fn)())
static const std::map< std::string, ElementCallbacks > g_elementHandlers
ElementCallbacks::StartCallback startCb(void(TagFileParser::*fn)(const XMLHandlers::Attributes &))
std::unique_ptr< TagGroupInfo > TagGroupInfoPtr
This class contains the information about the argument of a function or template.
This class stores information about an inheritance relation.
QCString name
the name of the base class
@ GROUPING_INGROUP
membership in group was defined by @ingroup
CompoundFactory(TagFileParser::State s, const CreateFunc &f)
TagFileParser::State state
std::function< TagCompoundVariant()> CreateFunc
std::function< void(TagFileParser &, const XMLHandlers::Attributes &)> StartCallback
std::function< void(TagFileParser &)> EndCallback
Container for class specific info that can be read from a tagfile.
StringVector templateArguments
std::vector< BaseInfo > bases
Base class for all compound types.
std::vector< TagAnchorInfo > docAnchors
std::vector< TagMemberInfo > members
Container for concept specific info that can be read from a tagfile.
Container for directory specific info that can be read from a tagfile.
Container for file specific info that can be read from a tagfile.
StringVector namespaceList
std::vector< TagIncludeInfo > includes
Container for group specific info that can be read from a tagfile.
StringVector namespaceList
StringVector subgroupList
Container for module specific info that can be read from a tagfile.
Container for namespace specific info that can be read from a tagfile.
StringVector namespaceList
Container for package specific info that can be read from a tagfile.
Container for page specific info that can be read from a tagfile.
void parseTagFile(const std::shared_ptr< Entry > &root, const char *fullName)
Protection
Protection level of members.
Specifier
Virtualness of a member.
QCString stripPath(const QCString &s)
QCString fileToString(const QCString &name, bool filter, bool isSourceCode)
QCString stripExtensionGeneral(const QCString &fName, const QCString &ext)
QCString stripExtension(const QCString &fName)
EntryType guessSection(const QCString &name)
QCString getFileNameExtension(const QCString &fn)
A bunch of utility functions.