blob: a8d116ab5f4a6502a1a159f9a06efef21d23690b [file] [log] [blame]
Guido van Rossum4b73a061995-10-11 17:30:04 +00001% libparser.tex
2%
Guido van Rossum4b73a061995-10-11 17:30:04 +00003% 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 Drakebbe60681998-01-09 22:24:14 +000013\label{module-parser}
Guido van Rossum4b73a061995-10-11 17:30:04 +000014\bimodindex{parser}
Fred Drake88223901998-02-09 20:52:48 +000015\index{parsing!Python source code}
Guido van Rossum4b73a061995-10-11 17:30:04 +000016
Fred Drake88223901998-02-09 20:52:48 +000017The \module{parser} module provides an interface to Python's internal
Guido van Rossum4b73a061995-10-11 17:30:04 +000018parser and byte-code compiler. The primary purpose for this interface
19is to allow Python code to edit the parse tree of a Python expression
Fred Drake4b7d5a41996-09-11 21:57:40 +000020and create executable code from this. This is better than trying
21to parse and modify an arbitrary Python code fragment as a string
22because parsing is performed in a manner identical to the code
23forming the application. It is also faster.
Guido van Rossum4b73a061995-10-11 17:30:04 +000024
25There are a few things to note about this module which are important
26to making use of the data structures created. This is not a tutorial
Fred Drake4b7d5a41996-09-11 21:57:40 +000027on editing the parse trees for Python code, but some examples of using
Fred Drake88223901998-02-09 20:52:48 +000028the \module{parser} module are presented.
Guido van Rossum4b73a061995-10-11 17:30:04 +000029
30Most importantly, a good understanding of the Python grammar processed
31by the internal parser is required. For full information on the
Fred Drake88223901998-02-09 20:52:48 +000032language syntax, refer to the \emph{Python Language Reference}. The
33parser itself is created from a grammar specification defined in the file
Fred Drake4b7d5a41996-09-11 21:57:40 +000034\file{Grammar/Grammar} in the standard Python distribution. The parse
Guido van Rossum4b73a061995-10-11 17:30:04 +000035trees stored in the ``AST objects'' created by this module are the
36actual output from the internal parser when created by the
Fred Drake88223901998-02-09 20:52:48 +000037\function{expr()} or \function{suite()} functions, described below. The AST
38objects created by \function{sequence2ast()} faithfully simulate those
Guido van Rossum47478871996-08-21 14:32:37 +000039structures. Be aware that the values of the sequences which are
40considered ``correct'' will vary from one version of Python to another
41as the formal grammar for the language is revised. However,
42transporting code from one Python version to another as source text
43will always allow correct parse trees to be created in the target
44version, with the only restriction being that migrating to an older
45version of the interpreter will not support more recent language
46constructs. The parse trees are not typically compatible from one
47version to another, whereas source code has always been
48forward-compatible.
Guido van Rossum4b73a061995-10-11 17:30:04 +000049
Fred Drake88223901998-02-09 20:52:48 +000050Each element of the sequences returned by \function{ast2list()} or
51\function{ast2tuple()} has a simple form. Sequences representing
Guido van Rossum47478871996-08-21 14:32:37 +000052non-terminal elements in the grammar always have a length greater than
53one. The first element is an integer which identifies a production in
54the grammar. These integers are given symbolic names in the C header
Fred Drake4b7d5a41996-09-11 21:57:40 +000055file \file{Include/graminit.h} and the Python module
Fred Drake88223901998-02-09 20:52:48 +000056\module{symbol}. Each additional element of the sequence represents
Guido van Rossum47478871996-08-21 14:32:37 +000057a component of the production as recognized in the input string: these
58are always sequences which have the same form as the parent. An
59important aspect of this structure which should be noted is that
60keywords used to identify the parent node type, such as the keyword
Fred Drake88223901998-02-09 20:52:48 +000061\keyword{if} in an \constant{if_stmt}, are included in the node tree without
62any special treatment. For example, the \keyword{if} keyword is
Guido van Rossum4b73a061995-10-11 17:30:04 +000063represented by the tuple \code{(1, 'if')}, where \code{1} is the
Fred Drake4b7d5a41996-09-11 21:57:40 +000064numeric value associated with all \code{NAME} tokens, including
Guido van Rossum47478871996-08-21 14:32:37 +000065variable and function names defined by the user. In an alternate form
66returned when line number information is requested, the same token
67might be represented as \code{(1, 'if', 12)}, where the \code{12}
68represents the line number at which the terminal symbol was found.
Guido van Rossum4b73a061995-10-11 17:30:04 +000069
70Terminal elements are represented in much the same way, but without
71any child elements and the addition of the source text which was
Fred Drake88223901998-02-09 20:52:48 +000072identified. The example of the \keyword{if} keyword above is
Guido van Rossum4b73a061995-10-11 17:30:04 +000073representative. The various types of terminal symbols are defined in
Fred Drake4b7d5a41996-09-11 21:57:40 +000074the C header file \file{Include/token.h} and the Python module
Fred Drake88223901998-02-09 20:52:48 +000075\module{token}.
Guido van Rossum4b73a061995-10-11 17:30:04 +000076
Fred Drake4b7d5a41996-09-11 21:57:40 +000077The AST objects are not required to support the functionality of this
78module, but are provided for three purposes: to allow an application
79to amortize the cost of processing complex parse trees, to provide a
80parse tree representation which conserves memory space when compared
81to the Python list or tuple representation, and to ease the creation
82of additional modules in C which manipulate parse trees. A simple
83``wrapper'' class may be created in Python to hide the use of AST
Fred Drake88223901998-02-09 20:52:48 +000084objects.
Guido van Rossum4b73a061995-10-11 17:30:04 +000085
Fred Drake88223901998-02-09 20:52:48 +000086The \module{parser} module defines functions for a few distinct
Fred Drake4b7d5a41996-09-11 21:57:40 +000087purposes. The most important purposes are to create AST objects and
88to convert AST objects to other representations such as parse trees
89and compiled code objects, but there are also functions which serve to
90query the type of parse tree represented by an AST object.
Guido van Rossum4b73a061995-10-11 17:30:04 +000091
Fred Drake19479911998-02-13 06:58:54 +000092\setindexsubitem{(in module parser)}
Guido van Rossum4b73a061995-10-11 17:30:04 +000093
Fred Drake4b7d5a41996-09-11 21:57:40 +000094
95\subsection{Creating AST Objects}
Fred Draked67e12e1998-02-20 05:49:37 +000096\label{Creating ASTs}
Fred Drake4b7d5a41996-09-11 21:57:40 +000097
98AST objects may be created from source code or from a parse tree.
99When creating an AST object from source, different functions are used
100to create the \code{'eval'} and \code{'exec'} forms.
101
102\begin{funcdesc}{expr}{string}
Fred Drake88223901998-02-09 20:52:48 +0000103The \function{expr()} function parses the parameter \code{\var{string}}
104as if it were an input to \samp{compile(\var{string}, 'eval')}. If
Fred Drake4b7d5a41996-09-11 21:57:40 +0000105the parse succeeds, an AST object is created to hold the internal
106parse tree representation, otherwise an appropriate exception is
107thrown.
108\end{funcdesc}
109
110\begin{funcdesc}{suite}{string}
Fred Drake88223901998-02-09 20:52:48 +0000111The \function{suite()} function parses the parameter \code{\var{string}}
112as if it were an input to \samp{compile(\var{string}, 'exec')}. If
Fred Drake4b7d5a41996-09-11 21:57:40 +0000113the parse succeeds, an AST object is created to hold the internal
114parse tree representation, otherwise an appropriate exception is
115thrown.
116\end{funcdesc}
117
118\begin{funcdesc}{sequence2ast}{sequence}
119This function accepts a parse tree represented as a sequence and
120builds an internal representation if possible. If it can validate
121that the tree conforms to the Python grammar and all nodes are valid
122node types in the host version of Python, an AST object is created
123from the internal representation and returned to the called. If there
124is a problem creating the internal representation, or if the tree
Fred Drake88223901998-02-09 20:52:48 +0000125cannot be validated, a \exception{ParserError} exception is thrown. An AST
Fred Drake4b7d5a41996-09-11 21:57:40 +0000126object created this way should not be assumed to compile correctly;
127normal exceptions thrown by compilation may still be initiated when
Fred Drake88223901998-02-09 20:52:48 +0000128the AST object is passed to \function{compileast()}. This may indicate
129problems not related to syntax (such as a \exception{MemoryError}
Fred Drake4b7d5a41996-09-11 21:57:40 +0000130exception), but may also be due to constructs such as the result of
131parsing \code{del f(0)}, which escapes the Python parser but is
132checked by the bytecode compiler.
133
134Sequences representing terminal tokens may be represented as either
135two-element lists of the form \code{(1, 'name')} or as three-element
136lists of the form \code{(1, 'name', 56)}. If the third element is
137present, it is assumed to be a valid line number. The line number
138may be specified for any subset of the terminal symbols in the input
139tree.
140\end{funcdesc}
141
142\begin{funcdesc}{tuple2ast}{sequence}
Fred Drake88223901998-02-09 20:52:48 +0000143This is the same function as \function{sequence2ast()}. This entry point
Fred Drake4b7d5a41996-09-11 21:57:40 +0000144is maintained for backward compatibility.
145\end{funcdesc}
146
147
148\subsection{Converting AST Objects}
Fred Draked67e12e1998-02-20 05:49:37 +0000149\label{Converting ASTs}
Fred Drake4b7d5a41996-09-11 21:57:40 +0000150
151AST objects, regardless of the input used to create them, may be
152converted to parse trees represented as list- or tuple- trees, or may
153be compiled into executable code objects. Parse trees may be
154extracted with or without line numbering information.
155
156\begin{funcdesc}{ast2list}{ast\optional{\, line_info\code{ = 0}}}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000157This function accepts an AST object from the caller in
Guido van Rossum47478871996-08-21 14:32:37 +0000158\code{\var{ast}} and returns a Python list representing the
159equivelent parse tree. The resulting list representation can be used
Fred Drake4b7d5a41996-09-11 21:57:40 +0000160for inspection or the creation of a new parse tree in list form. This
161function does not fail so long as memory is available to build the
162list representation. If the parse tree will only be used for
Fred Drake88223901998-02-09 20:52:48 +0000163inspection, \function{ast2tuple()} should be used instead to reduce memory
Fred Drake4b7d5a41996-09-11 21:57:40 +0000164consumption and fragmentation. When the list representation is
165required, this function is significantly faster than retrieving a
166tuple representation and converting that to nested lists.
Guido van Rossum47478871996-08-21 14:32:37 +0000167
Fred Drake4b7d5a41996-09-11 21:57:40 +0000168If \code{\var{line_info}} is true, line number information will be
169included for all terminal tokens as a third element of the list
Fred Drake9abe64a1996-12-05 22:28:43 +0000170representing the token. Note that the line number provided specifies
Fred Drake88223901998-02-09 20:52:48 +0000171the line on which the token \emph{ends}. This information is
Fred Drake9abe64a1996-12-05 22:28:43 +0000172omitted if the flag is false or omitted.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000173\end{funcdesc}
174
Fred Drake4b7d5a41996-09-11 21:57:40 +0000175\begin{funcdesc}{ast2tuple}{ast\optional{\, line_info\code{ = 0}}}
Guido van Rossum47478871996-08-21 14:32:37 +0000176This function accepts an AST object from the caller in
177\code{\var{ast}} and returns a Python tuple representing the
178equivelent parse tree. Other than returning a tuple instead of a
Fred Drake88223901998-02-09 20:52:48 +0000179list, this function is identical to \function{ast2list()}.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000180
Fred Drake4b7d5a41996-09-11 21:57:40 +0000181If \code{\var{line_info}} is true, line number information will be
182included for all terminal tokens as a third element of the list
183representing the token. This information is omitted if the flag is
184false or omitted.
Guido van Rossum47478871996-08-21 14:32:37 +0000185\end{funcdesc}
186
187\begin{funcdesc}{compileast}{ast\optional{\, filename\code{ = '<ast>'}}}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000188The Python byte compiler can be invoked on an AST object to produce
189code objects which can be used as part of an \code{exec} statement or
Fred Drake88223901998-02-09 20:52:48 +0000190a call to the built-in \function{eval()}\bifuncindex{eval} function.
191This function provides the interface to the compiler, passing the
192internal parse tree from \code{\var{ast}} to the parser, using the
193source file name specified by the \code{\var{filename}} parameter.
194The default value supplied for \code{\var{filename}} indicates that
195the source was an AST object.
Guido van Rossum47478871996-08-21 14:32:37 +0000196
197Compiling an AST object may result in exceptions related to
Fred Drake88223901998-02-09 20:52:48 +0000198compilation; an example would be a \exception{SyntaxError} caused by the
Fred Drake4b7d5a41996-09-11 21:57:40 +0000199parse tree for \code{del f(0)}: this statement is considered legal
Guido van Rossum47478871996-08-21 14:32:37 +0000200within the formal grammar for Python but is not a legal language
Fred Drake88223901998-02-09 20:52:48 +0000201construct. The \exception{SyntaxError} raised for this condition is
Guido van Rossum47478871996-08-21 14:32:37 +0000202actually generated by the Python byte-compiler normally, which is why
Fred Drake88223901998-02-09 20:52:48 +0000203it can be raised at this point by the \module{parser} module. Most
Guido van Rossum47478871996-08-21 14:32:37 +0000204causes of compilation failure can be diagnosed programmatically by
205inspection of the parse tree.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000206\end{funcdesc}
207
208
Fred Drake4b7d5a41996-09-11 21:57:40 +0000209\subsection{Queries on AST Objects}
Fred Draked67e12e1998-02-20 05:49:37 +0000210\label{Querying ASTs}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000211
Fred Drake4b7d5a41996-09-11 21:57:40 +0000212Two functions are provided which allow an application to determine if
213an AST was create as an expression or a suite. Neither of these
214functions can be used to determine if an AST was created from source
Fred Drake88223901998-02-09 20:52:48 +0000215code via \function{expr()} or \function{suite()} or from a parse tree
216via \function{sequence2ast()}.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000217
218\begin{funcdesc}{isexpr}{ast}
219When \code{\var{ast}} represents an \code{'eval'} form, this function
Fred Drake88223901998-02-09 20:52:48 +0000220returns true, otherwise it returns false. This is useful, since code
221objects normally cannot be queried for this information using existing
222built-in functions. Note that the code objects created by
223\function{compileast()} cannot be queried like this either, and are
224identical to those created by the built-in
225\function{compile()}\bifuncindex{compile} function.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000226\end{funcdesc}
227
228
229\begin{funcdesc}{issuite}{ast}
Fred Drake88223901998-02-09 20:52:48 +0000230This function mirrors \function{isexpr()} in that it reports whether an
Fred Drake4b7d5a41996-09-11 21:57:40 +0000231AST object represents an \code{'exec'} form, commonly known as a
232``suite.'' It is not safe to assume that this function is equivelent
Fred Drake88223901998-02-09 20:52:48 +0000233to \samp{not isexpr(\var{ast})}, as additional syntactic fragments may
Fred Drake4b7d5a41996-09-11 21:57:40 +0000234be supported in the future.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000235\end{funcdesc}
236
237
Guido van Rossum4b73a061995-10-11 17:30:04 +0000238\subsection{Exceptions and Error Handling}
Fred Draked67e12e1998-02-20 05:49:37 +0000239\label{AST Errors}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000240
241The parser module defines a single exception, but may also pass other
242built-in exceptions from other portions of the Python runtime
243environment. See each function for information about the exceptions
244it can raise.
245
246\begin{excdesc}{ParserError}
247Exception raised when a failure occurs within the parser module. This
248is generally produced for validation failures rather than the built in
Fred Drake88223901998-02-09 20:52:48 +0000249\exception{SyntaxError} thrown during normal parsing.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000250The exception argument is either a string describing the reason of the
Guido van Rossum47478871996-08-21 14:32:37 +0000251failure or a tuple containing a sequence causing the failure from a parse
Fred Drake88223901998-02-09 20:52:48 +0000252tree passed to \function{sequence2ast()} and an explanatory string. Calls to
253\function{sequence2ast()} need to be able to handle either type of exception,
Guido van Rossum4b73a061995-10-11 17:30:04 +0000254while calls to other functions in the module will only need to be
255aware of the simple string values.
256\end{excdesc}
257
Fred Drake88223901998-02-09 20:52:48 +0000258Note that the functions \function{compileast()}, \function{expr()}, and
259\function{suite()} may throw exceptions which are normally thrown by the
Guido van Rossum4b73a061995-10-11 17:30:04 +0000260parsing and compilation process. These include the built in
Fred Drake88223901998-02-09 20:52:48 +0000261exceptions \exception{MemoryError}, \exception{OverflowError},
262\exception{SyntaxError}, and \exception{SystemError}. In these cases, these
Guido van Rossum4b73a061995-10-11 17:30:04 +0000263exceptions carry all the meaning normally associated with them. Refer
264to the descriptions of each function for detailed information.
265
Guido van Rossum4b73a061995-10-11 17:30:04 +0000266
Guido van Rossum47478871996-08-21 14:32:37 +0000267\subsection{AST Objects}
Fred Draked67e12e1998-02-20 05:49:37 +0000268\label{AST Objects}
Guido van Rossum47478871996-08-21 14:32:37 +0000269
Fred Drake88223901998-02-09 20:52:48 +0000270AST objects returned by \function{expr()}, \function{suite()}, and
271\function{sequence2ast()} have no methods of their own.
Guido van Rossum47478871996-08-21 14:32:37 +0000272Some of the functions defined which accept an AST object as their
Fred Drake4b7d5a41996-09-11 21:57:40 +0000273first argument may change to object methods in the future. The type
274of these objects is available as \code{ASTType} in the module.
Guido van Rossum47478871996-08-21 14:32:37 +0000275
276Ordered and equality comparisons are supported between AST objects.
277
278
Guido van Rossum8206fb91996-08-26 00:33:29 +0000279\subsection{Examples}
Fred Drake4b3f0311996-12-13 22:04:31 +0000280\nodename{AST Examples}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000281
Guido van Rossum47478871996-08-21 14:32:37 +0000282The parser modules allows operations to be performed on the parse tree
283of Python source code before the bytecode is generated, and provides
Fred Drake4b7d5a41996-09-11 21:57:40 +0000284for inspection of the parse tree for information gathering purposes.
285Two examples are presented. The simple example demonstrates emulation
Fred Drake88223901998-02-09 20:52:48 +0000286of the \function{compile()}\bifuncindex{compile} built-in function and
287the complex example shows the use of a parse tree for information
288discovery.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000289
Fred Drake4b7d5a41996-09-11 21:57:40 +0000290\subsubsection{Emulation of \sectcode{compile()}}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000291
292While many useful operations may take place between parsing and
Guido van Rossum47478871996-08-21 14:32:37 +0000293bytecode generation, the simplest operation is to do nothing. For
Fred Drake88223901998-02-09 20:52:48 +0000294this purpose, using the \module{parser} module to produce an
Guido van Rossum47478871996-08-21 14:32:37 +0000295intermediate data structure is equivelent to the code
296
Fred Drake19479911998-02-13 06:58:54 +0000297\begin{verbatim}
Guido van Rossum47478871996-08-21 14:32:37 +0000298>>> code = compile('a + 5', 'eval')
299>>> a = 5
300>>> eval(code)
30110
Fred Drake19479911998-02-13 06:58:54 +0000302\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000303%
Fred Drake88223901998-02-09 20:52:48 +0000304The equivelent operation using the \module{parser} module is somewhat
Guido van Rossum47478871996-08-21 14:32:37 +0000305longer, and allows the intermediate internal parse tree to be retained
306as an AST object:
Guido van Rossum4b73a061995-10-11 17:30:04 +0000307
Fred Drake19479911998-02-13 06:58:54 +0000308\begin{verbatim}
Guido van Rossum4b73a061995-10-11 17:30:04 +0000309>>> import parser
310>>> ast = parser.expr('a + 5')
311>>> code = parser.compileast(ast)
312>>> a = 5
313>>> eval(code)
31410
Fred Drake19479911998-02-13 06:58:54 +0000315\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000316%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000317An application which needs both AST and code objects can package this
318code into readily available functions:
319
Fred Drake19479911998-02-13 06:58:54 +0000320\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000321import parser
322
323def load_suite(source_string):
324 ast = parser.suite(source_string)
325 code = parser.compileast(ast)
326 return ast, code
327
328def load_expression(source_string):
329 ast = parser.expr(source_string)
330 code = parser.compileast(ast)
331 return ast, code
Fred Drake19479911998-02-13 06:58:54 +0000332\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000333%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000334\subsubsection{Information Discovery}
335
Fred Drake4b7d5a41996-09-11 21:57:40 +0000336Some applications benefit from direct access to the parse tree. The
337remainder of this section demonstrates how the parse tree provides
338access to module documentation defined in docstrings without requiring
339that the code being examined be loaded into a running interpreter via
Fred Drake88223901998-02-09 20:52:48 +0000340\keyword{import}. This can be very useful for performing analyses of
Fred Drake4b7d5a41996-09-11 21:57:40 +0000341untrusted code.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000342
Guido van Rossum47478871996-08-21 14:32:37 +0000343Generally, the example will demonstrate how the parse tree may be
344traversed to distill interesting information. Two functions and a set
Fred Drake4b7d5a41996-09-11 21:57:40 +0000345of classes are developed which provide programmatic access to high
Guido van Rossum47478871996-08-21 14:32:37 +0000346level function and class definitions provided by a module. The
347classes extract information from the parse tree and provide access to
348the information at a useful semantic level, one function provides a
349simple low-level pattern matching capability, and the other function
350defines a high-level interface to the classes by handling file
351operations on behalf of the caller. All source files mentioned here
352which are not part of the Python installation are located in the
Fred Drake4b7d5a41996-09-11 21:57:40 +0000353\file{Demo/parser/} directory of the distribution.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000354
Guido van Rossum8206fb91996-08-26 00:33:29 +0000355The dynamic nature of Python allows the programmer a great deal of
356flexibility, but most modules need only a limited measure of this when
357defining classes, functions, and methods. In this example, the only
358definitions that will be considered are those which are defined in the
Fred Drake88223901998-02-09 20:52:48 +0000359top level of their context, e.g., a function defined by a \keyword{def}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000360statement at column zero of a module, but not a function defined
Fred Drake4b7d5a41996-09-11 21:57:40 +0000361within a branch of an \code{if} ... \code{else} construct, though
Guido van Rossum8206fb91996-08-26 00:33:29 +0000362there are some good reasons for doing so in some situations. Nesting
363of definitions will be handled by the code developed in the example.
364
Guido van Rossum47478871996-08-21 14:32:37 +0000365To construct the upper-level extraction methods, we need to know what
366the parse tree structure looks like and how much of it we actually
Fred Drake4b7d5a41996-09-11 21:57:40 +0000367need to be concerned about. Python uses a moderately deep parse tree
Guido van Rossum47478871996-08-21 14:32:37 +0000368so there are a large number of intermediate nodes. It is important to
369read and understand the formal grammar used by Python. This is
370specified in the file \file{Grammar/Grammar} in the distribution.
371Consider the simplest case of interest when searching for docstrings:
Guido van Rossum8206fb91996-08-26 00:33:29 +0000372a module consisting of a docstring and nothing else. (See file
373\file{docstring.py}.)
Guido van Rossum4b73a061995-10-11 17:30:04 +0000374
Fred Drake19479911998-02-13 06:58:54 +0000375\begin{verbatim}
Guido van Rossum47478871996-08-21 14:32:37 +0000376"""Some documentation.
377"""
Fred Drake19479911998-02-13 06:58:54 +0000378\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000379%
Guido van Rossum47478871996-08-21 14:32:37 +0000380Using the interpreter to take a look at the parse tree, we find a
381bewildering mass of numbers and parentheses, with the documentation
Fred Drake4b7d5a41996-09-11 21:57:40 +0000382buried deep in nested tuples.
Guido van Rossum4b73a061995-10-11 17:30:04 +0000383
Fred Drake19479911998-02-13 06:58:54 +0000384\begin{verbatim}
Guido van Rossum47478871996-08-21 14:32:37 +0000385>>> import parser
386>>> import pprint
387>>> ast = parser.suite(open('docstring.py').read())
388>>> tup = parser.ast2tuple(ast)
389>>> pprint.pprint(tup)
390(257,
391 (264,
392 (265,
393 (266,
394 (267,
395 (307,
396 (287,
397 (288,
398 (289,
399 (290,
400 (292,
401 (293,
402 (294,
403 (295,
404 (296,
405 (297,
406 (298,
407 (299,
408 (300, (3, '"""Some documentation.\012"""'))))))))))))))))),
409 (4, ''))),
410 (4, ''),
411 (0, ''))
Fred Drake19479911998-02-13 06:58:54 +0000412\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000413%
Guido van Rossum47478871996-08-21 14:32:37 +0000414The numbers at the first element of each node in the tree are the node
415types; they map directly to terminal and non-terminal symbols in the
416grammar. Unfortunately, they are represented as integers in the
417internal representation, and the Python structures generated do not
Fred Drake88223901998-02-09 20:52:48 +0000418change that. However, the \module{symbol} and \module{token} modules
Guido van Rossum47478871996-08-21 14:32:37 +0000419provide symbolic names for the node types and dictionaries which map
420from the integers to the symbolic names for the node types.
421
422In the output presented above, the outermost tuple contains four
423elements: the integer \code{257} and three additional tuples. Node
Fred Drake88223901998-02-09 20:52:48 +0000424type \code{257} has the symbolic name \constant{file_input}. Each of
Guido van Rossum47478871996-08-21 14:32:37 +0000425these inner tuples contains an integer as the first element; these
426integers, \code{264}, \code{4}, and \code{0}, represent the node types
Fred Drake88223901998-02-09 20:52:48 +0000427\constant{stmt}, \constant{NEWLINE}, and \constant{ENDMARKER},
428respectively.
Guido van Rossum47478871996-08-21 14:32:37 +0000429Note that these values may change depending on the version of Python
430you are using; consult \file{symbol.py} and \file{token.py} for
431details of the mapping. It should be fairly clear that the outermost
432node is related primarily to the input source rather than the contents
Fred Drake88223901998-02-09 20:52:48 +0000433of the file, and may be disregarded for the moment. The \constant{stmt}
Guido van Rossum47478871996-08-21 14:32:37 +0000434node is much more interesting. In particular, all docstrings are
435found in subtrees which are formed exactly as this node is formed,
436with the only difference being the string itself. The association
437between the docstring in a similar tree and the defined entity (class,
438function, or module) which it describes is given by the position of
439the docstring subtree within the tree defining the described
440structure.
441
442By replacing the actual docstring with something to signify a variable
Fred Drake4b7d5a41996-09-11 21:57:40 +0000443component of the tree, we allow a simple pattern matching approach to
444check any given subtree for equivelence to the general pattern for
445docstrings. Since the example demonstrates information extraction, we
446can safely require that the tree be in tuple form rather than list
447form, allowing a simple variable representation to be
448\code{['variable_name']}. A simple recursive function can implement
Guido van Rossum47478871996-08-21 14:32:37 +0000449the pattern matching, returning a boolean and a dictionary of variable
Guido van Rossum8206fb91996-08-26 00:33:29 +0000450name to value mappings. (See file \file{example.py}.)
Guido van Rossum47478871996-08-21 14:32:37 +0000451
Fred Drake19479911998-02-13 06:58:54 +0000452\begin{verbatim}
Guido van Rossum47478871996-08-21 14:32:37 +0000453from types import ListType, TupleType
454
455def match(pattern, data, vars=None):
456 if vars is None:
457 vars = {}
458 if type(pattern) is ListType:
459 vars[pattern[0]] = data
460 return 1, vars
461 if type(pattern) is not TupleType:
462 return (pattern == data), vars
463 if len(data) != len(pattern):
464 return 0, vars
465 for pattern, data in map(None, pattern, data):
466 same, vars = match(pattern, data, vars)
467 if not same:
468 break
469 return same, vars
Fred Drake19479911998-02-13 06:58:54 +0000470\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000471%
Fred Drake4b7d5a41996-09-11 21:57:40 +0000472Using this simple representation for syntactic variables and the symbolic
Guido van Rossum8206fb91996-08-26 00:33:29 +0000473node types, the pattern for the candidate docstring subtrees becomes
474fairly readable. (See file \file{example.py}.)
Guido van Rossum47478871996-08-21 14:32:37 +0000475
Fred Drake19479911998-02-13 06:58:54 +0000476\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000477import symbol
478import token
479
480DOCSTRING_STMT_PATTERN = (
481 symbol.stmt,
482 (symbol.simple_stmt,
483 (symbol.small_stmt,
484 (symbol.expr_stmt,
485 (symbol.testlist,
486 (symbol.test,
487 (symbol.and_test,
488 (symbol.not_test,
489 (symbol.comparison,
490 (symbol.expr,
491 (symbol.xor_expr,
492 (symbol.and_expr,
493 (symbol.shift_expr,
494 (symbol.arith_expr,
495 (symbol.term,
496 (symbol.factor,
497 (symbol.power,
498 (symbol.atom,
499 (token.STRING, ['docstring'])
500 )))))))))))))))),
501 (token.NEWLINE, '')
502 ))
Fred Drake19479911998-02-13 06:58:54 +0000503\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000504%
Fred Drake88223901998-02-09 20:52:48 +0000505Using the \function{match()} function with this pattern, extracting the
Guido van Rossum47478871996-08-21 14:32:37 +0000506module docstring from the parse tree created previously is easy:
507
Fred Drake19479911998-02-13 06:58:54 +0000508\begin{verbatim}
Guido van Rossum47478871996-08-21 14:32:37 +0000509>>> found, vars = match(DOCSTRING_STMT_PATTERN, tup[1])
510>>> found
5111
512>>> vars
513{'docstring': '"""Some documentation.\012"""'}
Fred Drake19479911998-02-13 06:58:54 +0000514\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000515%
Guido van Rossum47478871996-08-21 14:32:37 +0000516Once specific data can be extracted from a location where it is
517expected, the question of where information can be expected
518needs to be answered. When dealing with docstrings, the answer is
Fred Drake88223901998-02-09 20:52:48 +0000519fairly simple: the docstring is the first \constant{stmt} node in a code
520block (\constant{file_input} or \constant{suite} node types). A module
521consists of a single \constant{file_input} node, and class and function
522definitions each contain exactly one \constant{suite} node. Classes and
Guido van Rossum47478871996-08-21 14:32:37 +0000523functions are readily identified as subtrees of code block nodes which
524start with \code{(stmt, (compound_stmt, (classdef, ...} or
525\code{(stmt, (compound_stmt, (funcdef, ...}. Note that these subtrees
Fred Drake88223901998-02-09 20:52:48 +0000526cannot be matched by \function{match()} since it does not support multiple
Guido van Rossum47478871996-08-21 14:32:37 +0000527sibling nodes to match without regard to number. A more elaborate
528matching function could be used to overcome this limitation, but this
529is sufficient for the example.
530
Guido van Rossum8206fb91996-08-26 00:33:29 +0000531Given the ability to determine whether a statement might be a
532docstring and extract the actual string from the statement, some work
533needs to be performed to walk the parse tree for an entire module and
534extract information about the names defined in each context of the
535module and associate any docstrings with the names. The code to
536perform this work is not complicated, but bears some explanation.
537
538The public interface to the classes is straightforward and should
539probably be somewhat more flexible. Each ``major'' block of the
540module is described by an object providing several methods for inquiry
541and a constructor which accepts at least the subtree of the complete
Fred Drakeb0df5671998-02-18 15:59:13 +0000542parse tree which it represents. The \class{ModuleInfo} constructor
543accepts an optional \var{name} parameter since it cannot
Guido van Rossum8206fb91996-08-26 00:33:29 +0000544otherwise determine the name of the module.
545
Fred Drake88223901998-02-09 20:52:48 +0000546The public classes include \class{ClassInfo}, \class{FunctionInfo},
547and \class{ModuleInfo}. All objects provide the
548methods \method{get_name()}, \method{get_docstring()},
549\method{get_class_names()}, and \method{get_class_info()}. The
550\class{ClassInfo} objects support \method{get_method_names()} and
551\method{get_method_info()} while the other classes provide
552\method{get_function_names()} and \method{get_function_info()}.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000553
554Within each of the forms of code block that the public classes
555represent, most of the required information is in the same form and is
Fred Drake4b7d5a41996-09-11 21:57:40 +0000556accessed in the same way, with classes having the distinction that
Guido van Rossum8206fb91996-08-26 00:33:29 +0000557functions defined at the top level are referred to as ``methods.''
558Since the difference in nomenclature reflects a real semantic
Fred Drake4b7d5a41996-09-11 21:57:40 +0000559distinction from functions defined outside of a class, the
560implementation needs to maintain the distinction.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000561Hence, most of the functionality of the public classes can be
Fred Drake88223901998-02-09 20:52:48 +0000562implemented in a common base class, \class{SuiteInfoBase}, with the
Guido van Rossum8206fb91996-08-26 00:33:29 +0000563accessors for function and method information provided elsewhere.
564Note that there is only one class which represents function and method
Fred Drake88223901998-02-09 20:52:48 +0000565information; this parallels the use of the \keyword{def} statement to
Fred Drake4b7d5a41996-09-11 21:57:40 +0000566define both types of elements.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000567
Fred Drake88223901998-02-09 20:52:48 +0000568Most of the accessor functions are declared in \class{SuiteInfoBase}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000569and do not need to be overriden by subclasses. More importantly, the
570extraction of most information from a parse tree is handled through a
Fred Drake88223901998-02-09 20:52:48 +0000571method called by the \class{SuiteInfoBase} constructor. The example
Guido van Rossum8206fb91996-08-26 00:33:29 +0000572code for most of the classes is clear when read alongside the formal
573grammar, but the method which recursively creates new information
574objects requires further examination. Here is the relevant part of
Fred Drake88223901998-02-09 20:52:48 +0000575the \class{SuiteInfoBase} definition from \file{example.py}:
Guido van Rossum8206fb91996-08-26 00:33:29 +0000576
Fred Drake19479911998-02-13 06:58:54 +0000577\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000578class SuiteInfoBase:
579 _docstring = ''
580 _name = ''
581
582 def __init__(self, tree = None):
583 self._class_info = {}
584 self._function_info = {}
585 if tree:
586 self._extract_info(tree)
587
588 def _extract_info(self, tree):
589 # extract docstring
590 if len(tree) == 2:
591 found, vars = match(DOCSTRING_STMT_PATTERN[1], tree[1])
592 else:
593 found, vars = match(DOCSTRING_STMT_PATTERN, tree[3])
594 if found:
595 self._docstring = eval(vars['docstring'])
596 # discover inner definitions
597 for node in tree[1:]:
598 found, vars = match(COMPOUND_STMT_PATTERN, node)
599 if found:
600 cstmt = vars['compound']
601 if cstmt[0] == symbol.funcdef:
602 name = cstmt[2][1]
603 self._function_info[name] = FunctionInfo(cstmt)
604 elif cstmt[0] == symbol.classdef:
605 name = cstmt[2][1]
606 self._class_info[name] = ClassInfo(cstmt)
Fred Drake19479911998-02-13 06:58:54 +0000607\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000608%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000609After initializing some internal state, the constructor calls the
Fred Drake88223901998-02-09 20:52:48 +0000610\method{_extract_info()} method. This method performs the bulk of the
Guido van Rossum8206fb91996-08-26 00:33:29 +0000611information extraction which takes place in the entire example. The
612extraction has two distinct phases: the location of the docstring for
613the parse tree passed in, and the discovery of additional definitions
614within the code block represented by the parse tree.
615
Fred Drake88223901998-02-09 20:52:48 +0000616The initial \keyword{if} test determines whether the nested suite is of
Guido van Rossum8206fb91996-08-26 00:33:29 +0000617the ``short form'' or the ``long form.'' The short form is used when
618the code block is on the same line as the definition of the code
619block, as in
620
Fred Drakebbe60681998-01-09 22:24:14 +0000621\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000622def square(x): "Square an argument."; return x ** 2
Fred Drakebbe60681998-01-09 22:24:14 +0000623\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000624%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000625while the long form uses an indented block and allows nested
626definitions:
627
Fred Drake19479911998-02-13 06:58:54 +0000628\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000629def make_power(exp):
630 "Make a function that raises an argument to the exponent `exp'."
631 def raiser(x, y=exp):
632 return x ** y
633 return raiser
Fred Drake19479911998-02-13 06:58:54 +0000634\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000635%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000636When the short form is used, the code block may contain a docstring as
Fred Drake88223901998-02-09 20:52:48 +0000637the first, and possibly only, \constant{small_stmt} element. The
Guido van Rossum8206fb91996-08-26 00:33:29 +0000638extraction of such a docstring is slightly different and requires only
639a portion of the complete pattern used in the more common case. As
Fred Drake4b7d5a41996-09-11 21:57:40 +0000640implemented, the docstring will only be found if there is only
Fred Drake88223901998-02-09 20:52:48 +0000641one \constant{small_stmt} node in the \constant{simple_stmt} node.
642Since most functions and methods which use the short form do not
643provide a docstring, this may be considered sufficient. The
644extraction of the docstring proceeds using the \function{match()} function
645as described above, and the value of the docstring is stored as an
646attribute of the \class{SuiteInfoBase} object.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000647
Fred Drake4b7d5a41996-09-11 21:57:40 +0000648After docstring extraction, a simple definition discovery
Fred Drake88223901998-02-09 20:52:48 +0000649algorithm operates on the \constant{stmt} nodes of the
650\constant{suite} node. The special case of the short form is not
651tested; since there are no \constant{stmt} nodes in the short form,
652the algorithm will silently skip the single \constant{simple_stmt}
653node and correctly not discover any nested definitions.
Guido van Rossum8206fb91996-08-26 00:33:29 +0000654
Fred Drake4b7d5a41996-09-11 21:57:40 +0000655Each statement in the code block is categorized as
656a class definition, function or method definition, or
Guido van Rossum8206fb91996-08-26 00:33:29 +0000657something else. For the definition statements, the name of the
Fred Drake4b7d5a41996-09-11 21:57:40 +0000658element defined is extracted and a representation object
Guido van Rossum8206fb91996-08-26 00:33:29 +0000659appropriate to the definition is created with the defining subtree
660passed as an argument to the constructor. The repesentation objects
661are stored in instance variables and may be retrieved by name using
662the appropriate accessor methods.
663
664The public classes provide any accessors required which are more
Fred Drake88223901998-02-09 20:52:48 +0000665specific than those provided by the \class{SuiteInfoBase} class, but
Guido van Rossum8206fb91996-08-26 00:33:29 +0000666the real extraction algorithm remains common to all forms of code
667blocks. A high-level function can be used to extract the complete set
Fred Drake4b7d5a41996-09-11 21:57:40 +0000668of information from a source file. (See file \file{example.py}.)
Guido van Rossum8206fb91996-08-26 00:33:29 +0000669
Fred Drake19479911998-02-13 06:58:54 +0000670\begin{verbatim}
Guido van Rossum8206fb91996-08-26 00:33:29 +0000671def get_docs(fileName):
672 source = open(fileName).read()
673 import os
674 basename = os.path.basename(os.path.splitext(fileName)[0])
675 import parser
676 ast = parser.suite(source)
677 tup = parser.ast2tuple(ast)
678 return ModuleInfo(tup, basename)
Fred Drake19479911998-02-13 06:58:54 +0000679\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000680%
Guido van Rossum8206fb91996-08-26 00:33:29 +0000681This provides an easy-to-use interface to the documentation of a
682module. If information is required which is not extracted by the code
683of this example, the code may be extended at clearly defined points to
684provide additional capabilities.
Guido van Rossum47478871996-08-21 14:32:37 +0000685
Fred Drakebbe60681998-01-09 22:24:14 +0000686\begin{seealso}
687
688\seemodule{symbol}%
689 {useful constants representing internal nodes of the parse tree}
690
691\seemodule{token}%
692 {useful constants representing leaf nodes of the parse tree and
693functions for testing node values}
694
695\end{seealso}