Doxygen
Loading...
Searching...
No Matches
namespacedef.h File Reference
#include <memory>
#include <unordered_set>
#include "definition.h"
#include "filedef.h"
#include "linkedmap.h"
#include "membergroup.h"
Include dependency graph for namespacedef.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  NamespaceLinkedMap
class  NamespaceLinkedRefMap
class  NamespaceDef
 An abstract interface of a namespace symbol. More...
class  NamespaceDefMutable

Typedefs

using NamespaceDefSet = std::unordered_set<const NamespaceDef*>

Functions

std::unique_ptr< NamespaceDefcreateNamespaceDef (const QCString &defFileName, int defLine, int defColumn, const QCString &name, const QCString &ref=QCString(), const QCString &refFile=QCString(), const QCString &type=QCString(), bool isPublished=false)
 Factory method to create new NamespaceDef instance.
std::unique_ptr< NamespaceDefcreateNamespaceDefAlias (const Definition *newScope, const NamespaceDef *nd)
 Factory method to create an alias of an existing namespace.
NamespaceDeftoNamespaceDef (Definition *d)
NamespaceDeftoNamespaceDef (DefinitionMutable *d)
const NamespaceDeftoNamespaceDef (const Definition *d)
NamespaceDefMutabletoNamespaceDefMutable (Definition *d)
void replaceNamespaceAliases (QCString &name)
NamespaceDefgetResolvedNamespace (const QCString &key)
NamespaceDefMutablegetResolvedNamespaceMutable (const QCString &key)
bool namespaceHasNestedNamespace (const NamespaceDef *nd)
bool namespaceHasNestedConcept (const NamespaceDef *nd)
bool namespaceHasNestedClass (const NamespaceDef *nd, bool filterClasses, ClassDef::CompoundType ct)

Typedef Documentation

◆ NamespaceDefSet

using NamespaceDefSet = std::unordered_set<const NamespaceDef*>

Definition at line 39 of file namespacedef.h.

Function Documentation

◆ createNamespaceDef()

std::unique_ptr< NamespaceDef > createNamespaceDef ( const QCString & defFileName,
int defLine,
int defColumn,
const QCString & name,
const QCString & ref = QCString(),
const QCString & refFile = QCString(),
const QCString & type = QCString(),
bool isPublished = false )

Factory method to create new NamespaceDef instance.

Definition at line 172 of file namespacedef.cpp.

176{
177 //printf("createNamespaceDef(%s)\n",qPrint(name));
178 return std::make_unique<NamespaceDefImpl>(defFileName,defLine,defColumn,name,ref,refFile,type,isPublished);
179}

Referenced by adjustConfiguration(), buildNamespaceList(), buildScopeFromQualifiedName(), findUsingDirectives(), and NamespaceDefMutable::setInline().

◆ createNamespaceDefAlias()

std::unique_ptr< NamespaceDef > createNamespaceDefAlias ( const Definition * newScope,
const NamespaceDef * nd )

Factory method to create an alias of an existing namespace.

Used for inline namespaces.

Definition at line 260 of file namespacedef.cpp.

261{
262 auto alnd = std::make_unique<NamespaceDefAliasImpl>(newScope,nd);
263 //printf("alnd name=%s localName=%s qualifiedName=%s displayName()=%s\n",
264 // qPrint(alnd->name()),qPrint(alnd->localName()),qPrint(alnd->qualifiedName()),
265 // qPrint(alnd->displayName()));
266 return alnd;
267}

Referenced by buildNamespaceList(), and NamespaceDefMutable::setInline().

◆ getResolvedNamespace()

NamespaceDef * getResolvedNamespace ( const QCString & key)

Definition at line 1816 of file namespacedef.cpp.

1817{
1818 //printf("> getResolvedNamespace(%s)\n",qPrint(name));
1819 if (name.isEmpty()) return nullptr;
1820 StringSet namespacesTried;
1821 auto ns = getResolvedNamespaceRec(namespacesTried,NamespaceAliasInfo(name.str()));
1822 //printf("< getResolvedNamespace(%s)=%s\n",qPrint(name),ns?qPrint(ns->qualifiedName()):"nullptr");
1823 return ns;
1824}
std::set< std::string > StringSet
Definition containers.h:31
static NamespaceDef * getResolvedNamespaceRec(StringSet &namespacesTried, const NamespaceAliasInfo &aliasInfo)

