117 enum class Kind {
None=-1,
Class,
Struct,
Union,
Interface,
Exception,
Protocol,
Category, Enum,
Service,
Singleton };
262 std::unique_ptr<R> *p = std::get_if<std::unique_ptr<R>>(&
m_variant);
263 return p ? p->get() :
nullptr;
269 const std::unique_ptr<R> *p = std::get_if<std::unique_ptr<R>>(&
m_variant);
270 return p ? p->get() :
nullptr;
274 template<
class R,
typename... Args>
342#define p_warn(fmt,...) do { \
343 warn(m_locator->fileName(),m_locator->lineNr(),fmt,##__VA_ARGS__); \
361 void endElement(
const QCString &name );
365 warn(fileName,lineNr,
"{}",
msg);
369 void buildLists(
const std::shared_ptr<Entry> &root);
390 p_warn(
"tag 'compound' was not expected!");
404 if (protStr==
"protected")
408 else if (protStr==
"private")
412 if (virtStr==
"virtual")
416 else if (virtStr==
"pure")
420 if (staticStr==
"yes")
452 p_warn(
"Unexpected tag 'member' found");
471 p_warn(
"Found 'enumvalue' tag outside of member tag");
505 p_warn(
"Unexpected tag 'docanchor' found");
569 p_warn(
"Unexpected tag 'class' found");
597 p_warn(
"Unexpected tag 'concept' found");
613 p_warn(
"Unexpected tag 'module' found");
641 p_warn(
"Unexpected tag 'namespace' found");
663 p_warn(
"Unexpected tag 'file' found");
679 p_warn(
"Unexpected tag 'page' found");
695 p_warn(
"Unexpected tag 'subpage' found");
711 p_warn(
"Unexpected tag 'dir' found");
736 p_warn(
"Unexpected tag 'type' found");
762 p_warn(
"Unexpected tag 'name' found");
778 p_warn(
"Unexpected tag 'id' found");
793 if (protStr==
"protected")
795 prot = Protection::Protected;
797 else if (protStr==
"private")
799 prot = Protection::Private;
801 if (virtStr==
"virtual")
803 virt = Specifier::Virtual;
809 p_warn(
"Unexpected tag 'base' found");
822 p_warn(
"Unexpected tag 'base' found");
848 p_warn(
"Unexpected tag 'includes' found");
861 p_warn(
"Unexpected tag 'templarg' found");
885 p_warn(
"Unexpected tag 'filename' found");
907 p_warn(
"Unexpected tag 'path' found");
925 p_warn(
"Unexpected tag 'anchor' found");
947 p_warn(
"Unexpected tag 'clangid' found");
961 p_warn(
"Unexpected tag 'anchorfile' found");
973 p_warn(
"Unexpected tag 'arglist' found");
1000 p_warn(
"Unexpected tag 'title' found");
1014 p_warn(
"Unexpected tag 'subgroup' found");
1026 void buildMemberList(
const std::shared_ptr<Entry> &ce,
const std::vector<TagMemberInfo> &members);
1027 void addDocAnchors(
const std::shared_ptr<Entry> &e,
const std::vector<TagAnchorInfo> &l);
1052 std::unordered_map<std::string,std::unique_ptr<ClassNode>>
children;
1170 it->second.startCb(*
this,attrib);
1174 p_warn(
"Unknown start tag '{}' found!",name);
1184 it->second.endCb(*
this);
1188 p_warn(
"Unknown end tag '{}' found!",name);
1208 p_warn(
"Unknown compound attribute '{}' found!",kind);
1213 if (isObjC==
"yes" && classInfo)
1236 for (
const auto &md : cd->
members)
1282 for (
const auto &md : nd->
members)
1311 for (
const auto &md : fd->
members)
1320 for (
const auto &ii : fd->
includes)
1344 for (
const auto &fi : gd->
fileList)
1352 for (
const auto &pg : gd->
pageList)
1357 for (
const auto &md : gd->
members)
1389 for (
const auto &fi : dd->
fileList)
1417 for (
const auto &ta : l)
1424 ta.label,ta.fileName,-1,ta.title,
1426 e->anchors.push_back(si);
1433 ta.label,ta.fileName,-1,ta.title,
1441 for (
const auto &tmi : members)
1443 std::shared_ptr<Entry> me = std::make_shared<Entry>();
1444 me->type = tmi.type;
1445 me->name = tmi.name;
1446 me->args = tmi.arglist;
1447 if (!me->args.isEmpty())
1451 if (tmi.enumValues.size()>0)
1453 me->spec.setStrong(
true);
1454 for (
const auto &evi : tmi.enumValues)
1456 std::shared_ptr<Entry> ev = std::make_shared<Entry>();
1458 ev->name = evi.name;
1459 ev->id = evi.clangid;
1460 ev->section = EntryType::makeVariable();
1462 ev->tagInfoData.anchor = evi.anchor;
1463 ev->tagInfoData.fileName = evi.file;
1464 ev->hasTagInfo =
TRUE;
1465 me->moveToSubEntryAndKeep(ev);
1468 me->protection = tmi.prot;
1469 me->virt = tmi.virt;
1470 me->isStatic = tmi.isStatic;
1471 me->fileName = ce->fileName;
1472 me->id = tmi.clangId;
1473 me->startLine = tmi.lineNr;
1474 if (ce->section.isGroupDoc())
1480 me->tagInfoData.anchor = tmi.anchor;
1481 me->tagInfoData.fileName = tmi.anchorFile;
1482 me->hasTagInfo =
TRUE;
1483 if (tmi.kind==
"define")
1486 me->section = EntryType::makeDefine();
1488 else if (tmi.kind==
"enumvalue")
1490 me->section = EntryType::makeVariable();
1491 me->mtype = MethodTypes::Method;
1493 else if (tmi.kind==
"property")
1495 me->section = EntryType::makeVariable();
1496 me->mtype = MethodTypes::Property;
1498 else if (tmi.kind==
"event")
1500 me->section = EntryType::makeVariable();
1501 me->mtype = MethodTypes::Event;
1503 else if (tmi.kind==
"variable")
1505 me->section = EntryType::makeVariable();
1506 me->mtype = MethodTypes::Method;
1508 else if (tmi.kind==
"typedef")
1510 me->section = EntryType::makeVariable();
1511 me->type.prepend(
"typedef ");
1512 me->mtype = MethodTypes::Method;
1514 else if (tmi.kind==
"enumeration")
1516 me->section = EntryType::makeEnum();
1517 me->mtype = MethodTypes::Method;
1519 else if (tmi.kind==
"function")
1521 me->section = EntryType::makeFunction();
1522 me->mtype = MethodTypes::Method;
1524 else if (tmi.kind==
"signal")
1526 me->section = EntryType::makeFunction();
1527 me->mtype = MethodTypes::Signal;
1529 else if (tmi.kind==
"prototype")
1531 me->section = EntryType::makeFunction();
1532 me->mtype = MethodTypes::Method;
1534 else if (tmi.kind==
"friend")
1536 me->section = EntryType::makeFunction();
1537 me->type.prepend(
"friend ");
1538 me->mtype = MethodTypes::Method;
1540 else if (tmi.kind==
"dcop")
1542 me->section = EntryType::makeFunction();
1543 me->mtype = MethodTypes::DCOP;
1545 else if (tmi.kind==
"slot")
1547 me->section = EntryType::makeFunction();
1548 me->mtype = MethodTypes::Slot;
1550 ce->moveToSubEntryAndKeep(me);
1556 std::shared_ptr<Entry> ce = std::make_shared<Entry>();
1557 ce->section = EntryType::makeClass();
1574 ce->name = tci->
name;
1581 ce->tagInfoData.anchor = tci->
anchor;
1582 ce->tagInfoData.fileName = tci->
filename;
1583 ce->startLine = tci->
lineNr;
1585 ce->hasTagInfo =
TRUE;
1587 ce->lang = tci->
isObjC ? SrcLangExt::ObjC : SrcLangExt::Unknown;
1589 ce->extends = tci->
bases;
1604 root->moveToSubEntryAndKeep(ce);
1613 for (
const auto &child : node.
children)
1637 for (
size_t i=0; i<parts.size(); ++i)
1639 const auto &part = parts[i];
1642 current->
children[part] = std::make_unique<ClassNode>(part);
1644 current = current->
children[part].get();
1645 if (i==parts.size()-1)
1663 std::shared_ptr<Entry> fe = std::make_shared<Entry>();
1665 fe->name = tfi->
name;
1668 fe->tagInfoData.fileName = tfi->
filename;
1669 fe->hasTagInfo =
TRUE;
1672 fe->fileName = fullName;
1673 fe->startLine = tfi->
lineNr;
1680 mn->push_back(std::move(fd));
1685 mn->push_back(std::move(fd));
1688 root->moveToSubEntryAndKeep(fe);
1698 std::shared_ptr<Entry> ce = std::make_shared<Entry>();
1699 ce->section = EntryType::makeConcept();
1700 ce->name = tci->
name;
1703 ce->tagInfoData.fileName = tci->
filename;
1704 ce->startLine = tci->
lineNr;
1706 ce->hasTagInfo =
TRUE;
1709 root->moveToSubEntryAndKeep(ce);
1726 std::vector<const SectionInfo *> anchorList;
1734 ta.label,ta.fileName,-1,ta.title,
1736 anchorList.push_back(si);
1740 p_warn(
"Duplicate anchor {} found",ta.label);
1755 std::shared_ptr<Entry> ne = std::make_shared<Entry>();
1756 ne->section = EntryType::makeNamespace();
1757 ne->name = tni->
name;
1760 ne->tagInfoData.fileName = tni->
filename;
1761 ne->startLine = tni->
lineNr;
1763 ne->hasTagInfo =
TRUE;
1767 root->moveToSubEntryAndKeep(ne);
1777 std::shared_ptr<Entry> pe = std::make_shared<Entry>();
1778 pe->section = EntryType::makePackage();
1779 pe->name = tpgi->
name;
1782 pe->tagInfoData.fileName = tpgi->
filename;
1783 pe->startLine = tpgi->
lineNr;
1785 pe->hasTagInfo =
TRUE;
1788 root->moveToSubEntryAndKeep(pe);
1798 std::shared_ptr<Entry> ge = std::make_shared<Entry>();
1799 ge->section = EntryType::makeGroupDoc();
1800 ge->name = tgi->
name;
1801 ge->type = tgi->
title;
1804 ge->tagInfoData.fileName = tgi->
filename;
1805 ge->startLine = tgi->
lineNr;
1807 ge->hasTagInfo =
TRUE;
1810 root->moveToSubEntryAndKeep(ge);
1822 const auto &children = root->children();
1823 auto i = std::find_if(children.begin(),children.end(),
1824 [&](
const std::shared_ptr<Entry> &e) { return e->name == sg; });
1825 if (i!=children.end())
1839 std::shared_ptr<Entry> pe = std::make_shared<Entry>();
1841 pe->section = isIndex ? EntryType::makeMainpageDoc() : EntryType::makePageDoc();
1842 pe->name = tpi->
name;
1843 pe->args = tpi->
title;
1844 for (
const auto &subpage : tpi->
subpages)
1848 pe->extends.emplace_back(
stripExtension(subpage),Protection::Public,Specifier::Normal);
1853 pe->startLine = tpi->
lineNr;
1855 pe->hasTagInfo =
TRUE;
1856 root->moveToSubEntryAndKeep(pe);
1866 std::shared_ptr<Entry> pe = std::make_shared<Entry>();
1867 pe->section = EntryType::makeRequirementDoc();
1869 pe->type = tri->
title;
1871 pe->tagInfoData.fileName = tri->
filename;
1872 pe->startLine = tri->
lineNr;
1874 pe->hasTagInfo =
true;
1876 root->moveToSubEntryAndKeep(pe);
1892 for (
const auto &fd : *fn)
1898 for (
const auto &ii : tfi->
includes)
1905 for (
const auto &ifd : *ifn)
1909 if (ifd->getOutputFileBase()==ii.id)
1916 else if (ii.isImported)
1920 else if (ii.isLocal)
1924 fd->addIncludeDependency(ifd.get(),ii.text,kind);
1946 handlers.
startDocument = [&tagFileParser]() { tagFileParser.startDocument(); };
1948 handlers.
endElement = [&tagFileParser](
const std::string &name) { tagFileParser.endElement(name); };
1949 handlers.
characters = [&tagFileParser](
const std::string &chars) { tagFileParser.characters(chars); };
1950 handlers.
error = [&tagFileParser](
const std::string &fileName,
int lineNr,
const std::string &
msg) { tagFileParser.error(fileName,lineNr,
msg); };
1952 tagFileParser.setDocumentLocator(&parser);
1954 [&]() { DebugLex::print(Debug::Lex_xml,
"Entering",
"libxml/xml.l",fullName); },
1955 [&]() { DebugLex::print(Debug::Lex_xml,
"Finished",
"libxml/xml.l",fullName); }
1957 tagFileParser.buildLists(root);
1958 tagFileParser.addIncludes();
1961 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
Class representing a directory in the file system.
static FileNameLinkedMap * inputNameLinkedMap
Class representing all files with a certain base name.
static ModuleManager & instance()
This is an alternative implementation of QCString.
bool isEmpty() const
Returns TRUE iff the string is empty.
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.
const TagConceptInfo * getConceptInfo() const
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
const TagGroupInfo * getGroupInfo() const
TagConceptInfo * getConceptInfo()
TagDirInfo * getDirInfo()
const TagModuleInfo * getModuleInfo() const
TagRequirementInfo * getRequirementInfo()
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.
std::variant< std::monostate, TagClassInfoPtr, TagConceptInfoPtr, TagNamespaceInfoPtr, TagPackageInfoPtr, TagFileInfoPtr, TagGroupInfoPtr, TagPageInfoPtr, TagDirInfoPtr, TagModuleInfoPtr, TagRequirementInfoPtr > VariantT
TagClassInfo * getClassInfo()
const TagRequirementInfo * getRequirementInfo() const
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 buildClassEntry(const std::shared_ptr< Entry > &root, const TagClassInfo *tci)
void startCompound(const XMLHandlers::Attributes &attrib)
void buildClassTree(const std::shared_ptr< Entry > &root, const ClassNode &node)
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
#define ONLY_DEFAULT_MOVABLE(cls)
Macro to help implementing the rule of 5 for a class that can be moved but not copied.
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< TagRequirementInfo > TagRequirementInfoPtr
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
std::unordered_map< std::string, std::unique_ptr< ClassNode > > children
ClassNode(const std::string &n)
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.
Container for requirement specific info that can be read from a tagfile.
void parseTagFile(const std::shared_ptr< Entry > &root, const char *fullName)
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)
StringVector split(const std::string &s, const std::string &delimiter)
split input string s by string delimiter delimiter.
QCString getFileNameExtension(const QCString &fn)
A bunch of utility functions.