/usr/bin/py3compile is in python3-minimal 3.5.1-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | #! /usr/bin/python3
# vim: et ts=4 sw=4
# Copyright © 2010-2012 Piotr Ożarowski <piotr@debian.org>
# Copyright © 2010 Canonical Ltd
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import logging
import optparse
import os
import struct
import sys
from os import environ, listdir, mkdir
from os.path import dirname, exists, isdir, join
from subprocess import PIPE, Popen
sys.path.insert(1, '/usr/share/python3/')
from debpython.version import SUPPORTED, debsorted, vrepr, \
get_requested_versions, parse_vrange, getver
from debpython import files as dpf, PUBLIC_DIR_RE, memoize
from debpython.interpreter import Interpreter
from debpython.option import Option, compile_regexpr
# initialize script
logging.basicConfig(format='%(levelname).1s: %(module)s:%(lineno)d: '
'%(message)s')
log = logging.getLogger(__name__)
STDINS = {}
WORKERS = {}
"""TODO: move it to manpage
Examples:
pycompile -p python3-mako # package's public files
pycompile -p python3-foo /usr/share/foo # package's private files
pycompile -V 3.1 /usr/lib/python3.1/ # python3.1 only
pycompile -V 3.1 /usr/lib/foo/bar.py # python3.1 only
pycompile -V 3.2- /usr/lib/python3/
"""
### EXCLUDES ###################################################
@memoize
def get_exclude_patterns_from_dir(name='/usr/share/python3/bcep/'):
"""Return patterns for files that shouldn't be bytecompiled."""
if not isdir(name):
return []
result = []
for fn in listdir(name):
with open(join(name, fn), 'r', encoding='utf-8') as lines:
for line in lines:
type_, vrange, dname, pattern = line.split('|', 3)
vrange = parse_vrange(vrange)
versions = get_requested_versions(vrange, available=True)
if not versions:
# pattern doesn't match installed Python versions
continue
pattern = pattern.rstrip('\n')
if type_ == 're':
pattern = compile_regexpr(None, None, pattern)
result.append((type_, versions, dname, pattern))
return result
def get_exclude_patterns(directory='/', patterns=None, versions=None):
"""Return patterns for files that shouldn't be compiled in given dir."""
if versions is not None:
# make sure it's a set (debsorted returns a list)
versions = set(versions)
if patterns:
if versions is None:
versions = set(SUPPORTED)
patterns = [('re', versions, directory, i) for i in patterns]
else:
patterns = []
for type_, vers, dname, pattern in get_exclude_patterns_from_dir():
# skip patterns that do not match requested directory
if not dname.startswith(directory[:len(dname)]):
continue
# skip patterns that do not match requested versions
if versions and not versions & vers:
continue
patterns.append((type_, vers, dname, pattern))
return patterns
def filter_files(files, e_patterns, compile_versions):
"""Generate (file, versions_to_compile) pairs."""
for fn in files:
valid_versions = set(compile_versions) # all by default
for type_, vers, dname, pattern in e_patterns:
if type_ == 'dir' and fn.startswith(dname):
valid_versions = valid_versions - vers
elif type_ == 're' and pattern.match(fn):
valid_versions = valid_versions - vers
# move to the next file if all versions were removed
if not valid_versions:
break
if valid_versions:
public_dir = PUBLIC_DIR_RE.match(fn)
if public_dir and len(public_dir.group(1)) != 1:
yield fn, set([getver(public_dir.group(1))])
else:
yield fn, valid_versions
### COMPILE ####################################################
def py_compile(version, optimize, workers):
if not isinstance(version, str):
version = vrepr(version)
cmd = "/usr/bin/python%s%s -m py_compile -" \
% (version, ' -O' if optimize else '')
process = Popen(cmd, bufsize=1, shell=True,
stdin=PIPE, close_fds=True)
workers[version] = process # keep the reference for .communicate()
stdin = process.stdin
while True:
filename = (yield)
stdin.write(filename.encode('utf-8') + b'\n')
def compile(files, versions, force, optimize, e_patterns=None):
global STDINS, WORKERS
# start Python interpreters that will handle byte compilation
for version in versions:
if version not in STDINS:
coroutine = py_compile(version, optimize, WORKERS)
next(coroutine)
STDINS[version] = coroutine
interpreter = Interpreter('python' if not optimize else 'python -O')
# byte compile files
skip_dirs = set()
for fn, versions_to_compile in filter_files(files, e_patterns, versions):
for version in versions_to_compile:
cfn = interpreter.cache_file(fn, version)
if version == (3, 1):
if exists(cfn) and not force:
ftime = os.stat(fn).st_mtime
try:
ctime = os.stat(cfn).st_mtime
except os.error:
ctime = 0
if ctime > ftime:
continue
else:
pycache_dir = dirname(cfn)
if not force:
try:
mtime = int(os.stat(fn).st_mtime)
expect = struct.pack('<4sl',
interpreter.magic_number(version), mtime)
with open(cfn, 'rb') as chandle:
actual = chandle.read(8)
if expect == actual:
continue
except (IOError, OSError):
pass
if pycache_dir not in skip_dirs and not exists(pycache_dir):
try:
mkdir(pycache_dir)
except Exception as e:
log.error("cannot create directory %s: %r", pycache_dir, e)
skip_dirs.add(pycache_dir)
continue
pipe = STDINS[version]
pipe.send(fn)
################################################################
def main():
usage = '%prog [-V [X.Y][-][A.B]] DIR_OR_FILE [-X REGEXPR]\n' +\
' %prog -p PACKAGE'
parser = optparse.OptionParser(usage, version='%prog 3.5.1-3',
option_class=Option)
parser.add_option('-v', '--verbose', action='store_true', dest='verbose',
help='turn verbose mode on')
parser.add_option('-q', '--quiet', action='store_false', dest='verbose',
default=False, help='be quiet')
parser.add_option('-f', '--force', action='store_true', dest='force',
default=False,
help='force rebuild even if timestamps are up-to-date')
parser.add_option('-O', action='store_true', dest='optimize',
default=False, help="byte-compile to .pyo files")
parser.add_option('-p', '--package',
help='specify Debian package name whose files should be bytecompiled')
parser.add_option('-V', type='version_range', dest='vrange',
help="""force private modules to be bytecompiled
with Python version from given range, regardless of the default Python version
in the system. If there are no other options, bytecompile all public modules
for installed Python versions that match given range.
VERSION_RANGE examples: '3.1' (version 3.1 only), '3.1-' (version 3.1 or
newer), '3.1-3.3' (version 3.1 or 3.2), '-4.0' (all supported 3.X versions)""")
parser.add_option('-X', '--exclude', action='append',
dest='regexpr', type='regexpr',
help='exclude items that match given REGEXPR. \
You may use this option multiple times to build up a list of things to exclude.')
(options, args) = parser.parse_args()
if options.verbose or environ.get('PYCOMPILE_DEBUG') == '1':
log.setLevel(logging.DEBUG)
log.debug('argv: %s', sys.argv)
log.debug('options: %s', options)
log.debug('args: %s', args)
else:
log.setLevel(logging.WARN)
if options.regexpr and not args:
parser.error('--exclude option works with private directories '
'only, please use /usr/share/python3/bcep to specify '
'public modules to skip')
if options.vrange and options.vrange[0] == options.vrange[1] and\
options.vrange != (None, None) and\
exists("/usr/bin/python%d.%d" % options.vrange[0]):
# specific version requested, use it even if it's not in SUPPORTED
versions = {options.vrange[0]}
else:
versions = get_requested_versions(options.vrange, available=True)
if not versions:
log.error('Requested versions are not installed')
exit(3)
if options.package and args: # package's private directories
# get requested Python version
compile_versions = debsorted(versions)[:1]
log.debug('compile versions: %s', versions)
pkg_files = tuple(dpf.from_package(options.package))
for item in args:
e_patterns = get_exclude_patterns(item, options.regexpr,
compile_versions)
if not exists(item):
log.warn('No such file or directory: %s', item)
else:
log.debug('byte compiling %s using Python %s',
item, compile_versions)
files = dpf.filter_directory(pkg_files, item)
compile(files, compile_versions, options.force,
options.optimize, e_patterns)
elif options.package: # package's public modules
# no need to limit versions here, it's either pyr mode or version is
# hardcoded in path / via -V option
e_patterns = get_exclude_patterns()
files = dpf.from_package(options.package)
files = dpf.filter_public(files, versions)
compile(files, versions,
options.force, options.optimize, e_patterns)
elif args: # other directories/files
for item in args:
e_patterns = get_exclude_patterns(item, options.regexpr, versions)
files = dpf.from_directory(item)
compile(files, versions,
options.force, options.optimize, e_patterns)
else:
parser.print_usage()
exit(1)
# wait for all processes to finish
rv = 0
for process in WORKERS.values():
process.communicate()
if process.returncode not in (None, 0):
rv = process.returncode
exit(rv)
if __name__ == '__main__':
main()
|