References getResolvedNamespaceRec(), QCString::isEmpty(), and QCString::str().

Referenced by addMemberFunction(), buildFunctionList(), buildTypedefList(), extractNamespaceName(), findUsedNamespace(), findUsingDeclImports(), findUsingDirectives(), generateClassOrGlobalLink(), generateClassOrGlobalLink(), getResolvedNamespaceMutable(), CCodeParser::parseCode(), setCallContextForVar(), NamespaceDefMutable::setInline(), and writeAlphabeticalClassList().

◆ getResolvedNamespaceMutable()

NamespaceDefMutable * getResolvedNamespaceMutable ( const QCString & key)
inline

Definition at line 150 of file namespacedef.h.

151{
153}
NamespaceDef * getResolvedNamespace(const QCString &key)
NamespaceDefMutable * toNamespaceDefMutable(Definition *d)

References getResolvedNamespace(), getResolvedNamespaceMutable(), and toNamespaceDefMutable().

Referenced by addEnumValuesToEnums(), addGlobalFunction(), addVariableToFile(), findEnums(), findUsingDeclarations(), findUsingDirectives(), and getResolvedNamespaceMutable().

◆ namespaceHasNestedClass()

bool namespaceHasNestedClass ( const NamespaceDef * nd,
bool filterClasses,
ClassDef::CompoundType ct )

Definition at line 1864 of file namespacedef.cpp.

1865{
1866 //printf(">namespaceHasNestedClass(%s,filterClasses=%d)\n",qPrint(nd->name()),filterClasses);
1867 for (const auto &cnd : nd->getNamespaces())
1868 {
1869 if (namespaceHasNestedClass(cnd,filterClasses,ct))
1870 {
1871 //printf("<namespaceHasNestedClass(%s,filterClasses=%d): case1\n",qPrint(nd->name()),filterClasses);
1872 return true;
1873 }
1874 }
1875
1876 ClassLinkedRefMap list = nd->getClasses();
1877 if (filterClasses)
1878 {
1879 switch (ct)
1880 {
1882 list = nd->getInterfaces();
1883 break;
1884 case ClassDef::Struct:
1885 list = nd->getStructs();
1886 break;
1888 list = nd->getExceptions();
1889 break;
1890 default:
1891 break;
1892 }
1893 }
1894
1895 for (const auto &cd : list)
1896 {
1897 //printf("candidate %s isLinkableInProject()=%d\n",qPrint(cd->name()),cd->isLinkableInProject());
1898 if (cd->isLinkableInProject())
1899 {
1900 //printf("<namespaceHasNestedClass(%s,filterClasses=%d): case2\n",qPrint(nd->name()),filterClasses);
1901 return true;
1902 }
1903 }
1904 //printf("<namespaceHasNestedClass(%s,filterClasses=%d): case3\n",qPrint(nd->name()),filterClasses);
1905 return false;
1906}
@ Interface
Definition classdef.h:112
@ Exception
Definition classdef.h:115
virtual ClassLinkedRefMap getStructs() const =0
virtual ClassLinkedRefMap getExceptions() const =0
virtual NamespaceLinkedRefMap getNamespaces() const =0
virtual ClassLinkedRefMap getClasses() const =0
virtual ClassLinkedRefMap getInterfaces() const =0
bool namespaceHasNestedClass(const NamespaceDef *nd, bool filterClasses, ClassDef::CompoundType ct)

References ClassDef::Exception, NamespaceDef::getClasses(), NamespaceDef::getExceptions(), NamespaceDef::getInterfaces(), NamespaceDef::getNamespaces(), NamespaceDef::getStructs(), ClassDef::Interface, namespaceHasNestedClass(), and ClassDef::Struct.

Referenced by namespaceHasNestedClass(), writeClassTreeInsideNamespaceElement(), and writeNamespaceTreeElement().

