Doxygen
Loading...
Searching...
No Matches
MarkdownOutlineParser Class Reference

#include <src/markdown.h>

Inheritance diagram for MarkdownOutlineParser:
Collaboration diagram for MarkdownOutlineParser:

Classes

struct  Private

Public Member Functions

 MarkdownOutlineParser ()
 ~MarkdownOutlineParser () override
void parseInput (const QCString &fileName, const char *fileBuf, const std::shared_ptr< Entry > &root, ClangTUParser *clangParser) override
 Parses a single input file with the goal to build an Entry tree.
bool needsPreprocessing (const QCString &) const override
 Returns TRUE if the language identified by extension needs the C preprocessor to be run before feed the result to the input parser.
void parsePrototype (const QCString &text) override
 Callback function called by the comment block scanner.

Private Attributes

std::unique_ptr< Privatep

Detailed Description

Definition at line 50 of file markdown.h.

Constructor & Destructor Documentation

◆ MarkdownOutlineParser()

MarkdownOutlineParser::MarkdownOutlineParser ( )

Definition at line 3777 of file markdown.cpp.

3777 : p(std::make_unique<Private>())
3778{
3779}
std::unique_ptr< Private > p
Definition markdown.h:64

References p.

◆ ~MarkdownOutlineParser()

MarkdownOutlineParser::~MarkdownOutlineParser ( )
override

Definition at line 3781 of file markdown.cpp.

3782{
3783}

Member Function Documentation

◆ needsPreprocessing()

bool MarkdownOutlineParser::needsPreprocessing ( const QCString & extension) const
inlineoverridevirtual

Returns TRUE if the language identified by extension needs the C preprocessor to be run before feed the result to the input parser.

See also
parseInput()

Implements OutlineParserInterface.

Definition at line 60 of file markdown.h.

60{ return FALSE; }
#define FALSE
Definition qcstring.h:34

References FALSE.

◆ parseInput()

void MarkdownOutlineParser::parseInput ( const QCString & fileName,
const char * fileBuf,
const std::shared_ptr< Entry > & root,
ClangTUParser * clangParser )
overridevirtual

Parses a single input file with the goal to build an Entry tree.

Parameters
[in]fileNameThe full name of the file.
[in]fileBufThe contents of the file (zero terminated).
[in,out]rootThe root of the tree of Entry *nodes representing the information extracted from the file.
[in]clangParserThe clang translation unit parser object or nullptr if disabled.

Implements OutlineParserInterface.

Definition at line 3785 of file markdown.cpp.

