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