Public Member Functions | Private Attributes | List of all members
FortranLanguageScanner Class Reference

Fortran language parser using state-based lexical scanning. More...

#include <fortranscanner.h>

Inheritance diagram for FortranLanguageScanner:
ParserInterface FortranLanguageScannerFixed FortranLanguageScannerFree

Public Member Functions

 FortranLanguageScanner (FortranFormat format=FortranFormat_Unknown)
 
virtual ~FortranLanguageScanner ()
 
void startTranslationUnit (const char *)
 
void finishTranslationUnit ()
 
void parseInput (const char *fileName, const char *fileBuf, Entry *root, bool sameTranslationUnit, QStrList &filesInSameTranslationUnit)
 
bool needsPreprocessing (const QCString &extension)
 
void parseCode (CodeOutputInterface &codeOutIntf, const char *scopeName, const QCString &input, SrcLangExt lang, bool isExampleBlock, const char *exampleName=0, FileDef *fileDef=0, int startLine=-1, int endLine=-1, bool inlineFragment=FALSE, MemberDef *memberDef=0, bool showLineNumbers=TRUE, Definition *searchCtx=0, bool collectXRefs=TRUE)
 
void resetCodeParserState ()
 
void parsePrototype (const char *text)
 
- Public Member Functions inherited from ParserInterface
virtual ~ParserInterface ()
 

Private Attributes

FortranFormat m_format
 

Detailed Description

Fortran language parser using state-based lexical scanning.

This is the Fortran language parser for doxygen.

Definition at line 27 of file fortranscanner.h.

Constructor & Destructor Documentation

FortranLanguageScanner::FortranLanguageScanner ( FortranFormat  format = FortranFormat_Unknown)
inline

Definition at line 30 of file fortranscanner.h.

30 : m_format(format) { }
static bool format(QChar::Decomposition tag, QString &str, int index, int len)
Definition: qstring.cpp:11496
FortranFormat m_format
virtual FortranLanguageScanner::~FortranLanguageScanner ( )
inlinevirtual

Definition at line 31 of file fortranscanner.h.

31 {}

Member Function Documentation

void FortranLanguageScanner::finishTranslationUnit ( )
inlinevirtual

Called after all files in a translation unit have been processed.

Implements ParserInterface.

Definition at line 33 of file fortranscanner.h.

33 {}
bool FortranLanguageScanner::needsPreprocessing ( const QCString extension)
virtual

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 ParserInterface.

Definition at line 60827 of file fortranscanner.cpp.

60828 {
60829  return extension!=extension.lower(); // use preprocessor only for upper case extensions
60830 }
QCString lower() const
Definition: qcstring.cpp:263
void FortranLanguageScanner::parseCode ( CodeOutputInterface codeOutIntf,
const char *  scopeName,
const QCString input,
SrcLangExt  lang,
bool  isExampleBlock,
const char *  exampleName = 0,
FileDef fileDef = 0,
int  startLine = -1,
int  endLine = -1,
bool  inlineFragment = FALSE,
MemberDef memberDef = 0,
bool  showLineNumbers = TRUE,
Definition searchCtx = 0,
bool  collectXRefs = TRUE 
)
virtual

Parses a source file or fragment with the goal to produce highlighted and cross-referenced output.

Parameters
[in]codeOutIntfAbstract interface for writing the result.
[in]langThe programming language of the code fragment.
[in]scopeNameName of scope to which the code belongs.
[in]inputActual code in the form of a string
[in]isExampleBlockTRUE iff the code is part of an example.
[in]exampleNameName of the example.
[in]fileDefFile definition to which the code is associated.
[in]startLineStarting line in case of a code fragment.
[in]endLineEnding line of the code fragment.
[in]inlineFragmentCode fragment that is to be shown inline as part of the documentation.
[in]memberDefMember definition to which the code is associated (non null in case of an inline fragment for a member).
[in]showLineNumbersif set to TRUE and also fileDef is not 0, line numbers will be added to the source fragement
[in]searchCtxcontext under which search data has to be stored.
[in]collectXRefscollect cross-reference relations.

Implements ParserInterface.

Definition at line 60806 of file fortranscanner.cpp.

60821 {
60822  ::parseFortranCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName,
60823  fileDef,startLine,endLine,inlineFragment,memberDef,
60824  showLineNumbers,searchCtx,collectXRefs,m_format);
60825 }
void parseFortranCode(CodeOutputInterface &od, const char *className, const QCString &s, bool exBlock, const char *exName, FileDef *fd, int startLine, int endLine, bool inlineFragment, MemberDef *memberDef, bool, Definition *searchCtx, bool collectXRefs, FortranFormat format)
FortranFormat m_format
bool collectXRefs
void FortranLanguageScanner::parseInput ( const char *  fileName,
const char *  fileBuf,
Entry root,
bool  sameTranslationUnit,
QStrList filesInSameTranslationUnit 
)
virtual

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]sameTranslationUnitTRUE if this file was found in the same translation unit (in the filesInSameTranslationUnit list returned for another file).
[in,out]filesInSameTranslationUnitother files expected to be found in the same translation unit (used for libclang)

Implements ParserInterface.

Definition at line 60791 of file fortranscanner.cpp.

60796 {
60797  g_thisParser = this;
60798 
60800 
60801  ::parseMain(fileName,fileBuf,root,m_format);
60802 
60804 }
void printlex(int dbg, bool enter, const char *lexName, const char *fileName)
Definition: message.cpp:242
static void parseMain(const char *fileName, const char *fileBuf, Entry *rt, FortranFormat format)
const bool FALSE
Definition: qglobal.h:370
int fortranscannerYY_flex_debug
FortranFormat m_format
fileName
Definition: dumpTree.py:9
static ParserInterface * g_thisParser
const bool TRUE
Definition: qglobal.h:371
void FortranLanguageScanner::parsePrototype ( const char *  text)
virtual

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 ParserInterface.

Definition at line 60836 of file fortranscanner.cpp.

60837 {
60838  QCString buffer = QCString(text);
60839  pushBuffer(buffer);
60841  BEGIN(Prototype);
60844  popBuffer();
60845 }
#define Prototype
#define BEGIN
const bool FALSE
Definition: qglobal.h:370
static bool parsingPrototype
static void popBuffer()
int fortranscannerYYlex(void)
const bool TRUE
Definition: qglobal.h:371
static void pushBuffer(QCString &buffer)
void FortranLanguageScanner::resetCodeParserState ( )
virtual

Resets the state of the code parser. Since multiple code fragments can together form a single example, an explicit function is used to reset the code parser state.

See also
parseCode()

Implements ParserInterface.

Definition at line 60831 of file fortranscanner.cpp.

60832 {
60834 }
void resetFortranCodeParserState()
void FortranLanguageScanner::startTranslationUnit ( const char *  fileName)
inlinevirtual

Starts processing a translation unit (source files + headers). After this call parseInput() is called with sameTranslationUnit set to FALSE. If parseInput() returns additional include files, these are also processed using parseInput() with sameTranslationUnit set to TRUE. After that finishTranslationUnit() is called.

Implements ParserInterface.

Definition at line 32 of file fortranscanner.h.

32 {}

Member Data Documentation

FortranFormat FortranLanguageScanner::m_format
private

Definition at line 59 of file fortranscanner.h.


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