3789{
3790 std::shared_ptr<Entry> current = std::make_shared<Entry>();
3791 int prepend = 0; // number of empty lines in front
3792 current->lang = SrcLangExt::Markdown;
3793 current->fileName = fileName;
3794 current->docFile = fileName;
3795 current->docLine = 1;
3796 QCString docs = stripIndentation(fileBuf);
3797 if (!docs.stripWhiteSpace().size()) return;
3798 Debug::print(Debug::Markdown,0,"======== Markdown =========\n---- input ------- \n{}\n",fileBuf);
3799 QCString id;
3800 Markdown markdown(fileName,1,0);
3801 bool isIdGenerated = false;
3802 QCString title = markdown.extractPageTitle(docs, id, prepend, isIdGenerated).stripWhiteSpace();
3803 QCString generatedId;
3804 if (isIdGenerated)
3805 {
3806 generatedId = id;
3807 id = "";
3808 }
3809 int indentLevel=title.isEmpty() ? 0 : -1;
3810 markdown.setIndentLevel(indentLevel);
3811 FileInfo fi(fileName.str());
3812 QCString fn = fi.fileName();
3813 QCString titleFn = stripExtensionGeneral(fn,getFileNameExtension(fn));
3814 QCString mdfileAsMainPage = Config_getString(USE_MDFILE_AS_MAINPAGE);
3815 QCString mdFileNameId = markdownFileNameToId(fileName);
3816 bool wasEmpty = id.isEmpty();
3817 if (wasEmpty) id = mdFileNameId;
3818 QCString relFileName = stripFromPath(fileName);
3819 bool isSubdirDocs = Config_getBool(IMPLICIT_DIR_DOCS) && relFileName.lower().endsWith("/readme.md");
3820 switch (isExplicitPage(docs))
3821 {
3823 if (!mdfileAsMainPage.isEmpty() &&
3824 (fi.absFilePath()==FileInfo(mdfileAsMainPage.str()).absFilePath()) // file reference with path
3825 )
3826 {
3827 docs.prepend("@ianchor{" + title + "} " + id + "\\ilinebr ");
3828 docs.prepend("@mainpage "+title+"\\ilinebr ");
3829 }
3830 else if (id=="mainpage" || id=="index")
3831 {
3832 if (title.isEmpty()) title = titleFn;
3833 docs.prepend("@ianchor{" + title + "} " + id + "\\ilinebr ");
3834 docs.prepend("@mainpage "+title+"\\ilinebr ");
3835 }
3836 else if (isSubdirDocs)
3837 {
3838 if (!generatedId.isEmpty() && !title.isEmpty())
3839 {
3840 docs.prepend("@section " + generatedId + " " + title + "\\ilinebr ");
3841 }
3842 docs.prepend("@dir\\ilinebr ");
3843 }
3844 else
3845 {
3846 if (title.isEmpty())
3847 {
3848 title = titleFn;
3849 prepend = 0;
3850 }
3851 if (!wasEmpty)
3852 {
3853 docs.prepend("@ianchor{" + title + "} " + id + "\\ilinebr @ianchor{" + relFileName + "} " + mdFileNameId + "\\ilinebr ");
3854 }
3855 else if (!generatedId.isEmpty())
3856 {
3857 docs.prepend("@ianchor " + generatedId + "\\ilinebr ");
3858 }
3859 else if (Config_getEnum(MARKDOWN_ID_STYLE)==MARKDOWN_ID_STYLE_t::GITHUB)
3860 {
3861 QCString autoId = AnchorGenerator::instance().generate(title.str());
3862 docs.prepend("@ianchor{" + title + "} " + autoId + "\\ilinebr ");
3863 }
3864 docs.prepend("@page "+id+" "+title+"\\ilinebr ");
3865 }
3866 for (int i = 0; i < prepend; i++) docs.prepend("\n");
3867 break;
3869 {
3870 // look for `@page label My Title\n` and capture `label` (match[1]) and ` My Title` (match[2])
3871 static const reg::Ex re(R"([ ]*[\\@]page\s+(\a[\w-]*)(\s*[^\n]*)\n)");
3872 reg::Match match;
3873 std::string s = docs.str();
3874 if (reg::search(s,match,re))
3875 {
3876 QCString orgLabel = match[1].str();
3877 QCString orgTitle = match[2].str();
3878 orgTitle = orgTitle.stripWhiteSpace();
3879 QCString newLabel = markdownFileNameToId(fileName);
3880 docs = docs.left(match[1].position())+ // part before label
3881 newLabel+ // new label
3882 match[2].str()+ // part between orgLabel and \n
3883 "\\ilinebr @ianchor{" + orgTitle + "} "+orgLabel+"\n"+ // add original anchor plus \n of above
3884 docs.right(docs.length()-match.length()); // add remainder of docs
3885 }
3886 }
3887 break;
3889 break;
3891 break;
3892 }
3893 int lineNr=1;
3894
3895 p->commentScanner.enterFile(fileName,lineNr);
3896 Protection prot = Protection::Public;
3897 bool needsEntry = false;
3898 int position=0;
3899 GuardedSectionStack guards;
3900 QCString processedDocs = markdown.process(docs,lineNr,true);
3901 while (p->commentScanner.parseCommentBlock(
3902 this,
3903 current.get(),
3904 processedDocs,
3905 fileName,
3906 lineNr,
3907 FALSE, // isBrief
3908 FALSE, // javadoc autobrief
3909 FALSE, // inBodyDocs
3910 prot, // protection
3911 position,
3912 needsEntry,
3913 true,
3914 &guards
3915 ))
3916 {
3917 if (needsEntry)
3918 {
3919 QCString docFile = current->docFile;
3920 root->moveToSubEntryAndRefresh(current);
3921 current->lang = SrcLangExt::Markdown;
3922 current->docFile = docFile;
3923 current->docLine = lineNr;
3924 }
3925 }
3926 if (needsEntry)
3927 {
3928 root->moveToSubEntryAndKeep(current);
3929 }
3930 p->commentScanner.leaveFile(fileName,lineNr);
3931}
static AnchorGenerator & instance()
Returns the singleton instance.
Definition anchor.cpp:38
std::string generate(const std::string &title)
generates an anchor for a section with title.
Definition anchor.cpp:53
@ Markdown
Definition debug.h:37
static void print(DebugMask mask, int prio, fmt::format_string< Args... > fmt, Args &&... args)
Definition debug.h:76
QCString & prepend(const char *s)
Definition qcstring.h:422
size_t length() const
Returns the length of the string, not counting the 0-terminator.
Definition qcstring.h:166
QCString lower() const
Definition qcstring.h:249
bool endsWith(const char *s) const
Definition qcstring.h:524
bool isEmpty() const
Returns TRUE iff the string is empty.
Definition qcstring.h:163
QCString stripWhiteSpace() const
returns a copy of this string with leading and trailing whitespace removed
Definition qcstring.h:260
const std::string & str() const
Definition qcstring.h:552
QCString right(size_t len) const
Definition qcstring.h:234
size_t size() const
Returns the length of the string, not counting the 0-terminator.
Definition qcstring.h:169
QCString left(size_t len) const
Definition qcstring.h:229
std::stack< GuardedSection > GuardedSectionStack
Definition commentscan.h:48
#define Config_getBool(name)
Definition config.h:33
#define Config_getString(name)
Definition config.h:32
#define Config_getEnum(name)
Definition config.h:35
@ explicitMainPage
docs start with a mainpage command
Definition markdown.cpp:69
@ explicitPage
docs start with a page command
Definition markdown.cpp:68
@ notExplicit
docs doesn't start with either page or mainpage
Definition markdown.cpp:71
@ explicitOtherPage
docs start with a dir / defgroup / addtogroup command
Definition markdown.cpp:70
static ExplicitPageResult isExplicitPage(const QCString &docs)
QCString markdownFileNameToId(const QCString &fileName)
processes string s and converts markdown into doxygen/html commands.
bool search(std::string_view str, Match &match, const Ex &re, size_t pos)
Search in a given string str starting at position pos for a match against regular expression re.
Definition regex.cpp:844
bool match(std::string_view str, Match &match, const Ex &re)
Matches a given string str for a match against regular expression re.
Definition regex.cpp:855
Protection
Definition types.h:32
QCString stripIndentation(const QCString &s, bool skipFirstLine)
Definition util.cpp:5949
QCString stripExtensionGeneral(const QCString &fName, const QCString &ext)
Definition util.cpp:4914
static QCString stripFromPath(const QCString &p, const StringVector &l)
Definition util.cpp:299
QCString getFileNameExtension(const QCString &fn)
Definition util.cpp:5233

