blob: c97b4df2935407ea273bdbba2fc3363101abff5e [file] [log] [blame]
Tim Peters6cd6a822001-08-17 22:11:27 +00001r"""Utilities to compile possibly incomplete Python source code.
Guido van Rossumc41c1a91998-10-22 21:56:15 +00002
Tim Peters6cd6a822001-08-17 22:11:27 +00003This module provides two interfaces, broadly similar to the builtin
4function compile(), that take progam text, a filename and a 'mode'
5and:
Skip Montanaroe99d5ea2001-01-20 19:54:20 +00006
Tim Peters6cd6a822001-08-17 22:11:27 +00007- Return a code object if the command is complete and valid
8- Return None if the command is incomplete
9- Raise SyntaxError, ValueError or OverflowError if the command is a
10 syntax error (OverflowError and ValueError can be produced by
11 malformed literals).
Guido van Rossumc41c1a91998-10-22 21:56:15 +000012
Tim Peters6cd6a822001-08-17 22:11:27 +000013Approach:
Guido van Rossumc41c1a91998-10-22 21:56:15 +000014
Tim Peters6cd6a822001-08-17 22:11:27 +000015First, check if the source consists entirely of blank lines and
16comments; if so, replace it with 'pass', because the built-in
17parser doesn't always do the right thing for these.
Guido van Rossumc41c1a91998-10-22 21:56:15 +000018
Tim Peters6cd6a822001-08-17 22:11:27 +000019Compile three times: as is, with \n, and with \n\n appended. If it
20compiles as is, it's complete. If it compiles with one \n appended,
21we expect more. If it doesn't compile either way, we compare the
22error we get when compiling with \n or \n\n appended. If the errors
23are the same, the code is broken. But if the errors are different, we
24expect more. Not intuitive; not even guaranteed to hold in future
25releases; but this matches the compiler's behavior from Python 1.4
26through 2.2, at least.
Guido van Rossumc41c1a91998-10-22 21:56:15 +000027
Tim Peters6cd6a822001-08-17 22:11:27 +000028Caveat:
Guido van Rossumc41c1a91998-10-22 21:56:15 +000029
Tim Peters6cd6a822001-08-17 22:11:27 +000030It is possible (but not likely) that the parser stops parsing with a
31successful outcome before reaching the end of the source; in this
32case, trailing symbols may be ignored instead of causing an error.
33For example, a backslash followed by two newlines may be followed by
34arbitrary garbage. This will be fixed once the API for the parser is
35better.
Guido van Rossumc41c1a91998-10-22 21:56:15 +000036
Tim Peters6cd6a822001-08-17 22:11:27 +000037The two interfaces are:
Guido van Rossumc41c1a91998-10-22 21:56:15 +000038
Tim Peters6cd6a822001-08-17 22:11:27 +000039compile_command(source, filename, symbol):
Guido van Rossumc41c1a91998-10-22 21:56:15 +000040
Tim Peters6cd6a822001-08-17 22:11:27 +000041 Compiles a single command in the manner described above.
Guido van Rossumc41c1a91998-10-22 21:56:15 +000042
Tim Peters6cd6a822001-08-17 22:11:27 +000043CommandCompiler():
Guido van Rossumc41c1a91998-10-22 21:56:15 +000044
Tim Peters6cd6a822001-08-17 22:11:27 +000045 Instances of this class have __call__ methods identical in
46 signature to compile_command; the difference is that if the
47 instance compiles program text containing a __future__ statement,
48 the instance 'remembers' and compiles all subsequent program texts
49 with the statement in force.
Guido van Rossumc41c1a91998-10-22 21:56:15 +000050
Tim Peters6cd6a822001-08-17 22:11:27 +000051The module also provides another class:
52
53Compile():
54
55 Instances of this class act like the built-in function compile,
56 but with 'memory' in the sense described above.
57"""
58
59import __future__
60
61_features = [getattr(__future__, fname)
62 for fname in __future__.all_feature_names]
63
64__all__ = ["compile_command", "Compile", "CommandCompiler"]
65
66def _maybe_compile(compiler, source, filename, symbol):
Guido van Rossumc41c1a91998-10-22 21:56:15 +000067 # Check for source consisting of only blank lines and comments
Eric S. Raymond6b71e742001-02-09 08:56:30 +000068 for line in source.split("\n"):
69 line = line.strip()
Guido van Rossumc41c1a91998-10-22 21:56:15 +000070 if line and line[0] != '#':
71 break # Leave it alone
72 else:
73 source = "pass" # Replace it with a 'pass' statement
74
75 err = err1 = err2 = None
76 code = code1 = code2 = None
77
78 try:
Tim Peters6cd6a822001-08-17 22:11:27 +000079 code = compiler(source, filename, symbol)
Guido van Rossumc41c1a91998-10-22 21:56:15 +000080 except SyntaxError, err:
81 pass
82
83 try:
Tim Peters6cd6a822001-08-17 22:11:27 +000084 code1 = compiler(source + "\n", filename, symbol)
Guido van Rossumc41c1a91998-10-22 21:56:15 +000085 except SyntaxError, err1:
86 pass
87
88 try:
Tim Peters6cd6a822001-08-17 22:11:27 +000089 code2 = compiler(source + "\n\n", filename, symbol)
Guido van Rossumc41c1a91998-10-22 21:56:15 +000090 except SyntaxError, err2:
91 pass
92
93 if code:
94 return code
95 try:
96 e1 = err1.__dict__
97 except AttributeError:
98 e1 = err1
99 try:
100 e2 = err2.__dict__
101 except AttributeError:
102 e2 = err2
103 if not code1 and e1 == e2:
104 raise SyntaxError, err1
Tim Peters6cd6a822001-08-17 22:11:27 +0000105
106def compile_command(source, filename="<input>", symbol="single"):
107 r"""Compile a command and determine whether it is incomplete.
108
109 Arguments:
110
111 source -- the source string; may contain \n characters
112 filename -- optional filename from which source was read; default
113 "<input>"
114 symbol -- optional grammar start symbol; "single" (default) or "eval"
115
116 Return value / exceptions raised:
117
118 - Return a code object if the command is complete and valid
119 - Return None if the command is incomplete
120 - Raise SyntaxError, ValueError or OverflowError if the command is a
121 syntax error (OverflowError and ValueError can be produced by
122 malformed literals).
123 """
124 return _maybe_compile(compile, source, filename, symbol)
125
126class Compile:
127 """Instances of this class behave much like the built-in compile
128 function, but if one is used to compile text containing a future
129 statement, it "remembers" and compiles all subsequent program texts
130 with the statement in force."""
131 def __init__(self):
132 self.flags = 0
133
134 def __call__(self, source, filename, symbol):
135 codeob = compile(source, filename, symbol, self.flags, 1)
136 for feature in _features:
137 if codeob.co_flags & feature.compiler_flag:
138 self.flags |= feature.compiler_flag
139 return codeob
140
141class CommandCompiler:
142 """Instances of this class have __call__ methods identical in
143 signature to compile_command; the difference is that if the
144 instance compiles program text containing a __future__ statement,
145 the instance 'remembers' and compiles all subsequent program texts
146 with the statement in force."""
147
148 def __init__(self,):
149 self.compiler = Compile()
150
151 def __call__(self, source, filename="<input>", symbol="single"):
152 r"""Compile a command and determine whether it is incomplete.
153
154 Arguments:
155
156 source -- the source string; may contain \n characters
157 filename -- optional filename from which source was read;
158 default "<input>"
159 symbol -- optional grammar start symbol; "single" (default) or
160 "eval"
161
162 Return value / exceptions raised:
163
164 - Return a code object if the command is complete and valid
165 - Return None if the command is incomplete
166 - Raise SyntaxError, ValueError or OverflowError if the command is a
167 syntax error (OverflowError and ValueError can be produced by
168 malformed literals).
169 """
170 return _maybe_compile(self.compiler, source, filename, symbol)