◆ namespaceHasNestedConcept()

bool namespaceHasNestedConcept ( const NamespaceDef * nd)

Definition at line 1840 of file namespacedef.cpp.

1841{
1842 //printf(">namespaceHasNestedConcept(%s)\n",qPrint(nd->name()));
1843 for (const auto &cnd : nd->getNamespaces())
1844 {
1846 {
1847 //printf("<namespaceHasNestedConcept(%s): case1\n",qPrint(nd->name()));
1848 return true;
1849 }
1850 }
1851 for (const auto &cnd : nd->getConcepts())
1852 {
1853 //printf("candidate %s isLinkableInProject()=%d\n",qPrint(cnd->name()),cnd->isLinkableInProject());
1854 if (cnd->isLinkableInProject())
1855 {
1856 //printf("<namespaceHasNestedConcept(%s): case2\n",qPrint(nd->name()));
1857 return true;
1858 }
1859 }
1860 //printf("<namespaceHasNestedConcept(%s): case3\n",qPrint(nd->name()));
1861 return false;
1862}
virtual ConceptLinkedRefMap getConcepts() const =0
bool namespaceHasNestedConcept(const NamespaceDef *nd)

References NamespaceDef::getConcepts(), NamespaceDef::getNamespaces(), and namespaceHasNestedConcept().

Referenced by namespaceHasNestedConcept(), writeConceptTreeInsideNamespaceElement(), and writeNamespaceTreeElement().

◆ namespaceHasNestedNamespace()

bool namespaceHasNestedNamespace ( const NamespaceDef * nd)

Definition at line 1828 of file namespacedef.cpp.

1829{
1830 for (const auto &cnd : nd->getNamespaces())
1831 {
1832 if (cnd->isLinkableInProject() && !cnd->isAnonymous())
1833 {
1834 return true;
1835 }
1836 }
1837 return false;
1838}

References NamespaceDef::getNamespaces().

Referenced by writeNamespaceTreeElement().

◆ replaceNamespaceAliases()

void replaceNamespaceAliases ( QCString & name)

Definition at line 1808 of file namespacedef.cpp.

1809{
1810 //printf("> replaceNamespaceAliases(%s)\n",qPrint(name));
1811 StringSet namespacesTried;
1812 name = replaceNamespaceAliasesRec(namespacesTried,name);
1813 //printf("< replaceNamespaceAliases: result=%s\n",qPrint(name));
1814}
static QCString replaceNamespaceAliasesRec(StringSet &namespacesTried, const QCString &name)

References replaceNamespaceAliasesRec().

Referenced by findClassRelation(), findUsedClassesForClass(), getMemberFromSymbol(), SymbolResolver::Private::getResolvedSymbolRec(), SymbolResolver::Private::getResolvedTypeRec(), and NamespaceDefMutable::setInline().

◆ toNamespaceDef() [1/3]

const NamespaceDef * toNamespaceDef ( const Definition * d)

Definition at line 1693 of file namespacedef.cpp.

1694{
1695 if (d && (typeid(*d)==typeid(NamespaceDefImpl) || typeid(*d)==typeid(NamespaceDefAliasImpl)))
1696 {
1697 return static_cast<const NamespaceDef*>(d);
1698 }
1699 else
1700 {
1701 return nullptr;
1702 }
1703}
An abstract interface of a namespace symbol.

◆ toNamespaceDef() [2/3]

◆ toNamespaceDef() [3/3]

NamespaceDef * toNamespaceDef ( DefinitionMutable * d)

Definition at line 1679 of file namespacedef.cpp.

1680{
1681 Definition *d = toDefinition(md);
1682 if (d && typeid(*d)==typeid(NamespaceDefImpl))
1683 {
1684 return static_cast<NamespaceDef*>(d);
1685 }
1686 else
1687 {
1688 return nullptr;
1689 }
1690}
The common base class of all entity definitions found in the sources.
Definition definition.h:76
Definition * toDefinition(DefinitionMutable *dm)

References toDefinition().

◆ toNamespaceDefMutable()