tokenize.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.
  2. # All rights reserved.
  3. """Tokenization help for Python programs.
  4. generate_tokens(readline) is a generator that breaks a stream of
  5. text into Python tokens. It accepts a readline-like method which is called
  6. repeatedly to get the next line of input (or "" for EOF). It generates
  7. 5-tuples with these members:
  8. the token type (see token.py)
  9. the token (a string)
  10. the starting (row, column) indices of the token (a 2-tuple of ints)
  11. the ending (row, column) indices of the token (a 2-tuple of ints)
  12. the original line (string)
  13. It is designed to match the working of the Python tokenizer exactly, except
  14. that it produces COMMENT tokens for comments and gives type OP for all
  15. operators
  16. Older entry points
  17. tokenize_loop(readline, tokeneater)
  18. tokenize(readline, tokeneater=printtoken)
  19. are the same, except instead of generating tokens, tokeneater is a callback
  20. function to which the 5 fields described above are passed as 5 arguments,
  21. each time a new token is found."""
  22. __author__ = 'Ka-Ping Yee <ping@lfw.org>'
  23. __credits__ = \
  24. 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro'
  25. import string, re
  26. from codecs import BOM_UTF8, lookup
  27. from lib2to3.pgen2.token import *
  28. from . import token
  29. __all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",
  30. "generate_tokens", "untokenize"]
  31. del token
  32. try:
  33. bytes
  34. except NameError:
  35. # Support bytes type in Python <= 2.5, so 2to3 turns itself into
  36. # valid Python 3 code.
  37. bytes = str
  38. def group(*choices): return '(' + '|'.join(choices) + ')'
  39. def any(*choices): return group(*choices) + '*'
  40. def maybe(*choices): return group(*choices) + '?'
  41. Whitespace = r'[ \f\t]*'
  42. Comment = r'#[^\r\n]*'
  43. Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
  44. Name = r'[a-zA-Z_]\w*'
  45. Binnumber = r'0[bB][01]*'
  46. Hexnumber = r'0[xX][\da-fA-F]*[lL]?'
  47. Octnumber = r'0[oO]?[0-7]*[lL]?'
  48. Decnumber = r'[1-9]\d*[lL]?'
  49. Intnumber = group(Binnumber, Hexnumber, Octnumber, Decnumber)
  50. Exponent = r'[eE][-+]?\d+'
  51. Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  52. Expfloat = r'\d+' + Exponent
  53. Floatnumber = group(Pointfloat, Expfloat)
  54. Imagnumber = group(r'\d+[jJ]', Floatnumber + r'[jJ]')
  55. Number = group(Imagnumber, Floatnumber, Intnumber)
  56. # Tail end of ' string.
  57. Single = r"[^'\\]*(?:\\.[^'\\]*)*'"
  58. # Tail end of " string.
  59. Double = r'[^"\\]*(?:\\.[^"\\]*)*"'
  60. # Tail end of ''' string.
  61. Single3 = r"[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''"
  62. # Tail end of """ string.
  63. Double3 = r'[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""'
  64. Triple = group("[ubUB]?[rR]?'''", '[ubUB]?[rR]?"""')
  65. # Single-line ' or " string.
  66. String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'",
  67. r'[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*"')
  68. # Because of leftmost-then-longest match semantics, be sure to put the
  69. # longest operators first (e.g., if = came before ==, == would get
  70. # recognized as two instances of =).
  71. Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
  72. r"//=?", r"->",
  73. r"[+\-*/%&@|^=<>]=?",
  74. r"~")
  75. Bracket = '[][(){}]'
  76. Special = group(r'\r?\n', r'[:;.,`@]')
  77. Funny = group(Operator, Bracket, Special)
  78. PlainToken = group(Number, Funny, String, Name)
  79. Token = Ignore + PlainToken
  80. # First (or only) line of ' or " string.
  81. ContStr = group(r"[uUbB]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*" +
  82. group("'", r'\\\r?\n'),
  83. r'[uUbB]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*' +
  84. group('"', r'\\\r?\n'))
  85. PseudoExtras = group(r'\\\r?\n', Comment, Triple)
  86. PseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)
  87. tokenprog, pseudoprog, single3prog, double3prog = map(
  88. re.compile, (Token, PseudoToken, Single3, Double3))
  89. endprogs = {"'": re.compile(Single), '"': re.compile(Double),
  90. "'''": single3prog, '"""': double3prog,
  91. "r'''": single3prog, 'r"""': double3prog,
  92. "u'''": single3prog, 'u"""': double3prog,
  93. "b'''": single3prog, 'b"""': double3prog,
  94. "ur'''": single3prog, 'ur"""': double3prog,
  95. "br'''": single3prog, 'br"""': double3prog,
  96. "R'''": single3prog, 'R"""': double3prog,
  97. "U'''": single3prog, 'U"""': double3prog,
  98. "B'''": single3prog, 'B"""': double3prog,
  99. "uR'''": single3prog, 'uR"""': double3prog,
  100. "Ur'''": single3prog, 'Ur"""': double3prog,
  101. "UR'''": single3prog, 'UR"""': double3prog,
  102. "bR'''": single3prog, 'bR"""': double3prog,
  103. "Br'''": single3prog, 'Br"""': double3prog,
  104. "BR'''": single3prog, 'BR"""': double3prog,
  105. 'r': None, 'R': None,
  106. 'u': None, 'U': None,
  107. 'b': None, 'B': None}
  108. triple_quoted = {}
  109. for t in ("'''", '"""',
  110. "r'''", 'r"""', "R'''", 'R"""',
  111. "u'''", 'u"""', "U'''", 'U"""',
  112. "b'''", 'b"""', "B'''", 'B"""',
  113. "ur'''", 'ur"""', "Ur'''", 'Ur"""',
  114. "uR'''", 'uR"""', "UR'''", 'UR"""',
  115. "br'''", 'br"""', "Br'''", 'Br"""',
  116. "bR'''", 'bR"""', "BR'''", 'BR"""',):
  117. triple_quoted[t] = t
  118. single_quoted = {}
  119. for t in ("'", '"',
  120. "r'", 'r"', "R'", 'R"',
  121. "u'", 'u"', "U'", 'U"',
  122. "b'", 'b"', "B'", 'B"',
  123. "ur'", 'ur"', "Ur'", 'Ur"',
  124. "uR'", 'uR"', "UR'", 'UR"',
  125. "br'", 'br"', "Br'", 'Br"',
  126. "bR'", 'bR"', "BR'", 'BR"', ):
  127. single_quoted[t] = t
  128. tabsize = 8
  129. class TokenError(Exception): pass
  130. class StopTokenizing(Exception): pass
  131. def printtoken(type, token, start, end, line): # for testing
  132. (srow, scol) = start
  133. (erow, ecol) = end
  134. print "%d,%d-%d,%d:\t%s\t%s" % \
  135. (srow, scol, erow, ecol, tok_name[type], repr(token))
  136. def tokenize(readline, tokeneater=printtoken):
  137. """
  138. The tokenize() function accepts two parameters: one representing the
  139. input stream, and one providing an output mechanism for tokenize().
  140. The first parameter, readline, must be a callable object which provides
  141. the same interface as the readline() method of built-in file objects.
  142. Each call to the function should return one line of input as a string.
  143. The second parameter, tokeneater, must also be a callable object. It is
  144. called once for each token, with five arguments, corresponding to the
  145. tuples generated by generate_tokens().
  146. """
  147. try:
  148. tokenize_loop(readline, tokeneater)
  149. except StopTokenizing:
  150. pass
  151. # backwards compatible interface
  152. def tokenize_loop(readline, tokeneater):
  153. for token_info in generate_tokens(readline):
  154. tokeneater(*token_info)
  155. class Untokenizer:
  156. def __init__(self):
  157. self.tokens = []
  158. self.prev_row = 1
  159. self.prev_col = 0
  160. def add_whitespace(self, start):
  161. row, col = start
  162. assert row <= self.prev_row
  163. col_offset = col - self.prev_col
  164. if col_offset:
  165. self.tokens.append(" " * col_offset)
  166. def untokenize(self, iterable):
  167. for t in iterable:
  168. if len(t) == 2:
  169. self.compat(t, iterable)
  170. break
  171. tok_type, token, start, end, line = t
  172. self.add_whitespace(start)
  173. self.tokens.append(token)
  174. self.prev_row, self.prev_col = end
  175. if tok_type in (NEWLINE, NL):
  176. self.prev_row += 1
  177. self.prev_col = 0
  178. return "".join(self.tokens)
  179. def compat(self, token, iterable):
  180. startline = False
  181. indents = []
  182. toks_append = self.tokens.append
  183. toknum, tokval = token
  184. if toknum in (NAME, NUMBER):
  185. tokval += ' '
  186. if toknum in (NEWLINE, NL):
  187. startline = True
  188. for tok in iterable:
  189. toknum, tokval = tok[:2]
  190. if toknum in (NAME, NUMBER):
  191. tokval += ' '
  192. if toknum == INDENT:
  193. indents.append(tokval)
  194. continue
  195. elif toknum == DEDENT:
  196. indents.pop()
  197. continue
  198. elif toknum in (NEWLINE, NL):
  199. startline = True
  200. elif startline and indents:
  201. toks_append(indents[-1])
  202. startline = False
  203. toks_append(tokval)
  204. cookie_re = re.compile(r'^[ \t\f]*#.*?coding[:=][ \t]*([-\w.]+)')
  205. blank_re = re.compile(r'^[ \t\f]*(?:[#\r\n]|$)')
  206. def _get_normal_name(orig_enc):
  207. """Imitates get_normal_name in tokenizer.c."""
  208. # Only care about the first 12 characters.
  209. enc = orig_enc[:12].lower().replace("_", "-")
  210. if enc == "utf-8" or enc.startswith("utf-8-"):
  211. return "utf-8"
  212. if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \
  213. enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")):
  214. return "iso-8859-1"
  215. return orig_enc
  216. def detect_encoding(readline):
  217. """
  218. The detect_encoding() function is used to detect the encoding that should
  219. be used to decode a Python source file. It requires one argument, readline,
  220. in the same way as the tokenize() generator.
  221. It will call readline a maximum of twice, and return the encoding used
  222. (as a string) and a list of any lines (left as bytes) it has read
  223. in.
  224. It detects the encoding from the presence of a utf-8 bom or an encoding
  225. cookie as specified in pep-0263. If both a bom and a cookie are present, but
  226. disagree, a SyntaxError will be raised. If the encoding cookie is an invalid
  227. charset, raise a SyntaxError. Note that if a utf-8 bom is found,
  228. 'utf-8-sig' is returned.
  229. If no encoding is specified, then the default of 'utf-8' will be returned.
  230. """
  231. bom_found = False
  232. encoding = None
  233. default = 'utf-8'
  234. def read_or_stop():
  235. try:
  236. return readline()
  237. except StopIteration:
  238. return bytes()
  239. def find_cookie(line):
  240. try:
  241. line_string = line.decode('ascii')
  242. except UnicodeDecodeError:
  243. return None
  244. match = cookie_re.match(line_string)
  245. if not match:
  246. return None
  247. encoding = _get_normal_name(match.group(1))
  248. try:
  249. codec = lookup(encoding)
  250. except LookupError:
  251. # This behaviour mimics the Python interpreter
  252. raise SyntaxError("unknown encoding: " + encoding)
  253. if bom_found:
  254. if codec.name != 'utf-8':
  255. # This behaviour mimics the Python interpreter
  256. raise SyntaxError('encoding problem: utf-8')
  257. encoding += '-sig'
  258. return encoding
  259. first = read_or_stop()
  260. if first.startswith(BOM_UTF8):
  261. bom_found = True
  262. first = first[3:]
  263. default = 'utf-8-sig'
  264. if not first:
  265. return default, []
  266. encoding = find_cookie(first)
  267. if encoding:
  268. return encoding, [first]
  269. if not blank_re.match(first):
  270. return default, [first]
  271. second = read_or_stop()
  272. if not second:
  273. return default, [first]
  274. encoding = find_cookie(second)
  275. if encoding:
  276. return encoding, [first, second]
  277. return default, [first, second]
  278. def untokenize(iterable):
  279. """Transform tokens back into Python source code.
  280. Each element returned by the iterable must be a token sequence
  281. with at least two elements, a token number and token value. If
  282. only two tokens are passed, the resulting output is poor.
  283. Round-trip invariant for full input:
  284. Untokenized source will match input source exactly
  285. Round-trip invariant for limited intput:
  286. # Output text will tokenize the back to the input
  287. t1 = [tok[:2] for tok in generate_tokens(f.readline)]
  288. newcode = untokenize(t1)
  289. readline = iter(newcode.splitlines(1)).next
  290. t2 = [tok[:2] for tokin generate_tokens(readline)]
  291. assert t1 == t2
  292. """
  293. ut = Untokenizer()
  294. return ut.untokenize(iterable)
  295. def generate_tokens(readline):
  296. """
  297. The generate_tokens() generator requires one argument, readline, which
  298. must be a callable object which provides the same interface as the
  299. readline() method of built-in file objects. Each call to the function
  300. should return one line of input as a string. Alternately, readline
  301. can be a callable function terminating with StopIteration:
  302. readline = open(myfile).next # Example of alternate readline
  303. The generator produces 5-tuples with these members: the token type; the
  304. token string; a 2-tuple (srow, scol) of ints specifying the row and
  305. column where the token begins in the source; a 2-tuple (erow, ecol) of
  306. ints specifying the row and column where the token ends in the source;
  307. and the line on which the token was found. The line passed is the
  308. logical line; continuation lines are included.
  309. """
  310. lnum = parenlev = continued = 0
  311. namechars, numchars = string.ascii_letters + '_', '0123456789'
  312. contstr, needcont = '', 0
  313. contline = None
  314. indents = [0]
  315. while 1: # loop over lines in stream
  316. try:
  317. line = readline()
  318. except StopIteration:
  319. line = ''
  320. lnum = lnum + 1
  321. pos, max = 0, len(line)
  322. if contstr: # continued string
  323. if not line:
  324. raise TokenError, ("EOF in multi-line string", strstart)
  325. endmatch = endprog.match(line)
  326. if endmatch:
  327. pos = end = endmatch.end(0)
  328. yield (STRING, contstr + line[:end],
  329. strstart, (lnum, end), contline + line)
  330. contstr, needcont = '', 0
  331. contline = None
  332. elif needcont and line[-2:] != '\\\n' and line[-3:] != '\\\r\n':
  333. yield (ERRORTOKEN, contstr + line,
  334. strstart, (lnum, len(line)), contline)
  335. contstr = ''
  336. contline = None
  337. continue
  338. else:
  339. contstr = contstr + line
  340. contline = contline + line
  341. continue
  342. elif parenlev == 0 and not continued: # new statement
  343. if not line: break
  344. column = 0
  345. while pos < max: # measure leading whitespace
  346. if line[pos] == ' ': column = column + 1
  347. elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  348. elif line[pos] == '\f': column = 0
  349. else: break
  350. pos = pos + 1
  351. if pos == max: break
  352. if line[pos] in '#\r\n': # skip comments or blank lines
  353. if line[pos] == '#':
  354. comment_token = line[pos:].rstrip('\r\n')
  355. nl_pos = pos + len(comment_token)
  356. yield (COMMENT, comment_token,
  357. (lnum, pos), (lnum, pos + len(comment_token)), line)
  358. yield (NL, line[nl_pos:],
  359. (lnum, nl_pos), (lnum, len(line)), line)
  360. else:
  361. yield ((NL, COMMENT)[line[pos] == '#'], line[pos:],
  362. (lnum, pos), (lnum, len(line)), line)
  363. continue
  364. if column > indents[-1]: # count indents or dedents
  365. indents.append(column)
  366. yield (INDENT, line[:pos], (lnum, 0), (lnum, pos), line)
  367. while column < indents[-1]:
  368. if column not in indents:
  369. raise IndentationError(
  370. "unindent does not match any outer indentation level",
  371. ("<tokenize>", lnum, pos, line))
  372. indents = indents[:-1]
  373. yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
  374. else: # continued statement
  375. if not line:
  376. raise TokenError, ("EOF in multi-line statement", (lnum, 0))
  377. continued = 0
  378. while pos < max:
  379. pseudomatch = pseudoprog.match(line, pos)
  380. if pseudomatch: # scan for tokens
  381. start, end = pseudomatch.span(1)
  382. spos, epos, pos = (lnum, start), (lnum, end), end
  383. token, initial = line[start:end], line[start]
  384. if initial in numchars or \
  385. (initial == '.' and token != '.'): # ordinary number
  386. yield (NUMBER, token, spos, epos, line)
  387. elif initial in '\r\n':
  388. newline = NEWLINE
  389. if parenlev > 0:
  390. newline = NL
  391. yield (newline, token, spos, epos, line)
  392. elif initial == '#':
  393. assert not token.endswith("\n")
  394. yield (COMMENT, token, spos, epos, line)
  395. elif token in triple_quoted:
  396. endprog = endprogs[token]
  397. endmatch = endprog.match(line, pos)
  398. if endmatch: # all on one line
  399. pos = endmatch.end(0)
  400. token = line[start:pos]
  401. yield (STRING, token, spos, (lnum, pos), line)
  402. else:
  403. strstart = (lnum, start) # multiple lines
  404. contstr = line[start:]
  405. contline = line
  406. break
  407. elif initial in single_quoted or \
  408. token[:2] in single_quoted or \
  409. token[:3] in single_quoted:
  410. if token[-1] == '\n': # continued string
  411. strstart = (lnum, start)
  412. endprog = (endprogs[initial] or endprogs[token[1]] or
  413. endprogs[token[2]])
  414. contstr, needcont = line[start:], 1
  415. contline = line
  416. break
  417. else: # ordinary string
  418. yield (STRING, token, spos, epos, line)
  419. elif initial in namechars: # ordinary name
  420. yield (NAME, token, spos, epos, line)
  421. elif initial == '\\': # continued stmt
  422. # This yield is new; needed for better idempotency:
  423. yield (NL, token, spos, (lnum, pos), line)
  424. continued = 1
  425. else:
  426. if initial in '([{': parenlev = parenlev + 1
  427. elif initial in ')]}': parenlev = parenlev - 1
  428. yield (OP, token, spos, epos, line)
  429. else:
  430. yield (ERRORTOKEN, line[pos],
  431. (lnum, pos), (lnum, pos+1), line)
  432. pos = pos + 1
  433. for indent in indents[1:]: # pop remaining indent levels
  434. yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
  435. yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
  436. if __name__ == '__main__': # testing
  437. import sys
  438. if len(sys.argv) > 1: tokenize(open(sys.argv[1]).readline)
  439. else: tokenize(sys.stdin.readline)