Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/src/parserintf.h

Source at commit 1322 created 12 years 8 months ago.
By meklort, Add doxygen to utils folder
1/******************************************************************************
2 *
3 * $Id: parserintf.h,v 1.15 2001/03/19 19:27:41 root Exp $
4 *
5 * Copyright (C) 1997-2011 by Dimitri van Heesch.
6 *
7 * Permission to use, copy, modify, and distribute this software and its
8 * documentation under the terms of the GNU General Public License is hereby
9 * granted. No representations are made about the suitability of this software
10 * for any purpose. It is provided "as is" without express or implied warranty.
11 * See the GNU General Public License for more details.
12 *
13 * Documents produced by Doxygen are derivative works derived from the
14 * input used in their production; they are not affected by this license.
15 *
16 */
17
18#ifndef PARSERINTF_H
19#define PARSERINTF_H
20
21#include <qdict.h>
22
23class Entry;
24class FileDef;
25class CodeOutputInterface;
26class MemberDef;
27
28/** \brief Abstract interface for programming language parsers.
29 *
30 * By implementing the methods of this interface one can add
31 * a new language parser to doxygen. The parser can make use of the
32 * comment block parser to parse the contents of special comment blocks.
33 */
34class ParserInterface
35{
36 public:
37 virtual ~ParserInterface() {}
38 /** Parses a single input file with the goal to build an Entry tree.
39 * @param[in] fileName The full name of the file.
40 * @param[in] fileBuf The contents of the file (zero terminated).
41 * @param[in,out] root The root of the tree of Entry *nodes
42 * representing the information extracted from the file.
43 */
44 virtual void parseInput(const char *fileName,
45 const char *fileBuf,
46 Entry *root) = 0;
47
48 /** Returns TRUE if the language identified by \a extension needs
49 * the C preprocessor to be run before feed the result to the input
50 * parser.
51 * @see parseInput()
52 */
53 virtual bool needsPreprocessing(const QCString &extension) = 0;
54
55 /** Parses a source file or fragment with the goal to produce
56 * highlighted and cross-referenced output.
57 * @param[in] codeOutIntf Abstract interface for writing the result.
58 * @param[in] scopeName Name of scope to which the code belongs.
59 * @param[in] input Actual code in the form of a string
60 * @param[in] isExampleBlock TRUE iff the code is part of an example.
61 * @param[in] exampleName Name of the example.
62 * @param[in] fileDef File definition to which the code
63 * is associated.
64 * @param[in] startLine Starting line in case of a code fragment.
65 * @param[in] endLine Ending line of the code fragment.
66 * @param[in] inlineFragment Code fragment that is to be shown inline
67 * as part of the documentation.
68 * @param[in] memberDef Member definition to which the code
69 * is associated (non null in case of an inline fragment
70 * for a member).
71 * @param[in] showLineNumbers if set to TRUE and also fileDef is not 0,
72 * line numbers will be added to the source fragement
73 */
74 virtual void parseCode(CodeOutputInterface &codeOutIntf,
75 const char *scopeName,
76 const QCString &input,
77 bool isExampleBlock,
78 const char *exampleName=0,
79 FileDef *fileDef=0,
80 int startLine=-1,
81 int endLine=-1,
82 bool inlineFragment=FALSE,
83 MemberDef *memberDef=0,
84 bool showLineNumbers=TRUE
85 ) = 0;
86
87 /** Resets the state of the code parser.
88 * Since multiple code fragments can together form a single example, an
89 * explicit function is used to reset the code parser state.
90 * @see parseCode()
91 */
92 virtual void resetCodeParserState() = 0;
93
94 /** Callback function called by the comment block scanner.
95 * It provides a string \a text containing the prototype of a function
96 * or variable. The parser should parse this and store the information
97 * in the Entry node that corresponds with the node for which the
98 * comment block parser was invoked.
99 */
100 virtual void parsePrototype(const char *text) = 0;
101
102};
103
104//-----------------------------------------------------------------------------
105
106/** \brief Manages programming language parsers.
107 *
108 * This class manages the language parsers in the system. One can
109 * register parsers, and obtain a parser given a file extension.
110 */
111class ParserManager
112{
113 public:
114 /** Creates the parser manager object.
115 */
116 ParserManager()
117 : m_defaultParser(0) { m_parsers.setAutoDelete(TRUE); }
118
119 /** Registers an additional parser.
120 * @param[in] name A symbolic name of the parser, i.e. "c",
121 * "python", "fortran", "vhdl", ...
122 * @param[in] parser The parser that is to be used for the
123 * given extension.
124 * @param[in] defParser Use this parser as the default parser, using
125 * for unregistered file extensions.
126 */
127 void registerParser(const char *name,ParserInterface *parser,bool defParser=FALSE)
128 {
129 if (defParser && m_defaultParser==0) m_defaultParser=parser;
130 m_parsers.insert(name,parser);
131 }
132
133 /** Registers a file \a extension with a parser with name \a parserName.
134 * Returns TRUE if the extension was successfully registered.
135 */
136 bool registerExtension(const char *extension, const char *parserName)
137 {
138 if (parserName==0 || extension==0) return FALSE;
139 ParserInterface *intf = m_parsers.find(parserName);
140 if (intf==0) return FALSE;
141 if (m_extensions.find(extension)!=0) // extension already exists
142 {
143 m_extensions.remove(extension); // remove it
144 }
145 m_extensions.insert(extension,intf); // add new mapping
146 return TRUE;
147 }
148
149 /** Gets the interface to the parser associated with given \a extension.
150 * If there is no parser explicitly registered for the supplied extension,
151 * the interface to the default parser will be returned.
152 */
153 ParserInterface *getParser(const char *extension)
154 {
155 if (extension==0) return m_defaultParser;
156 QCString ext = QCString(extension).lower();
157 ParserInterface *intf = m_extensions.find(ext);
158 if (intf==0 && ext.length()>4)
159 {
160 intf = m_extensions.find(ext.left(4));
161 }
162 return intf ? intf : m_defaultParser;
163 }
164
165 private:
166 QDict<ParserInterface> m_parsers;
167 QDict<ParserInterface> m_extensions;
168 ParserInterface *m_defaultParser;
169};
170
171#endif
172

Archive Download this file

Revision: 1322