blob: 5281b28c428d1ce7ec8386897e35b7f710241c72 [file] [log] [blame]
Guido van Rossumb51eaa11997-03-07 00:21:55 +00001"""Tokenization help for Python programs.
Guido van Rossum4d8e8591992-01-01 19:34:47 +00002
Guido van Rossum1aec3231997-04-08 14:24:39 +00003This module exports a function called 'tokenize()' that breaks a stream of
4text into Python tokens. It accepts a readline-like method which is called
5repeatedly to get the next line of input (or "" for EOF) and a "token-eater"
6function which is called once for each token found. The latter function is
7passed the token type, a string containing the token, the starting and
8ending (row, column) coordinates of the token, and the original line. It is
9designed to match the working of the Python tokenizer exactly, except that
Guido van Rossum3b631771997-10-27 20:44:15 +000010it produces COMMENT tokens for comments and gives type OP for all operators."""
Guido van Rossumb51eaa11997-03-07 00:21:55 +000011
Ka-Ping Yee244c5932001-03-01 13:56:40 +000012__author__ = 'Ka-Ping Yee <ping@lfw.org>'
13__credits__ = 'first version, 26 October 1997; patched, GvR 3/30/98'
Guido van Rossumb51eaa11997-03-07 00:21:55 +000014
Guido van Rossum3b631771997-10-27 20:44:15 +000015import string, re
Guido van Rossumfc6f5331997-03-07 00:21:12 +000016from token import *
Guido van Rossum4d8e8591992-01-01 19:34:47 +000017
Skip Montanaro40fc1602001-03-01 04:27:19 +000018import token
19__all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"]
20del token
21
Guido van Rossum1aec3231997-04-08 14:24:39 +000022COMMENT = N_TOKENS
23tok_name[COMMENT] = 'COMMENT'
Guido van Rossuma90c78b1998-04-03 16:05:38 +000024NL = N_TOKENS + 1
25tok_name[NL] = 'NL'
Skip Montanaro40fc1602001-03-01 04:27:19 +000026N_TOKENS += 2
Guido van Rossum1aec3231997-04-08 14:24:39 +000027
28# Changes from 1.3:
29# Ignore now accepts \f as whitespace. Operator now includes '**'.
30# Ignore and Special now accept \n or \r\n at the end of a line.
31# Imagnumber is new. Expfloat is corrected to reject '0e4'.
Guido van Rossum3b631771997-10-27 20:44:15 +000032# Note: to quote a backslash in a regex, it must be doubled in a r'aw' string.
Guido van Rossum1aec3231997-04-08 14:24:39 +000033
Eric S. Raymondb08b2d32001-02-09 11:10:16 +000034def group(*choices): return '(' + '|'.join(choices) + ')'
Guido van Rossum3b631771997-10-27 20:44:15 +000035def any(*choices): return apply(group, choices) + '*'
36def maybe(*choices): return apply(group, choices) + '?'
Guido van Rossum4d8e8591992-01-01 19:34:47 +000037
Guido van Rossum3b631771997-10-27 20:44:15 +000038Whitespace = r'[ \f\t]*'
39Comment = r'#[^\r\n]*'
40Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
41Name = r'[a-zA-Z_]\w*'
Guido van Rossum4d8e8591992-01-01 19:34:47 +000042
Guido van Rossum3b631771997-10-27 20:44:15 +000043Hexnumber = r'0[xX][\da-fA-F]*[lL]?'
44Octnumber = r'0[0-7]*[lL]?'
45Decnumber = r'[1-9]\d*[lL]?'
Guido van Rossum1aec3231997-04-08 14:24:39 +000046Intnumber = group(Hexnumber, Octnumber, Decnumber)
Guido van Rossum3b631771997-10-27 20:44:15 +000047Exponent = r'[eE][-+]?\d+'
48Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
49Expfloat = r'[1-9]\d*' + Exponent
Guido van Rossum1aec3231997-04-08 14:24:39 +000050Floatnumber = group(Pointfloat, Expfloat)
Guido van Rossum3b631771997-10-27 20:44:15 +000051Imagnumber = group(r'0[jJ]', r'[1-9]\d*[jJ]', Floatnumber + r'[jJ]')
Guido van Rossum1aec3231997-04-08 14:24:39 +000052Number = group(Imagnumber, Floatnumber, Intnumber)
Guido van Rossum4d8e8591992-01-01 19:34:47 +000053
Tim Petersde495832000-10-07 05:09:39 +000054# Tail end of ' string.
55Single = r"[^'\\]*(?:\\.[^'\\]*)*'"
56# Tail end of " string.
57Double = r'[^"\\]*(?:\\.[^"\\]*)*"'
58# Tail end of ''' string.
59Single3 = r"[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''"
60# Tail end of """ string.
61Double3 = r'[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""'
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +000062Triple = group("[uU]?[rR]?'''", '[uU]?[rR]?"""')
Tim Petersde495832000-10-07 05:09:39 +000063# Single-line ' or " string.
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +000064String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'",
65 r'[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*"')
Guido van Rossum4d8e8591992-01-01 19:34:47 +000066
Tim Petersde495832000-10-07 05:09:39 +000067# Because of leftmost-then-longest match semantics, be sure to put the
68# longest operators first (e.g., if = came before ==, == would get
69# recognized as two instances of =).
70Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
71 r"[+\-*/%&|^=<>]=?",
72 r"~")
Thomas Wouterse1519a12000-08-24 21:44:52 +000073
Guido van Rossum4d8e8591992-01-01 19:34:47 +000074Bracket = '[][(){}]'
Guido van Rossum3b631771997-10-27 20:44:15 +000075Special = group(r'\r?\n', r'[:;.,`]')
Guido van Rossumfc6f5331997-03-07 00:21:12 +000076Funny = group(Operator, Bracket, Special)
Guido van Rossum4d8e8591992-01-01 19:34:47 +000077
Guido van Rossum3b631771997-10-27 20:44:15 +000078PlainToken = group(Number, Funny, String, Name)
Guido van Rossumfc6f5331997-03-07 00:21:12 +000079Token = Ignore + PlainToken
Guido van Rossum4d8e8591992-01-01 19:34:47 +000080
Tim Petersde495832000-10-07 05:09:39 +000081# First (or only) line of ' or " string.
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +000082ContStr = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*" +
83 group("'", r'\\\r?\n'),
84 r'[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*' +
85 group('"', r'\\\r?\n'))
Guido van Rossum3b631771997-10-27 20:44:15 +000086PseudoExtras = group(r'\\\r?\n', Comment, Triple)
87PseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)
Guido van Rossum1aec3231997-04-08 14:24:39 +000088
Guido van Rossum3b631771997-10-27 20:44:15 +000089tokenprog, pseudoprog, single3prog, double3prog = map(
90 re.compile, (Token, PseudoToken, Single3, Double3))
Guido van Rossumfefc9221997-10-27 21:17:24 +000091endprogs = {"'": re.compile(Single), '"': re.compile(Double),
Guido van Rossum3b631771997-10-27 20:44:15 +000092 "'''": single3prog, '"""': double3prog,
Guido van Rossumfefc9221997-10-27 21:17:24 +000093 "r'''": single3prog, 'r"""': double3prog,
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +000094 "u'''": single3prog, 'u"""': double3prog,
95 "ur'''": single3prog, 'ur"""': double3prog,
96 "R'''": single3prog, 'R"""': double3prog,
97 "U'''": single3prog, 'U"""': double3prog,
98 "uR'''": single3prog, 'uR"""': double3prog,
99 "Ur'''": single3prog, 'Ur"""': double3prog,
100 "UR'''": single3prog, 'UR"""': double3prog,
101 'r': None, 'R': None, 'u': None, 'U': None}
Guido van Rossum4d8e8591992-01-01 19:34:47 +0000102
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000103tabsize = 8
Fred Drake9b8d8012000-08-17 04:45:13 +0000104
105class TokenError(Exception):
106 pass
107
Guido van Rossum1aec3231997-04-08 14:24:39 +0000108def printtoken(type, token, (srow, scol), (erow, ecol), line): # for testing
109 print "%d,%d-%d,%d:\t%s\t%s" % \
110 (srow, scol, erow, ecol, tok_name[type], repr(token))
Guido van Rossum4d8e8591992-01-01 19:34:47 +0000111
Guido van Rossum1aec3231997-04-08 14:24:39 +0000112def tokenize(readline, tokeneater=printtoken):
113 lnum = parenlev = continued = 0
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000114 namechars, numchars = string.letters + '_', string.digits
Guido van Rossumde655271997-04-09 17:15:54 +0000115 contstr, needcont = '', 0
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000116 contline = None
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000117 indents = [0]
Guido van Rossum1aec3231997-04-08 14:24:39 +0000118
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000119 while 1: # loop over lines in stream
120 line = readline()
Guido van Rossum1aec3231997-04-08 14:24:39 +0000121 lnum = lnum + 1
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000122 pos, max = 0, len(line)
123
124 if contstr: # continued string
Guido van Rossumde655271997-04-09 17:15:54 +0000125 if not line:
126 raise TokenError, ("EOF in multi-line string", strstart)
Guido van Rossum3b631771997-10-27 20:44:15 +0000127 endmatch = endprog.match(line)
128 if endmatch:
129 pos = end = endmatch.end(0)
Guido van Rossum1aec3231997-04-08 14:24:39 +0000130 tokeneater(STRING, contstr + line[:end],
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000131 strstart, (lnum, end), contline + line)
Guido van Rossumde655271997-04-09 17:15:54 +0000132 contstr, needcont = '', 0
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000133 contline = None
Guido van Rossumde655271997-04-09 17:15:54 +0000134 elif needcont and line[-2:] != '\\\n' and line[-3:] != '\\\r\n':
135 tokeneater(ERRORTOKEN, contstr + line,
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000136 strstart, (lnum, len(line)), contline)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000137 contstr = ''
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000138 contline = None
Guido van Rossumde655271997-04-09 17:15:54 +0000139 continue
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000140 else:
141 contstr = contstr + line
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000142 contline = contline + line
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000143 continue
144
Guido van Rossum1aec3231997-04-08 14:24:39 +0000145 elif parenlev == 0 and not continued: # new statement
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000146 if not line: break
147 column = 0
Guido van Rossum1aec3231997-04-08 14:24:39 +0000148 while pos < max: # measure leading whitespace
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000149 if line[pos] == ' ': column = column + 1
Guido van Rossum1aec3231997-04-08 14:24:39 +0000150 elif line[pos] == '\t': column = (column/tabsize + 1)*tabsize
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000151 elif line[pos] == '\f': column = 0
152 else: break
153 pos = pos + 1
Guido van Rossumde655271997-04-09 17:15:54 +0000154 if pos == max: break
Guido van Rossum1aec3231997-04-08 14:24:39 +0000155
156 if line[pos] in '#\r\n': # skip comments or blank lines
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000157 tokeneater((NL, COMMENT)[line[pos] == '#'], line[pos:],
Guido van Rossum1aec3231997-04-08 14:24:39 +0000158 (lnum, pos), (lnum, len(line)), line)
159 continue
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000160
161 if column > indents[-1]: # count indents or dedents
162 indents.append(column)
Guido van Rossum1aec3231997-04-08 14:24:39 +0000163 tokeneater(INDENT, line[:pos], (lnum, 0), (lnum, pos), line)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000164 while column < indents[-1]:
165 indents = indents[:-1]
Guido van Rossumde655271997-04-09 17:15:54 +0000166 tokeneater(DEDENT, '', (lnum, pos), (lnum, pos), line)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000167
168 else: # continued statement
Guido van Rossumde655271997-04-09 17:15:54 +0000169 if not line:
170 raise TokenError, ("EOF in multi-line statement", (lnum, 0))
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000171 continued = 0
172
173 while pos < max:
Guido van Rossum3b631771997-10-27 20:44:15 +0000174 pseudomatch = pseudoprog.match(line, pos)
175 if pseudomatch: # scan for tokens
176 start, end = pseudomatch.span(1)
Guido van Rossumde655271997-04-09 17:15:54 +0000177 spos, epos, pos = (lnum, start), (lnum, end), end
Guido van Rossum1aec3231997-04-08 14:24:39 +0000178 token, initial = line[start:end], line[start]
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000179
Guido van Rossum3b631771997-10-27 20:44:15 +0000180 if initial in numchars \
Guido van Rossumde655271997-04-09 17:15:54 +0000181 or (initial == '.' and token != '.'): # ordinary number
Guido van Rossum1aec3231997-04-08 14:24:39 +0000182 tokeneater(NUMBER, token, spos, epos, line)
183 elif initial in '\r\n':
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000184 tokeneater(parenlev > 0 and NL or NEWLINE,
185 token, spos, epos, line)
Guido van Rossum1aec3231997-04-08 14:24:39 +0000186 elif initial == '#':
187 tokeneater(COMMENT, token, spos, epos, line)
Guido van Rossumfefc9221997-10-27 21:17:24 +0000188 elif token in ("'''", '"""', # triple-quoted
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +0000189 "r'''", 'r"""', "R'''", 'R"""',
190 "u'''", 'u"""', "U'''", 'U"""',
191 "ur'''", 'ur"""', "Ur'''", 'Ur"""',
192 "uR'''", 'uR"""', "UR'''", 'UR"""'):
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000193 endprog = endprogs[token]
Guido van Rossum3b631771997-10-27 20:44:15 +0000194 endmatch = endprog.match(line, pos)
195 if endmatch: # all on one line
196 pos = endmatch.end(0)
Guido van Rossum1aec3231997-04-08 14:24:39 +0000197 token = line[start:pos]
198 tokeneater(STRING, token, spos, (lnum, pos), line)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000199 else:
Guido van Rossum1aec3231997-04-08 14:24:39 +0000200 strstart = (lnum, start) # multiple lines
201 contstr = line[start:]
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000202 contline = line
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000203 break
Guido van Rossumfefc9221997-10-27 21:17:24 +0000204 elif initial in ("'", '"') or \
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +0000205 token[:2] in ("r'", 'r"', "R'", 'R"',
206 "u'", 'u"', "U'", 'U"') or \
207 token[:3] in ("ur'", 'ur"', "Ur'", 'Ur"',
208 "uR'", 'uR"', "UR'", 'UR"' ):
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000209 if token[-1] == '\n': # continued string
Guido van Rossum1aec3231997-04-08 14:24:39 +0000210 strstart = (lnum, start)
Ka-Ping Yee1ff08b12001-01-15 22:04:30 +0000211 endprog = (endprogs[initial] or endprogs[token[1]] or
212 endprogs[token[2]])
Guido van Rossumde655271997-04-09 17:15:54 +0000213 contstr, needcont = line[start:], 1
Guido van Rossuma90c78b1998-04-03 16:05:38 +0000214 contline = line
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000215 break
216 else: # ordinary string
Guido van Rossum1aec3231997-04-08 14:24:39 +0000217 tokeneater(STRING, token, spos, epos, line)
Guido van Rossum3b631771997-10-27 20:44:15 +0000218 elif initial in namechars: # ordinary name
219 tokeneater(NAME, token, spos, epos, line)
220 elif initial == '\\': # continued stmt
221 continued = 1
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000222 else:
Guido van Rossum1aec3231997-04-08 14:24:39 +0000223 if initial in '([{': parenlev = parenlev + 1
224 elif initial in ')]}': parenlev = parenlev - 1
225 tokeneater(OP, token, spos, epos, line)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000226 else:
Guido van Rossumde655271997-04-09 17:15:54 +0000227 tokeneater(ERRORTOKEN, line[pos],
228 (lnum, pos), (lnum, pos+1), line)
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000229 pos = pos + 1
230
231 for indent in indents[1:]: # pop remaining indent levels
Guido van Rossum1aec3231997-04-08 14:24:39 +0000232 tokeneater(DEDENT, '', (lnum, 0), (lnum, 0), '')
Guido van Rossumde655271997-04-09 17:15:54 +0000233 tokeneater(ENDMARKER, '', (lnum, 0), (lnum, 0), '')
Guido van Rossumfc6f5331997-03-07 00:21:12 +0000234
235if __name__ == '__main__': # testing
236 import sys
Guido van Rossumde655271997-04-09 17:15:54 +0000237 if len(sys.argv) > 1: tokenize(open(sys.argv[1]).readline)
Guido van Rossum2b1566b1997-06-03 22:05:15 +0000238 else: tokenize(sys.stdin.readline)