| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  | """Routine to "compile" a .py file to a .pyc file.
 | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | This module has intimate knowledge of the format of .pyc files. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  | import enum | 
					
						
							| 
									
										
										
										
											2015-05-02 19:15:18 -06:00
										 |  |  | import importlib._bootstrap_external | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  | import importlib.machinery | 
					
						
							| 
									
										
										
										
											2013-06-15 14:07:21 -04:00
										 |  |  | import importlib.util | 
					
						
							| 
									
										
										
										
											2002-08-21 20:23:22 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2013-06-14 18:33:00 -04:00
										 |  |  | import os.path | 
					
						
							| 
									
										
										
										
											2002-08-21 20:23:22 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import traceback | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  | __all__ = ["compile", "main", "PyCompileError", "PycInvalidationMode"] | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PyCompileError(Exception): | 
					
						
							|  |  |  |     """Exception raised when an error occurs while attempting to
 | 
					
						
							|  |  |  |     compile the file. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     To raise this exception, use | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         raise PyCompileError(exc_type,exc_value,file[,msg]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     where | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |         exc_type:   exception type to be used in error message | 
					
						
							|  |  |  |                     type name can be accesses as class variable | 
					
						
							|  |  |  |                     'exc_type_name' | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |         exc_value:  exception value to be used in error message | 
					
						
							|  |  |  |                     can be accesses as class variable 'exc_value' | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |         file:       name of file being compiled to be used in error message | 
					
						
							|  |  |  |                     can be accesses as class variable 'file' | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |         msg:        string message to be written as error message | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |                     If no value is given, a default exception message will be | 
					
						
							|  |  |  |                     given, consistent with 'standard' py_compile output. | 
					
						
							|  |  |  |                     message (or default) can be accesses as class variable | 
					
						
							|  |  |  |                     'msg' | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |     def __init__(self, exc_type, exc_value, file, msg=''): | 
					
						
							|  |  |  |         exc_type_name = exc_type.__name__ | 
					
						
							|  |  |  |         if exc_type is SyntaxError: | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |             tbtext = ''.join(traceback.format_exception_only( | 
					
						
							|  |  |  |                 exc_type, exc_value)) | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |             errmsg = tbtext.replace('File "<string>"', 'File "%s"' % file) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             errmsg = "Sorry: %s: %s" % (exc_type_name,exc_value) | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-15 11:51:06 +00:00
										 |  |  |         Exception.__init__(self,msg or errmsg,exc_type_name,exc_value,file) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.exc_type_name = exc_type_name | 
					
						
							|  |  |  |         self.exc_value = exc_value | 
					
						
							|  |  |  |         self.file = file | 
					
						
							|  |  |  |         self.msg = msg or errmsg | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __str__(self): | 
					
						
							|  |  |  |         return self.msg | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-12 02:00:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  | class PycInvalidationMode(enum.Enum): | 
					
						
							|  |  |  |     TIMESTAMP = 1 | 
					
						
							|  |  |  |     CHECKED_HASH = 2 | 
					
						
							|  |  |  |     UNCHECKED_HASH = 3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  | def _get_default_invalidation_mode(): | 
					
						
							|  |  |  |     if os.environ.get('SOURCE_DATE_EPOCH'): | 
					
						
							|  |  |  |         return PycInvalidationMode.CHECKED_HASH | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return PycInvalidationMode.TIMESTAMP | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  | def compile(file, cfile=None, dfile=None, doraise=False, optimize=-1, | 
					
						
							| 
									
										
										
										
											2019-05-28 13:29:04 -03:00
										 |  |  |             invalidation_mode=None, quiet=0): | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  |     """Byte-compile one Python source file to Python bytecode.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     :param file: The source file name. | 
					
						
							|  |  |  |     :param cfile: The target byte compiled file name.  When not given, this | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |         defaults to the PEP 3147/PEP 488 location. | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     :param dfile: Purported file name, i.e. the file name that shows up in | 
					
						
							|  |  |  |         error messages.  Defaults to the source file name. | 
					
						
							|  |  |  |     :param doraise: Flag indicating whether or not an exception should be | 
					
						
							|  |  |  |         raised when a compile error is found.  If an exception occurs and this | 
					
						
							|  |  |  |         flag is set to False, a string indicating the nature of the exception | 
					
						
							|  |  |  |         will be printed, and the function will return to the caller. If an | 
					
						
							|  |  |  |         exception occurs and this flag is set to True, a PyCompileError | 
					
						
							|  |  |  |         exception will be raised. | 
					
						
							| 
									
										
										
										
											2010-12-04 10:26:46 +00:00
										 |  |  |     :param optimize: The optimization level for the compiler.  Valid values | 
					
						
							|  |  |  |         are -1, 0, 1 and 2.  A value of -1 means to use the optimization | 
					
						
							|  |  |  |         level of the current interpreter, as given by -O command line options. | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     :param invalidation_mode: | 
					
						
							| 
									
										
										
										
											2019-05-28 13:29:04 -03:00
										 |  |  |     :param quiet: Return full output with False or 0, errors only with 1, | 
					
						
							|  |  |  |         and no output with 2. | 
					
						
							| 
									
										
										
										
											2010-12-04 10:26:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     :return: Path to the resulting byte compiled file. | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  |     Note that it isn't necessary to byte-compile Python modules for | 
					
						
							|  |  |  |     execution efficiency -- Python itself byte-compiles a module when | 
					
						
							|  |  |  |     it is loaded, and if it can, writes out the bytecode to the | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     corresponding .pyc file. | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     However, if a Python installation is shared between users, it is a | 
					
						
							|  |  |  |     good idea to byte-compile all modules upon installation, since | 
					
						
							|  |  |  |     other users may not be able to write in the source directories, | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |     and thus they won't be able to write the .pyc file, and then | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  |     they would be byte-compiling every module each time it is loaded. | 
					
						
							|  |  |  |     This can slow down program start-up considerably. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     See compileall.py for a script/module that uses this module to | 
					
						
							|  |  |  |     byte-compile all installed files (or all files in selected | 
					
						
							|  |  |  |     directories). | 
					
						
							| 
									
										
										
										
											2013-06-14 18:33:00 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Do note that FileExistsError is raised if cfile ends up pointing at a | 
					
						
							|  |  |  |     non-regular file or symlink. Because the compilation uses a file renaming, | 
					
						
							|  |  |  |     the resulting file would be regular and thus not the same type of file as | 
					
						
							|  |  |  |     it was previously. | 
					
						
							| 
									
										
										
										
											1998-01-19 04:01:26 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  |     if invalidation_mode is None: | 
					
						
							|  |  |  |         invalidation_mode = _get_default_invalidation_mode() | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  |     if cfile is None: | 
					
						
							|  |  |  |         if optimize >= 0: | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |             optimization = optimize if optimize >= 1 else '' | 
					
						
							| 
									
										
										
										
											2013-06-15 14:07:21 -04:00
										 |  |  |             cfile = importlib.util.cache_from_source(file, | 
					
						
							| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  |                                                      optimization=optimization) | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-06-15 14:07:21 -04:00
										 |  |  |             cfile = importlib.util.cache_from_source(file) | 
					
						
							| 
									
										
										
										
											2013-06-14 18:33:00 -04:00
										 |  |  |     if os.path.islink(cfile): | 
					
						
							|  |  |  |         msg = ('{} is a symlink and will be changed into a regular file if ' | 
					
						
							|  |  |  |                'import writes a byte-compiled file to it') | 
					
						
							| 
									
										
										
										
											2013-06-17 17:48:30 -04:00
										 |  |  |         raise FileExistsError(msg.format(cfile)) | 
					
						
							| 
									
										
										
										
											2013-06-14 18:33:00 -04:00
										 |  |  |     elif os.path.exists(cfile) and not os.path.isfile(cfile): | 
					
						
							|  |  |  |         msg = ('{} is a non-regular file and will be changed into a regular ' | 
					
						
							|  |  |  |                'one if import writes a byte-compiled file to it') | 
					
						
							| 
									
										
										
										
											2013-06-17 17:48:30 -04:00
										 |  |  |         raise FileExistsError(msg.format(cfile)) | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  |     loader = importlib.machinery.SourceFileLoader('<py_compile>', file) | 
					
						
							|  |  |  |     source_bytes = loader.get_data(file) | 
					
						
							| 
									
										
										
										
											1998-09-29 15:57:42 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  |         code = loader.source_to_code(source_bytes, dfile or file, | 
					
						
							| 
									
										
										
										
											2013-04-14 12:48:15 -04:00
										 |  |  |                                      _optimize=optimize) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |     except Exception as err: | 
					
						
							| 
									
										
										
										
											2007-08-10 17:36:34 +00:00
										 |  |  |         py_exc = PyCompileError(err.__class__, err, dfile or file) | 
					
						
							| 
									
										
										
										
											2019-05-28 13:29:04 -03:00
										 |  |  |         if quiet < 2: | 
					
						
							|  |  |  |             if doraise: | 
					
						
							|  |  |  |                 raise py_exc | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 sys.stderr.write(py_exc.msg + '\n') | 
					
						
							|  |  |  |         return | 
					
						
							| 
									
										
										
										
											2010-05-08 19:52:21 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2011-11-28 09:27:32 -06:00
										 |  |  |         dirname = os.path.dirname(cfile) | 
					
						
							|  |  |  |         if dirname: | 
					
						
							|  |  |  |             os.makedirs(dirname) | 
					
						
							| 
									
										
										
										
											2013-01-26 08:48:36 -05:00
										 |  |  |     except FileExistsError: | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     if invalidation_mode == PycInvalidationMode.TIMESTAMP: | 
					
						
							|  |  |  |         source_stats = loader.path_stats(file) | 
					
						
							|  |  |  |         bytecode = importlib._bootstrap_external._code_to_timestamp_pyc( | 
					
						
							| 
									
										
										
										
											2013-04-14 12:48:15 -04:00
										 |  |  |             code, source_stats['mtime'], source_stats['size']) | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     else: | 
					
						
							|  |  |  |         source_hash = importlib.util.source_hash(source_bytes) | 
					
						
							|  |  |  |         bytecode = importlib._bootstrap_external._code_to_hash_pyc( | 
					
						
							|  |  |  |             code, | 
					
						
							|  |  |  |             source_hash, | 
					
						
							|  |  |  |             (invalidation_mode == PycInvalidationMode.CHECKED_HASH), | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2015-05-02 19:15:18 -06:00
										 |  |  |     mode = importlib._bootstrap_external._calc_mode(file) | 
					
						
							|  |  |  |     importlib._bootstrap_external._write_atomic(cfile, bytecode, mode) | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     return cfile | 
					
						
							| 
									
										
										
										
											2002-08-21 20:56:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 12:48:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 22:58:45 +03:00
										 |  |  | def main(): | 
					
						
							|  |  |  |     import argparse | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     description = 'A simple command-line interface for py_compile module.' | 
					
						
							|  |  |  |     parser = argparse.ArgumentParser(description=description) | 
					
						
							|  |  |  |     parser.add_argument( | 
					
						
							|  |  |  |         '-q', '--quiet', | 
					
						
							|  |  |  |         action='store_true', | 
					
						
							|  |  |  |         help='Suppress error output', | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     parser.add_argument( | 
					
						
							|  |  |  |         'filenames', | 
					
						
							|  |  |  |         nargs='+', | 
					
						
							|  |  |  |         help='Files to compile', | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     args = parser.parse_args() | 
					
						
							|  |  |  |     if args.filenames == ['-']: | 
					
						
							| 
									
										
										
										
											2021-10-15 11:38:55 +02:00
										 |  |  |         filenames = [filename.rstrip('\n') for filename in sys.stdin.readlines()] | 
					
						
							| 
									
										
										
										
											2010-03-31 21:36:22 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2020-07-25 22:58:45 +03:00
										 |  |  |         filenames = args.filenames | 
					
						
							|  |  |  |     for filename in filenames: | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             compile(filename, doraise=True) | 
					
						
							|  |  |  |         except PyCompileError as error: | 
					
						
							|  |  |  |             if args.quiet: | 
					
						
							|  |  |  |                 parser.exit(1) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 parser.exit(1, error.msg) | 
					
						
							|  |  |  |         except OSError as error: | 
					
						
							|  |  |  |             if args.quiet: | 
					
						
							|  |  |  |                 parser.exit(1) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 parser.exit(1, str(error)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 03:49:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-21 20:56:21 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2020-07-25 22:58:45 +03:00
										 |  |  |     main() |