| 
									
										
										
										
											2015-04-13 14:21:02 -04:00
										 |  |  | """Module/script to byte-compile all .py files to .pyc files.
 | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | When called as a script with arguments, this compiles the directories | 
					
						
							|  |  |  | given as arguments recursively; the -l option prevents it from | 
					
						
							|  |  |  | recursing into directories. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 21:08:17 +05:30
										 |  |  | Without arguments, it compiles all modules on sys.path, without | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  | recursing into subdirectories.  (Even though it should do so for | 
					
						
							|  |  |  | packages -- for now, you'll have to deal with packages separately.) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See module py_compile for details of the actual byte-compilation. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											2013-06-14 23:04:02 -04:00
										 |  |  | import importlib.util | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | import py_compile | 
					
						
							| 
									
										
										
										
											2009-02-10 02:10:16 +00:00
										 |  |  | import struct | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  | import filecmp | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  | from functools import partial | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  | from pathlib import Path | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  | __all__ = ["compile_dir","compile_file","compile_path"] | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-15 11:26:13 +02:00
										 |  |  | def _walk_dir(dir, maxlevels, quiet=0): | 
					
						
							| 
									
										
										
										
											2016-10-01 00:54:18 +03:00
										 |  |  |     if quiet < 2 and isinstance(dir, os.PathLike): | 
					
						
							|  |  |  |         dir = os.fspath(dir) | 
					
						
							| 
									
										
										
										
											2002-03-18 12:44:08 +00:00
										 |  |  |     if not quiet: | 
					
						
							| 
									
										
										
										
											2011-05-11 00:36:28 +02:00
										 |  |  |         print('Listing {!r}...'.format(dir)) | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         names = os.listdir(dir) | 
					
						
							| 
									
										
										
										
											2012-12-18 22:02:39 +02:00
										 |  |  |     except OSError: | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |         if quiet < 2: | 
					
						
							|  |  |  |             print("Can't list {!r}".format(dir)) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         names = [] | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     names.sort() | 
					
						
							|  |  |  |     for name in names: | 
					
						
							| 
									
										
										
										
											2010-04-26 15:59:03 +00:00
										 |  |  |         if name == '__pycache__': | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         fullname = os.path.join(dir, name) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |         if not os.path.isdir(fullname): | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |             yield fullname | 
					
						
							| 
									
										
										
										
											2010-11-20 21:53:02 +00:00
										 |  |  |         elif (maxlevels > 0 and name != os.curdir and name != os.pardir and | 
					
						
							|  |  |  |               os.path.isdir(fullname) and not os.path.islink(fullname)): | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |             yield from _walk_dir(fullname, maxlevels=maxlevels - 1, | 
					
						
							|  |  |  |                                  quiet=quiet) | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-15 11:26:13 +02:00
										 |  |  | def compile_dir(dir, maxlevels=None, ddir=None, force=False, | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                 rx=None, quiet=0, legacy=False, optimize=-1, workers=1, | 
					
						
							| 
									
										
										
										
											2020-02-28 17:28:37 -08:00
										 |  |  |                 invalidation_mode=None, *, stripdir=None, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                 prependdir=None, limit_sl_dest=None, hardlink_dupes=False): | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     """Byte-compile all modules in the given directory tree.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Arguments (only dir is required): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dir:       the directory to byte-compile | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     maxlevels: maximum recursion level (default `sys.getrecursionlimit()`) | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     ddir:      the directory that will be prepended to the path to the | 
					
						
							|  |  |  |                file as it is compiled into each byte-code file. | 
					
						
							|  |  |  |     force:     if True, force compilation, even if timestamps are up-to-date | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |     quiet:     full output with False or 0, errors only with 1, | 
					
						
							|  |  |  |                no output with 2 | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     optimize:  int or list of optimization levels or -1 for level of | 
					
						
							|  |  |  |                the interpreter. Multiple levels leads to multiple compiled | 
					
						
							|  |  |  |                files each with one optimization level. | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     workers:   maximum number of parallel workers | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     invalidation_mode: how the up-to-dateness of the pyc will be checked | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     stripdir:  part of path to left-strip from source file path | 
					
						
							| 
									
										
										
										
											2020-04-30 03:39:11 -07:00
										 |  |  |     prependdir: path to prepend to beginning of original file path, applied | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                after stripdir | 
					
						
							|  |  |  |     limit_sl_dest: ignore symlinks if they are pointing outside of | 
					
						
							|  |  |  |                    the defined path | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |     hardlink_dupes: hardlink duplicated pyc files | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2018-11-23 12:06:55 -05:00
										 |  |  |     ProcessPoolExecutor = None | 
					
						
							| 
									
										
										
										
											2020-02-28 17:28:37 -08:00
										 |  |  |     if ddir is not None and (stripdir is not None or prependdir is not None): | 
					
						
							|  |  |  |         raise ValueError(("Destination dir (ddir) cannot be used " | 
					
						
							|  |  |  |                           "in combination with stripdir or prependdir")) | 
					
						
							|  |  |  |     if ddir is not None: | 
					
						
							|  |  |  |         stripdir = dir | 
					
						
							|  |  |  |         prependdir = ddir | 
					
						
							|  |  |  |         ddir = None | 
					
						
							| 
									
										
										
										
											2019-05-15 23:45:18 +02:00
										 |  |  |     if workers < 0: | 
					
						
							|  |  |  |         raise ValueError('workers must be greater or equal to 0') | 
					
						
							|  |  |  |     if workers != 1: | 
					
						
							| 
									
										
										
										
											2021-02-07 19:15:51 -08:00
										 |  |  |         # Check if this is a system where ProcessPoolExecutor can function. | 
					
						
							|  |  |  |         from concurrent.futures.process import _check_system_limits | 
					
						
							| 
									
										
										
										
											2019-05-15 23:45:18 +02:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2021-02-07 19:15:51 -08:00
										 |  |  |             _check_system_limits() | 
					
						
							|  |  |  |         except NotImplementedError: | 
					
						
							| 
									
										
										
										
											2019-05-15 23:45:18 +02:00
										 |  |  |             workers = 1 | 
					
						
							| 
									
										
										
										
											2021-02-07 19:15:51 -08:00
										 |  |  |         else: | 
					
						
							|  |  |  |             from concurrent.futures import ProcessPoolExecutor | 
					
						
							| 
									
										
										
										
											2019-10-15 11:26:13 +02:00
										 |  |  |     if maxlevels is None: | 
					
						
							|  |  |  |         maxlevels = sys.getrecursionlimit() | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     files = _walk_dir(dir, quiet=quiet, maxlevels=maxlevels) | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |     success = True | 
					
						
							| 
									
										
										
										
											2019-05-15 23:45:18 +02:00
										 |  |  |     if workers != 1 and ProcessPoolExecutor is not None: | 
					
						
							|  |  |  |         # If workers == 0, let ProcessPoolExecutor choose | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |         workers = workers or None | 
					
						
							|  |  |  |         with ProcessPoolExecutor(max_workers=workers) as executor: | 
					
						
							|  |  |  |             results = executor.map(partial(compile_file, | 
					
						
							|  |  |  |                                            ddir=ddir, force=force, | 
					
						
							|  |  |  |                                            rx=rx, quiet=quiet, | 
					
						
							|  |  |  |                                            legacy=legacy, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                                            optimize=optimize, | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                                            invalidation_mode=invalidation_mode, | 
					
						
							|  |  |  |                                            stripdir=stripdir, | 
					
						
							|  |  |  |                                            prependdir=prependdir, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                                            limit_sl_dest=limit_sl_dest, | 
					
						
							|  |  |  |                                            hardlink_dupes=hardlink_dupes), | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |                                    files) | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |             success = min(results, default=True) | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     else: | 
					
						
							|  |  |  |         for file in files: | 
					
						
							|  |  |  |             if not compile_file(file, ddir, force, rx, quiet, | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                                 legacy, optimize, invalidation_mode, | 
					
						
							|  |  |  |                                 stripdir=stripdir, prependdir=prependdir, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                                 limit_sl_dest=limit_sl_dest, | 
					
						
							|  |  |  |                                 hardlink_dupes=hardlink_dupes): | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |                 success = False | 
					
						
							| 
									
										
										
										
											1999-03-29 20:25:40 +00:00
										 |  |  |     return success | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  | def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                  legacy=False, optimize=-1, | 
					
						
							| 
									
										
										
										
											2020-02-28 17:28:37 -08:00
										 |  |  |                  invalidation_mode=None, *, stripdir=None, prependdir=None, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                  limit_sl_dest=None, hardlink_dupes=False): | 
					
						
							| 
									
										
										
										
											2010-12-23 18:44:31 +00:00
										 |  |  |     """Byte-compile one file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Arguments (only fullname is required): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     fullname:  the file to byte-compile | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |     ddir:      if given, the directory name compiled in to the | 
					
						
							|  |  |  |                byte-code file. | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     force:     if True, force compilation, even if timestamps are up-to-date | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |     quiet:     full output with False or 0, errors only with 1, | 
					
						
							|  |  |  |                no output with 2 | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     legacy:    if True, produce legacy pyc paths instead of PEP 3147 paths | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     optimize:  int or list of optimization levels or -1 for level of | 
					
						
							|  |  |  |                the interpreter. Multiple levels leads to multiple compiled | 
					
						
							|  |  |  |                files each with one optimization level. | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     invalidation_mode: how the up-to-dateness of the pyc will be checked | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     stripdir:  part of path to left-strip from source file path | 
					
						
							| 
									
										
										
										
											2020-04-30 03:39:11 -07:00
										 |  |  |     prependdir: path to prepend to beginning of original file path, applied | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                after stripdir | 
					
						
							|  |  |  |     limit_sl_dest: ignore symlinks if they are pointing outside of | 
					
						
							|  |  |  |                    the defined path. | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |     hardlink_dupes: hardlink duplicated pyc files | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ddir is not None and (stripdir is not None or prependdir is not None): | 
					
						
							|  |  |  |         raise ValueError(("Destination dir (ddir) cannot be used " | 
					
						
							|  |  |  |                           "in combination with stripdir or prependdir")) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |     success = True | 
					
						
							| 
									
										
										
										
											2016-10-01 00:54:18 +03:00
										 |  |  |     if quiet < 2 and isinstance(fullname, os.PathLike): | 
					
						
							|  |  |  |         fullname = os.fspath(fullname) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     name = os.path.basename(fullname) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dfile = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     if ddir is not None: | 
					
						
							|  |  |  |         dfile = os.path.join(ddir, name) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if stripdir is not None: | 
					
						
							|  |  |  |         fullname_parts = fullname.split(os.path.sep) | 
					
						
							|  |  |  |         stripdir_parts = stripdir.split(os.path.sep) | 
					
						
							|  |  |  |         ddir_parts = list(fullname_parts) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for spart, opart in zip(stripdir_parts, fullname_parts): | 
					
						
							|  |  |  |             if spart == opart: | 
					
						
							|  |  |  |                 ddir_parts.remove(spart) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         dfile = os.path.join(*ddir_parts) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if prependdir is not None: | 
					
						
							|  |  |  |         if dfile is None: | 
					
						
							|  |  |  |             dfile = os.path.join(prependdir, fullname) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             dfile = os.path.join(prependdir, dfile) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if isinstance(optimize, int): | 
					
						
							|  |  |  |         optimize = [optimize] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |     # Use set() to remove duplicates. | 
					
						
							|  |  |  |     # Use sorted() to create pyc files in a deterministic order. | 
					
						
							|  |  |  |     optimize = sorted(set(optimize)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if hardlink_dupes and len(optimize) < 2: | 
					
						
							|  |  |  |         raise ValueError("Hardlinking of duplicated bytecode makes sense " | 
					
						
							|  |  |  |                           "only for more than one optimization level") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     if rx is not None: | 
					
						
							|  |  |  |         mo = rx.search(fullname) | 
					
						
							|  |  |  |         if mo: | 
					
						
							|  |  |  |             return success | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if limit_sl_dest is not None and os.path.islink(fullname): | 
					
						
							|  |  |  |         if Path(limit_sl_dest).resolve() not in Path(fullname).resolve().parents: | 
					
						
							|  |  |  |             return success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     opt_cfiles = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     if os.path.isfile(fullname): | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |         for opt_level in optimize: | 
					
						
							|  |  |  |             if legacy: | 
					
						
							|  |  |  |                 opt_cfiles[opt_level] = fullname + 'c' | 
					
						
							| 
									
										
										
										
											2010-12-04 10:26:46 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                 if opt_level >= 0: | 
					
						
							|  |  |  |                     opt = opt_level if opt_level >= 1 else '' | 
					
						
							|  |  |  |                     cfile = (importlib.util.cache_from_source( | 
					
						
							|  |  |  |                              fullname, optimization=opt)) | 
					
						
							|  |  |  |                     opt_cfiles[opt_level] = cfile | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     cfile = importlib.util.cache_from_source(fullname) | 
					
						
							|  |  |  |                     opt_cfiles[opt_level] = cfile | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |         head, tail = name[:-3], name[-3:] | 
					
						
							|  |  |  |         if tail == '.py': | 
					
						
							|  |  |  |             if not force: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     mtime = int(os.stat(fullname).st_mtime) | 
					
						
							| 
									
										
										
										
											2021-08-24 05:13:32 -04:00
										 |  |  |                     expect = struct.pack('<4sLL', importlib.util.MAGIC_NUMBER, | 
					
						
							|  |  |  |                                          0, mtime & 0xFFFF_FFFF) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                     for cfile in opt_cfiles.values(): | 
					
						
							|  |  |  |                         with open(cfile, 'rb') as chandle: | 
					
						
							|  |  |  |                             actual = chandle.read(12) | 
					
						
							|  |  |  |                         if expect != actual: | 
					
						
							|  |  |  |                             break | 
					
						
							|  |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |                         return success | 
					
						
							| 
									
										
										
										
											2012-12-25 16:47:37 +02:00
										 |  |  |                 except OSError: | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |                     pass | 
					
						
							|  |  |  |             if not quiet: | 
					
						
							| 
									
										
										
										
											2011-05-11 00:36:28 +02:00
										 |  |  |                 print('Compiling {!r}...'.format(fullname)) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                 for index, opt_level in enumerate(optimize): | 
					
						
							|  |  |  |                     cfile = opt_cfiles[opt_level] | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                     ok = py_compile.compile(fullname, cfile, dfile, True, | 
					
						
							|  |  |  |                                             optimize=opt_level, | 
					
						
							|  |  |  |                                             invalidation_mode=invalidation_mode) | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                     if index > 0 and hardlink_dupes: | 
					
						
							|  |  |  |                         previous_cfile = opt_cfiles[optimize[index - 1]] | 
					
						
							|  |  |  |                         if filecmp.cmp(cfile, previous_cfile, shallow=False): | 
					
						
							|  |  |  |                             os.unlink(cfile) | 
					
						
							|  |  |  |                             os.link(previous_cfile, cfile) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |             except py_compile.PyCompileError as err: | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |                 success = False | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |                 if quiet >= 2: | 
					
						
							|  |  |  |                     return success | 
					
						
							|  |  |  |                 elif quiet: | 
					
						
							| 
									
										
										
										
											2011-05-11 00:36:28 +02:00
										 |  |  |                     print('*** Error compiling {!r}...'.format(fullname)) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     print('*** ', end='') | 
					
						
							| 
									
										
										
										
											2010-03-16 13:19:21 +00:00
										 |  |  |                 # escape non-printable characters in msg | 
					
						
							| 
									
										
										
										
											2021-07-30 18:38:42 +02:00
										 |  |  |                 encoding = sys.stdout.encoding or sys.getdefaultencoding() | 
					
						
							|  |  |  |                 msg = err.msg.encode(encoding, errors='backslashreplace').decode(encoding) | 
					
						
							| 
									
										
										
										
											2010-03-16 13:19:21 +00:00
										 |  |  |                 print(msg) | 
					
						
							| 
									
										
										
										
											2012-12-25 16:47:37 +02:00
										 |  |  |             except (SyntaxError, UnicodeError, OSError) as e: | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |                 success = False | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |                 if quiet >= 2: | 
					
						
							|  |  |  |                     return success | 
					
						
							|  |  |  |                 elif quiet: | 
					
						
							| 
									
										
										
										
											2011-05-11 00:36:28 +02:00
										 |  |  |                     print('*** Error compiling {!r}...'.format(fullname)) | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     print('*** ', end='') | 
					
						
							|  |  |  |                 print(e.__class__.__name__ + ':', e) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 if ok == 0: | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |                     success = False | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  |     return success | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  | def compile_path(skip_curdir=1, maxlevels=0, force=False, quiet=0, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                  legacy=False, optimize=-1, | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  |                  invalidation_mode=None): | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     """Byte-compile all module on sys.path.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Arguments (all optional): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 20:00:33 +02:00
										 |  |  |     skip_curdir: if true, skip current directory (default True) | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     maxlevels:   max recursion level (default 0) | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     force: as for compile_dir() (default False) | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |     quiet: as for compile_dir() (default 0) | 
					
						
							| 
									
										
										
										
											2010-04-17 00:19:56 +00:00
										 |  |  |     legacy: as for compile_dir() (default False) | 
					
						
							| 
									
										
										
										
											2010-12-04 10:26:46 +00:00
										 |  |  |     optimize: as for compile_dir() (default -1) | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     invalidation_mode: as for compiler_dir() | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2015-12-27 13:17:04 -08:00
										 |  |  |     success = True | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     for dir in sys.path: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if (not dir or dir == os.curdir) and skip_curdir: | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |             if quiet < 2: | 
					
						
							|  |  |  |                 print('Skipping current directory') | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |             success = success and compile_dir( | 
					
						
							|  |  |  |                 dir, | 
					
						
							|  |  |  |                 maxlevels, | 
					
						
							|  |  |  |                 None, | 
					
						
							|  |  |  |                 force, | 
					
						
							|  |  |  |                 quiet=quiet, | 
					
						
							|  |  |  |                 legacy=legacy, | 
					
						
							|  |  |  |                 optimize=optimize, | 
					
						
							|  |  |  |                 invalidation_mode=invalidation_mode, | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											1999-03-29 20:25:40 +00:00
										 |  |  |     return success | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-16 00:36:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | def main(): | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     """Script main program.""" | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     import argparse | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     parser = argparse.ArgumentParser( | 
					
						
							|  |  |  |         description='Utilities to support installing Python libraries.') | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |     parser.add_argument('-l', action='store_const', const=0, | 
					
						
							| 
									
										
										
										
											2019-10-15 11:26:13 +02:00
										 |  |  |                         default=None, dest='maxlevels', | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |                         help="don't recurse into subdirectories") | 
					
						
							| 
									
										
										
										
											2014-08-19 16:13:26 -05:00
										 |  |  |     parser.add_argument('-r', type=int, dest='recursion', | 
					
						
							|  |  |  |                         help=('control the maximum recursion level. ' | 
					
						
							|  |  |  |                               'if `-l` and `-r` options are specified, ' | 
					
						
							|  |  |  |                               'then `-r` takes precedence.')) | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     parser.add_argument('-f', action='store_true', dest='force', | 
					
						
							|  |  |  |                         help='force rebuild even if timestamps are up to date') | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |     parser.add_argument('-q', action='count', dest='quiet', default=0, | 
					
						
							|  |  |  |                         help='output only error messages; -qq will suppress ' | 
					
						
							|  |  |  |                              'the error messages as well.') | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     parser.add_argument('-b', action='store_true', dest='legacy', | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |                         help='use legacy (pre-PEP3147) compiled file locations') | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     parser.add_argument('-d', metavar='DESTDIR',  dest='ddir', default=None, | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |                         help=('directory to prepend to file paths for use in ' | 
					
						
							| 
									
										
										
										
											2011-09-01 20:00:33 +02:00
										 |  |  |                               'compile-time tracebacks and in runtime ' | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |                               'tracebacks in cases where the source file is ' | 
					
						
							|  |  |  |                               'unavailable')) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     parser.add_argument('-s', metavar='STRIPDIR',  dest='stripdir', | 
					
						
							|  |  |  |                         default=None, | 
					
						
							|  |  |  |                         help=('part of path to left-strip from path ' | 
					
						
							|  |  |  |                               'to source file - for example buildroot. ' | 
					
						
							|  |  |  |                               '`-d` and `-s` options cannot be ' | 
					
						
							|  |  |  |                               'specified together.')) | 
					
						
							|  |  |  |     parser.add_argument('-p', metavar='PREPENDDIR',  dest='prependdir', | 
					
						
							|  |  |  |                         default=None, | 
					
						
							|  |  |  |                         help=('path to add as prefix to path ' | 
					
						
							|  |  |  |                               'to source file - for example / to make ' | 
					
						
							|  |  |  |                               'it absolute when some part is removed ' | 
					
						
							|  |  |  |                               'by `-s` option. ' | 
					
						
							|  |  |  |                               '`-d` and `-p` options cannot be ' | 
					
						
							|  |  |  |                               'specified together.')) | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     parser.add_argument('-x', metavar='REGEXP', dest='rx', default=None, | 
					
						
							| 
									
										
										
										
											2011-09-01 20:00:33 +02:00
										 |  |  |                         help=('skip files matching the regular expression; ' | 
					
						
							|  |  |  |                               'the regexp is searched for in the full path ' | 
					
						
							|  |  |  |                               'of each file considered for compilation')) | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     parser.add_argument('-i', metavar='FILE', dest='flist', | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |                         help=('add all the files and directories listed in ' | 
					
						
							| 
									
										
										
										
											2011-09-01 20:00:33 +02:00
										 |  |  |                               'FILE to the list considered for compilation; ' | 
					
						
							|  |  |  |                               'if "-", names are read from stdin')) | 
					
						
							| 
									
										
										
										
											2010-12-17 16:29:07 +00:00
										 |  |  |     parser.add_argument('compile_dest', metavar='FILE|DIR', nargs='*', | 
					
						
							|  |  |  |                         help=('zero or more file and directory names ' | 
					
						
							|  |  |  |                               'to compile; if no arguments given, defaults ' | 
					
						
							|  |  |  |                               'to the equivalent of -l sys.path')) | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     parser.add_argument('-j', '--workers', default=1, | 
					
						
							|  |  |  |                         type=int, help='Run compileall concurrently') | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |     invalidation_modes = [mode.name.lower().replace('_', '-') | 
					
						
							|  |  |  |                           for mode in py_compile.PycInvalidationMode] | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  |     parser.add_argument('--invalidation-mode', | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                         choices=sorted(invalidation_modes), | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  |                         help=('set .pyc invalidation mode; defaults to ' | 
					
						
							|  |  |  |                               '"checked-hash" if the SOURCE_DATE_EPOCH ' | 
					
						
							|  |  |  |                               'environment variable is set, and ' | 
					
						
							|  |  |  |                               '"timestamp" otherwise.')) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     parser.add_argument('-o', action='append', type=int, dest='opt_levels', | 
					
						
							| 
									
										
										
										
											2021-09-18 00:28:09 +02:00
										 |  |  |                         help=('Optimization levels to run compilation with. ' | 
					
						
							|  |  |  |                               'Default is -1 which uses the optimization level ' | 
					
						
							|  |  |  |                               'of the Python interpreter itself (see -O).')) | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest', | 
					
						
							|  |  |  |                         help='Ignore symlinks pointing outsite of the DIR') | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |     parser.add_argument('--hardlink-dupes', action='store_true', | 
					
						
							|  |  |  |                         dest='hardlink_dupes', | 
					
						
							|  |  |  |                         help='Hardlink duplicated pyc files') | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-12 10:39:48 -04:00
										 |  |  |     args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |     compile_dests = args.compile_dest | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     if args.rx: | 
					
						
							|  |  |  |         import re | 
					
						
							|  |  |  |         args.rx = re.compile(args.rx) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     if args.limit_sl_dest == "": | 
					
						
							|  |  |  |         args.limit_sl_dest = None | 
					
						
							| 
									
										
										
										
											2014-08-19 16:13:26 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if args.recursion is not None: | 
					
						
							|  |  |  |         maxlevels = args.recursion | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         maxlevels = args.maxlevels | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     if args.opt_levels is None: | 
					
						
							|  |  |  |         args.opt_levels = [-1] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |     if len(args.opt_levels) == 1 and args.hardlink_dupes: | 
					
						
							|  |  |  |         parser.error(("Hardlinking of duplicated bytecode makes sense " | 
					
						
							|  |  |  |                       "only for more than one optimization level.")) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |     if args.ddir is not None and ( | 
					
						
							|  |  |  |         args.stripdir is not None or args.prependdir is not None | 
					
						
							|  |  |  |     ): | 
					
						
							|  |  |  |         parser.error("-d cannot be used in combination with -s or -p") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |     # if flist is provided then load it | 
					
						
							|  |  |  |     if args.flist: | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2021-04-02 09:01:57 +09:00
										 |  |  |             with (sys.stdin if args.flist=='-' else | 
					
						
							|  |  |  |                     open(args.flist, encoding="utf-8")) as f: | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |                 for line in f: | 
					
						
							|  |  |  |                     compile_dests.append(line.strip()) | 
					
						
							| 
									
										
										
										
											2012-12-17 23:35:18 +02:00
										 |  |  |         except OSError: | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |             if args.quiet < 2: | 
					
						
							|  |  |  |                 print("Error reading file list {}".format(args.flist)) | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |             return False | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 12:43:14 -04:00
										 |  |  |     if args.invalidation_mode: | 
					
						
							|  |  |  |         ivl_mode = args.invalidation_mode.replace('-', '_').upper() | 
					
						
							|  |  |  |         invalidation_mode = py_compile.PycInvalidationMode[ivl_mode] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         invalidation_mode = None | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |     success = True | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |         if compile_dests: | 
					
						
							|  |  |  |             for dest in compile_dests: | 
					
						
							| 
									
										
										
										
											2010-12-16 19:08:51 +00:00
										 |  |  |                 if os.path.isfile(dest): | 
					
						
							|  |  |  |                     if not compile_file(dest, args.ddir, args.force, args.rx, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                                         args.quiet, args.legacy, | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                                         invalidation_mode=invalidation_mode, | 
					
						
							|  |  |  |                                         stripdir=args.stripdir, | 
					
						
							|  |  |  |                                         prependdir=args.prependdir, | 
					
						
							|  |  |  |                                         optimize=args.opt_levels, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                                         limit_sl_dest=args.limit_sl_dest, | 
					
						
							|  |  |  |                                         hardlink_dupes=args.hardlink_dupes): | 
					
						
							| 
									
										
										
										
											2010-12-16 19:08:51 +00:00
										 |  |  |                         success = False | 
					
						
							|  |  |  |                 else: | 
					
						
							| 
									
										
										
										
											2014-08-19 16:13:26 -05:00
										 |  |  |                     if not compile_dir(dest, maxlevels, args.ddir, | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  |                                        args.force, args.rx, args.quiet, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                                        args.legacy, workers=args.workers, | 
					
						
							| 
									
										
										
										
											2019-09-26 08:28:26 +02:00
										 |  |  |                                        invalidation_mode=invalidation_mode, | 
					
						
							|  |  |  |                                        stripdir=args.stripdir, | 
					
						
							|  |  |  |                                        prependdir=args.prependdir, | 
					
						
							|  |  |  |                                        optimize=args.opt_levels, | 
					
						
							| 
									
										
										
										
											2020-05-14 16:17:22 +02:00
										 |  |  |                                        limit_sl_dest=args.limit_sl_dest, | 
					
						
							|  |  |  |                                        hardlink_dupes=args.hardlink_dupes): | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |                         success = False | 
					
						
							|  |  |  |             return success | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-12-15 20:49:38 -05:00
										 |  |  |             return compile_path(legacy=args.legacy, force=args.force, | 
					
						
							| 
									
										
										
										
											2017-12-09 10:26:52 -08:00
										 |  |  |                                 quiet=args.quiet, | 
					
						
							|  |  |  |                                 invalidation_mode=invalidation_mode) | 
					
						
							| 
									
										
										
										
											1998-01-19 23:07:55 +00:00
										 |  |  |     except KeyboardInterrupt: | 
					
						
							| 
									
										
										
										
											2014-10-15 11:10:57 +03:00
										 |  |  |         if args.quiet < 2: | 
					
						
							|  |  |  |             print("\n[interrupted]") | 
					
						
							| 
									
										
										
										
											2010-12-14 22:32:50 +00:00
										 |  |  |         return False | 
					
						
							|  |  |  |     return True | 
					
						
							| 
									
										
										
										
											2010-11-20 21:18:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-29 10:52:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2004-12-20 00:29:29 +00:00
										 |  |  |     exit_status = int(not main()) | 
					
						
							| 
									
										
										
										
											2001-04-18 01:20:21 +00:00
										 |  |  |     sys.exit(exit_status) |