diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-07-27 08:53:22 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-07-27 08:53:22 (GMT) |
commit | cfa9d4d590cdbf4940f88159f72853e8501cc168 (patch) | |
tree | 096d7be65663d2b1088aed9714e8047edf65961d /src/docparser.cpp | |
parent | 54e919c70d5a43e260b188d5c71fd7c54ce874f0 (diff) | |
download | Doxygen-cfa9d4d590cdbf4940f88159f72853e8501cc168.zip Doxygen-cfa9d4d590cdbf4940f88159f72853e8501cc168.tar.gz Doxygen-cfa9d4d590cdbf4940f88159f72853e8501cc168.tar.bz2 |
Release-1.5.3
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 112 |
1 files changed, 88 insertions, 24 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index e9d16af..dff6940 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -68,23 +68,7 @@ static const char *sectionLevelToName[] = //--------------------------------------------------------------------------- -// global variables during a call to validatingParseDoc -static bool g_hasParamCommand; -static bool g_hasReturnCommand; -static MemberDef * g_memberDef; -static QDict<void> g_paramsFound; -static bool g_isExample; -static QCString g_exampleName; -static SectionDict *g_sectionDict; - -static QCString g_searchUrl; - -// include file state -static QString g_includeFileText; -static uint g_includeFileOffset; -static uint g_includeFileLength; - -// parser state +// Parser state: global variables during a call to validatingParseDoc static QString g_context; static bool g_inSeeBlock; static bool g_insideHtmlLink; @@ -95,6 +79,20 @@ static QList<Definition> g_copyStack; static QString g_fileName; static QString g_relPath; +static bool g_hasParamCommand; +static bool g_hasReturnCommand; +static MemberDef * g_memberDef; +static QDict<void> g_paramsFound; +static bool g_isExample; +static QCString g_exampleName; +static SectionDict * g_sectionDict; +static QCString g_searchUrl; + +static QString g_includeFileText; +static uint g_includeFileOffset; +static uint g_includeFileLength; + +// parser's context to store all global variables struct DocParserContext { QString context; @@ -104,9 +102,23 @@ struct DocParserContext QStack<DocStyleChange> styleStack; QStack<DocStyleChange> initialStyleStack; QList<Definition> copyStack; - MemberDef *memberDef; QString fileName; QString relPath; + + bool hasParamCommand; + bool hasReturnCommand; + MemberDef * memberDef; + QDict<void> paramsFound; + bool isExample; + QCString exampleName; + SectionDict *sectionDict; + QCString searchUrl; + + QString includeFileText; + uint includeFileOffset; + uint includeFileLength; + + TokenInfo *token; }; static QStack<DocParserContext> g_parserStack; @@ -115,6 +127,10 @@ static QStack<DocParserContext> g_parserStack; static void docParserPushContext() { + //QCString indent; + //indent.fill(' ',g_parserStack.count()*2+2); + //printf("%sdocParserPushContext() count=%d\n",indent.data(),g_nodeStack.count()); + doctokenizerYYpushContext(); DocParserContext *ctx = new DocParserContext; ctx->context = g_context; @@ -126,6 +142,23 @@ static void docParserPushContext() ctx->copyStack = g_copyStack; ctx->fileName = g_fileName; ctx->relPath = g_relPath; + + ctx->hasParamCommand = g_hasParamCommand; + ctx->hasReturnCommand = g_hasReturnCommand; + ctx->memberDef = g_memberDef; + ctx->paramsFound = g_paramsFound; + ctx->isExample = g_isExample; + ctx->exampleName = g_exampleName; + ctx->sectionDict = g_sectionDict; + ctx->searchUrl = g_searchUrl; + + ctx->includeFileText = g_includeFileText; + ctx->includeFileOffset = g_includeFileOffset; + ctx->includeFileLength = g_includeFileLength; + + ctx->token = g_token; + g_token = new TokenInfo; + g_parserStack.push(ctx); } @@ -141,8 +174,29 @@ static void docParserPopContext() g_copyStack = ctx->copyStack; g_fileName = ctx->fileName; g_relPath = ctx->relPath; + + g_hasParamCommand = ctx->hasParamCommand; + g_hasReturnCommand = ctx->hasReturnCommand; + g_memberDef = ctx->memberDef; + g_paramsFound = ctx->paramsFound; + g_isExample = ctx->isExample; + g_exampleName = ctx->exampleName; + g_sectionDict = ctx->sectionDict; + g_searchUrl = ctx->searchUrl; + + g_includeFileText = ctx->includeFileText; + g_includeFileOffset = ctx->includeFileOffset; + g_includeFileLength = ctx->includeFileLength; + + delete g_token; + g_token = ctx->token; + delete ctx; doctokenizerYYpopContext(); + + //QCString indent; + //indent.fill(' ',g_parserStack.count()*2+2); + //printf("%sdocParserPopContext() count=%d\n",indent.data(),g_nodeStack.count()); } //--------------------------------------------------------------------------- @@ -5876,7 +5930,10 @@ DocNode *validatingParseDoc(const char *fileName,int startLine, // md?md->name().data():"<none>"); //printf("========== validating %s at line %d\n",fileName,startLine); //printf("---------------- input --------------------\n%s\n----------- end input -------------------\n",input); - g_token = new TokenInfo; + //g_token = new TokenInfo; + + // store parser state so we can re-enter this function if needed + docParserPushContext(); if (ctx && (ctx->definitionType()==Definition::TypeClass || @@ -5999,10 +6056,12 @@ DocNode *validatingParseDoc(const char *fileName,int startLine, doctokenizerYYlineno=startLine; doctokenizerYYinit(input,g_fileName); + // build abstract syntax tree DocRoot *root = new DocRoot(md!=0,singleLine); root->parse(); + if (Debug::isFlagSet(Debug::PrintTree)) { // pretty print the result @@ -6011,24 +6070,29 @@ DocNode *validatingParseDoc(const char *fileName,int startLine, delete v; } + checkUndocumentedParams(); detectNoDocumentedParams(); - delete g_token; - // TODO: These should be called at the end of the program. //doctokenizerYYcleanup(); //Mappers::cmdMapper->freeInstance(); //Mappers::htmlTagMapper->freeInstance(); + // restore original parser state + docParserPopContext(); + return root; } DocNode *validatingParseText(const char *input) { + // store parser state so we can re-enter this function if needed + docParserPushContext(); + //printf("------------ input ---------\n%s\n" // "------------ end input -----\n",input); - g_token = new TokenInfo; + //g_token = new TokenInfo; g_context = ""; g_fileName = "<parseText>"; g_relPath = ""; @@ -6068,8 +6132,8 @@ DocNode *validatingParseText(const char *input) } } - delete g_token; - + // restore original parser state + docParserPopContext(); return txt; } |