References FileInfo::absFilePath(), Config_getBool, Config_getEnum, Config_getString, QCString::endsWith(), explicitMainPage, explicitOtherPage, explicitPage, Markdown::extractPageTitle(), FALSE, FileInfo::fileName(), AnchorGenerator::generate(), getFileNameExtension(), AnchorGenerator::instance(), QCString::isEmpty(), isExplicitPage(), QCString::left(), QCString::length(), QCString::lower(), Debug::Markdown, markdownFileNameToId(), notExplicit, p, QCString::prepend(), Debug::print(), Markdown::process(), QCString::right(), reg::search(), Markdown::setIndentLevel(), QCString::size(), QCString::str(), stripExtensionGeneral(), stripFromPath(), stripIndentation(), and QCString::stripWhiteSpace().

◆ parsePrototype()

void MarkdownOutlineParser::parsePrototype ( const QCString & text)
overridevirtual

Callback function called by the comment block scanner.

It provides a string text containing the prototype of a function or variable. The parser should parse this and store the information in the Entry node that corresponds with the node for which the comment block parser was invoked.

Implements OutlineParserInterface.

Definition at line 3933 of file markdown.cpp.

3934{
3935 Doxygen::parserManager->getOutlineParser("*.cpp")->parsePrototype(text);
3936}
static ParserManager * parserManager
Definition doxygen.h:130
std::unique_ptr< OutlineParserInterface > getOutlineParser(const QCString &extension)
Gets the interface to the parser associated with a given extension.
Definition parserintf.h:245

References Doxygen::parserManager.

Member Data Documentation

◆ p

std::unique_ptr<Private> MarkdownOutlineParser::p
private

Definition at line 64 of file markdown.h.

Referenced by MarkdownOutlineParser(), and parseInput().


The documentation for this class was generated from the following files: