blob: d241434a602eef99e29dac00373e846e3c3e614c [file] [log] [blame]
Guido van Rossum63566e21998-01-19 04:01:26 +00001"""Routine to "compile" a .py file to a .pyc (or .pyo) file.
2
3This module has intimate knowledge of the format of .pyc files.
4"""
Guido van Rossum3bb54481994-08-29 10:52:58 +00005
Georg Brandl1a3284e2007-12-02 09:40:06 +00006import builtins
Barry Warsaw28a691b2010-04-17 00:19:56 +00007import errno
Sjoerd Mullender2e5168c1995-07-19 11:21:47 +00008import imp
Fred Drakea96f1a32002-08-21 20:23:22 +00009import marshal
10import os
11import sys
Benjamin Peterson00888932010-03-18 22:37:38 +000012import tokenize
Fred Drakea96f1a32002-08-21 20:23:22 +000013import traceback
14
Sjoerd Mullender2e5168c1995-07-19 11:21:47 +000015MAGIC = imp.get_magic()
Guido van Rossum3bb54481994-08-29 10:52:58 +000016
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000017__all__ = ["compile", "main", "PyCompileError"]
18
19
20class PyCompileError(Exception):
21 """Exception raised when an error occurs while attempting to
22 compile the file.
23
24 To raise this exception, use
25
26 raise PyCompileError(exc_type,exc_value,file[,msg])
27
28 where
Tim Peters2c60f7a2003-01-29 03:49:43 +000029
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000030 exc_type: exception type to be used in error message
31 type name can be accesses as class variable
32 'exc_type_name'
Tim Peters2c60f7a2003-01-29 03:49:43 +000033
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000034 exc_value: exception value to be used in error message
35 can be accesses as class variable 'exc_value'
Tim Peters2c60f7a2003-01-29 03:49:43 +000036
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000037 file: name of file being compiled to be used in error message
38 can be accesses as class variable 'file'
Tim Peters2c60f7a2003-01-29 03:49:43 +000039
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000040 msg: string message to be written as error message
Barry Warsaw28a691b2010-04-17 00:19:56 +000041 If no value is given, a default exception message will be
42 given, consistent with 'standard' py_compile output.
43 message (or default) can be accesses as class variable
44 'msg'
Tim Peters2c60f7a2003-01-29 03:49:43 +000045
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000046 """
Tim Peters2c60f7a2003-01-29 03:49:43 +000047
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000048 def __init__(self, exc_type, exc_value, file, msg=''):
49 exc_type_name = exc_type.__name__
50 if exc_type is SyntaxError:
Barry Warsaw28a691b2010-04-17 00:19:56 +000051 tbtext = ''.join(traceback.format_exception_only(
52 exc_type, exc_value))
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000053 errmsg = tbtext.replace('File "<string>"', 'File "%s"' % file)
54 else:
55 errmsg = "Sorry: %s: %s" % (exc_type_name,exc_value)
Tim Peters2c60f7a2003-01-29 03:49:43 +000056
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000057 Exception.__init__(self,msg or errmsg,exc_type_name,exc_value,file)
58
59 self.exc_type_name = exc_type_name
60 self.exc_value = exc_value
61 self.file = file
62 self.msg = msg or errmsg
63
64 def __str__(self):
65 return self.msg
66
Skip Montanaroc62c81e2001-02-12 02:00:42 +000067
Guido van Rossum3bb54481994-08-29 10:52:58 +000068def wr_long(f, x):
Guido van Rossum54f22ed2000-02-04 15:10:34 +000069 """Internal; write a 32-bit int to a file in little-endian order."""
Barry Warsaw28a691b2010-04-17 00:19:56 +000070 f.write(bytes([x & 0xff,
Guido van Rossumd6ca5462007-05-22 01:29:33 +000071 (x >> 8) & 0xff,
72 (x >> 16) & 0xff,
73 (x >> 24) & 0xff]))
Guido van Rossum3bb54481994-08-29 10:52:58 +000074
Martin v. Löwis0c6774d2003-01-15 11:51:06 +000075def compile(file, cfile=None, dfile=None, doraise=False):
Guido van Rossum63566e21998-01-19 04:01:26 +000076 """Byte-compile one Python source file to Python bytecode.
77
Barry Warsaw28a691b2010-04-17 00:19:56 +000078 :param file: The source file name.
79 :param cfile: The target byte compiled file name. When not given, this
80 defaults to the PEP 3147 location.
81 :param dfile: Purported file name, i.e. the file name that shows up in
82 error messages. Defaults to the source file name.
83 :param doraise: Flag indicating whether or not an exception should be
84 raised when a compile error is found. If an exception occurs and this
85 flag is set to False, a string indicating the nature of the exception
86 will be printed, and the function will return to the caller. If an
87 exception occurs and this flag is set to True, a PyCompileError
88 exception will be raised.
89 :return: Path to the resulting byte compiled file.
Tim Peters2c60f7a2003-01-29 03:49:43 +000090
Guido van Rossum63566e21998-01-19 04:01:26 +000091 Note that it isn't necessary to byte-compile Python modules for
92 execution efficiency -- Python itself byte-compiles a module when
93 it is loaded, and if it can, writes out the bytecode to the
94 corresponding .pyc (or .pyo) file.
95
96 However, if a Python installation is shared between users, it is a
97 good idea to byte-compile all modules upon installation, since
98 other users may not be able to write in the source directories,
99 and thus they won't be able to write the .pyc/.pyo file, and then
100 they would be byte-compiling every module each time it is loaded.
101 This can slow down program start-up considerably.
102
103 See compileall.py for a script/module that uses this module to
104 byte-compile all installed files (or all files in selected
105 directories).
Guido van Rossum63566e21998-01-19 04:01:26 +0000106 """
Victor Stinner58c07522010-11-09 01:08:59 +0000107 with tokenize.open(file) as f:
Benjamin Peterson32ca4542010-03-18 21:58:43 +0000108 try:
109 timestamp = int(os.fstat(f.fileno()).st_mtime)
110 except AttributeError:
111 timestamp = int(os.stat(file).st_mtime)
112 codestring = f.read()
Guido van Rossumf984a651998-09-29 15:57:42 +0000113 try:
Georg Brandl1a3284e2007-12-02 09:40:06 +0000114 codeobject = builtins.compile(codestring, dfile or file,'exec')
Guido van Rossumb940e112007-01-10 16:19:56 +0000115 except Exception as err:
Guido van Rossumbd4a63e2007-08-10 17:36:34 +0000116 py_exc = PyCompileError(err.__class__, err, dfile or file)
Martin v. Löwis0c6774d2003-01-15 11:51:06 +0000117 if doraise:
118 raise py_exc
119 else:
Georg Brandle537d6e2005-06-10 17:15:18 +0000120 sys.stderr.write(py_exc.msg + '\n')
Martin v. Löwis0c6774d2003-01-15 11:51:06 +0000121 return
Raymond Hettinger16e3c422002-06-01 16:07:16 +0000122 if cfile is None:
Barry Warsaw28a691b2010-04-17 00:19:56 +0000123 cfile = imp.cache_from_source(file)
Benjamin Peterson25216ba2010-05-08 19:52:21 +0000124 try:
125 os.makedirs(os.path.dirname(cfile))
126 except OSError as error:
127 if error.errno != errno.EEXIST:
128 raise
Benjamin Peterson32ca4542010-03-18 21:58:43 +0000129 with open(cfile, 'wb') as fc:
130 fc.write(b'\0\0\0\0')
131 wr_long(fc, timestamp)
132 marshal.dump(codeobject, fc)
133 fc.flush()
134 fc.seek(0, 0)
135 fc.write(MAGIC)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000136 return cfile
Fred Drake61cf4402002-08-21 20:56:21 +0000137
138def main(args=None):
139 """Compile several source files.
140
141 The files named in 'args' (or on the command line, if 'args' is
142 not specified) are compiled and the resulting bytecode is cached
143 in the normal manner. This function does not search a directory
144 structure to locate source files; it only compiles files named
Barry Warsawd5f9bf52010-03-31 21:36:22 +0000145 explicitly. If '-' is the only parameter in args, the list of
146 files is taken from standard input.
Fred Drake61cf4402002-08-21 20:56:21 +0000147
148 """
149 if args is None:
150 args = sys.argv[1:]
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000151 rv = 0
Barry Warsawd5f9bf52010-03-31 21:36:22 +0000152 if args == ['-']:
153 while True:
154 filename = sys.stdin.readline()
155 if not filename:
156 break
157 filename = filename.rstrip('\n')
158 try:
159 compile(filename, doraise=True)
160 except PyCompileError as error:
161 rv = 1
162 sys.stderr.write("%s\n" % error.msg)
163 except IOError as error:
164 rv = 1
165 sys.stderr.write("%s\n" % error)
166 else:
167 for filename in args:
168 try:
169 compile(filename, doraise=True)
Matthias Klose1c994732010-04-20 19:48:04 +0000170 except PyCompileError as error:
Barry Warsawd5f9bf52010-03-31 21:36:22 +0000171 # return value to indicate at least one failure
172 rv = 1
173 sys.stderr.write(error.msg)
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000174 return rv
Tim Peters2c60f7a2003-01-29 03:49:43 +0000175
Fred Drake61cf4402002-08-21 20:56:21 +0000176if __name__ == "__main__":
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000177 sys.exit(main())