Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 1 | \section{\module{shlex} --- |
Fred Drake | 184e836 | 1999-05-11 15:14:15 +0000 | [diff] [blame] | 2 | Simple lexical analysis} |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 3 | |
| 4 | \declaremodule{standard}{shlex} |
Fred Drake | 39cddb7 | 1999-01-12 19:22:11 +0000 | [diff] [blame] | 5 | \modulesynopsis{Simple lexical analysis for \UNIX{} shell-like languages.} |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 6 | \moduleauthor{Eric S. Raymond}{esr@snark.thyrsus.com} |
| 7 | \sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com} |
| 8 | |
Fred Drake | 292b9eb | 1998-12-22 18:40:50 +0000 | [diff] [blame] | 9 | \versionadded{1.5.2} |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 10 | |
| 11 | The \class{shlex} class makes it easy to write lexical analyzers for |
| 12 | simple syntaxes resembling that of the \UNIX{} shell. This will often |
| 13 | be useful for writing minilanguages, e.g.\ in run control files for |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 14 | Python applications. |
| 15 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 16 | \begin{classdesc}{shlex}{\optional{stream\optional{, file}}} |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 17 | A \class{shlex} instance or subclass instance is a lexical analyzer |
| 18 | object. The initialization argument, if present, specifies where to |
| 19 | read characters from. It must be a file- or stream-like object with |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 20 | \method{read()} and \method{readline()} methods. If no argument is given, |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 21 | input will be taken from \code{sys.stdin}. The second optional |
| 22 | argument is a filename string, which sets the initial value of the |
| 23 | \member{infile} member. If the stream argument is omitted or |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 24 | equal to \code{sys.stdin}, this second argument defaults to ``stdin''. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 25 | \end{classdesc} |
| 26 | |
Fred Drake | 184e836 | 1999-05-11 15:14:15 +0000 | [diff] [blame] | 27 | |
| 28 | \begin{seealso} |
| 29 | \seemodule{ConfigParser}{Parser for configuration files similar to the |
| 30 | Windows \file{.ini} files.} |
| 31 | \end{seealso} |
| 32 | |
| 33 | |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 34 | \subsection{shlex Objects \label{shlex-objects}} |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 35 | |
| 36 | A \class{shlex} instance has the following methods: |
| 37 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 38 | |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 39 | \begin{methoddesc}{get_token}{} |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 40 | Return a token. If tokens have been stacked using |
| 41 | \method{push_token()}, pop a token off the stack. Otherwise, read one |
| 42 | from the input stream. If reading encounters an immediate |
| 43 | end-of-file, an empty string is returned. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 44 | \end{methoddesc} |
| 45 | |
| 46 | \begin{methoddesc}{push_token}{str} |
| 47 | Push the argument onto the token stack. |
| 48 | \end{methoddesc} |
| 49 | |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 50 | \begin{methoddesc}{read_token}{} |
| 51 | Read a raw token. Ignore the pushback stack, and do not interpret source |
| 52 | requests. (This is not ordinarily a useful entry point, and is |
| 53 | documented here only for the sake of completeness.) |
| 54 | \end{methoddesc} |
| 55 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 56 | \begin{methoddesc}{sourcehook}{filename} |
| 57 | When \class{shlex} detects a source request (see |
| 58 | \member{source} below) this method is given the following token as |
| 59 | argument, and expected to return a tuple consisting of a filename and |
| 60 | an open file-like object. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 61 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 62 | Normally, this method first strips any quotes off the argument. If |
| 63 | the result is an absolute pathname, or there was no previous source |
| 64 | request in effect, or the previous source was a stream |
| 65 | (e.g. \code{sys.stdin}), the result is left alone. Otherwise, if the |
| 66 | result is a relative pathname, the directory part of the name of the |
| 67 | file immediately before it on the source inclusion stack is prepended |
| 68 | (this behavior is like the way the C preprocessor handles |
Eric S. Raymond | bd1a489 | 2001-01-16 14:18:55 +0000 | [diff] [blame] | 69 | \code{\#include "file.h"}). |
| 70 | |
| 71 | The result of the manipulations is treated as a filename, and returned |
| 72 | as the first component of the tuple, with |
| 73 | \function{open()} called on it to yield the second component. (Note: |
| 74 | this is the reverse of the order of arguments in instance initialization!) |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 75 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 76 | This hook is exposed so that you can use it to implement directory |
| 77 | search paths, addition of file extensions, and other namespace hacks. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 78 | There is no corresponding `close' hook, but a shlex instance will call |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 79 | the \method{close()} method of the sourced input stream when it |
| 80 | returns \EOF. |
Eric S. Raymond | bd1a489 | 2001-01-16 14:18:55 +0000 | [diff] [blame] | 81 | |
Fred Drake | 25be193 | 2001-01-16 20:52:41 +0000 | [diff] [blame] | 82 | For more explicit control of source stacking, use the |
| 83 | \method{push_source()} and \method{pop_source()} methods. |
Eric S. Raymond | bd1a489 | 2001-01-16 14:18:55 +0000 | [diff] [blame] | 84 | \end{methoddesc} |
| 85 | |
| 86 | \begin{methoddesc}{push_source}{stream\optional{, filename}} |
| 87 | Push an input source stream onto the input stack. If the filename |
| 88 | argument is specified it will later be available for use in error |
| 89 | messages. This is the same method used internally by the |
Fred Drake | 25be193 | 2001-01-16 20:52:41 +0000 | [diff] [blame] | 90 | \method{sourcehook} method. |
| 91 | \versionadded{2.1} |
Eric S. Raymond | bd1a489 | 2001-01-16 14:18:55 +0000 | [diff] [blame] | 92 | \end{methoddesc} |
| 93 | |
Fred Drake | 25be193 | 2001-01-16 20:52:41 +0000 | [diff] [blame] | 94 | \begin{methoddesc}{pop_source}{} |
Eric S. Raymond | bd1a489 | 2001-01-16 14:18:55 +0000 | [diff] [blame] | 95 | Pop the last-pushed input source from the input stack. |
| 96 | This is the same method used internally when the lexer reaches |
Fred Drake | 25be193 | 2001-01-16 20:52:41 +0000 | [diff] [blame] | 97 | \EOF on a stacked input stream. |
| 98 | \versionadded{2.1} |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 99 | \end{methoddesc} |
| 100 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 101 | \begin{methoddesc}{error_leader}{\optional{file\optional{, line}}} |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 102 | This method generates an error message leader in the format of a |
Fred Drake | 25be193 | 2001-01-16 20:52:41 +0000 | [diff] [blame] | 103 | \UNIX{} C compiler error label; the format is \code{'"\%s", line \%d: '}, |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 104 | where the \samp{\%s} is replaced with the name of the current source |
| 105 | file and the \samp{\%d} with the current input line number (the |
| 106 | optional arguments can be used to override these). |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 107 | |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 108 | This convenience is provided to encourage \module{shlex} users to |
| 109 | generate error messages in the standard, parseable format understood |
| 110 | by Emacs and other \UNIX{} tools. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 111 | \end{methoddesc} |
| 112 | |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 113 | Instances of \class{shlex} subclasses have some public instance |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 114 | variables which either control lexical analysis or can be used for |
| 115 | debugging: |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 116 | |
| 117 | \begin{memberdesc}{commenters} |
| 118 | The string of characters that are recognized as comment beginners. |
| 119 | All characters from the comment beginner to end of line are ignored. |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 120 | Includes just \character{\#} by default. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 121 | \end{memberdesc} |
| 122 | |
| 123 | \begin{memberdesc}{wordchars} |
| 124 | The string of characters that will accumulate into multi-character |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 125 | tokens. By default, includes all \ASCII{} alphanumerics and |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 126 | underscore. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 127 | \end{memberdesc} |
| 128 | |
| 129 | \begin{memberdesc}{whitespace} |
| 130 | Characters that will be considered whitespace and skipped. Whitespace |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 131 | bounds tokens. By default, includes space, tab, linefeed and |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 132 | carriage-return. |
| 133 | \end{memberdesc} |
| 134 | |
| 135 | \begin{memberdesc}{quotes} |
| 136 | Characters that will be considered string quotes. The token |
| 137 | accumulates until the same quote is encountered again (thus, different |
Fred Drake | 184e836 | 1999-05-11 15:14:15 +0000 | [diff] [blame] | 138 | quote types protect each other as in the shell.) By default, includes |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 139 | \ASCII{} single and double quotes. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 140 | \end{memberdesc} |
| 141 | |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 142 | \begin{memberdesc}{infile} |
| 143 | The name of the current input file, as initially set at class |
| 144 | instantiation time or stacked by later source requests. It may |
| 145 | be useful to examine this when constructing error messages. |
| 146 | \end{memberdesc} |
| 147 | |
| 148 | \begin{memberdesc}{instream} |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 149 | The input stream from which this \class{shlex} instance is reading |
| 150 | characters. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 151 | \end{memberdesc} |
| 152 | |
| 153 | \begin{memberdesc}{source} |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 154 | This member is \code{None} by default. If you assign a string to it, |
| 155 | that string will be recognized as a lexical-level inclusion request |
| 156 | similar to the \samp{source} keyword in various shells. That is, the |
| 157 | immediately following token will opened as a filename and input taken |
| 158 | from that stream until \EOF, at which point the \method{close()} |
| 159 | method of that stream will be called and the input source will again |
| 160 | become the original input stream. Source requests may be stacked any |
| 161 | number of levels deep. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 162 | \end{memberdesc} |
| 163 | |
| 164 | \begin{memberdesc}{debug} |
Fred Drake | 52dc76c | 2000-07-03 09:56:23 +0000 | [diff] [blame] | 165 | If this member is numeric and \code{1} or more, a \class{shlex} |
| 166 | instance will print verbose progress output on its behavior. If you |
| 167 | need to use this, you can read the module source code to learn the |
| 168 | details. |
Guido van Rossum | d67ddbb | 2000-05-01 20:14:47 +0000 | [diff] [blame] | 169 | \end{memberdesc} |
| 170 | |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 171 | Note that any character not declared to be a word character, |
| 172 | whitespace, or a quote will be returned as a single-character token. |
| 173 | |
| 174 | Quote and comment characters are not recognized within words. Thus, |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 175 | the bare words \samp{ain't} and \samp{ain\#t} would be returned as single |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 176 | tokens by the default parser. |
| 177 | |
| 178 | \begin{memberdesc}{lineno} |
| 179 | Source line number (count of newlines seen so far plus one). |
| 180 | \end{memberdesc} |
| 181 | |
| 182 | \begin{memberdesc}{token} |
Fred Drake | 1189fa9 | 1998-12-22 18:24:13 +0000 | [diff] [blame] | 183 | The token buffer. It may be useful to examine this when catching |
| 184 | exceptions. |
Guido van Rossum | 5e97c9d | 1998-12-22 05:18:24 +0000 | [diff] [blame] | 185 | \end{memberdesc} |