1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
from pypy.interpreter.error import OperationError
from pypy.interpreter.pyparser import future, parser, pytokenizer, pygram, error
from pypy.interpreter.astcompiler import consts
from rpython.rlib import rstring
def recode_to_utf8(space, bytes, encoding):
if encoding == 'utf-8':
return bytes
w_text = space.call_method(space.newbytes(bytes), "decode",
space.newtext(encoding))
w_recoded = space.call_method(w_text, "encode", space.newtext("utf-8"))
return space.bytes_w(w_recoded)
def _normalize_encoding(encoding):
"""returns normalized name for <encoding>
see dist/src/Parser/tokenizer.c 'get_normal_name()'
for implementation details / reference
NOTE: for now, parser.suite() raises a MemoryError when
a bad encoding is used. (SF bug #979739)
"""
if encoding is None:
return None
# lower() + '_' / '-' conversion
encoding = encoding.replace('_', '-').lower()
if encoding == 'utf-8' or encoding.startswith('utf-8-'):
return 'utf-8'
for variant in ['latin-1', 'iso-latin-1', 'iso-8859-1']:
if (encoding == variant or
encoding.startswith(variant + '-')):
return 'iso-8859-1'
return encoding
def _check_for_encoding(s):
eol = s.find('\n')
if eol < 0:
return _check_line_for_encoding(s)[0]
enc, again = _check_line_for_encoding(s[:eol])
if enc or not again:
return enc
eol2 = s.find('\n', eol + 1)
if eol2 < 0:
return _check_line_for_encoding(s[eol + 1:])[0]
return _check_line_for_encoding(s[eol + 1:eol2])[0]
def _check_line_for_encoding(line):
"""returns the declared encoding or None"""
i = 0
for i in range(len(line)):
if line[i] == '#':
break
if line[i] not in ' \t\014':
return None, False # Not a comment, don't read the second line.
return pytokenizer.match_encoding_declaration(line[i:]), True
class CompileInfo(object):
"""Stores information about the source being compiled.
* filename: The filename of the source.
* mode: The parse mode to use. ('exec', 'eval', or 'single')
* flags: Parser and compiler flags.
* encoding: The source encoding.
* last_future_import: The line number and offset of the last __future__
import.
* hidden_applevel: Will this code unit and sub units be hidden at the
applevel?
* optimize: optimization level:
-1 = same as interpreter,
0 = no optmiziation,
1 = remove asserts,
2 = remove docstrings.
"""
def __init__(self, filename, mode="exec", flags=0, future_pos=(0, 0),
hidden_applevel=False, optimize=-1):
rstring.check_str0(filename)
self.filename = filename
self.mode = mode
self.encoding = None
self.flags = flags
self.optimize = optimize
self.last_future_import = future_pos
self.hidden_applevel = hidden_applevel
_targets = {
'eval' : pygram.syms.eval_input,
'single' : pygram.syms.single_input,
'exec' : pygram.syms.file_input,
}
class PythonParser(parser.Parser):
def __init__(self, space, future_flags=future.futureFlags_3_5,
grammar=pygram.python_grammar):
parser.Parser.__init__(self, grammar)
self.space = space
self.future_flags = future_flags
def parse_source(self, bytessrc, compile_info):
"""Main entry point for parsing Python source.
Everything from decoding the source to tokenizing to building the parse
tree is handled here.
"""
# Detect source encoding.
explicit_encoding = False
enc = None
if compile_info.flags & consts.PyCF_SOURCE_IS_UTF8:
enc = 'utf-8'
if compile_info.flags & consts.PyCF_IGNORE_COOKIE:
textsrc = bytessrc
elif bytessrc.startswith("\xEF\xBB\xBF"):
bytessrc = bytessrc[3:]
enc = 'utf-8'
# If an encoding is explicitly given check that it is utf-8.
decl_enc = _check_for_encoding(bytessrc)
explicit_encoding = (decl_enc is not None)
if decl_enc and decl_enc != "utf-8":
raise error.SyntaxError("UTF-8 BOM with %s coding cookie" % decl_enc,
filename=compile_info.filename)
textsrc = bytessrc
else:
enc = _normalize_encoding(_check_for_encoding(bytessrc))
explicit_encoding = (enc is not None)
if enc is None:
enc = 'utf-8'
try:
textsrc = recode_to_utf8(self.space, bytessrc, enc)
except OperationError as e:
# if the codec is not found, LookupError is raised. we
# check using 'is_w' not to mask potential IndexError or
# KeyError
space = self.space
if e.match(space, space.w_LookupError):
raise error.SyntaxError("Unknown encoding: %s" % enc,
filename=compile_info.filename)
# Transform unicode errors into SyntaxError
if e.match(space, space.w_UnicodeDecodeError):
e.normalize_exception(space)
w_message = space.str(e.get_w_value(space))
raise error.SyntaxError(space.text_w(w_message))
raise
if enc is not None:
compile_info.encoding = enc
if explicit_encoding:
compile_info.flags |= consts.PyCF_FOUND_ENCODING
return self._parse(textsrc, compile_info)
def _parse(self, textsrc, compile_info):
flags = compile_info.flags
# The tokenizer is very picky about how it wants its input.
source_lines = textsrc.splitlines(True)
if source_lines and not source_lines[-1].endswith("\n"):
source_lines[-1] += '\n'
if textsrc and textsrc[-1] == "\n":
flags &= ~consts.PyCF_DONT_IMPLY_DEDENT
self.prepare(_targets[compile_info.mode])
try:
last_token_seen = None
next_token_seen = None
try:
# Note: we no longer pass the CO_FUTURE_* to the tokenizer,
# which is expected to work independently of them. It's
# certainly the case for all futures in Python <= 2.7.
tokens = pytokenizer.generate_tokens(source_lines, flags)
except error.TokenError as e:
e.filename = compile_info.filename
raise
except error.TokenIndentationError as e:
e.filename = compile_info.filename
raise
newflags, last_future_import = (
future.add_future_flags(self.future_flags, tokens))
compile_info.last_future_import = last_future_import
compile_info.flags |= newflags
self.grammar = pygram.choose_grammar(
print_function=True,
revdb=self.space.config.translation.reverse_debugger)
try:
tokens_stream = iter(tokens)
for token in tokens_stream:
next_token_seen = token
if self.add_token(token):
break
last_token_seen = token
last_token_seen = None
next_token_seen = None
if compile_info.mode == 'single':
for token in tokens_stream:
if token.token_type == pygram.tokens.ENDMARKER:
break
if token.token_type == pygram.tokens.NEWLINE:
continue
if token.token_type == pygram.tokens.COMMENT:
for token in tokens_stream:
if token.token_type == pygram.tokens.NEWLINE:
break
else:
new_err = error.SyntaxError
msg = ("multiple statements found while "
"compiling a single statement")
raise new_err(msg, token.lineno, token.column,
token.line, compile_info.filename)
except error.TokenError as e:
e.filename = compile_info.filename
raise
except error.TokenIndentationError as e:
e.filename = compile_info.filename
raise
except parser.ParseError as e:
# Catch parse errors, pretty them up and reraise them as a
# SyntaxError.
new_err = error.IndentationError
if token.token_type == pygram.tokens.INDENT:
msg = "unexpected indent"
elif e.expected == pygram.tokens.INDENT:
msg = "expected an indented block"
else:
new_err = error.SyntaxError
if (last_token_seen is not None and
last_token_seen.value in ('print', 'exec') and
next_token_seen is not None and
next_token_seen.value != '('):
msg = "Missing parentheses in call to '%s'" % (
last_token_seen.value,)
else:
msg = "invalid syntax"
if e.expected_str is not None:
msg += " (expected '%s')" % e.expected_str
# parser.ParseError(...).column is 0-based, but the offsets in the
# exceptions in the error module are 1-based, hence the '+ 1'
raise new_err(msg, e.token.lineno, e.token.column + 1, e.token.line,
compile_info.filename)
else:
tree = self.root
finally:
# Avoid hanging onto the tree.
self.root = None
return tree
|