Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 1 | % libparser.tex |
| 2 | % |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 3 | % Copyright 1995 Virginia Polytechnic Institute and State University |
| 4 | % and Fred L. Drake, Jr. This copyright notice must be distributed on |
| 5 | % all copies, but this document otherwise may be distributed as part |
| 6 | % of the Python distribution. No fee may be charged for this document |
| 7 | % in any representation, either on paper or electronically. This |
| 8 | % restriction does not affect other elements in a distributed package |
| 9 | % in any way. |
| 10 | % |
| 11 | |
| 12 | \section{Built-in Module \sectcode{parser}} |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 13 | \label{module-parser} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 14 | \bimodindex{parser} |
| 15 | |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 16 | The \code{parser} module provides an interface to Python's internal |
| 17 | parser and byte-code compiler. The primary purpose for this interface |
| 18 | is to allow Python code to edit the parse tree of a Python expression |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 19 | and create executable code from this. This is better than trying |
| 20 | to parse and modify an arbitrary Python code fragment as a string |
| 21 | because parsing is performed in a manner identical to the code |
| 22 | forming the application. It is also faster. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 23 | |
| 24 | There are a few things to note about this module which are important |
| 25 | to making use of the data structures created. This is not a tutorial |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 26 | on editing the parse trees for Python code, but some examples of using |
| 27 | the \code{parser} module are presented. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 28 | |
| 29 | Most importantly, a good understanding of the Python grammar processed |
| 30 | by the internal parser is required. For full information on the |
| 31 | language syntax, refer to the Language Reference. The parser itself |
| 32 | is created from a grammar specification defined in the file |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 33 | \file{Grammar/Grammar} in the standard Python distribution. The parse |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 34 | trees stored in the ``AST objects'' created by this module are the |
| 35 | actual output from the internal parser when created by the |
| 36 | \code{expr()} or \code{suite()} functions, described below. The AST |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 37 | objects created by \code{sequence2ast()} faithfully simulate those |
| 38 | structures. Be aware that the values of the sequences which are |
| 39 | considered ``correct'' will vary from one version of Python to another |
| 40 | as the formal grammar for the language is revised. However, |
| 41 | transporting code from one Python version to another as source text |
| 42 | will always allow correct parse trees to be created in the target |
| 43 | version, with the only restriction being that migrating to an older |
| 44 | version of the interpreter will not support more recent language |
| 45 | constructs. The parse trees are not typically compatible from one |
| 46 | version to another, whereas source code has always been |
| 47 | forward-compatible. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 49 | Each element of the sequences returned by \code{ast2list} or |
| 50 | \code{ast2tuple()} has a simple form. Sequences representing |
| 51 | non-terminal elements in the grammar always have a length greater than |
| 52 | one. The first element is an integer which identifies a production in |
| 53 | the grammar. These integers are given symbolic names in the C header |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 54 | file \file{Include/graminit.h} and the Python module |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 55 | \code{symbol}. Each additional element of the sequence represents |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 56 | a component of the production as recognized in the input string: these |
| 57 | are always sequences which have the same form as the parent. An |
| 58 | important aspect of this structure which should be noted is that |
| 59 | keywords used to identify the parent node type, such as the keyword |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 60 | \code{if} in an \code{if_stmt}, are included in the node tree without |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 61 | any special treatment. For example, the \code{if} keyword is |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 62 | represented by the tuple \code{(1, 'if')}, where \code{1} is the |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 63 | numeric value associated with all \code{NAME} tokens, including |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 64 | variable and function names defined by the user. In an alternate form |
| 65 | returned when line number information is requested, the same token |
| 66 | might be represented as \code{(1, 'if', 12)}, where the \code{12} |
| 67 | represents the line number at which the terminal symbol was found. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 68 | |
| 69 | Terminal elements are represented in much the same way, but without |
| 70 | any child elements and the addition of the source text which was |
| 71 | identified. The example of the \code{if} keyword above is |
| 72 | representative. The various types of terminal symbols are defined in |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 73 | the C header file \file{Include/token.h} and the Python module |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 74 | \code{token}. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 75 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 76 | The AST objects are not required to support the functionality of this |
| 77 | module, but are provided for three purposes: to allow an application |
| 78 | to amortize the cost of processing complex parse trees, to provide a |
| 79 | parse tree representation which conserves memory space when compared |
| 80 | to the Python list or tuple representation, and to ease the creation |
| 81 | of additional modules in C which manipulate parse trees. A simple |
| 82 | ``wrapper'' class may be created in Python to hide the use of AST |
| 83 | objects; the \code{AST} library module provides a variety of such |
| 84 | classes. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 85 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 86 | The \code{parser} module defines functions for a few distinct |
| 87 | purposes. The most important purposes are to create AST objects and |
| 88 | to convert AST objects to other representations such as parse trees |
| 89 | and compiled code objects, but there are also functions which serve to |
| 90 | query the type of parse tree represented by an AST object. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 91 | |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 92 | \renewcommand{\indexsubitem}{(in module parser)} |
| 93 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 94 | |
| 95 | \subsection{Creating AST Objects} |
| 96 | |
| 97 | AST objects may be created from source code or from a parse tree. |
| 98 | When creating an AST object from source, different functions are used |
| 99 | to create the \code{'eval'} and \code{'exec'} forms. |
| 100 | |
| 101 | \begin{funcdesc}{expr}{string} |
| 102 | The \code{expr()} function parses the parameter \code{\var{string}} |
| 103 | as if it were an input to \code{compile(\var{string}, 'eval')}. If |
| 104 | the parse succeeds, an AST object is created to hold the internal |
| 105 | parse tree representation, otherwise an appropriate exception is |
| 106 | thrown. |
| 107 | \end{funcdesc} |
| 108 | |
| 109 | \begin{funcdesc}{suite}{string} |
| 110 | The \code{suite()} function parses the parameter \code{\var{string}} |
| 111 | as if it were an input to \code{compile(\var{string}, 'exec')}. If |
| 112 | the parse succeeds, an AST object is created to hold the internal |
| 113 | parse tree representation, otherwise an appropriate exception is |
| 114 | thrown. |
| 115 | \end{funcdesc} |
| 116 | |
| 117 | \begin{funcdesc}{sequence2ast}{sequence} |
| 118 | This function accepts a parse tree represented as a sequence and |
| 119 | builds an internal representation if possible. If it can validate |
| 120 | that the tree conforms to the Python grammar and all nodes are valid |
| 121 | node types in the host version of Python, an AST object is created |
| 122 | from the internal representation and returned to the called. If there |
| 123 | is a problem creating the internal representation, or if the tree |
| 124 | cannot be validated, a \code{ParserError} exception is thrown. An AST |
| 125 | object created this way should not be assumed to compile correctly; |
| 126 | normal exceptions thrown by compilation may still be initiated when |
| 127 | the AST object is passed to \code{compileast()}. This may indicate |
| 128 | problems not related to syntax (such as a \code{MemoryError} |
| 129 | exception), but may also be due to constructs such as the result of |
| 130 | parsing \code{del f(0)}, which escapes the Python parser but is |
| 131 | checked by the bytecode compiler. |
| 132 | |
| 133 | Sequences representing terminal tokens may be represented as either |
| 134 | two-element lists of the form \code{(1, 'name')} or as three-element |
| 135 | lists of the form \code{(1, 'name', 56)}. If the third element is |
| 136 | present, it is assumed to be a valid line number. The line number |
| 137 | may be specified for any subset of the terminal symbols in the input |
| 138 | tree. |
| 139 | \end{funcdesc} |
| 140 | |
| 141 | \begin{funcdesc}{tuple2ast}{sequence} |
| 142 | This is the same function as \code{sequence2ast()}. This entry point |
| 143 | is maintained for backward compatibility. |
| 144 | \end{funcdesc} |
| 145 | |
| 146 | |
| 147 | \subsection{Converting AST Objects} |
| 148 | |
| 149 | AST objects, regardless of the input used to create them, may be |
| 150 | converted to parse trees represented as list- or tuple- trees, or may |
| 151 | be compiled into executable code objects. Parse trees may be |
| 152 | extracted with or without line numbering information. |
| 153 | |
| 154 | \begin{funcdesc}{ast2list}{ast\optional{\, line_info\code{ = 0}}} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 155 | This function accepts an AST object from the caller in |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 156 | \code{\var{ast}} and returns a Python list representing the |
| 157 | equivelent parse tree. The resulting list representation can be used |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 158 | for inspection or the creation of a new parse tree in list form. This |
| 159 | function does not fail so long as memory is available to build the |
| 160 | list representation. If the parse tree will only be used for |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 161 | inspection, \code{ast2tuple()} should be used instead to reduce memory |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 162 | consumption and fragmentation. When the list representation is |
| 163 | required, this function is significantly faster than retrieving a |
| 164 | tuple representation and converting that to nested lists. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 165 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 166 | If \code{\var{line_info}} is true, line number information will be |
| 167 | included for all terminal tokens as a third element of the list |
Fred Drake | 9abe64a | 1996-12-05 22:28:43 +0000 | [diff] [blame] | 168 | representing the token. Note that the line number provided specifies |
| 169 | the line on which the token \emph{ends\/}. This information is |
| 170 | omitted if the flag is false or omitted. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 171 | \end{funcdesc} |
| 172 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 173 | \begin{funcdesc}{ast2tuple}{ast\optional{\, line_info\code{ = 0}}} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 174 | This function accepts an AST object from the caller in |
| 175 | \code{\var{ast}} and returns a Python tuple representing the |
| 176 | equivelent parse tree. Other than returning a tuple instead of a |
| 177 | list, this function is identical to \code{ast2list()}. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 178 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 179 | If \code{\var{line_info}} is true, line number information will be |
| 180 | included for all terminal tokens as a third element of the list |
| 181 | representing the token. This information is omitted if the flag is |
| 182 | false or omitted. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 183 | \end{funcdesc} |
| 184 | |
| 185 | \begin{funcdesc}{compileast}{ast\optional{\, filename\code{ = '<ast>'}}} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 186 | The Python byte compiler can be invoked on an AST object to produce |
| 187 | code objects which can be used as part of an \code{exec} statement or |
| 188 | a call to the built-in \code{eval()} function. This function provides |
| 189 | the interface to the compiler, passing the internal parse tree from |
| 190 | \code{\var{ast}} to the parser, using the source file name specified |
| 191 | by the \code{\var{filename}} parameter. The default value supplied |
| 192 | for \code{\var{filename}} indicates that the source was an AST object. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 193 | |
| 194 | Compiling an AST object may result in exceptions related to |
| 195 | compilation; an example would be a \code{SyntaxError} caused by the |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 196 | parse tree for \code{del f(0)}: this statement is considered legal |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 197 | within the formal grammar for Python but is not a legal language |
| 198 | construct. The \code{SyntaxError} raised for this condition is |
| 199 | actually generated by the Python byte-compiler normally, which is why |
| 200 | it can be raised at this point by the \code{parser} module. Most |
| 201 | causes of compilation failure can be diagnosed programmatically by |
| 202 | inspection of the parse tree. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 203 | \end{funcdesc} |
| 204 | |
| 205 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 206 | \subsection{Queries on AST Objects} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 207 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 208 | Two functions are provided which allow an application to determine if |
| 209 | an AST was create as an expression or a suite. Neither of these |
| 210 | functions can be used to determine if an AST was created from source |
| 211 | code via \code{expr()} or \code{suite()} or from a parse tree via |
| 212 | \code{sequence2ast()}. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 213 | |
| 214 | \begin{funcdesc}{isexpr}{ast} |
| 215 | When \code{\var{ast}} represents an \code{'eval'} form, this function |
| 216 | returns a true value (\code{1}), otherwise it returns false |
| 217 | (\code{0}). This is useful, since code objects normally cannot be |
| 218 | queried for this information using existing built-in functions. Note |
| 219 | that the code objects created by \code{compileast()} cannot be queried |
| 220 | like this either, and are identical to those created by the built-in |
| 221 | \code{compile()} function. |
| 222 | \end{funcdesc} |
| 223 | |
| 224 | |
| 225 | \begin{funcdesc}{issuite}{ast} |
| 226 | This function mirrors \code{isexpr()} in that it reports whether an |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 227 | AST object represents an \code{'exec'} form, commonly known as a |
| 228 | ``suite.'' It is not safe to assume that this function is equivelent |
| 229 | to \code{not isexpr(\var{ast})}, as additional syntactic fragments may |
| 230 | be supported in the future. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 231 | \end{funcdesc} |
| 232 | |
| 233 | |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 234 | \subsection{Exceptions and Error Handling} |
| 235 | |
| 236 | The parser module defines a single exception, but may also pass other |
| 237 | built-in exceptions from other portions of the Python runtime |
| 238 | environment. See each function for information about the exceptions |
| 239 | it can raise. |
| 240 | |
| 241 | \begin{excdesc}{ParserError} |
| 242 | Exception raised when a failure occurs within the parser module. This |
| 243 | is generally produced for validation failures rather than the built in |
| 244 | \code{SyntaxError} thrown during normal parsing. |
| 245 | The exception argument is either a string describing the reason of the |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 246 | failure or a tuple containing a sequence causing the failure from a parse |
| 247 | tree passed to \code{sequence2ast()} and an explanatory string. Calls to |
| 248 | \code{sequence2ast()} need to be able to handle either type of exception, |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 249 | while calls to other functions in the module will only need to be |
| 250 | aware of the simple string values. |
| 251 | \end{excdesc} |
| 252 | |
| 253 | Note that the functions \code{compileast()}, \code{expr()}, and |
| 254 | \code{suite()} may throw exceptions which are normally thrown by the |
| 255 | parsing and compilation process. These include the built in |
| 256 | exceptions \code{MemoryError}, \code{OverflowError}, |
| 257 | \code{SyntaxError}, and \code{SystemError}. In these cases, these |
| 258 | exceptions carry all the meaning normally associated with them. Refer |
| 259 | to the descriptions of each function for detailed information. |
| 260 | |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 261 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 262 | \subsection{AST Objects} |
| 263 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 264 | AST objects returned by \code{expr()}, \code{suite()}, and |
| 265 | \code{sequence2ast()} have no methods of their own. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 266 | Some of the functions defined which accept an AST object as their |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 267 | first argument may change to object methods in the future. The type |
| 268 | of these objects is available as \code{ASTType} in the module. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 269 | |
| 270 | Ordered and equality comparisons are supported between AST objects. |
| 271 | |
| 272 | |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 273 | \subsection{Examples} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 274 | \nodename{AST Examples} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 275 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 276 | The parser modules allows operations to be performed on the parse tree |
| 277 | of Python source code before the bytecode is generated, and provides |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 278 | for inspection of the parse tree for information gathering purposes. |
| 279 | Two examples are presented. The simple example demonstrates emulation |
| 280 | of the \code{compile()} built-in function and the complex example |
| 281 | shows the use of a parse tree for information discovery. |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 282 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 283 | \subsubsection{Emulation of \sectcode{compile()}} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 284 | |
| 285 | While many useful operations may take place between parsing and |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 286 | bytecode generation, the simplest operation is to do nothing. For |
| 287 | this purpose, using the \code{parser} module to produce an |
| 288 | intermediate data structure is equivelent to the code |
| 289 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 290 | \bcode\begin{verbatim} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 291 | >>> code = compile('a + 5', 'eval') |
| 292 | >>> a = 5 |
| 293 | >>> eval(code) |
| 294 | 10 |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 295 | \end{verbatim}\ecode |
| 296 | % |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 297 | The equivelent operation using the \code{parser} module is somewhat |
| 298 | longer, and allows the intermediate internal parse tree to be retained |
| 299 | as an AST object: |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 300 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 301 | \bcode\begin{verbatim} |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 302 | >>> import parser |
| 303 | >>> ast = parser.expr('a + 5') |
| 304 | >>> code = parser.compileast(ast) |
| 305 | >>> a = 5 |
| 306 | >>> eval(code) |
| 307 | 10 |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 308 | \end{verbatim}\ecode |
| 309 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 310 | An application which needs both AST and code objects can package this |
| 311 | code into readily available functions: |
| 312 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 313 | \bcode\begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 314 | import parser |
| 315 | |
| 316 | def load_suite(source_string): |
| 317 | ast = parser.suite(source_string) |
| 318 | code = parser.compileast(ast) |
| 319 | return ast, code |
| 320 | |
| 321 | def load_expression(source_string): |
| 322 | ast = parser.expr(source_string) |
| 323 | code = parser.compileast(ast) |
| 324 | return ast, code |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 325 | \end{verbatim}\ecode |
| 326 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 327 | \subsubsection{Information Discovery} |
| 328 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 329 | Some applications benefit from direct access to the parse tree. The |
| 330 | remainder of this section demonstrates how the parse tree provides |
| 331 | access to module documentation defined in docstrings without requiring |
| 332 | that the code being examined be loaded into a running interpreter via |
| 333 | \code{import}. This can be very useful for performing analyses of |
| 334 | untrusted code. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 335 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 336 | Generally, the example will demonstrate how the parse tree may be |
| 337 | traversed to distill interesting information. Two functions and a set |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 338 | of classes are developed which provide programmatic access to high |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 339 | level function and class definitions provided by a module. The |
| 340 | classes extract information from the parse tree and provide access to |
| 341 | the information at a useful semantic level, one function provides a |
| 342 | simple low-level pattern matching capability, and the other function |
| 343 | defines a high-level interface to the classes by handling file |
| 344 | operations on behalf of the caller. All source files mentioned here |
| 345 | which are not part of the Python installation are located in the |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 346 | \file{Demo/parser/} directory of the distribution. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 347 | |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 348 | The dynamic nature of Python allows the programmer a great deal of |
| 349 | flexibility, but most modules need only a limited measure of this when |
| 350 | defining classes, functions, and methods. In this example, the only |
| 351 | definitions that will be considered are those which are defined in the |
| 352 | top level of their context, e.g., a function defined by a \code{def} |
| 353 | statement at column zero of a module, but not a function defined |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 354 | within a branch of an \code{if} ... \code{else} construct, though |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 355 | there are some good reasons for doing so in some situations. Nesting |
| 356 | of definitions will be handled by the code developed in the example. |
| 357 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 358 | To construct the upper-level extraction methods, we need to know what |
| 359 | the parse tree structure looks like and how much of it we actually |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 360 | need to be concerned about. Python uses a moderately deep parse tree |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 361 | so there are a large number of intermediate nodes. It is important to |
| 362 | read and understand the formal grammar used by Python. This is |
| 363 | specified in the file \file{Grammar/Grammar} in the distribution. |
| 364 | Consider the simplest case of interest when searching for docstrings: |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 365 | a module consisting of a docstring and nothing else. (See file |
| 366 | \file{docstring.py}.) |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 367 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 368 | \bcode\begin{verbatim} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 369 | """Some documentation. |
| 370 | """ |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 371 | \end{verbatim}\ecode |
| 372 | % |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 373 | Using the interpreter to take a look at the parse tree, we find a |
| 374 | bewildering mass of numbers and parentheses, with the documentation |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 375 | buried deep in nested tuples. |
Guido van Rossum | 4b73a06 | 1995-10-11 17:30:04 +0000 | [diff] [blame] | 376 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 377 | \bcode\begin{verbatim} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 378 | >>> import parser |
| 379 | >>> import pprint |
| 380 | >>> ast = parser.suite(open('docstring.py').read()) |
| 381 | >>> tup = parser.ast2tuple(ast) |
| 382 | >>> pprint.pprint(tup) |
| 383 | (257, |
| 384 | (264, |
| 385 | (265, |
| 386 | (266, |
| 387 | (267, |
| 388 | (307, |
| 389 | (287, |
| 390 | (288, |
| 391 | (289, |
| 392 | (290, |
| 393 | (292, |
| 394 | (293, |
| 395 | (294, |
| 396 | (295, |
| 397 | (296, |
| 398 | (297, |
| 399 | (298, |
| 400 | (299, |
| 401 | (300, (3, '"""Some documentation.\012"""'))))))))))))))))), |
| 402 | (4, ''))), |
| 403 | (4, ''), |
| 404 | (0, '')) |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 405 | \end{verbatim}\ecode |
| 406 | % |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 407 | The numbers at the first element of each node in the tree are the node |
| 408 | types; they map directly to terminal and non-terminal symbols in the |
| 409 | grammar. Unfortunately, they are represented as integers in the |
| 410 | internal representation, and the Python structures generated do not |
| 411 | change that. However, the \code{symbol} and \code{token} modules |
| 412 | provide symbolic names for the node types and dictionaries which map |
| 413 | from the integers to the symbolic names for the node types. |
| 414 | |
| 415 | In the output presented above, the outermost tuple contains four |
| 416 | elements: the integer \code{257} and three additional tuples. Node |
| 417 | type \code{257} has the symbolic name \code{file_input}. Each of |
| 418 | these inner tuples contains an integer as the first element; these |
| 419 | integers, \code{264}, \code{4}, and \code{0}, represent the node types |
| 420 | \code{stmt}, \code{NEWLINE}, and \code{ENDMARKER}, respectively. |
| 421 | Note that these values may change depending on the version of Python |
| 422 | you are using; consult \file{symbol.py} and \file{token.py} for |
| 423 | details of the mapping. It should be fairly clear that the outermost |
| 424 | node is related primarily to the input source rather than the contents |
| 425 | of the file, and may be disregarded for the moment. The \code{stmt} |
| 426 | node is much more interesting. In particular, all docstrings are |
| 427 | found in subtrees which are formed exactly as this node is formed, |
| 428 | with the only difference being the string itself. The association |
| 429 | between the docstring in a similar tree and the defined entity (class, |
| 430 | function, or module) which it describes is given by the position of |
| 431 | the docstring subtree within the tree defining the described |
| 432 | structure. |
| 433 | |
| 434 | By replacing the actual docstring with something to signify a variable |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 435 | component of the tree, we allow a simple pattern matching approach to |
| 436 | check any given subtree for equivelence to the general pattern for |
| 437 | docstrings. Since the example demonstrates information extraction, we |
| 438 | can safely require that the tree be in tuple form rather than list |
| 439 | form, allowing a simple variable representation to be |
| 440 | \code{['variable_name']}. A simple recursive function can implement |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 441 | the pattern matching, returning a boolean and a dictionary of variable |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 442 | name to value mappings. (See file \file{example.py}.) |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 443 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 444 | \bcode\begin{verbatim} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 445 | from types import ListType, TupleType |
| 446 | |
| 447 | def match(pattern, data, vars=None): |
| 448 | if vars is None: |
| 449 | vars = {} |
| 450 | if type(pattern) is ListType: |
| 451 | vars[pattern[0]] = data |
| 452 | return 1, vars |
| 453 | if type(pattern) is not TupleType: |
| 454 | return (pattern == data), vars |
| 455 | if len(data) != len(pattern): |
| 456 | return 0, vars |
| 457 | for pattern, data in map(None, pattern, data): |
| 458 | same, vars = match(pattern, data, vars) |
| 459 | if not same: |
| 460 | break |
| 461 | return same, vars |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 462 | \end{verbatim}\ecode |
| 463 | % |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 464 | Using this simple representation for syntactic variables and the symbolic |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 465 | node types, the pattern for the candidate docstring subtrees becomes |
| 466 | fairly readable. (See file \file{example.py}.) |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 467 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 468 | \bcode\begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 469 | import symbol |
| 470 | import token |
| 471 | |
| 472 | DOCSTRING_STMT_PATTERN = ( |
| 473 | symbol.stmt, |
| 474 | (symbol.simple_stmt, |
| 475 | (symbol.small_stmt, |
| 476 | (symbol.expr_stmt, |
| 477 | (symbol.testlist, |
| 478 | (symbol.test, |
| 479 | (symbol.and_test, |
| 480 | (symbol.not_test, |
| 481 | (symbol.comparison, |
| 482 | (symbol.expr, |
| 483 | (symbol.xor_expr, |
| 484 | (symbol.and_expr, |
| 485 | (symbol.shift_expr, |
| 486 | (symbol.arith_expr, |
| 487 | (symbol.term, |
| 488 | (symbol.factor, |
| 489 | (symbol.power, |
| 490 | (symbol.atom, |
| 491 | (token.STRING, ['docstring']) |
| 492 | )))))))))))))))), |
| 493 | (token.NEWLINE, '') |
| 494 | )) |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 495 | \end{verbatim}\ecode |
| 496 | % |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 497 | Using the \code{match()} function with this pattern, extracting the |
| 498 | module docstring from the parse tree created previously is easy: |
| 499 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 500 | \bcode\begin{verbatim} |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 501 | >>> found, vars = match(DOCSTRING_STMT_PATTERN, tup[1]) |
| 502 | >>> found |
| 503 | 1 |
| 504 | >>> vars |
| 505 | {'docstring': '"""Some documentation.\012"""'} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 506 | \end{verbatim}\ecode |
| 507 | % |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 508 | Once specific data can be extracted from a location where it is |
| 509 | expected, the question of where information can be expected |
| 510 | needs to be answered. When dealing with docstrings, the answer is |
| 511 | fairly simple: the docstring is the first \code{stmt} node in a code |
| 512 | block (\code{file_input} or \code{suite} node types). A module |
| 513 | consists of a single \code{file_input} node, and class and function |
| 514 | definitions each contain exactly one \code{suite} node. Classes and |
| 515 | functions are readily identified as subtrees of code block nodes which |
| 516 | start with \code{(stmt, (compound_stmt, (classdef, ...} or |
| 517 | \code{(stmt, (compound_stmt, (funcdef, ...}. Note that these subtrees |
| 518 | cannot be matched by \code{match()} since it does not support multiple |
| 519 | sibling nodes to match without regard to number. A more elaborate |
| 520 | matching function could be used to overcome this limitation, but this |
| 521 | is sufficient for the example. |
| 522 | |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 523 | Given the ability to determine whether a statement might be a |
| 524 | docstring and extract the actual string from the statement, some work |
| 525 | needs to be performed to walk the parse tree for an entire module and |
| 526 | extract information about the names defined in each context of the |
| 527 | module and associate any docstrings with the names. The code to |
| 528 | perform this work is not complicated, but bears some explanation. |
| 529 | |
| 530 | The public interface to the classes is straightforward and should |
| 531 | probably be somewhat more flexible. Each ``major'' block of the |
| 532 | module is described by an object providing several methods for inquiry |
| 533 | and a constructor which accepts at least the subtree of the complete |
| 534 | parse tree which it represents. The \code{ModuleInfo} constructor |
| 535 | accepts an optional \code{\var{name}} parameter since it cannot |
| 536 | otherwise determine the name of the module. |
| 537 | |
| 538 | The public classes include \code{ClassInfo}, \code{FunctionInfo}, |
| 539 | and \code{ModuleInfo}. All objects provide the |
| 540 | methods \code{get_name()}, \code{get_docstring()}, |
| 541 | \code{get_class_names()}, and \code{get_class_info()}. The |
| 542 | \code{ClassInfo} objects support \code{get_method_names()} and |
| 543 | \code{get_method_info()} while the other classes provide |
| 544 | \code{get_function_names()} and \code{get_function_info()}. |
| 545 | |
| 546 | Within each of the forms of code block that the public classes |
| 547 | represent, most of the required information is in the same form and is |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 548 | accessed in the same way, with classes having the distinction that |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 549 | functions defined at the top level are referred to as ``methods.'' |
| 550 | Since the difference in nomenclature reflects a real semantic |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 551 | distinction from functions defined outside of a class, the |
| 552 | implementation needs to maintain the distinction. |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 553 | Hence, most of the functionality of the public classes can be |
| 554 | implemented in a common base class, \code{SuiteInfoBase}, with the |
| 555 | accessors for function and method information provided elsewhere. |
| 556 | Note that there is only one class which represents function and method |
Fred Drake | 43d287a | 1997-01-22 14:25:21 +0000 | [diff] [blame] | 557 | information; this parallels the use of the \code{def} statement to |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 558 | define both types of elements. |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 559 | |
| 560 | Most of the accessor functions are declared in \code{SuiteInfoBase} |
| 561 | and do not need to be overriden by subclasses. More importantly, the |
| 562 | extraction of most information from a parse tree is handled through a |
| 563 | method called by the \code{SuiteInfoBase} constructor. The example |
| 564 | code for most of the classes is clear when read alongside the formal |
| 565 | grammar, but the method which recursively creates new information |
| 566 | objects requires further examination. Here is the relevant part of |
| 567 | the \code{SuiteInfoBase} definition from \file{example.py}: |
| 568 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 569 | \bcode\begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 570 | class SuiteInfoBase: |
| 571 | _docstring = '' |
| 572 | _name = '' |
| 573 | |
| 574 | def __init__(self, tree = None): |
| 575 | self._class_info = {} |
| 576 | self._function_info = {} |
| 577 | if tree: |
| 578 | self._extract_info(tree) |
| 579 | |
| 580 | def _extract_info(self, tree): |
| 581 | # extract docstring |
| 582 | if len(tree) == 2: |
| 583 | found, vars = match(DOCSTRING_STMT_PATTERN[1], tree[1]) |
| 584 | else: |
| 585 | found, vars = match(DOCSTRING_STMT_PATTERN, tree[3]) |
| 586 | if found: |
| 587 | self._docstring = eval(vars['docstring']) |
| 588 | # discover inner definitions |
| 589 | for node in tree[1:]: |
| 590 | found, vars = match(COMPOUND_STMT_PATTERN, node) |
| 591 | if found: |
| 592 | cstmt = vars['compound'] |
| 593 | if cstmt[0] == symbol.funcdef: |
| 594 | name = cstmt[2][1] |
| 595 | self._function_info[name] = FunctionInfo(cstmt) |
| 596 | elif cstmt[0] == symbol.classdef: |
| 597 | name = cstmt[2][1] |
| 598 | self._class_info[name] = ClassInfo(cstmt) |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 599 | \end{verbatim}\ecode |
| 600 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 601 | After initializing some internal state, the constructor calls the |
| 602 | \code{_extract_info()} method. This method performs the bulk of the |
| 603 | information extraction which takes place in the entire example. The |
| 604 | extraction has two distinct phases: the location of the docstring for |
| 605 | the parse tree passed in, and the discovery of additional definitions |
| 606 | within the code block represented by the parse tree. |
| 607 | |
| 608 | The initial \code{if} test determines whether the nested suite is of |
| 609 | the ``short form'' or the ``long form.'' The short form is used when |
| 610 | the code block is on the same line as the definition of the code |
| 611 | block, as in |
| 612 | |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 613 | \begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 614 | def square(x): "Square an argument."; return x ** 2 |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 615 | \end{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 616 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 617 | while the long form uses an indented block and allows nested |
| 618 | definitions: |
| 619 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 620 | \bcode\begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 621 | def make_power(exp): |
| 622 | "Make a function that raises an argument to the exponent `exp'." |
| 623 | def raiser(x, y=exp): |
| 624 | return x ** y |
| 625 | return raiser |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 626 | \end{verbatim}\ecode |
| 627 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 628 | When the short form is used, the code block may contain a docstring as |
| 629 | the first, and possibly only, \code{small_stmt} element. The |
| 630 | extraction of such a docstring is slightly different and requires only |
| 631 | a portion of the complete pattern used in the more common case. As |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 632 | implemented, the docstring will only be found if there is only |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 633 | one \code{small_stmt} node in the \code{simple_stmt} node. Since most |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 634 | functions and methods which use the short form do not provide a |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 635 | docstring, this may be considered sufficient. The extraction of the |
| 636 | docstring proceeds using the \code{match()} function as described |
| 637 | above, and the value of the docstring is stored as an attribute of the |
| 638 | \code{SuiteInfoBase} object. |
| 639 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 640 | After docstring extraction, a simple definition discovery |
| 641 | algorithm operates on the \code{stmt} nodes of the \code{suite} node. The |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 642 | special case of the short form is not tested; since there are no |
| 643 | \code{stmt} nodes in the short form, the algorithm will silently skip |
| 644 | the single \code{simple_stmt} node and correctly not discover any |
| 645 | nested definitions. |
| 646 | |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 647 | Each statement in the code block is categorized as |
| 648 | a class definition, function or method definition, or |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 649 | something else. For the definition statements, the name of the |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 650 | element defined is extracted and a representation object |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 651 | appropriate to the definition is created with the defining subtree |
| 652 | passed as an argument to the constructor. The repesentation objects |
| 653 | are stored in instance variables and may be retrieved by name using |
| 654 | the appropriate accessor methods. |
| 655 | |
| 656 | The public classes provide any accessors required which are more |
| 657 | specific than those provided by the \code{SuiteInfoBase} class, but |
| 658 | the real extraction algorithm remains common to all forms of code |
| 659 | blocks. A high-level function can be used to extract the complete set |
Fred Drake | 4b7d5a4 | 1996-09-11 21:57:40 +0000 | [diff] [blame] | 660 | of information from a source file. (See file \file{example.py}.) |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 661 | |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 662 | \bcode\begin{verbatim} |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 663 | def get_docs(fileName): |
| 664 | source = open(fileName).read() |
| 665 | import os |
| 666 | basename = os.path.basename(os.path.splitext(fileName)[0]) |
| 667 | import parser |
| 668 | ast = parser.suite(source) |
| 669 | tup = parser.ast2tuple(ast) |
| 670 | return ModuleInfo(tup, basename) |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 671 | \end{verbatim}\ecode |
| 672 | % |
Guido van Rossum | 8206fb9 | 1996-08-26 00:33:29 +0000 | [diff] [blame] | 673 | This provides an easy-to-use interface to the documentation of a |
| 674 | module. If information is required which is not extracted by the code |
| 675 | of this example, the code may be extended at clearly defined points to |
| 676 | provide additional capabilities. |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 677 | |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 678 | \begin{seealso} |
| 679 | |
| 680 | \seemodule{symbol}% |
| 681 | {useful constants representing internal nodes of the parse tree} |
| 682 | |
| 683 | \seemodule{token}% |
| 684 | {useful constants representing leaf nodes of the parse tree and |
| 685 | functions for testing node values} |
| 686 | |
| 687 | \end{seealso} |
| 688 | |
Guido van Rossum | 4747887 | 1996-08-21 14:32:37 +0000 | [diff] [blame] | 689 | |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 690 | \section{Standard Module \sectcode{symbol}} |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 691 | \label{module-symbol} |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 692 | \stmodindex{symbol} |
| 693 | |
| 694 | This module provides constants which represent the numeric values of |
| 695 | internal nodes of the parse tree. Unlike most Python constants, these |
| 696 | use lower-case names. Refer to the file \file{Grammar/Grammar} in the |
| 697 | Python distribution for the defintions of the names in the context of |
| 698 | the language grammar. The specific numeric values which the names map |
| 699 | to may change between Python versions. |
| 700 | |
| 701 | This module also provides one additional data object: |
| 702 | |
Fred Drake | e624e0f | 1997-11-25 04:04:00 +0000 | [diff] [blame] | 703 | \renewcommand{\indexsubitem}{(in module symbol)} |
| 704 | |
| 705 | |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 706 | \begin{datadesc}{sym_name} |
| 707 | Dictionary mapping the numeric values of the constants defined in this |
| 708 | module back to name strings, allowing more human-readable |
| 709 | representation of parse trees to be generated. |
| 710 | \end{datadesc} |
| 711 | |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 712 | \begin{seealso} |
| 713 | \seemodule{parser}{second example uses this module} |
| 714 | \end{seealso} |
| 715 | |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 716 | |
| 717 | \section{Standard Module \sectcode{token}} |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 718 | \label{module-token} |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 719 | \stmodindex{token} |
| 720 | |
| 721 | This module provides constants which represent the numeric values of |
| 722 | leaf nodes of the parse tree (terminal tokens). Refer to the file |
| 723 | \file{Grammar/Grammar} in the Python distribution for the defintions |
| 724 | of the names in the context of the language grammar. The specific |
| 725 | numeric values which the names map to may change between Python |
| 726 | versions. |
| 727 | |
| 728 | This module also provides one data object and some functions. The |
| 729 | functions mirror definitions in the Python C header files. |
| 730 | |
Fred Drake | e624e0f | 1997-11-25 04:04:00 +0000 | [diff] [blame] | 731 | \renewcommand{\indexsubitem}{(in module token)} |
| 732 | |
| 733 | |
Fred Drake | e061a51 | 1997-10-06 21:40:20 +0000 | [diff] [blame] | 734 | \begin{datadesc}{tok_name} |
| 735 | Dictionary mapping the numeric values of the constants defined in this |
| 736 | module back to name strings, allowing more human-readable |
| 737 | representation of parse trees to be generated. |
| 738 | \end{datadesc} |
| 739 | |
| 740 | \begin{funcdesc}{ISTERMINAL}{x} |
| 741 | Return true for terminal token values. |
| 742 | \end{funcdesc} |
| 743 | |
| 744 | \begin{funcdesc}{ISNONTERMINAL}{x} |
| 745 | Return true for non-terminal token values. |
| 746 | \end{funcdesc} |
| 747 | |
| 748 | \begin{funcdesc}{ISEOF}{x} |
| 749 | Return true if \var{x} is the marker indicating the end of input. |
| 750 | \end{funcdesc} |
| 751 | |
Fred Drake | bbe6068 | 1998-01-09 22:24:14 +0000 | [diff] [blame^] | 752 | \begin{seealso} |
| 753 | \seemodule{parser}{second example uses this module} |
| 754 | \end{seealso} |