Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- vila/lib/python3.10/collections/__pycache__/__init__.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__init__.py +30 -0
- vila/lib/python3.10/distutils/command/__pycache__/__init__.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/bdist.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/bdist_dumb.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/bdist_msi.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/bdist_rpm.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/build.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/build_clib.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/build_ext.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/build_py.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/build_scripts.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/check.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/clean.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/config.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install_data.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install_egg_info.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install_headers.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install_lib.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/install_scripts.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/register.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/sdist.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/__pycache__/upload.cpython-310.pyc +0 -0
- vila/lib/python3.10/distutils/command/bdist.py +141 -0
- vila/lib/python3.10/distutils/command/bdist_dumb.py +123 -0
- vila/lib/python3.10/distutils/command/bdist_msi.py +747 -0
- vila/lib/python3.10/distutils/command/bdist_rpm.py +579 -0
- vila/lib/python3.10/distutils/command/build_clib.py +209 -0
- vila/lib/python3.10/distutils/command/build_ext.py +754 -0
- vila/lib/python3.10/distutils/command/build_py.py +416 -0
- vila/lib/python3.10/distutils/command/build_scripts.py +160 -0
- vila/lib/python3.10/distutils/command/clean.py +76 -0
- vila/lib/python3.10/distutils/command/command_template +33 -0
- vila/lib/python3.10/distutils/command/config.py +344 -0
- vila/lib/python3.10/distutils/command/install_egg_info.py +77 -0
- vila/lib/python3.10/distutils/command/install_headers.py +47 -0
- vila/lib/python3.10/distutils/command/install_lib.py +217 -0
- vila/lib/python3.10/distutils/command/install_scripts.py +60 -0
- vila/lib/python3.10/distutils/command/sdist.py +494 -0
- vila/lib/python3.10/ensurepip/__pycache__/__main__.cpython-310.pyc +0 -0
- vila/lib/python3.10/json/__init__.py +359 -0
- vila/lib/python3.10/json/__pycache__/decoder.cpython-310.pyc +0 -0
- vila/lib/python3.10/json/__pycache__/encoder.cpython-310.pyc +0 -0
- vila/lib/python3.10/json/decoder.py +356 -0
- vila/lib/python3.10/json/encoder.py +442 -0
- vila/lib/python3.10/json/scanner.py +73 -0
- vila/lib/python3.10/json/tool.py +85 -0
- vila/lib/python3.10/tkinter/__init__.py +0 -0
- vila/lib/python3.10/tkinter/__main__.py +7 -0
vila/lib/python3.10/collections/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (48.4 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__init__.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command
|
| 2 |
+
|
| 3 |
+
Package containing implementation of all the standard Distutils
|
| 4 |
+
commands."""
|
| 5 |
+
|
| 6 |
+
__all__ = ['build',
|
| 7 |
+
'build_py',
|
| 8 |
+
'build_ext',
|
| 9 |
+
'build_clib',
|
| 10 |
+
'build_scripts',
|
| 11 |
+
'clean',
|
| 12 |
+
'install',
|
| 13 |
+
'install_lib',
|
| 14 |
+
'install_headers',
|
| 15 |
+
'install_scripts',
|
| 16 |
+
'install_data',
|
| 17 |
+
'sdist',
|
| 18 |
+
'register',
|
| 19 |
+
'bdist',
|
| 20 |
+
'bdist_dumb',
|
| 21 |
+
'bdist_rpm',
|
| 22 |
+
'check',
|
| 23 |
+
'upload',
|
| 24 |
+
# These two are reserved for future use:
|
| 25 |
+
#'bdist_sdux',
|
| 26 |
+
#'bdist_pkgtool',
|
| 27 |
+
# Note:
|
| 28 |
+
# bdist_packager is not included because it only provides
|
| 29 |
+
# an abstract base class
|
| 30 |
+
]
|
vila/lib/python3.10/distutils/command/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (715 Bytes). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/bdist.cpython-310.pyc
ADDED
|
Binary file (3.8 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/bdist_dumb.cpython-310.pyc
ADDED
|
Binary file (3.58 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/bdist_msi.cpython-310.pyc
ADDED
|
Binary file (19.7 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/bdist_rpm.cpython-310.pyc
ADDED
|
Binary file (12.5 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/build.cpython-310.pyc
ADDED
|
Binary file (4.1 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/build_clib.cpython-310.pyc
ADDED
|
Binary file (5.07 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/build_ext.cpython-310.pyc
ADDED
|
Binary file (16.4 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/build_py.cpython-310.pyc
ADDED
|
Binary file (10.7 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/build_scripts.cpython-310.pyc
ADDED
|
Binary file (4.32 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/check.cpython-310.pyc
ADDED
|
Binary file (5.21 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/clean.cpython-310.pyc
ADDED
|
Binary file (2.09 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/config.cpython-310.pyc
ADDED
|
Binary file (10.5 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install.cpython-310.pyc
ADDED
|
Binary file (14.1 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install_data.cpython-310.pyc
ADDED
|
Binary file (2.29 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install_egg_info.cpython-310.pyc
ADDED
|
Binary file (3.03 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install_headers.cpython-310.pyc
ADDED
|
Binary file (1.71 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install_lib.cpython-310.pyc
ADDED
|
Binary file (5.11 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/install_scripts.cpython-310.pyc
ADDED
|
Binary file (2.4 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/register.cpython-310.pyc
ADDED
|
Binary file (8.88 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/sdist.cpython-310.pyc
ADDED
|
Binary file (14.7 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/__pycache__/upload.cpython-310.pyc
ADDED
|
Binary file (5.34 kB). View file
|
|
|
vila/lib/python3.10/distutils/command/bdist.py
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.bdist
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'bdist' command (create a built [binary]
|
| 4 |
+
distribution)."""
|
| 5 |
+
|
| 6 |
+
import os
|
| 7 |
+
from distutils.core import Command
|
| 8 |
+
from distutils.errors import *
|
| 9 |
+
from distutils.util import get_platform
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
def show_formats():
|
| 13 |
+
"""Print list of available formats (arguments to "--format" option).
|
| 14 |
+
"""
|
| 15 |
+
from distutils.fancy_getopt import FancyGetopt
|
| 16 |
+
formats = []
|
| 17 |
+
for format in bdist.format_commands:
|
| 18 |
+
formats.append(("formats=" + format, None,
|
| 19 |
+
bdist.format_command[format][1]))
|
| 20 |
+
pretty_printer = FancyGetopt(formats)
|
| 21 |
+
pretty_printer.print_help("List of available distribution formats:")
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
class bdist(Command):
|
| 25 |
+
|
| 26 |
+
description = "create a built (binary) distribution"
|
| 27 |
+
|
| 28 |
+
user_options = [('bdist-base=', 'b',
|
| 29 |
+
"temporary directory for creating built distributions"),
|
| 30 |
+
('plat-name=', 'p',
|
| 31 |
+
"platform name to embed in generated filenames "
|
| 32 |
+
"(default: %s)" % get_platform()),
|
| 33 |
+
('formats=', None,
|
| 34 |
+
"formats for distribution (comma-separated list)"),
|
| 35 |
+
('dist-dir=', 'd',
|
| 36 |
+
"directory to put final built distributions in "
|
| 37 |
+
"[default: dist]"),
|
| 38 |
+
('skip-build', None,
|
| 39 |
+
"skip rebuilding everything (for testing/debugging)"),
|
| 40 |
+
('owner=', 'u',
|
| 41 |
+
"Owner name used when creating a tar file"
|
| 42 |
+
" [default: current user]"),
|
| 43 |
+
('group=', 'g',
|
| 44 |
+
"Group name used when creating a tar file"
|
| 45 |
+
" [default: current group]"),
|
| 46 |
+
]
|
| 47 |
+
|
| 48 |
+
boolean_options = ['skip-build']
|
| 49 |
+
|
| 50 |
+
help_options = [
|
| 51 |
+
('help-formats', None,
|
| 52 |
+
"lists available distribution formats", show_formats),
|
| 53 |
+
]
|
| 54 |
+
|
| 55 |
+
# The following commands do not take a format option from bdist
|
| 56 |
+
no_format_option = ('bdist_rpm',)
|
| 57 |
+
|
| 58 |
+
# This won't do in reality: will need to distinguish RPM-ish Linux,
|
| 59 |
+
# Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS.
|
| 60 |
+
default_format = {'posix': 'gztar',
|
| 61 |
+
'nt': 'zip'}
|
| 62 |
+
|
| 63 |
+
# Establish the preferred order (for the --help-formats option).
|
| 64 |
+
format_commands = ['rpm', 'gztar', 'bztar', 'xztar', 'ztar', 'tar',
|
| 65 |
+
'zip', 'msi']
|
| 66 |
+
|
| 67 |
+
# And the real information.
|
| 68 |
+
format_command = {'rpm': ('bdist_rpm', "RPM distribution"),
|
| 69 |
+
'gztar': ('bdist_dumb', "gzip'ed tar file"),
|
| 70 |
+
'bztar': ('bdist_dumb', "bzip2'ed tar file"),
|
| 71 |
+
'xztar': ('bdist_dumb', "xz'ed tar file"),
|
| 72 |
+
'ztar': ('bdist_dumb', "compressed tar file"),
|
| 73 |
+
'tar': ('bdist_dumb', "tar file"),
|
| 74 |
+
'zip': ('bdist_dumb', "ZIP file"),
|
| 75 |
+
'msi': ('bdist_msi', "Microsoft Installer")
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
def initialize_options(self):
|
| 80 |
+
self.bdist_base = None
|
| 81 |
+
self.plat_name = None
|
| 82 |
+
self.formats = None
|
| 83 |
+
self.dist_dir = None
|
| 84 |
+
self.skip_build = 0
|
| 85 |
+
self.group = None
|
| 86 |
+
self.owner = None
|
| 87 |
+
|
| 88 |
+
def finalize_options(self):
|
| 89 |
+
# have to finalize 'plat_name' before 'bdist_base'
|
| 90 |
+
if self.plat_name is None:
|
| 91 |
+
if self.skip_build:
|
| 92 |
+
self.plat_name = get_platform()
|
| 93 |
+
else:
|
| 94 |
+
self.plat_name = self.get_finalized_command('build').plat_name
|
| 95 |
+
|
| 96 |
+
# 'bdist_base' -- parent of per-built-distribution-format
|
| 97 |
+
# temporary directories (eg. we'll probably have
|
| 98 |
+
# "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.)
|
| 99 |
+
if self.bdist_base is None:
|
| 100 |
+
build_base = self.get_finalized_command('build').build_base
|
| 101 |
+
self.bdist_base = os.path.join(build_base,
|
| 102 |
+
'bdist.' + self.plat_name)
|
| 103 |
+
|
| 104 |
+
self.ensure_string_list('formats')
|
| 105 |
+
if self.formats is None:
|
| 106 |
+
try:
|
| 107 |
+
self.formats = [self.default_format[os.name]]
|
| 108 |
+
except KeyError:
|
| 109 |
+
raise DistutilsPlatformError(
|
| 110 |
+
"don't know how to create built distributions "
|
| 111 |
+
"on platform %s" % os.name)
|
| 112 |
+
|
| 113 |
+
if self.dist_dir is None:
|
| 114 |
+
self.dist_dir = "dist"
|
| 115 |
+
|
| 116 |
+
def run(self):
|
| 117 |
+
# Figure out which sub-commands we need to run.
|
| 118 |
+
commands = []
|
| 119 |
+
for format in self.formats:
|
| 120 |
+
try:
|
| 121 |
+
commands.append(self.format_command[format][0])
|
| 122 |
+
except KeyError:
|
| 123 |
+
raise DistutilsOptionError("invalid format '%s'" % format)
|
| 124 |
+
|
| 125 |
+
# Reinitialize and run each command.
|
| 126 |
+
for i in range(len(self.formats)):
|
| 127 |
+
cmd_name = commands[i]
|
| 128 |
+
sub_cmd = self.reinitialize_command(cmd_name)
|
| 129 |
+
if cmd_name not in self.no_format_option:
|
| 130 |
+
sub_cmd.format = self.formats[i]
|
| 131 |
+
|
| 132 |
+
# passing the owner and group names for tar archiving
|
| 133 |
+
if cmd_name == 'bdist_dumb':
|
| 134 |
+
sub_cmd.owner = self.owner
|
| 135 |
+
sub_cmd.group = self.group
|
| 136 |
+
|
| 137 |
+
# If we're going to need to run this command again, tell it to
|
| 138 |
+
# keep its temporary files around so subsequent runs go faster.
|
| 139 |
+
if cmd_name in commands[i+1:]:
|
| 140 |
+
sub_cmd.keep_temp = 1
|
| 141 |
+
self.run_command(cmd_name)
|
vila/lib/python3.10/distutils/command/bdist_dumb.py
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.bdist_dumb
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'bdist_dumb' command (create a "dumb" built
|
| 4 |
+
distribution -- i.e., just an archive to be unpacked under $prefix or
|
| 5 |
+
$exec_prefix)."""
|
| 6 |
+
|
| 7 |
+
import os
|
| 8 |
+
from distutils.core import Command
|
| 9 |
+
from distutils.util import get_platform
|
| 10 |
+
from distutils.dir_util import remove_tree, ensure_relative
|
| 11 |
+
from distutils.errors import *
|
| 12 |
+
from distutils.sysconfig import get_python_version
|
| 13 |
+
from distutils import log
|
| 14 |
+
|
| 15 |
+
class bdist_dumb(Command):
|
| 16 |
+
|
| 17 |
+
description = "create a \"dumb\" built distribution"
|
| 18 |
+
|
| 19 |
+
user_options = [('bdist-dir=', 'd',
|
| 20 |
+
"temporary directory for creating the distribution"),
|
| 21 |
+
('plat-name=', 'p',
|
| 22 |
+
"platform name to embed in generated filenames "
|
| 23 |
+
"(default: %s)" % get_platform()),
|
| 24 |
+
('format=', 'f',
|
| 25 |
+
"archive format to create (tar, gztar, bztar, xztar, "
|
| 26 |
+
"ztar, zip)"),
|
| 27 |
+
('keep-temp', 'k',
|
| 28 |
+
"keep the pseudo-installation tree around after " +
|
| 29 |
+
"creating the distribution archive"),
|
| 30 |
+
('dist-dir=', 'd',
|
| 31 |
+
"directory to put final built distributions in"),
|
| 32 |
+
('skip-build', None,
|
| 33 |
+
"skip rebuilding everything (for testing/debugging)"),
|
| 34 |
+
('relative', None,
|
| 35 |
+
"build the archive using relative paths "
|
| 36 |
+
"(default: false)"),
|
| 37 |
+
('owner=', 'u',
|
| 38 |
+
"Owner name used when creating a tar file"
|
| 39 |
+
" [default: current user]"),
|
| 40 |
+
('group=', 'g',
|
| 41 |
+
"Group name used when creating a tar file"
|
| 42 |
+
" [default: current group]"),
|
| 43 |
+
]
|
| 44 |
+
|
| 45 |
+
boolean_options = ['keep-temp', 'skip-build', 'relative']
|
| 46 |
+
|
| 47 |
+
default_format = { 'posix': 'gztar',
|
| 48 |
+
'nt': 'zip' }
|
| 49 |
+
|
| 50 |
+
def initialize_options(self):
|
| 51 |
+
self.bdist_dir = None
|
| 52 |
+
self.plat_name = None
|
| 53 |
+
self.format = None
|
| 54 |
+
self.keep_temp = 0
|
| 55 |
+
self.dist_dir = None
|
| 56 |
+
self.skip_build = None
|
| 57 |
+
self.relative = 0
|
| 58 |
+
self.owner = None
|
| 59 |
+
self.group = None
|
| 60 |
+
|
| 61 |
+
def finalize_options(self):
|
| 62 |
+
if self.bdist_dir is None:
|
| 63 |
+
bdist_base = self.get_finalized_command('bdist').bdist_base
|
| 64 |
+
self.bdist_dir = os.path.join(bdist_base, 'dumb')
|
| 65 |
+
|
| 66 |
+
if self.format is None:
|
| 67 |
+
try:
|
| 68 |
+
self.format = self.default_format[os.name]
|
| 69 |
+
except KeyError:
|
| 70 |
+
raise DistutilsPlatformError(
|
| 71 |
+
"don't know how to create dumb built distributions "
|
| 72 |
+
"on platform %s" % os.name)
|
| 73 |
+
|
| 74 |
+
self.set_undefined_options('bdist',
|
| 75 |
+
('dist_dir', 'dist_dir'),
|
| 76 |
+
('plat_name', 'plat_name'),
|
| 77 |
+
('skip_build', 'skip_build'))
|
| 78 |
+
|
| 79 |
+
def run(self):
|
| 80 |
+
if not self.skip_build:
|
| 81 |
+
self.run_command('build')
|
| 82 |
+
|
| 83 |
+
install = self.reinitialize_command('install', reinit_subcommands=1)
|
| 84 |
+
install.root = self.bdist_dir
|
| 85 |
+
install.skip_build = self.skip_build
|
| 86 |
+
install.warn_dir = 0
|
| 87 |
+
|
| 88 |
+
log.info("installing to %s", self.bdist_dir)
|
| 89 |
+
self.run_command('install')
|
| 90 |
+
|
| 91 |
+
# And make an archive relative to the root of the
|
| 92 |
+
# pseudo-installation tree.
|
| 93 |
+
archive_basename = "%s.%s" % (self.distribution.get_fullname(),
|
| 94 |
+
self.plat_name)
|
| 95 |
+
|
| 96 |
+
pseudoinstall_root = os.path.join(self.dist_dir, archive_basename)
|
| 97 |
+
if not self.relative:
|
| 98 |
+
archive_root = self.bdist_dir
|
| 99 |
+
else:
|
| 100 |
+
if (self.distribution.has_ext_modules() and
|
| 101 |
+
(install.install_base != install.install_platbase)):
|
| 102 |
+
raise DistutilsPlatformError(
|
| 103 |
+
"can't make a dumb built distribution where "
|
| 104 |
+
"base and platbase are different (%s, %s)"
|
| 105 |
+
% (repr(install.install_base),
|
| 106 |
+
repr(install.install_platbase)))
|
| 107 |
+
else:
|
| 108 |
+
archive_root = os.path.join(self.bdist_dir,
|
| 109 |
+
ensure_relative(install.install_base))
|
| 110 |
+
|
| 111 |
+
# Make the archive
|
| 112 |
+
filename = self.make_archive(pseudoinstall_root,
|
| 113 |
+
self.format, root_dir=archive_root,
|
| 114 |
+
owner=self.owner, group=self.group)
|
| 115 |
+
if self.distribution.has_ext_modules():
|
| 116 |
+
pyversion = get_python_version()
|
| 117 |
+
else:
|
| 118 |
+
pyversion = 'any'
|
| 119 |
+
self.distribution.dist_files.append(('bdist_dumb', pyversion,
|
| 120 |
+
filename))
|
| 121 |
+
|
| 122 |
+
if not self.keep_temp:
|
| 123 |
+
remove_tree(self.bdist_dir, dry_run=self.dry_run)
|
vila/lib/python3.10/distutils/command/bdist_msi.py
ADDED
|
@@ -0,0 +1,747 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (C) 2005, 2006 Martin von Löwis
|
| 2 |
+
# Licensed to PSF under a Contributor Agreement.
|
| 3 |
+
"""
|
| 4 |
+
Implements the bdist_msi command.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import os
|
| 8 |
+
import sys
|
| 9 |
+
import warnings
|
| 10 |
+
from distutils.core import Command
|
| 11 |
+
from distutils.dir_util import remove_tree
|
| 12 |
+
from distutils.sysconfig import get_python_version
|
| 13 |
+
from distutils.version import StrictVersion
|
| 14 |
+
from distutils.errors import DistutilsOptionError
|
| 15 |
+
from distutils.util import get_platform
|
| 16 |
+
from distutils import log
|
| 17 |
+
import msilib
|
| 18 |
+
from msilib import schema, sequence, text
|
| 19 |
+
from msilib import Directory, Feature, Dialog, add_data
|
| 20 |
+
|
| 21 |
+
class PyDialog(Dialog):
|
| 22 |
+
"""Dialog class with a fixed layout: controls at the top, then a ruler,
|
| 23 |
+
then a list of buttons: back, next, cancel. Optionally a bitmap at the
|
| 24 |
+
left."""
|
| 25 |
+
def __init__(self, *args, **kw):
|
| 26 |
+
"""Dialog(database, name, x, y, w, h, attributes, title, first,
|
| 27 |
+
default, cancel, bitmap=true)"""
|
| 28 |
+
Dialog.__init__(self, *args)
|
| 29 |
+
ruler = self.h - 36
|
| 30 |
+
bmwidth = 152*ruler/328
|
| 31 |
+
#if kw.get("bitmap", True):
|
| 32 |
+
# self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin")
|
| 33 |
+
self.line("BottomLine", 0, ruler, self.w, 0)
|
| 34 |
+
|
| 35 |
+
def title(self, title):
|
| 36 |
+
"Set the title text of the dialog at the top."
|
| 37 |
+
# name, x, y, w, h, flags=Visible|Enabled|Transparent|NoPrefix,
|
| 38 |
+
# text, in VerdanaBold10
|
| 39 |
+
self.text("Title", 15, 10, 320, 60, 0x30003,
|
| 40 |
+
r"{\VerdanaBold10}%s" % title)
|
| 41 |
+
|
| 42 |
+
def back(self, title, next, name = "Back", active = 1):
|
| 43 |
+
"""Add a back button with a given title, the tab-next button,
|
| 44 |
+
its name in the Control table, possibly initially disabled.
|
| 45 |
+
|
| 46 |
+
Return the button, so that events can be associated"""
|
| 47 |
+
if active:
|
| 48 |
+
flags = 3 # Visible|Enabled
|
| 49 |
+
else:
|
| 50 |
+
flags = 1 # Visible
|
| 51 |
+
return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
|
| 52 |
+
|
| 53 |
+
def cancel(self, title, next, name = "Cancel", active = 1):
|
| 54 |
+
"""Add a cancel button with a given title, the tab-next button,
|
| 55 |
+
its name in the Control table, possibly initially disabled.
|
| 56 |
+
|
| 57 |
+
Return the button, so that events can be associated"""
|
| 58 |
+
if active:
|
| 59 |
+
flags = 3 # Visible|Enabled
|
| 60 |
+
else:
|
| 61 |
+
flags = 1 # Visible
|
| 62 |
+
return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next)
|
| 63 |
+
|
| 64 |
+
def next(self, title, next, name = "Next", active = 1):
|
| 65 |
+
"""Add a Next button with a given title, the tab-next button,
|
| 66 |
+
its name in the Control table, possibly initially disabled.
|
| 67 |
+
|
| 68 |
+
Return the button, so that events can be associated"""
|
| 69 |
+
if active:
|
| 70 |
+
flags = 3 # Visible|Enabled
|
| 71 |
+
else:
|
| 72 |
+
flags = 1 # Visible
|
| 73 |
+
return self.pushbutton(name, 236, self.h-27, 56, 17, flags, title, next)
|
| 74 |
+
|
| 75 |
+
def xbutton(self, name, title, next, xpos):
|
| 76 |
+
"""Add a button with a given title, the tab-next button,
|
| 77 |
+
its name in the Control table, giving its x position; the
|
| 78 |
+
y-position is aligned with the other buttons.
|
| 79 |
+
|
| 80 |
+
Return the button, so that events can be associated"""
|
| 81 |
+
return self.pushbutton(name, int(self.w*xpos - 28), self.h-27, 56, 17, 3, title, next)
|
| 82 |
+
|
| 83 |
+
class bdist_msi(Command):
|
| 84 |
+
|
| 85 |
+
description = "create a Microsoft Installer (.msi) binary distribution"
|
| 86 |
+
|
| 87 |
+
user_options = [('bdist-dir=', None,
|
| 88 |
+
"temporary directory for creating the distribution"),
|
| 89 |
+
('plat-name=', 'p',
|
| 90 |
+
"platform name to embed in generated filenames "
|
| 91 |
+
"(default: %s)" % get_platform()),
|
| 92 |
+
('keep-temp', 'k',
|
| 93 |
+
"keep the pseudo-installation tree around after " +
|
| 94 |
+
"creating the distribution archive"),
|
| 95 |
+
('target-version=', None,
|
| 96 |
+
"require a specific python version" +
|
| 97 |
+
" on the target system"),
|
| 98 |
+
('no-target-compile', 'c',
|
| 99 |
+
"do not compile .py to .pyc on the target system"),
|
| 100 |
+
('no-target-optimize', 'o',
|
| 101 |
+
"do not compile .py to .pyo (optimized) "
|
| 102 |
+
"on the target system"),
|
| 103 |
+
('dist-dir=', 'd',
|
| 104 |
+
"directory to put final built distributions in"),
|
| 105 |
+
('skip-build', None,
|
| 106 |
+
"skip rebuilding everything (for testing/debugging)"),
|
| 107 |
+
('install-script=', None,
|
| 108 |
+
"basename of installation script to be run after "
|
| 109 |
+
"installation or before deinstallation"),
|
| 110 |
+
('pre-install-script=', None,
|
| 111 |
+
"Fully qualified filename of a script to be run before "
|
| 112 |
+
"any files are installed. This script need not be in the "
|
| 113 |
+
"distribution"),
|
| 114 |
+
]
|
| 115 |
+
|
| 116 |
+
boolean_options = ['keep-temp', 'no-target-compile', 'no-target-optimize',
|
| 117 |
+
'skip-build']
|
| 118 |
+
|
| 119 |
+
all_versions = ['2.0', '2.1', '2.2', '2.3', '2.4',
|
| 120 |
+
'2.5', '2.6', '2.7', '2.8', '2.9',
|
| 121 |
+
'3.0', '3.1', '3.2', '3.3', '3.4',
|
| 122 |
+
'3.5', '3.6', '3.7', '3.8', '3.9']
|
| 123 |
+
other_version = 'X'
|
| 124 |
+
|
| 125 |
+
def __init__(self, *args, **kw):
|
| 126 |
+
super().__init__(*args, **kw)
|
| 127 |
+
warnings.warn("bdist_msi command is deprecated since Python 3.9, "
|
| 128 |
+
"use bdist_wheel (wheel packages) instead",
|
| 129 |
+
DeprecationWarning, 2)
|
| 130 |
+
|
| 131 |
+
def initialize_options(self):
|
| 132 |
+
self.bdist_dir = None
|
| 133 |
+
self.plat_name = None
|
| 134 |
+
self.keep_temp = 0
|
| 135 |
+
self.no_target_compile = 0
|
| 136 |
+
self.no_target_optimize = 0
|
| 137 |
+
self.target_version = None
|
| 138 |
+
self.dist_dir = None
|
| 139 |
+
self.skip_build = None
|
| 140 |
+
self.install_script = None
|
| 141 |
+
self.pre_install_script = None
|
| 142 |
+
self.versions = None
|
| 143 |
+
|
| 144 |
+
def finalize_options(self):
|
| 145 |
+
self.set_undefined_options('bdist', ('skip_build', 'skip_build'))
|
| 146 |
+
|
| 147 |
+
if self.bdist_dir is None:
|
| 148 |
+
bdist_base = self.get_finalized_command('bdist').bdist_base
|
| 149 |
+
self.bdist_dir = os.path.join(bdist_base, 'msi')
|
| 150 |
+
|
| 151 |
+
short_version = get_python_version()
|
| 152 |
+
if (not self.target_version) and self.distribution.has_ext_modules():
|
| 153 |
+
self.target_version = short_version
|
| 154 |
+
|
| 155 |
+
if self.target_version:
|
| 156 |
+
self.versions = [self.target_version]
|
| 157 |
+
if not self.skip_build and self.distribution.has_ext_modules()\
|
| 158 |
+
and self.target_version != short_version:
|
| 159 |
+
raise DistutilsOptionError(
|
| 160 |
+
"target version can only be %s, or the '--skip-build'"
|
| 161 |
+
" option must be specified" % (short_version,))
|
| 162 |
+
else:
|
| 163 |
+
self.versions = list(self.all_versions)
|
| 164 |
+
|
| 165 |
+
self.set_undefined_options('bdist',
|
| 166 |
+
('dist_dir', 'dist_dir'),
|
| 167 |
+
('plat_name', 'plat_name'),
|
| 168 |
+
)
|
| 169 |
+
|
| 170 |
+
if self.pre_install_script:
|
| 171 |
+
raise DistutilsOptionError(
|
| 172 |
+
"the pre-install-script feature is not yet implemented")
|
| 173 |
+
|
| 174 |
+
if self.install_script:
|
| 175 |
+
for script in self.distribution.scripts:
|
| 176 |
+
if self.install_script == os.path.basename(script):
|
| 177 |
+
break
|
| 178 |
+
else:
|
| 179 |
+
raise DistutilsOptionError(
|
| 180 |
+
"install_script '%s' not found in scripts"
|
| 181 |
+
% self.install_script)
|
| 182 |
+
self.install_script_key = None
|
| 183 |
+
|
| 184 |
+
def run(self):
|
| 185 |
+
if not self.skip_build:
|
| 186 |
+
self.run_command('build')
|
| 187 |
+
|
| 188 |
+
install = self.reinitialize_command('install', reinit_subcommands=1)
|
| 189 |
+
install.prefix = self.bdist_dir
|
| 190 |
+
install.skip_build = self.skip_build
|
| 191 |
+
install.warn_dir = 0
|
| 192 |
+
|
| 193 |
+
install_lib = self.reinitialize_command('install_lib')
|
| 194 |
+
# we do not want to include pyc or pyo files
|
| 195 |
+
install_lib.compile = 0
|
| 196 |
+
install_lib.optimize = 0
|
| 197 |
+
|
| 198 |
+
if self.distribution.has_ext_modules():
|
| 199 |
+
# If we are building an installer for a Python version other
|
| 200 |
+
# than the one we are currently running, then we need to ensure
|
| 201 |
+
# our build_lib reflects the other Python version rather than ours.
|
| 202 |
+
# Note that for target_version!=sys.version, we must have skipped the
|
| 203 |
+
# build step, so there is no issue with enforcing the build of this
|
| 204 |
+
# version.
|
| 205 |
+
target_version = self.target_version
|
| 206 |
+
if not target_version:
|
| 207 |
+
assert self.skip_build, "Should have already checked this"
|
| 208 |
+
target_version = '%d.%d' % sys.version_info[:2]
|
| 209 |
+
plat_specifier = ".%s-%s" % (self.plat_name, target_version)
|
| 210 |
+
build = self.get_finalized_command('build')
|
| 211 |
+
build.build_lib = os.path.join(build.build_base,
|
| 212 |
+
'lib' + plat_specifier)
|
| 213 |
+
|
| 214 |
+
log.info("installing to %s", self.bdist_dir)
|
| 215 |
+
install.ensure_finalized()
|
| 216 |
+
|
| 217 |
+
# avoid warning of 'install_lib' about installing
|
| 218 |
+
# into a directory not in sys.path
|
| 219 |
+
sys.path.insert(0, os.path.join(self.bdist_dir, 'PURELIB'))
|
| 220 |
+
|
| 221 |
+
install.run()
|
| 222 |
+
|
| 223 |
+
del sys.path[0]
|
| 224 |
+
|
| 225 |
+
self.mkpath(self.dist_dir)
|
| 226 |
+
fullname = self.distribution.get_fullname()
|
| 227 |
+
installer_name = self.get_installer_filename(fullname)
|
| 228 |
+
installer_name = os.path.abspath(installer_name)
|
| 229 |
+
if os.path.exists(installer_name): os.unlink(installer_name)
|
| 230 |
+
|
| 231 |
+
metadata = self.distribution.metadata
|
| 232 |
+
author = metadata.author
|
| 233 |
+
if not author:
|
| 234 |
+
author = metadata.maintainer
|
| 235 |
+
if not author:
|
| 236 |
+
author = "UNKNOWN"
|
| 237 |
+
version = metadata.get_version()
|
| 238 |
+
# ProductVersion must be strictly numeric
|
| 239 |
+
# XXX need to deal with prerelease versions
|
| 240 |
+
sversion = "%d.%d.%d" % StrictVersion(version).version
|
| 241 |
+
# Prefix ProductName with Python x.y, so that
|
| 242 |
+
# it sorts together with the other Python packages
|
| 243 |
+
# in Add-Remove-Programs (APR)
|
| 244 |
+
fullname = self.distribution.get_fullname()
|
| 245 |
+
if self.target_version:
|
| 246 |
+
product_name = "Python %s %s" % (self.target_version, fullname)
|
| 247 |
+
else:
|
| 248 |
+
product_name = "Python %s" % (fullname)
|
| 249 |
+
self.db = msilib.init_database(installer_name, schema,
|
| 250 |
+
product_name, msilib.gen_uuid(),
|
| 251 |
+
sversion, author)
|
| 252 |
+
msilib.add_tables(self.db, sequence)
|
| 253 |
+
props = [('DistVersion', version)]
|
| 254 |
+
email = metadata.author_email or metadata.maintainer_email
|
| 255 |
+
if email:
|
| 256 |
+
props.append(("ARPCONTACT", email))
|
| 257 |
+
if metadata.url:
|
| 258 |
+
props.append(("ARPURLINFOABOUT", metadata.url))
|
| 259 |
+
if props:
|
| 260 |
+
add_data(self.db, 'Property', props)
|
| 261 |
+
|
| 262 |
+
self.add_find_python()
|
| 263 |
+
self.add_files()
|
| 264 |
+
self.add_scripts()
|
| 265 |
+
self.add_ui()
|
| 266 |
+
self.db.Commit()
|
| 267 |
+
|
| 268 |
+
if hasattr(self.distribution, 'dist_files'):
|
| 269 |
+
tup = 'bdist_msi', self.target_version or 'any', fullname
|
| 270 |
+
self.distribution.dist_files.append(tup)
|
| 271 |
+
|
| 272 |
+
if not self.keep_temp:
|
| 273 |
+
remove_tree(self.bdist_dir, dry_run=self.dry_run)
|
| 274 |
+
|
| 275 |
+
def add_files(self):
|
| 276 |
+
db = self.db
|
| 277 |
+
cab = msilib.CAB("distfiles")
|
| 278 |
+
rootdir = os.path.abspath(self.bdist_dir)
|
| 279 |
+
|
| 280 |
+
root = Directory(db, cab, None, rootdir, "TARGETDIR", "SourceDir")
|
| 281 |
+
f = Feature(db, "Python", "Python", "Everything",
|
| 282 |
+
0, 1, directory="TARGETDIR")
|
| 283 |
+
|
| 284 |
+
items = [(f, root, '')]
|
| 285 |
+
for version in self.versions + [self.other_version]:
|
| 286 |
+
target = "TARGETDIR" + version
|
| 287 |
+
name = default = "Python" + version
|
| 288 |
+
desc = "Everything"
|
| 289 |
+
if version is self.other_version:
|
| 290 |
+
title = "Python from another location"
|
| 291 |
+
level = 2
|
| 292 |
+
else:
|
| 293 |
+
title = "Python %s from registry" % version
|
| 294 |
+
level = 1
|
| 295 |
+
f = Feature(db, name, title, desc, 1, level, directory=target)
|
| 296 |
+
dir = Directory(db, cab, root, rootdir, target, default)
|
| 297 |
+
items.append((f, dir, version))
|
| 298 |
+
db.Commit()
|
| 299 |
+
|
| 300 |
+
seen = {}
|
| 301 |
+
for feature, dir, version in items:
|
| 302 |
+
todo = [dir]
|
| 303 |
+
while todo:
|
| 304 |
+
dir = todo.pop()
|
| 305 |
+
for file in os.listdir(dir.absolute):
|
| 306 |
+
afile = os.path.join(dir.absolute, file)
|
| 307 |
+
if os.path.isdir(afile):
|
| 308 |
+
short = "%s|%s" % (dir.make_short(file), file)
|
| 309 |
+
default = file + version
|
| 310 |
+
newdir = Directory(db, cab, dir, file, default, short)
|
| 311 |
+
todo.append(newdir)
|
| 312 |
+
else:
|
| 313 |
+
if not dir.component:
|
| 314 |
+
dir.start_component(dir.logical, feature, 0)
|
| 315 |
+
if afile not in seen:
|
| 316 |
+
key = seen[afile] = dir.add_file(file)
|
| 317 |
+
if file==self.install_script:
|
| 318 |
+
if self.install_script_key:
|
| 319 |
+
raise DistutilsOptionError(
|
| 320 |
+
"Multiple files with name %s" % file)
|
| 321 |
+
self.install_script_key = '[#%s]' % key
|
| 322 |
+
else:
|
| 323 |
+
key = seen[afile]
|
| 324 |
+
add_data(self.db, "DuplicateFile",
|
| 325 |
+
[(key + version, dir.component, key, None, dir.logical)])
|
| 326 |
+
db.Commit()
|
| 327 |
+
cab.commit(db)
|
| 328 |
+
|
| 329 |
+
def add_find_python(self):
|
| 330 |
+
"""Adds code to the installer to compute the location of Python.
|
| 331 |
+
|
| 332 |
+
Properties PYTHON.MACHINE.X.Y and PYTHON.USER.X.Y will be set from the
|
| 333 |
+
registry for each version of Python.
|
| 334 |
+
|
| 335 |
+
Properties TARGETDIRX.Y will be set from PYTHON.USER.X.Y if defined,
|
| 336 |
+
else from PYTHON.MACHINE.X.Y.
|
| 337 |
+
|
| 338 |
+
Properties PYTHONX.Y will be set to TARGETDIRX.Y\\python.exe"""
|
| 339 |
+
|
| 340 |
+
start = 402
|
| 341 |
+
for ver in self.versions:
|
| 342 |
+
install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % ver
|
| 343 |
+
machine_reg = "python.machine." + ver
|
| 344 |
+
user_reg = "python.user." + ver
|
| 345 |
+
machine_prop = "PYTHON.MACHINE." + ver
|
| 346 |
+
user_prop = "PYTHON.USER." + ver
|
| 347 |
+
machine_action = "PythonFromMachine" + ver
|
| 348 |
+
user_action = "PythonFromUser" + ver
|
| 349 |
+
exe_action = "PythonExe" + ver
|
| 350 |
+
target_dir_prop = "TARGETDIR" + ver
|
| 351 |
+
exe_prop = "PYTHON" + ver
|
| 352 |
+
if msilib.Win64:
|
| 353 |
+
# type: msidbLocatorTypeRawValue + msidbLocatorType64bit
|
| 354 |
+
Type = 2+16
|
| 355 |
+
else:
|
| 356 |
+
Type = 2
|
| 357 |
+
add_data(self.db, "RegLocator",
|
| 358 |
+
[(machine_reg, 2, install_path, None, Type),
|
| 359 |
+
(user_reg, 1, install_path, None, Type)])
|
| 360 |
+
add_data(self.db, "AppSearch",
|
| 361 |
+
[(machine_prop, machine_reg),
|
| 362 |
+
(user_prop, user_reg)])
|
| 363 |
+
add_data(self.db, "CustomAction",
|
| 364 |
+
[(machine_action, 51+256, target_dir_prop, "[" + machine_prop + "]"),
|
| 365 |
+
(user_action, 51+256, target_dir_prop, "[" + user_prop + "]"),
|
| 366 |
+
(exe_action, 51+256, exe_prop, "[" + target_dir_prop + "]\\python.exe"),
|
| 367 |
+
])
|
| 368 |
+
add_data(self.db, "InstallExecuteSequence",
|
| 369 |
+
[(machine_action, machine_prop, start),
|
| 370 |
+
(user_action, user_prop, start + 1),
|
| 371 |
+
(exe_action, None, start + 2),
|
| 372 |
+
])
|
| 373 |
+
add_data(self.db, "InstallUISequence",
|
| 374 |
+
[(machine_action, machine_prop, start),
|
| 375 |
+
(user_action, user_prop, start + 1),
|
| 376 |
+
(exe_action, None, start + 2),
|
| 377 |
+
])
|
| 378 |
+
add_data(self.db, "Condition",
|
| 379 |
+
[("Python" + ver, 0, "NOT TARGETDIR" + ver)])
|
| 380 |
+
start += 4
|
| 381 |
+
assert start < 500
|
| 382 |
+
|
| 383 |
+
def add_scripts(self):
|
| 384 |
+
if self.install_script:
|
| 385 |
+
start = 6800
|
| 386 |
+
for ver in self.versions + [self.other_version]:
|
| 387 |
+
install_action = "install_script." + ver
|
| 388 |
+
exe_prop = "PYTHON" + ver
|
| 389 |
+
add_data(self.db, "CustomAction",
|
| 390 |
+
[(install_action, 50, exe_prop, self.install_script_key)])
|
| 391 |
+
add_data(self.db, "InstallExecuteSequence",
|
| 392 |
+
[(install_action, "&Python%s=3" % ver, start)])
|
| 393 |
+
start += 1
|
| 394 |
+
# XXX pre-install scripts are currently refused in finalize_options()
|
| 395 |
+
# but if this feature is completed, it will also need to add
|
| 396 |
+
# entries for each version as the above code does
|
| 397 |
+
if self.pre_install_script:
|
| 398 |
+
scriptfn = os.path.join(self.bdist_dir, "preinstall.bat")
|
| 399 |
+
with open(scriptfn, "w") as f:
|
| 400 |
+
# The batch file will be executed with [PYTHON], so that %1
|
| 401 |
+
# is the path to the Python interpreter; %0 will be the path
|
| 402 |
+
# of the batch file.
|
| 403 |
+
# rem ="""
|
| 404 |
+
# %1 %0
|
| 405 |
+
# exit
|
| 406 |
+
# """
|
| 407 |
+
# <actual script>
|
| 408 |
+
f.write('rem ="""\n%1 %0\nexit\n"""\n')
|
| 409 |
+
with open(self.pre_install_script) as fin:
|
| 410 |
+
f.write(fin.read())
|
| 411 |
+
add_data(self.db, "Binary",
|
| 412 |
+
[("PreInstall", msilib.Binary(scriptfn))
|
| 413 |
+
])
|
| 414 |
+
add_data(self.db, "CustomAction",
|
| 415 |
+
[("PreInstall", 2, "PreInstall", None)
|
| 416 |
+
])
|
| 417 |
+
add_data(self.db, "InstallExecuteSequence",
|
| 418 |
+
[("PreInstall", "NOT Installed", 450)])
|
| 419 |
+
|
| 420 |
+
|
| 421 |
+
def add_ui(self):
|
| 422 |
+
db = self.db
|
| 423 |
+
x = y = 50
|
| 424 |
+
w = 370
|
| 425 |
+
h = 300
|
| 426 |
+
title = "[ProductName] Setup"
|
| 427 |
+
|
| 428 |
+
# see "Dialog Style Bits"
|
| 429 |
+
modal = 3 # visible | modal
|
| 430 |
+
modeless = 1 # visible
|
| 431 |
+
track_disk_space = 32
|
| 432 |
+
|
| 433 |
+
# UI customization properties
|
| 434 |
+
add_data(db, "Property",
|
| 435 |
+
# See "DefaultUIFont Property"
|
| 436 |
+
[("DefaultUIFont", "DlgFont8"),
|
| 437 |
+
# See "ErrorDialog Style Bit"
|
| 438 |
+
("ErrorDialog", "ErrorDlg"),
|
| 439 |
+
("Progress1", "Install"), # modified in maintenance type dlg
|
| 440 |
+
("Progress2", "installs"),
|
| 441 |
+
("MaintenanceForm_Action", "Repair"),
|
| 442 |
+
# possible values: ALL, JUSTME
|
| 443 |
+
("WhichUsers", "ALL")
|
| 444 |
+
])
|
| 445 |
+
|
| 446 |
+
# Fonts, see "TextStyle Table"
|
| 447 |
+
add_data(db, "TextStyle",
|
| 448 |
+
[("DlgFont8", "Tahoma", 9, None, 0),
|
| 449 |
+
("DlgFontBold8", "Tahoma", 8, None, 1), #bold
|
| 450 |
+
("VerdanaBold10", "Verdana", 10, None, 1),
|
| 451 |
+
("VerdanaRed9", "Verdana", 9, 255, 0),
|
| 452 |
+
])
|
| 453 |
+
|
| 454 |
+
# UI Sequences, see "InstallUISequence Table", "Using a Sequence Table"
|
| 455 |
+
# Numbers indicate sequence; see sequence.py for how these action integrate
|
| 456 |
+
add_data(db, "InstallUISequence",
|
| 457 |
+
[("PrepareDlg", "Not Privileged or Windows9x or Installed", 140),
|
| 458 |
+
("WhichUsersDlg", "Privileged and not Windows9x and not Installed", 141),
|
| 459 |
+
# In the user interface, assume all-users installation if privileged.
|
| 460 |
+
("SelectFeaturesDlg", "Not Installed", 1230),
|
| 461 |
+
# XXX no support for resume installations yet
|
| 462 |
+
#("ResumeDlg", "Installed AND (RESUME OR Preselected)", 1240),
|
| 463 |
+
("MaintenanceTypeDlg", "Installed AND NOT RESUME AND NOT Preselected", 1250),
|
| 464 |
+
("ProgressDlg", None, 1280)])
|
| 465 |
+
|
| 466 |
+
add_data(db, 'ActionText', text.ActionText)
|
| 467 |
+
add_data(db, 'UIText', text.UIText)
|
| 468 |
+
#####################################################################
|
| 469 |
+
# Standard dialogs: FatalError, UserExit, ExitDialog
|
| 470 |
+
fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
|
| 471 |
+
"Finish", "Finish", "Finish")
|
| 472 |
+
fatal.title("[ProductName] Installer ended prematurely")
|
| 473 |
+
fatal.back("< Back", "Finish", active = 0)
|
| 474 |
+
fatal.cancel("Cancel", "Back", active = 0)
|
| 475 |
+
fatal.text("Description1", 15, 70, 320, 80, 0x30003,
|
| 476 |
+
"[ProductName] setup ended prematurely because of an error. Your system has not been modified. To install this program at a later time, please run the installation again.")
|
| 477 |
+
fatal.text("Description2", 15, 155, 320, 20, 0x30003,
|
| 478 |
+
"Click the Finish button to exit the Installer.")
|
| 479 |
+
c=fatal.next("Finish", "Cancel", name="Finish")
|
| 480 |
+
c.event("EndDialog", "Exit")
|
| 481 |
+
|
| 482 |
+
user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
|
| 483 |
+
"Finish", "Finish", "Finish")
|
| 484 |
+
user_exit.title("[ProductName] Installer was interrupted")
|
| 485 |
+
user_exit.back("< Back", "Finish", active = 0)
|
| 486 |
+
user_exit.cancel("Cancel", "Back", active = 0)
|
| 487 |
+
user_exit.text("Description1", 15, 70, 320, 80, 0x30003,
|
| 488 |
+
"[ProductName] setup was interrupted. Your system has not been modified. "
|
| 489 |
+
"To install this program at a later time, please run the installation again.")
|
| 490 |
+
user_exit.text("Description2", 15, 155, 320, 20, 0x30003,
|
| 491 |
+
"Click the Finish button to exit the Installer.")
|
| 492 |
+
c = user_exit.next("Finish", "Cancel", name="Finish")
|
| 493 |
+
c.event("EndDialog", "Exit")
|
| 494 |
+
|
| 495 |
+
exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
|
| 496 |
+
"Finish", "Finish", "Finish")
|
| 497 |
+
exit_dialog.title("Completing the [ProductName] Installer")
|
| 498 |
+
exit_dialog.back("< Back", "Finish", active = 0)
|
| 499 |
+
exit_dialog.cancel("Cancel", "Back", active = 0)
|
| 500 |
+
exit_dialog.text("Description", 15, 235, 320, 20, 0x30003,
|
| 501 |
+
"Click the Finish button to exit the Installer.")
|
| 502 |
+
c = exit_dialog.next("Finish", "Cancel", name="Finish")
|
| 503 |
+
c.event("EndDialog", "Return")
|
| 504 |
+
|
| 505 |
+
#####################################################################
|
| 506 |
+
# Required dialog: FilesInUse, ErrorDlg
|
| 507 |
+
inuse = PyDialog(db, "FilesInUse",
|
| 508 |
+
x, y, w, h,
|
| 509 |
+
19, # KeepModeless|Modal|Visible
|
| 510 |
+
title,
|
| 511 |
+
"Retry", "Retry", "Retry", bitmap=False)
|
| 512 |
+
inuse.text("Title", 15, 6, 200, 15, 0x30003,
|
| 513 |
+
r"{\DlgFontBold8}Files in Use")
|
| 514 |
+
inuse.text("Description", 20, 23, 280, 20, 0x30003,
|
| 515 |
+
"Some files that need to be updated are currently in use.")
|
| 516 |
+
inuse.text("Text", 20, 55, 330, 50, 3,
|
| 517 |
+
"The following applications are using files that need to be updated by this setup. Close these applications and then click Retry to continue the installation or Cancel to exit it.")
|
| 518 |
+
inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
|
| 519 |
+
None, None, None)
|
| 520 |
+
c=inuse.back("Exit", "Ignore", name="Exit")
|
| 521 |
+
c.event("EndDialog", "Exit")
|
| 522 |
+
c=inuse.next("Ignore", "Retry", name="Ignore")
|
| 523 |
+
c.event("EndDialog", "Ignore")
|
| 524 |
+
c=inuse.cancel("Retry", "Exit", name="Retry")
|
| 525 |
+
c.event("EndDialog","Retry")
|
| 526 |
+
|
| 527 |
+
# See "Error Dialog". See "ICE20" for the required names of the controls.
|
| 528 |
+
error = Dialog(db, "ErrorDlg",
|
| 529 |
+
50, 10, 330, 101,
|
| 530 |
+
65543, # Error|Minimize|Modal|Visible
|
| 531 |
+
title,
|
| 532 |
+
"ErrorText", None, None)
|
| 533 |
+
error.text("ErrorText", 50,9,280,48,3, "")
|
| 534 |
+
#error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "py.ico", None, None)
|
| 535 |
+
error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
|
| 536 |
+
error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
|
| 537 |
+
error.pushbutton("A",0,72,81,21,3,"Abort",None).event("EndDialog","ErrorAbort")
|
| 538 |
+
error.pushbutton("C",42,72,81,21,3,"Cancel",None).event("EndDialog","ErrorCancel")
|
| 539 |
+
error.pushbutton("I",81,72,81,21,3,"Ignore",None).event("EndDialog","ErrorIgnore")
|
| 540 |
+
error.pushbutton("O",159,72,81,21,3,"Ok",None).event("EndDialog","ErrorOk")
|
| 541 |
+
error.pushbutton("R",198,72,81,21,3,"Retry",None).event("EndDialog","ErrorRetry")
|
| 542 |
+
|
| 543 |
+
#####################################################################
|
| 544 |
+
# Global "Query Cancel" dialog
|
| 545 |
+
cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
|
| 546 |
+
"No", "No", "No")
|
| 547 |
+
cancel.text("Text", 48, 15, 194, 30, 3,
|
| 548 |
+
"Are you sure you want to cancel [ProductName] installation?")
|
| 549 |
+
#cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
|
| 550 |
+
# "py.ico", None, None)
|
| 551 |
+
c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
|
| 552 |
+
c.event("EndDialog", "Exit")
|
| 553 |
+
|
| 554 |
+
c=cancel.pushbutton("No", 132, 57, 56, 17, 3, "No", "Yes")
|
| 555 |
+
c.event("EndDialog", "Return")
|
| 556 |
+
|
| 557 |
+
#####################################################################
|
| 558 |
+
# Global "Wait for costing" dialog
|
| 559 |
+
costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
|
| 560 |
+
"Return", "Return", "Return")
|
| 561 |
+
costing.text("Text", 48, 15, 194, 30, 3,
|
| 562 |
+
"Please wait while the installer finishes determining your disk space requirements.")
|
| 563 |
+
c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
|
| 564 |
+
c.event("EndDialog", "Exit")
|
| 565 |
+
|
| 566 |
+
#####################################################################
|
| 567 |
+
# Preparation dialog: no user input except cancellation
|
| 568 |
+
prep = PyDialog(db, "PrepareDlg", x, y, w, h, modeless, title,
|
| 569 |
+
"Cancel", "Cancel", "Cancel")
|
| 570 |
+
prep.text("Description", 15, 70, 320, 40, 0x30003,
|
| 571 |
+
"Please wait while the Installer prepares to guide you through the installation.")
|
| 572 |
+
prep.title("Welcome to the [ProductName] Installer")
|
| 573 |
+
c=prep.text("ActionText", 15, 110, 320, 20, 0x30003, "Pondering...")
|
| 574 |
+
c.mapping("ActionText", "Text")
|
| 575 |
+
c=prep.text("ActionData", 15, 135, 320, 30, 0x30003, None)
|
| 576 |
+
c.mapping("ActionData", "Text")
|
| 577 |
+
prep.back("Back", None, active=0)
|
| 578 |
+
prep.next("Next", None, active=0)
|
| 579 |
+
c=prep.cancel("Cancel", None)
|
| 580 |
+
c.event("SpawnDialog", "CancelDlg")
|
| 581 |
+
|
| 582 |
+
#####################################################################
|
| 583 |
+
# Feature (Python directory) selection
|
| 584 |
+
seldlg = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal, title,
|
| 585 |
+
"Next", "Next", "Cancel")
|
| 586 |
+
seldlg.title("Select Python Installations")
|
| 587 |
+
|
| 588 |
+
seldlg.text("Hint", 15, 30, 300, 20, 3,
|
| 589 |
+
"Select the Python locations where %s should be installed."
|
| 590 |
+
% self.distribution.get_fullname())
|
| 591 |
+
|
| 592 |
+
seldlg.back("< Back", None, active=0)
|
| 593 |
+
c = seldlg.next("Next >", "Cancel")
|
| 594 |
+
order = 1
|
| 595 |
+
c.event("[TARGETDIR]", "[SourceDir]", ordering=order)
|
| 596 |
+
for version in self.versions + [self.other_version]:
|
| 597 |
+
order += 1
|
| 598 |
+
c.event("[TARGETDIR]", "[TARGETDIR%s]" % version,
|
| 599 |
+
"FEATURE_SELECTED AND &Python%s=3" % version,
|
| 600 |
+
ordering=order)
|
| 601 |
+
c.event("SpawnWaitDialog", "WaitForCostingDlg", ordering=order + 1)
|
| 602 |
+
c.event("EndDialog", "Return", ordering=order + 2)
|
| 603 |
+
c = seldlg.cancel("Cancel", "Features")
|
| 604 |
+
c.event("SpawnDialog", "CancelDlg")
|
| 605 |
+
|
| 606 |
+
c = seldlg.control("Features", "SelectionTree", 15, 60, 300, 120, 3,
|
| 607 |
+
"FEATURE", None, "PathEdit", None)
|
| 608 |
+
c.event("[FEATURE_SELECTED]", "1")
|
| 609 |
+
ver = self.other_version
|
| 610 |
+
install_other_cond = "FEATURE_SELECTED AND &Python%s=3" % ver
|
| 611 |
+
dont_install_other_cond = "FEATURE_SELECTED AND &Python%s<>3" % ver
|
| 612 |
+
|
| 613 |
+
c = seldlg.text("Other", 15, 200, 300, 15, 3,
|
| 614 |
+
"Provide an alternate Python location")
|
| 615 |
+
c.condition("Enable", install_other_cond)
|
| 616 |
+
c.condition("Show", install_other_cond)
|
| 617 |
+
c.condition("Disable", dont_install_other_cond)
|
| 618 |
+
c.condition("Hide", dont_install_other_cond)
|
| 619 |
+
|
| 620 |
+
c = seldlg.control("PathEdit", "PathEdit", 15, 215, 300, 16, 1,
|
| 621 |
+
"TARGETDIR" + ver, None, "Next", None)
|
| 622 |
+
c.condition("Enable", install_other_cond)
|
| 623 |
+
c.condition("Show", install_other_cond)
|
| 624 |
+
c.condition("Disable", dont_install_other_cond)
|
| 625 |
+
c.condition("Hide", dont_install_other_cond)
|
| 626 |
+
|
| 627 |
+
#####################################################################
|
| 628 |
+
# Disk cost
|
| 629 |
+
cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
|
| 630 |
+
"OK", "OK", "OK", bitmap=False)
|
| 631 |
+
cost.text("Title", 15, 6, 200, 15, 0x30003,
|
| 632 |
+
r"{\DlgFontBold8}Disk Space Requirements")
|
| 633 |
+
cost.text("Description", 20, 20, 280, 20, 0x30003,
|
| 634 |
+
"The disk space required for the installation of the selected features.")
|
| 635 |
+
cost.text("Text", 20, 53, 330, 60, 3,
|
| 636 |
+
"The highlighted volumes (if any) do not have enough disk space "
|
| 637 |
+
"available for the currently selected features. You can either "
|
| 638 |
+
"remove some files from the highlighted volumes, or choose to "
|
| 639 |
+
"install less features onto local drive(s), or select different "
|
| 640 |
+
"destination drive(s).")
|
| 641 |
+
cost.control("VolumeList", "VolumeCostList", 20, 100, 330, 150, 393223,
|
| 642 |
+
None, "{120}{70}{70}{70}{70}", None, None)
|
| 643 |
+
cost.xbutton("OK", "Ok", None, 0.5).event("EndDialog", "Return")
|
| 644 |
+
|
| 645 |
+
#####################################################################
|
| 646 |
+
# WhichUsers Dialog. Only available on NT, and for privileged users.
|
| 647 |
+
# This must be run before FindRelatedProducts, because that will
|
| 648 |
+
# take into account whether the previous installation was per-user
|
| 649 |
+
# or per-machine. We currently don't support going back to this
|
| 650 |
+
# dialog after "Next" was selected; to support this, we would need to
|
| 651 |
+
# find how to reset the ALLUSERS property, and how to re-run
|
| 652 |
+
# FindRelatedProducts.
|
| 653 |
+
# On Windows9x, the ALLUSERS property is ignored on the command line
|
| 654 |
+
# and in the Property table, but installer fails according to the documentation
|
| 655 |
+
# if a dialog attempts to set ALLUSERS.
|
| 656 |
+
whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
|
| 657 |
+
"AdminInstall", "Next", "Cancel")
|
| 658 |
+
whichusers.title("Select whether to install [ProductName] for all users of this computer.")
|
| 659 |
+
# A radio group with two options: allusers, justme
|
| 660 |
+
g = whichusers.radiogroup("AdminInstall", 15, 60, 260, 50, 3,
|
| 661 |
+
"WhichUsers", "", "Next")
|
| 662 |
+
g.add("ALL", 0, 5, 150, 20, "Install for all users")
|
| 663 |
+
g.add("JUSTME", 0, 25, 150, 20, "Install just for me")
|
| 664 |
+
|
| 665 |
+
whichusers.back("Back", None, active=0)
|
| 666 |
+
|
| 667 |
+
c = whichusers.next("Next >", "Cancel")
|
| 668 |
+
c.event("[ALLUSERS]", "1", 'WhichUsers="ALL"', 1)
|
| 669 |
+
c.event("EndDialog", "Return", ordering = 2)
|
| 670 |
+
|
| 671 |
+
c = whichusers.cancel("Cancel", "AdminInstall")
|
| 672 |
+
c.event("SpawnDialog", "CancelDlg")
|
| 673 |
+
|
| 674 |
+
#####################################################################
|
| 675 |
+
# Installation Progress dialog (modeless)
|
| 676 |
+
progress = PyDialog(db, "ProgressDlg", x, y, w, h, modeless, title,
|
| 677 |
+
"Cancel", "Cancel", "Cancel", bitmap=False)
|
| 678 |
+
progress.text("Title", 20, 15, 200, 15, 0x30003,
|
| 679 |
+
r"{\DlgFontBold8}[Progress1] [ProductName]")
|
| 680 |
+
progress.text("Text", 35, 65, 300, 30, 3,
|
| 681 |
+
"Please wait while the Installer [Progress2] [ProductName]. "
|
| 682 |
+
"This may take several minutes.")
|
| 683 |
+
progress.text("StatusLabel", 35, 100, 35, 20, 3, "Status:")
|
| 684 |
+
|
| 685 |
+
c=progress.text("ActionText", 70, 100, w-70, 20, 3, "Pondering...")
|
| 686 |
+
c.mapping("ActionText", "Text")
|
| 687 |
+
|
| 688 |
+
#c=progress.text("ActionData", 35, 140, 300, 20, 3, None)
|
| 689 |
+
#c.mapping("ActionData", "Text")
|
| 690 |
+
|
| 691 |
+
c=progress.control("ProgressBar", "ProgressBar", 35, 120, 300, 10, 65537,
|
| 692 |
+
None, "Progress done", None, None)
|
| 693 |
+
c.mapping("SetProgress", "Progress")
|
| 694 |
+
|
| 695 |
+
progress.back("< Back", "Next", active=False)
|
| 696 |
+
progress.next("Next >", "Cancel", active=False)
|
| 697 |
+
progress.cancel("Cancel", "Back").event("SpawnDialog", "CancelDlg")
|
| 698 |
+
|
| 699 |
+
###################################################################
|
| 700 |
+
# Maintenance type: repair/uninstall
|
| 701 |
+
maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
|
| 702 |
+
"Next", "Next", "Cancel")
|
| 703 |
+
maint.title("Welcome to the [ProductName] Setup Wizard")
|
| 704 |
+
maint.text("BodyText", 15, 63, 330, 42, 3,
|
| 705 |
+
"Select whether you want to repair or remove [ProductName].")
|
| 706 |
+
g=maint.radiogroup("RepairRadioGroup", 15, 108, 330, 60, 3,
|
| 707 |
+
"MaintenanceForm_Action", "", "Next")
|
| 708 |
+
#g.add("Change", 0, 0, 200, 17, "&Change [ProductName]")
|
| 709 |
+
g.add("Repair", 0, 18, 200, 17, "&Repair [ProductName]")
|
| 710 |
+
g.add("Remove", 0, 36, 200, 17, "Re&move [ProductName]")
|
| 711 |
+
|
| 712 |
+
maint.back("< Back", None, active=False)
|
| 713 |
+
c=maint.next("Finish", "Cancel")
|
| 714 |
+
# Change installation: Change progress dialog to "Change", then ask
|
| 715 |
+
# for feature selection
|
| 716 |
+
#c.event("[Progress1]", "Change", 'MaintenanceForm_Action="Change"', 1)
|
| 717 |
+
#c.event("[Progress2]", "changes", 'MaintenanceForm_Action="Change"', 2)
|
| 718 |
+
|
| 719 |
+
# Reinstall: Change progress dialog to "Repair", then invoke reinstall
|
| 720 |
+
# Also set list of reinstalled features to "ALL"
|
| 721 |
+
c.event("[REINSTALL]", "ALL", 'MaintenanceForm_Action="Repair"', 5)
|
| 722 |
+
c.event("[Progress1]", "Repairing", 'MaintenanceForm_Action="Repair"', 6)
|
| 723 |
+
c.event("[Progress2]", "repairs", 'MaintenanceForm_Action="Repair"', 7)
|
| 724 |
+
c.event("Reinstall", "ALL", 'MaintenanceForm_Action="Repair"', 8)
|
| 725 |
+
|
| 726 |
+
# Uninstall: Change progress to "Remove", then invoke uninstall
|
| 727 |
+
# Also set list of removed features to "ALL"
|
| 728 |
+
c.event("[REMOVE]", "ALL", 'MaintenanceForm_Action="Remove"', 11)
|
| 729 |
+
c.event("[Progress1]", "Removing", 'MaintenanceForm_Action="Remove"', 12)
|
| 730 |
+
c.event("[Progress2]", "removes", 'MaintenanceForm_Action="Remove"', 13)
|
| 731 |
+
c.event("Remove", "ALL", 'MaintenanceForm_Action="Remove"', 14)
|
| 732 |
+
|
| 733 |
+
# Close dialog when maintenance action scheduled
|
| 734 |
+
c.event("EndDialog", "Return", 'MaintenanceForm_Action<>"Change"', 20)
|
| 735 |
+
#c.event("NewDialog", "SelectFeaturesDlg", 'MaintenanceForm_Action="Change"', 21)
|
| 736 |
+
|
| 737 |
+
maint.cancel("Cancel", "RepairRadioGroup").event("SpawnDialog", "CancelDlg")
|
| 738 |
+
|
| 739 |
+
def get_installer_filename(self, fullname):
|
| 740 |
+
# Factored out to allow overriding in subclasses
|
| 741 |
+
if self.target_version:
|
| 742 |
+
base_name = "%s.%s-py%s.msi" % (fullname, self.plat_name,
|
| 743 |
+
self.target_version)
|
| 744 |
+
else:
|
| 745 |
+
base_name = "%s.%s.msi" % (fullname, self.plat_name)
|
| 746 |
+
installer_name = os.path.join(self.dist_dir, base_name)
|
| 747 |
+
return installer_name
|
vila/lib/python3.10/distutils/command/bdist_rpm.py
ADDED
|
@@ -0,0 +1,579 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.bdist_rpm
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
|
| 4 |
+
distributions)."""
|
| 5 |
+
|
| 6 |
+
import subprocess, sys, os
|
| 7 |
+
from distutils.core import Command
|
| 8 |
+
from distutils.debug import DEBUG
|
| 9 |
+
from distutils.file_util import write_file
|
| 10 |
+
from distutils.errors import *
|
| 11 |
+
from distutils.sysconfig import get_python_version
|
| 12 |
+
from distutils import log
|
| 13 |
+
|
| 14 |
+
class bdist_rpm(Command):
|
| 15 |
+
|
| 16 |
+
description = "create an RPM distribution"
|
| 17 |
+
|
| 18 |
+
user_options = [
|
| 19 |
+
('bdist-base=', None,
|
| 20 |
+
"base directory for creating built distributions"),
|
| 21 |
+
('rpm-base=', None,
|
| 22 |
+
"base directory for creating RPMs (defaults to \"rpm\" under "
|
| 23 |
+
"--bdist-base; must be specified for RPM 2)"),
|
| 24 |
+
('dist-dir=', 'd',
|
| 25 |
+
"directory to put final RPM files in "
|
| 26 |
+
"(and .spec files if --spec-only)"),
|
| 27 |
+
('python=', None,
|
| 28 |
+
"path to Python interpreter to hard-code in the .spec file "
|
| 29 |
+
"(default: \"python\")"),
|
| 30 |
+
('fix-python', None,
|
| 31 |
+
"hard-code the exact path to the current Python interpreter in "
|
| 32 |
+
"the .spec file"),
|
| 33 |
+
('spec-only', None,
|
| 34 |
+
"only regenerate spec file"),
|
| 35 |
+
('source-only', None,
|
| 36 |
+
"only generate source RPM"),
|
| 37 |
+
('binary-only', None,
|
| 38 |
+
"only generate binary RPM"),
|
| 39 |
+
('use-bzip2', None,
|
| 40 |
+
"use bzip2 instead of gzip to create source distribution"),
|
| 41 |
+
|
| 42 |
+
# More meta-data: too RPM-specific to put in the setup script,
|
| 43 |
+
# but needs to go in the .spec file -- so we make these options
|
| 44 |
+
# to "bdist_rpm". The idea is that packagers would put this
|
| 45 |
+
# info in setup.cfg, although they are of course free to
|
| 46 |
+
# supply it on the command line.
|
| 47 |
+
('distribution-name=', None,
|
| 48 |
+
"name of the (Linux) distribution to which this "
|
| 49 |
+
"RPM applies (*not* the name of the module distribution!)"),
|
| 50 |
+
('group=', None,
|
| 51 |
+
"package classification [default: \"Development/Libraries\"]"),
|
| 52 |
+
('release=', None,
|
| 53 |
+
"RPM release number"),
|
| 54 |
+
('serial=', None,
|
| 55 |
+
"RPM serial number"),
|
| 56 |
+
('vendor=', None,
|
| 57 |
+
"RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") "
|
| 58 |
+
"[default: maintainer or author from setup script]"),
|
| 59 |
+
('packager=', None,
|
| 60 |
+
"RPM packager (eg. \"Jane Doe <jane@example.net>\") "
|
| 61 |
+
"[default: vendor]"),
|
| 62 |
+
('doc-files=', None,
|
| 63 |
+
"list of documentation files (space or comma-separated)"),
|
| 64 |
+
('changelog=', None,
|
| 65 |
+
"RPM changelog"),
|
| 66 |
+
('icon=', None,
|
| 67 |
+
"name of icon file"),
|
| 68 |
+
('provides=', None,
|
| 69 |
+
"capabilities provided by this package"),
|
| 70 |
+
('requires=', None,
|
| 71 |
+
"capabilities required by this package"),
|
| 72 |
+
('conflicts=', None,
|
| 73 |
+
"capabilities which conflict with this package"),
|
| 74 |
+
('build-requires=', None,
|
| 75 |
+
"capabilities required to build this package"),
|
| 76 |
+
('obsoletes=', None,
|
| 77 |
+
"capabilities made obsolete by this package"),
|
| 78 |
+
('no-autoreq', None,
|
| 79 |
+
"do not automatically calculate dependencies"),
|
| 80 |
+
|
| 81 |
+
# Actions to take when building RPM
|
| 82 |
+
('keep-temp', 'k',
|
| 83 |
+
"don't clean up RPM build directory"),
|
| 84 |
+
('no-keep-temp', None,
|
| 85 |
+
"clean up RPM build directory [default]"),
|
| 86 |
+
('use-rpm-opt-flags', None,
|
| 87 |
+
"compile with RPM_OPT_FLAGS when building from source RPM"),
|
| 88 |
+
('no-rpm-opt-flags', None,
|
| 89 |
+
"do not pass any RPM CFLAGS to compiler"),
|
| 90 |
+
('rpm3-mode', None,
|
| 91 |
+
"RPM 3 compatibility mode (default)"),
|
| 92 |
+
('rpm2-mode', None,
|
| 93 |
+
"RPM 2 compatibility mode"),
|
| 94 |
+
|
| 95 |
+
# Add the hooks necessary for specifying custom scripts
|
| 96 |
+
('prep-script=', None,
|
| 97 |
+
"Specify a script for the PREP phase of RPM building"),
|
| 98 |
+
('build-script=', None,
|
| 99 |
+
"Specify a script for the BUILD phase of RPM building"),
|
| 100 |
+
|
| 101 |
+
('pre-install=', None,
|
| 102 |
+
"Specify a script for the pre-INSTALL phase of RPM building"),
|
| 103 |
+
('install-script=', None,
|
| 104 |
+
"Specify a script for the INSTALL phase of RPM building"),
|
| 105 |
+
('post-install=', None,
|
| 106 |
+
"Specify a script for the post-INSTALL phase of RPM building"),
|
| 107 |
+
|
| 108 |
+
('pre-uninstall=', None,
|
| 109 |
+
"Specify a script for the pre-UNINSTALL phase of RPM building"),
|
| 110 |
+
('post-uninstall=', None,
|
| 111 |
+
"Specify a script for the post-UNINSTALL phase of RPM building"),
|
| 112 |
+
|
| 113 |
+
('clean-script=', None,
|
| 114 |
+
"Specify a script for the CLEAN phase of RPM building"),
|
| 115 |
+
|
| 116 |
+
('verify-script=', None,
|
| 117 |
+
"Specify a script for the VERIFY phase of the RPM build"),
|
| 118 |
+
|
| 119 |
+
# Allow a packager to explicitly force an architecture
|
| 120 |
+
('force-arch=', None,
|
| 121 |
+
"Force an architecture onto the RPM build process"),
|
| 122 |
+
|
| 123 |
+
('quiet', 'q',
|
| 124 |
+
"Run the INSTALL phase of RPM building in quiet mode"),
|
| 125 |
+
]
|
| 126 |
+
|
| 127 |
+
boolean_options = ['keep-temp', 'use-rpm-opt-flags', 'rpm3-mode',
|
| 128 |
+
'no-autoreq', 'quiet']
|
| 129 |
+
|
| 130 |
+
negative_opt = {'no-keep-temp': 'keep-temp',
|
| 131 |
+
'no-rpm-opt-flags': 'use-rpm-opt-flags',
|
| 132 |
+
'rpm2-mode': 'rpm3-mode'}
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
def initialize_options(self):
|
| 136 |
+
self.bdist_base = None
|
| 137 |
+
self.rpm_base = None
|
| 138 |
+
self.dist_dir = None
|
| 139 |
+
self.python = None
|
| 140 |
+
self.fix_python = None
|
| 141 |
+
self.spec_only = None
|
| 142 |
+
self.binary_only = None
|
| 143 |
+
self.source_only = None
|
| 144 |
+
self.use_bzip2 = None
|
| 145 |
+
|
| 146 |
+
self.distribution_name = None
|
| 147 |
+
self.group = None
|
| 148 |
+
self.release = None
|
| 149 |
+
self.serial = None
|
| 150 |
+
self.vendor = None
|
| 151 |
+
self.packager = None
|
| 152 |
+
self.doc_files = None
|
| 153 |
+
self.changelog = None
|
| 154 |
+
self.icon = None
|
| 155 |
+
|
| 156 |
+
self.prep_script = None
|
| 157 |
+
self.build_script = None
|
| 158 |
+
self.install_script = None
|
| 159 |
+
self.clean_script = None
|
| 160 |
+
self.verify_script = None
|
| 161 |
+
self.pre_install = None
|
| 162 |
+
self.post_install = None
|
| 163 |
+
self.pre_uninstall = None
|
| 164 |
+
self.post_uninstall = None
|
| 165 |
+
self.prep = None
|
| 166 |
+
self.provides = None
|
| 167 |
+
self.requires = None
|
| 168 |
+
self.conflicts = None
|
| 169 |
+
self.build_requires = None
|
| 170 |
+
self.obsoletes = None
|
| 171 |
+
|
| 172 |
+
self.keep_temp = 0
|
| 173 |
+
self.use_rpm_opt_flags = 1
|
| 174 |
+
self.rpm3_mode = 1
|
| 175 |
+
self.no_autoreq = 0
|
| 176 |
+
|
| 177 |
+
self.force_arch = None
|
| 178 |
+
self.quiet = 0
|
| 179 |
+
|
| 180 |
+
def finalize_options(self):
|
| 181 |
+
self.set_undefined_options('bdist', ('bdist_base', 'bdist_base'))
|
| 182 |
+
if self.rpm_base is None:
|
| 183 |
+
if not self.rpm3_mode:
|
| 184 |
+
raise DistutilsOptionError(
|
| 185 |
+
"you must specify --rpm-base in RPM 2 mode")
|
| 186 |
+
self.rpm_base = os.path.join(self.bdist_base, "rpm")
|
| 187 |
+
|
| 188 |
+
if self.python is None:
|
| 189 |
+
if self.fix_python:
|
| 190 |
+
self.python = sys.executable
|
| 191 |
+
else:
|
| 192 |
+
self.python = "python3"
|
| 193 |
+
elif self.fix_python:
|
| 194 |
+
raise DistutilsOptionError(
|
| 195 |
+
"--python and --fix-python are mutually exclusive options")
|
| 196 |
+
|
| 197 |
+
if os.name != 'posix':
|
| 198 |
+
raise DistutilsPlatformError("don't know how to create RPM "
|
| 199 |
+
"distributions on platform %s" % os.name)
|
| 200 |
+
if self.binary_only and self.source_only:
|
| 201 |
+
raise DistutilsOptionError(
|
| 202 |
+
"cannot supply both '--source-only' and '--binary-only'")
|
| 203 |
+
|
| 204 |
+
# don't pass CFLAGS to pure python distributions
|
| 205 |
+
if not self.distribution.has_ext_modules():
|
| 206 |
+
self.use_rpm_opt_flags = 0
|
| 207 |
+
|
| 208 |
+
self.set_undefined_options('bdist', ('dist_dir', 'dist_dir'))
|
| 209 |
+
self.finalize_package_data()
|
| 210 |
+
|
| 211 |
+
def finalize_package_data(self):
|
| 212 |
+
self.ensure_string('group', "Development/Libraries")
|
| 213 |
+
self.ensure_string('vendor',
|
| 214 |
+
"%s <%s>" % (self.distribution.get_contact(),
|
| 215 |
+
self.distribution.get_contact_email()))
|
| 216 |
+
self.ensure_string('packager')
|
| 217 |
+
self.ensure_string_list('doc_files')
|
| 218 |
+
if isinstance(self.doc_files, list):
|
| 219 |
+
for readme in ('README', 'README.txt'):
|
| 220 |
+
if os.path.exists(readme) and readme not in self.doc_files:
|
| 221 |
+
self.doc_files.append(readme)
|
| 222 |
+
|
| 223 |
+
self.ensure_string('release', "1")
|
| 224 |
+
self.ensure_string('serial') # should it be an int?
|
| 225 |
+
|
| 226 |
+
self.ensure_string('distribution_name')
|
| 227 |
+
|
| 228 |
+
self.ensure_string('changelog')
|
| 229 |
+
# Format changelog correctly
|
| 230 |
+
self.changelog = self._format_changelog(self.changelog)
|
| 231 |
+
|
| 232 |
+
self.ensure_filename('icon')
|
| 233 |
+
|
| 234 |
+
self.ensure_filename('prep_script')
|
| 235 |
+
self.ensure_filename('build_script')
|
| 236 |
+
self.ensure_filename('install_script')
|
| 237 |
+
self.ensure_filename('clean_script')
|
| 238 |
+
self.ensure_filename('verify_script')
|
| 239 |
+
self.ensure_filename('pre_install')
|
| 240 |
+
self.ensure_filename('post_install')
|
| 241 |
+
self.ensure_filename('pre_uninstall')
|
| 242 |
+
self.ensure_filename('post_uninstall')
|
| 243 |
+
|
| 244 |
+
# XXX don't forget we punted on summaries and descriptions -- they
|
| 245 |
+
# should be handled here eventually!
|
| 246 |
+
|
| 247 |
+
# Now *this* is some meta-data that belongs in the setup script...
|
| 248 |
+
self.ensure_string_list('provides')
|
| 249 |
+
self.ensure_string_list('requires')
|
| 250 |
+
self.ensure_string_list('conflicts')
|
| 251 |
+
self.ensure_string_list('build_requires')
|
| 252 |
+
self.ensure_string_list('obsoletes')
|
| 253 |
+
|
| 254 |
+
self.ensure_string('force_arch')
|
| 255 |
+
|
| 256 |
+
def run(self):
|
| 257 |
+
if DEBUG:
|
| 258 |
+
print("before _get_package_data():")
|
| 259 |
+
print("vendor =", self.vendor)
|
| 260 |
+
print("packager =", self.packager)
|
| 261 |
+
print("doc_files =", self.doc_files)
|
| 262 |
+
print("changelog =", self.changelog)
|
| 263 |
+
|
| 264 |
+
# make directories
|
| 265 |
+
if self.spec_only:
|
| 266 |
+
spec_dir = self.dist_dir
|
| 267 |
+
self.mkpath(spec_dir)
|
| 268 |
+
else:
|
| 269 |
+
rpm_dir = {}
|
| 270 |
+
for d in ('SOURCES', 'SPECS', 'BUILD', 'RPMS', 'SRPMS'):
|
| 271 |
+
rpm_dir[d] = os.path.join(self.rpm_base, d)
|
| 272 |
+
self.mkpath(rpm_dir[d])
|
| 273 |
+
spec_dir = rpm_dir['SPECS']
|
| 274 |
+
|
| 275 |
+
# Spec file goes into 'dist_dir' if '--spec-only specified',
|
| 276 |
+
# build/rpm.<plat> otherwise.
|
| 277 |
+
spec_path = os.path.join(spec_dir,
|
| 278 |
+
"%s.spec" % self.distribution.get_name())
|
| 279 |
+
self.execute(write_file,
|
| 280 |
+
(spec_path,
|
| 281 |
+
self._make_spec_file()),
|
| 282 |
+
"writing '%s'" % spec_path)
|
| 283 |
+
|
| 284 |
+
if self.spec_only: # stop if requested
|
| 285 |
+
return
|
| 286 |
+
|
| 287 |
+
# Make a source distribution and copy to SOURCES directory with
|
| 288 |
+
# optional icon.
|
| 289 |
+
saved_dist_files = self.distribution.dist_files[:]
|
| 290 |
+
sdist = self.reinitialize_command('sdist')
|
| 291 |
+
if self.use_bzip2:
|
| 292 |
+
sdist.formats = ['bztar']
|
| 293 |
+
else:
|
| 294 |
+
sdist.formats = ['gztar']
|
| 295 |
+
self.run_command('sdist')
|
| 296 |
+
self.distribution.dist_files = saved_dist_files
|
| 297 |
+
|
| 298 |
+
source = sdist.get_archive_files()[0]
|
| 299 |
+
source_dir = rpm_dir['SOURCES']
|
| 300 |
+
self.copy_file(source, source_dir)
|
| 301 |
+
|
| 302 |
+
if self.icon:
|
| 303 |
+
if os.path.exists(self.icon):
|
| 304 |
+
self.copy_file(self.icon, source_dir)
|
| 305 |
+
else:
|
| 306 |
+
raise DistutilsFileError(
|
| 307 |
+
"icon file '%s' does not exist" % self.icon)
|
| 308 |
+
|
| 309 |
+
# build package
|
| 310 |
+
log.info("building RPMs")
|
| 311 |
+
rpm_cmd = ['rpmbuild']
|
| 312 |
+
|
| 313 |
+
if self.source_only: # what kind of RPMs?
|
| 314 |
+
rpm_cmd.append('-bs')
|
| 315 |
+
elif self.binary_only:
|
| 316 |
+
rpm_cmd.append('-bb')
|
| 317 |
+
else:
|
| 318 |
+
rpm_cmd.append('-ba')
|
| 319 |
+
rpm_cmd.extend(['--define', '__python %s' % self.python])
|
| 320 |
+
if self.rpm3_mode:
|
| 321 |
+
rpm_cmd.extend(['--define',
|
| 322 |
+
'_topdir %s' % os.path.abspath(self.rpm_base)])
|
| 323 |
+
if not self.keep_temp:
|
| 324 |
+
rpm_cmd.append('--clean')
|
| 325 |
+
|
| 326 |
+
if self.quiet:
|
| 327 |
+
rpm_cmd.append('--quiet')
|
| 328 |
+
|
| 329 |
+
rpm_cmd.append(spec_path)
|
| 330 |
+
# Determine the binary rpm names that should be built out of this spec
|
| 331 |
+
# file
|
| 332 |
+
# Note that some of these may not be really built (if the file
|
| 333 |
+
# list is empty)
|
| 334 |
+
nvr_string = "%{name}-%{version}-%{release}"
|
| 335 |
+
src_rpm = nvr_string + ".src.rpm"
|
| 336 |
+
non_src_rpm = "%{arch}/" + nvr_string + ".%{arch}.rpm"
|
| 337 |
+
q_cmd = r"rpm -q --qf '%s %s\n' --specfile '%s'" % (
|
| 338 |
+
src_rpm, non_src_rpm, spec_path)
|
| 339 |
+
|
| 340 |
+
out = os.popen(q_cmd)
|
| 341 |
+
try:
|
| 342 |
+
binary_rpms = []
|
| 343 |
+
source_rpm = None
|
| 344 |
+
while True:
|
| 345 |
+
line = out.readline()
|
| 346 |
+
if not line:
|
| 347 |
+
break
|
| 348 |
+
l = line.strip().split()
|
| 349 |
+
assert(len(l) == 2)
|
| 350 |
+
binary_rpms.append(l[1])
|
| 351 |
+
# The source rpm is named after the first entry in the spec file
|
| 352 |
+
if source_rpm is None:
|
| 353 |
+
source_rpm = l[0]
|
| 354 |
+
|
| 355 |
+
status = out.close()
|
| 356 |
+
if status:
|
| 357 |
+
raise DistutilsExecError("Failed to execute: %s" % repr(q_cmd))
|
| 358 |
+
|
| 359 |
+
finally:
|
| 360 |
+
out.close()
|
| 361 |
+
|
| 362 |
+
self.spawn(rpm_cmd)
|
| 363 |
+
|
| 364 |
+
if not self.dry_run:
|
| 365 |
+
if self.distribution.has_ext_modules():
|
| 366 |
+
pyversion = get_python_version()
|
| 367 |
+
else:
|
| 368 |
+
pyversion = 'any'
|
| 369 |
+
|
| 370 |
+
if not self.binary_only:
|
| 371 |
+
srpm = os.path.join(rpm_dir['SRPMS'], source_rpm)
|
| 372 |
+
assert(os.path.exists(srpm))
|
| 373 |
+
self.move_file(srpm, self.dist_dir)
|
| 374 |
+
filename = os.path.join(self.dist_dir, source_rpm)
|
| 375 |
+
self.distribution.dist_files.append(
|
| 376 |
+
('bdist_rpm', pyversion, filename))
|
| 377 |
+
|
| 378 |
+
if not self.source_only:
|
| 379 |
+
for rpm in binary_rpms:
|
| 380 |
+
rpm = os.path.join(rpm_dir['RPMS'], rpm)
|
| 381 |
+
if os.path.exists(rpm):
|
| 382 |
+
self.move_file(rpm, self.dist_dir)
|
| 383 |
+
filename = os.path.join(self.dist_dir,
|
| 384 |
+
os.path.basename(rpm))
|
| 385 |
+
self.distribution.dist_files.append(
|
| 386 |
+
('bdist_rpm', pyversion, filename))
|
| 387 |
+
|
| 388 |
+
def _dist_path(self, path):
|
| 389 |
+
return os.path.join(self.dist_dir, os.path.basename(path))
|
| 390 |
+
|
| 391 |
+
def _make_spec_file(self):
|
| 392 |
+
"""Generate the text of an RPM spec file and return it as a
|
| 393 |
+
list of strings (one per line).
|
| 394 |
+
"""
|
| 395 |
+
# definitions and headers
|
| 396 |
+
spec_file = [
|
| 397 |
+
'%define name ' + self.distribution.get_name(),
|
| 398 |
+
'%define version ' + self.distribution.get_version().replace('-','_'),
|
| 399 |
+
'%define unmangled_version ' + self.distribution.get_version(),
|
| 400 |
+
'%define release ' + self.release.replace('-','_'),
|
| 401 |
+
'',
|
| 402 |
+
'Summary: ' + self.distribution.get_description(),
|
| 403 |
+
]
|
| 404 |
+
|
| 405 |
+
# Workaround for #14443 which affects some RPM based systems such as
|
| 406 |
+
# RHEL6 (and probably derivatives)
|
| 407 |
+
vendor_hook = subprocess.getoutput('rpm --eval %{__os_install_post}')
|
| 408 |
+
# Generate a potential replacement value for __os_install_post (whilst
|
| 409 |
+
# normalizing the whitespace to simplify the test for whether the
|
| 410 |
+
# invocation of brp-python-bytecompile passes in __python):
|
| 411 |
+
vendor_hook = '\n'.join([' %s \\' % line.strip()
|
| 412 |
+
for line in vendor_hook.splitlines()])
|
| 413 |
+
problem = "brp-python-bytecompile \\\n"
|
| 414 |
+
fixed = "brp-python-bytecompile %{__python} \\\n"
|
| 415 |
+
fixed_hook = vendor_hook.replace(problem, fixed)
|
| 416 |
+
if fixed_hook != vendor_hook:
|
| 417 |
+
spec_file.append('# Workaround for http://bugs.python.org/issue14443')
|
| 418 |
+
spec_file.append('%define __os_install_post ' + fixed_hook + '\n')
|
| 419 |
+
|
| 420 |
+
# put locale summaries into spec file
|
| 421 |
+
# XXX not supported for now (hard to put a dictionary
|
| 422 |
+
# in a config file -- arg!)
|
| 423 |
+
#for locale in self.summaries.keys():
|
| 424 |
+
# spec_file.append('Summary(%s): %s' % (locale,
|
| 425 |
+
# self.summaries[locale]))
|
| 426 |
+
|
| 427 |
+
spec_file.extend([
|
| 428 |
+
'Name: %{name}',
|
| 429 |
+
'Version: %{version}',
|
| 430 |
+
'Release: %{release}',])
|
| 431 |
+
|
| 432 |
+
# XXX yuck! this filename is available from the "sdist" command,
|
| 433 |
+
# but only after it has run: and we create the spec file before
|
| 434 |
+
# running "sdist", in case of --spec-only.
|
| 435 |
+
if self.use_bzip2:
|
| 436 |
+
spec_file.append('Source0: %{name}-%{unmangled_version}.tar.bz2')
|
| 437 |
+
else:
|
| 438 |
+
spec_file.append('Source0: %{name}-%{unmangled_version}.tar.gz')
|
| 439 |
+
|
| 440 |
+
spec_file.extend([
|
| 441 |
+
'License: ' + self.distribution.get_license(),
|
| 442 |
+
'Group: ' + self.group,
|
| 443 |
+
'BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot',
|
| 444 |
+
'Prefix: %{_prefix}', ])
|
| 445 |
+
|
| 446 |
+
if not self.force_arch:
|
| 447 |
+
# noarch if no extension modules
|
| 448 |
+
if not self.distribution.has_ext_modules():
|
| 449 |
+
spec_file.append('BuildArch: noarch')
|
| 450 |
+
else:
|
| 451 |
+
spec_file.append( 'BuildArch: %s' % self.force_arch )
|
| 452 |
+
|
| 453 |
+
for field in ('Vendor',
|
| 454 |
+
'Packager',
|
| 455 |
+
'Provides',
|
| 456 |
+
'Requires',
|
| 457 |
+
'Conflicts',
|
| 458 |
+
'Obsoletes',
|
| 459 |
+
):
|
| 460 |
+
val = getattr(self, field.lower())
|
| 461 |
+
if isinstance(val, list):
|
| 462 |
+
spec_file.append('%s: %s' % (field, ' '.join(val)))
|
| 463 |
+
elif val is not None:
|
| 464 |
+
spec_file.append('%s: %s' % (field, val))
|
| 465 |
+
|
| 466 |
+
|
| 467 |
+
if self.distribution.get_url() != 'UNKNOWN':
|
| 468 |
+
spec_file.append('Url: ' + self.distribution.get_url())
|
| 469 |
+
|
| 470 |
+
if self.distribution_name:
|
| 471 |
+
spec_file.append('Distribution: ' + self.distribution_name)
|
| 472 |
+
|
| 473 |
+
if self.build_requires:
|
| 474 |
+
spec_file.append('BuildRequires: ' +
|
| 475 |
+
' '.join(self.build_requires))
|
| 476 |
+
|
| 477 |
+
if self.icon:
|
| 478 |
+
spec_file.append('Icon: ' + os.path.basename(self.icon))
|
| 479 |
+
|
| 480 |
+
if self.no_autoreq:
|
| 481 |
+
spec_file.append('AutoReq: 0')
|
| 482 |
+
|
| 483 |
+
spec_file.extend([
|
| 484 |
+
'',
|
| 485 |
+
'%description',
|
| 486 |
+
self.distribution.get_long_description()
|
| 487 |
+
])
|
| 488 |
+
|
| 489 |
+
# put locale descriptions into spec file
|
| 490 |
+
# XXX again, suppressed because config file syntax doesn't
|
| 491 |
+
# easily support this ;-(
|
| 492 |
+
#for locale in self.descriptions.keys():
|
| 493 |
+
# spec_file.extend([
|
| 494 |
+
# '',
|
| 495 |
+
# '%description -l ' + locale,
|
| 496 |
+
# self.descriptions[locale],
|
| 497 |
+
# ])
|
| 498 |
+
|
| 499 |
+
# rpm scripts
|
| 500 |
+
# figure out default build script
|
| 501 |
+
def_setup_call = "%s %s" % (self.python,os.path.basename(sys.argv[0]))
|
| 502 |
+
def_build = "%s build" % def_setup_call
|
| 503 |
+
if self.use_rpm_opt_flags:
|
| 504 |
+
def_build = 'env CFLAGS="$RPM_OPT_FLAGS" ' + def_build
|
| 505 |
+
|
| 506 |
+
# insert contents of files
|
| 507 |
+
|
| 508 |
+
# XXX this is kind of misleading: user-supplied options are files
|
| 509 |
+
# that we open and interpolate into the spec file, but the defaults
|
| 510 |
+
# are just text that we drop in as-is. Hmmm.
|
| 511 |
+
|
| 512 |
+
install_cmd = ('%s install -O1 --root=$RPM_BUILD_ROOT '
|
| 513 |
+
'--record=INSTALLED_FILES') % def_setup_call
|
| 514 |
+
|
| 515 |
+
script_options = [
|
| 516 |
+
('prep', 'prep_script', "%setup -n %{name}-%{unmangled_version}"),
|
| 517 |
+
('build', 'build_script', def_build),
|
| 518 |
+
('install', 'install_script', install_cmd),
|
| 519 |
+
('clean', 'clean_script', "rm -rf $RPM_BUILD_ROOT"),
|
| 520 |
+
('verifyscript', 'verify_script', None),
|
| 521 |
+
('pre', 'pre_install', None),
|
| 522 |
+
('post', 'post_install', None),
|
| 523 |
+
('preun', 'pre_uninstall', None),
|
| 524 |
+
('postun', 'post_uninstall', None),
|
| 525 |
+
]
|
| 526 |
+
|
| 527 |
+
for (rpm_opt, attr, default) in script_options:
|
| 528 |
+
# Insert contents of file referred to, if no file is referred to
|
| 529 |
+
# use 'default' as contents of script
|
| 530 |
+
val = getattr(self, attr)
|
| 531 |
+
if val or default:
|
| 532 |
+
spec_file.extend([
|
| 533 |
+
'',
|
| 534 |
+
'%' + rpm_opt,])
|
| 535 |
+
if val:
|
| 536 |
+
with open(val) as f:
|
| 537 |
+
spec_file.extend(f.read().split('\n'))
|
| 538 |
+
else:
|
| 539 |
+
spec_file.append(default)
|
| 540 |
+
|
| 541 |
+
|
| 542 |
+
# files section
|
| 543 |
+
spec_file.extend([
|
| 544 |
+
'',
|
| 545 |
+
'%files -f INSTALLED_FILES',
|
| 546 |
+
'%defattr(-,root,root)',
|
| 547 |
+
])
|
| 548 |
+
|
| 549 |
+
if self.doc_files:
|
| 550 |
+
spec_file.append('%doc ' + ' '.join(self.doc_files))
|
| 551 |
+
|
| 552 |
+
if self.changelog:
|
| 553 |
+
spec_file.extend([
|
| 554 |
+
'',
|
| 555 |
+
'%changelog',])
|
| 556 |
+
spec_file.extend(self.changelog)
|
| 557 |
+
|
| 558 |
+
return spec_file
|
| 559 |
+
|
| 560 |
+
def _format_changelog(self, changelog):
|
| 561 |
+
"""Format the changelog correctly and convert it to a list of strings
|
| 562 |
+
"""
|
| 563 |
+
if not changelog:
|
| 564 |
+
return changelog
|
| 565 |
+
new_changelog = []
|
| 566 |
+
for line in changelog.strip().split('\n'):
|
| 567 |
+
line = line.strip()
|
| 568 |
+
if line[0] == '*':
|
| 569 |
+
new_changelog.extend(['', line])
|
| 570 |
+
elif line[0] == '-':
|
| 571 |
+
new_changelog.append(line)
|
| 572 |
+
else:
|
| 573 |
+
new_changelog.append(' ' + line)
|
| 574 |
+
|
| 575 |
+
# strip trailing newline inserted by first changelog entry
|
| 576 |
+
if not new_changelog[0]:
|
| 577 |
+
del new_changelog[0]
|
| 578 |
+
|
| 579 |
+
return new_changelog
|
vila/lib/python3.10/distutils/command/build_clib.py
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.build_clib
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'build_clib' command, to build a C/C++ library
|
| 4 |
+
that is included in the module distribution and needed by an extension
|
| 5 |
+
module."""
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
# XXX this module has *lots* of code ripped-off quite transparently from
|
| 9 |
+
# build_ext.py -- not surprisingly really, as the work required to build
|
| 10 |
+
# a static library from a collection of C source files is not really all
|
| 11 |
+
# that different from what's required to build a shared object file from
|
| 12 |
+
# a collection of C source files. Nevertheless, I haven't done the
|
| 13 |
+
# necessary refactoring to account for the overlap in code between the
|
| 14 |
+
# two modules, mainly because a number of subtle details changed in the
|
| 15 |
+
# cut 'n paste. Sigh.
|
| 16 |
+
|
| 17 |
+
import os
|
| 18 |
+
from distutils.core import Command
|
| 19 |
+
from distutils.errors import *
|
| 20 |
+
from distutils.sysconfig import customize_compiler
|
| 21 |
+
from distutils import log
|
| 22 |
+
|
| 23 |
+
def show_compilers():
|
| 24 |
+
from distutils.ccompiler import show_compilers
|
| 25 |
+
show_compilers()
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
class build_clib(Command):
|
| 29 |
+
|
| 30 |
+
description = "build C/C++ libraries used by Python extensions"
|
| 31 |
+
|
| 32 |
+
user_options = [
|
| 33 |
+
('build-clib=', 'b',
|
| 34 |
+
"directory to build C/C++ libraries to"),
|
| 35 |
+
('build-temp=', 't',
|
| 36 |
+
"directory to put temporary build by-products"),
|
| 37 |
+
('debug', 'g',
|
| 38 |
+
"compile with debugging information"),
|
| 39 |
+
('force', 'f',
|
| 40 |
+
"forcibly build everything (ignore file timestamps)"),
|
| 41 |
+
('compiler=', 'c',
|
| 42 |
+
"specify the compiler type"),
|
| 43 |
+
]
|
| 44 |
+
|
| 45 |
+
boolean_options = ['debug', 'force']
|
| 46 |
+
|
| 47 |
+
help_options = [
|
| 48 |
+
('help-compiler', None,
|
| 49 |
+
"list available compilers", show_compilers),
|
| 50 |
+
]
|
| 51 |
+
|
| 52 |
+
def initialize_options(self):
|
| 53 |
+
self.build_clib = None
|
| 54 |
+
self.build_temp = None
|
| 55 |
+
|
| 56 |
+
# List of libraries to build
|
| 57 |
+
self.libraries = None
|
| 58 |
+
|
| 59 |
+
# Compilation options for all libraries
|
| 60 |
+
self.include_dirs = None
|
| 61 |
+
self.define = None
|
| 62 |
+
self.undef = None
|
| 63 |
+
self.debug = None
|
| 64 |
+
self.force = 0
|
| 65 |
+
self.compiler = None
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
def finalize_options(self):
|
| 69 |
+
# This might be confusing: both build-clib and build-temp default
|
| 70 |
+
# to build-temp as defined by the "build" command. This is because
|
| 71 |
+
# I think that C libraries are really just temporary build
|
| 72 |
+
# by-products, at least from the point of view of building Python
|
| 73 |
+
# extensions -- but I want to keep my options open.
|
| 74 |
+
self.set_undefined_options('build',
|
| 75 |
+
('build_temp', 'build_clib'),
|
| 76 |
+
('build_temp', 'build_temp'),
|
| 77 |
+
('compiler', 'compiler'),
|
| 78 |
+
('debug', 'debug'),
|
| 79 |
+
('force', 'force'))
|
| 80 |
+
|
| 81 |
+
self.libraries = self.distribution.libraries
|
| 82 |
+
if self.libraries:
|
| 83 |
+
self.check_library_list(self.libraries)
|
| 84 |
+
|
| 85 |
+
if self.include_dirs is None:
|
| 86 |
+
self.include_dirs = self.distribution.include_dirs or []
|
| 87 |
+
if isinstance(self.include_dirs, str):
|
| 88 |
+
self.include_dirs = self.include_dirs.split(os.pathsep)
|
| 89 |
+
|
| 90 |
+
# XXX same as for build_ext -- what about 'self.define' and
|
| 91 |
+
# 'self.undef' ?
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
def run(self):
|
| 95 |
+
if not self.libraries:
|
| 96 |
+
return
|
| 97 |
+
|
| 98 |
+
# Yech -- this is cut 'n pasted from build_ext.py!
|
| 99 |
+
from distutils.ccompiler import new_compiler
|
| 100 |
+
self.compiler = new_compiler(compiler=self.compiler,
|
| 101 |
+
dry_run=self.dry_run,
|
| 102 |
+
force=self.force)
|
| 103 |
+
customize_compiler(self.compiler)
|
| 104 |
+
|
| 105 |
+
if self.include_dirs is not None:
|
| 106 |
+
self.compiler.set_include_dirs(self.include_dirs)
|
| 107 |
+
if self.define is not None:
|
| 108 |
+
# 'define' option is a list of (name,value) tuples
|
| 109 |
+
for (name,value) in self.define:
|
| 110 |
+
self.compiler.define_macro(name, value)
|
| 111 |
+
if self.undef is not None:
|
| 112 |
+
for macro in self.undef:
|
| 113 |
+
self.compiler.undefine_macro(macro)
|
| 114 |
+
|
| 115 |
+
self.build_libraries(self.libraries)
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
def check_library_list(self, libraries):
|
| 119 |
+
"""Ensure that the list of libraries is valid.
|
| 120 |
+
|
| 121 |
+
`library` is presumably provided as a command option 'libraries'.
|
| 122 |
+
This method checks that it is a list of 2-tuples, where the tuples
|
| 123 |
+
are (library_name, build_info_dict).
|
| 124 |
+
|
| 125 |
+
Raise DistutilsSetupError if the structure is invalid anywhere;
|
| 126 |
+
just returns otherwise.
|
| 127 |
+
"""
|
| 128 |
+
if not isinstance(libraries, list):
|
| 129 |
+
raise DistutilsSetupError(
|
| 130 |
+
"'libraries' option must be a list of tuples")
|
| 131 |
+
|
| 132 |
+
for lib in libraries:
|
| 133 |
+
if not isinstance(lib, tuple) and len(lib) != 2:
|
| 134 |
+
raise DistutilsSetupError(
|
| 135 |
+
"each element of 'libraries' must a 2-tuple")
|
| 136 |
+
|
| 137 |
+
name, build_info = lib
|
| 138 |
+
|
| 139 |
+
if not isinstance(name, str):
|
| 140 |
+
raise DistutilsSetupError(
|
| 141 |
+
"first element of each tuple in 'libraries' "
|
| 142 |
+
"must be a string (the library name)")
|
| 143 |
+
|
| 144 |
+
if '/' in name or (os.sep != '/' and os.sep in name):
|
| 145 |
+
raise DistutilsSetupError("bad library name '%s': "
|
| 146 |
+
"may not contain directory separators" % lib[0])
|
| 147 |
+
|
| 148 |
+
if not isinstance(build_info, dict):
|
| 149 |
+
raise DistutilsSetupError(
|
| 150 |
+
"second element of each tuple in 'libraries' "
|
| 151 |
+
"must be a dictionary (build info)")
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
def get_library_names(self):
|
| 155 |
+
# Assume the library list is valid -- 'check_library_list()' is
|
| 156 |
+
# called from 'finalize_options()', so it should be!
|
| 157 |
+
if not self.libraries:
|
| 158 |
+
return None
|
| 159 |
+
|
| 160 |
+
lib_names = []
|
| 161 |
+
for (lib_name, build_info) in self.libraries:
|
| 162 |
+
lib_names.append(lib_name)
|
| 163 |
+
return lib_names
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
def get_source_files(self):
|
| 167 |
+
self.check_library_list(self.libraries)
|
| 168 |
+
filenames = []
|
| 169 |
+
for (lib_name, build_info) in self.libraries:
|
| 170 |
+
sources = build_info.get('sources')
|
| 171 |
+
if sources is None or not isinstance(sources, (list, tuple)):
|
| 172 |
+
raise DistutilsSetupError(
|
| 173 |
+
"in 'libraries' option (library '%s'), "
|
| 174 |
+
"'sources' must be present and must be "
|
| 175 |
+
"a list of source filenames" % lib_name)
|
| 176 |
+
|
| 177 |
+
filenames.extend(sources)
|
| 178 |
+
return filenames
|
| 179 |
+
|
| 180 |
+
|
| 181 |
+
def build_libraries(self, libraries):
|
| 182 |
+
for (lib_name, build_info) in libraries:
|
| 183 |
+
sources = build_info.get('sources')
|
| 184 |
+
if sources is None or not isinstance(sources, (list, tuple)):
|
| 185 |
+
raise DistutilsSetupError(
|
| 186 |
+
"in 'libraries' option (library '%s'), "
|
| 187 |
+
"'sources' must be present and must be "
|
| 188 |
+
"a list of source filenames" % lib_name)
|
| 189 |
+
sources = list(sources)
|
| 190 |
+
|
| 191 |
+
log.info("building '%s' library", lib_name)
|
| 192 |
+
|
| 193 |
+
# First, compile the source code to object files in the library
|
| 194 |
+
# directory. (This should probably change to putting object
|
| 195 |
+
# files in a temporary build directory.)
|
| 196 |
+
macros = build_info.get('macros')
|
| 197 |
+
include_dirs = build_info.get('include_dirs')
|
| 198 |
+
objects = self.compiler.compile(sources,
|
| 199 |
+
output_dir=self.build_temp,
|
| 200 |
+
macros=macros,
|
| 201 |
+
include_dirs=include_dirs,
|
| 202 |
+
debug=self.debug)
|
| 203 |
+
|
| 204 |
+
# Now "link" the object files together into a static library.
|
| 205 |
+
# (On Unix at least, this isn't really linking -- it just
|
| 206 |
+
# builds an archive. Whatever.)
|
| 207 |
+
self.compiler.create_static_lib(objects, lib_name,
|
| 208 |
+
output_dir=self.build_clib,
|
| 209 |
+
debug=self.debug)
|
vila/lib/python3.10/distutils/command/build_ext.py
ADDED
|
@@ -0,0 +1,754 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.build_ext
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'build_ext' command, for building extension
|
| 4 |
+
modules (currently limited to C extensions, should accommodate C++
|
| 5 |
+
extensions ASAP)."""
|
| 6 |
+
|
| 7 |
+
import contextlib
|
| 8 |
+
import os
|
| 9 |
+
import re
|
| 10 |
+
import sys
|
| 11 |
+
from distutils.core import Command
|
| 12 |
+
from distutils.errors import *
|
| 13 |
+
from distutils.sysconfig import customize_compiler, get_python_version
|
| 14 |
+
from distutils.sysconfig import get_config_h_filename
|
| 15 |
+
from distutils.dep_util import newer_group
|
| 16 |
+
from distutils.extension import Extension
|
| 17 |
+
from distutils.util import get_platform
|
| 18 |
+
from distutils import log
|
| 19 |
+
|
| 20 |
+
from site import USER_BASE
|
| 21 |
+
|
| 22 |
+
# An extension name is just a dot-separated list of Python NAMEs (ie.
|
| 23 |
+
# the same as a fully-qualified module name).
|
| 24 |
+
extension_name_re = re.compile \
|
| 25 |
+
(r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$')
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def show_compilers ():
|
| 29 |
+
from distutils.ccompiler import show_compilers
|
| 30 |
+
show_compilers()
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
class build_ext(Command):
|
| 34 |
+
|
| 35 |
+
description = "build C/C++ extensions (compile/link to build directory)"
|
| 36 |
+
|
| 37 |
+
# XXX thoughts on how to deal with complex command-line options like
|
| 38 |
+
# these, i.e. how to make it so fancy_getopt can suck them off the
|
| 39 |
+
# command line and make it look like setup.py defined the appropriate
|
| 40 |
+
# lists of tuples of what-have-you.
|
| 41 |
+
# - each command needs a callback to process its command-line options
|
| 42 |
+
# - Command.__init__() needs access to its share of the whole
|
| 43 |
+
# command line (must ultimately come from
|
| 44 |
+
# Distribution.parse_command_line())
|
| 45 |
+
# - it then calls the current command class' option-parsing
|
| 46 |
+
# callback to deal with weird options like -D, which have to
|
| 47 |
+
# parse the option text and churn out some custom data
|
| 48 |
+
# structure
|
| 49 |
+
# - that data structure (in this case, a list of 2-tuples)
|
| 50 |
+
# will then be present in the command object by the time
|
| 51 |
+
# we get to finalize_options() (i.e. the constructor
|
| 52 |
+
# takes care of both command-line and client options
|
| 53 |
+
# in between initialize_options() and finalize_options())
|
| 54 |
+
|
| 55 |
+
sep_by = " (separated by '%s')" % os.pathsep
|
| 56 |
+
user_options = [
|
| 57 |
+
('build-lib=', 'b',
|
| 58 |
+
"directory for compiled extension modules"),
|
| 59 |
+
('build-temp=', 't',
|
| 60 |
+
"directory for temporary files (build by-products)"),
|
| 61 |
+
('plat-name=', 'p',
|
| 62 |
+
"platform name to cross-compile for, if supported "
|
| 63 |
+
"(default: %s)" % get_platform()),
|
| 64 |
+
('inplace', 'i',
|
| 65 |
+
"ignore build-lib and put compiled extensions into the source " +
|
| 66 |
+
"directory alongside your pure Python modules"),
|
| 67 |
+
('include-dirs=', 'I',
|
| 68 |
+
"list of directories to search for header files" + sep_by),
|
| 69 |
+
('define=', 'D',
|
| 70 |
+
"C preprocessor macros to define"),
|
| 71 |
+
('undef=', 'U',
|
| 72 |
+
"C preprocessor macros to undefine"),
|
| 73 |
+
('libraries=', 'l',
|
| 74 |
+
"external C libraries to link with"),
|
| 75 |
+
('library-dirs=', 'L',
|
| 76 |
+
"directories to search for external C libraries" + sep_by),
|
| 77 |
+
('rpath=', 'R',
|
| 78 |
+
"directories to search for shared C libraries at runtime"),
|
| 79 |
+
('link-objects=', 'O',
|
| 80 |
+
"extra explicit link objects to include in the link"),
|
| 81 |
+
('debug', 'g',
|
| 82 |
+
"compile/link with debugging information"),
|
| 83 |
+
('force', 'f',
|
| 84 |
+
"forcibly build everything (ignore file timestamps)"),
|
| 85 |
+
('compiler=', 'c',
|
| 86 |
+
"specify the compiler type"),
|
| 87 |
+
('parallel=', 'j',
|
| 88 |
+
"number of parallel build jobs"),
|
| 89 |
+
('swig-cpp', None,
|
| 90 |
+
"make SWIG create C++ files (default is C)"),
|
| 91 |
+
('swig-opts=', None,
|
| 92 |
+
"list of SWIG command line options"),
|
| 93 |
+
('swig=', None,
|
| 94 |
+
"path to the SWIG executable"),
|
| 95 |
+
('user', None,
|
| 96 |
+
"add user include, library and rpath")
|
| 97 |
+
]
|
| 98 |
+
|
| 99 |
+
boolean_options = ['inplace', 'debug', 'force', 'swig-cpp', 'user']
|
| 100 |
+
|
| 101 |
+
help_options = [
|
| 102 |
+
('help-compiler', None,
|
| 103 |
+
"list available compilers", show_compilers),
|
| 104 |
+
]
|
| 105 |
+
|
| 106 |
+
def initialize_options(self):
|
| 107 |
+
self.extensions = None
|
| 108 |
+
self.build_lib = None
|
| 109 |
+
self.plat_name = None
|
| 110 |
+
self.build_temp = None
|
| 111 |
+
self.inplace = 0
|
| 112 |
+
self.package = None
|
| 113 |
+
|
| 114 |
+
self.include_dirs = None
|
| 115 |
+
self.define = None
|
| 116 |
+
self.undef = None
|
| 117 |
+
self.libraries = None
|
| 118 |
+
self.library_dirs = None
|
| 119 |
+
self.rpath = None
|
| 120 |
+
self.link_objects = None
|
| 121 |
+
self.debug = None
|
| 122 |
+
self.force = None
|
| 123 |
+
self.compiler = None
|
| 124 |
+
self.swig = None
|
| 125 |
+
self.swig_cpp = None
|
| 126 |
+
self.swig_opts = None
|
| 127 |
+
self.user = None
|
| 128 |
+
self.parallel = None
|
| 129 |
+
|
| 130 |
+
def finalize_options(self):
|
| 131 |
+
from distutils import sysconfig
|
| 132 |
+
|
| 133 |
+
self.set_undefined_options('build',
|
| 134 |
+
('build_lib', 'build_lib'),
|
| 135 |
+
('build_temp', 'build_temp'),
|
| 136 |
+
('compiler', 'compiler'),
|
| 137 |
+
('debug', 'debug'),
|
| 138 |
+
('force', 'force'),
|
| 139 |
+
('parallel', 'parallel'),
|
| 140 |
+
('plat_name', 'plat_name'),
|
| 141 |
+
)
|
| 142 |
+
|
| 143 |
+
if self.package is None:
|
| 144 |
+
self.package = self.distribution.ext_package
|
| 145 |
+
|
| 146 |
+
self.extensions = self.distribution.ext_modules
|
| 147 |
+
|
| 148 |
+
# Make sure Python's include directories (for Python.h, pyconfig.h,
|
| 149 |
+
# etc.) are in the include search path.
|
| 150 |
+
py_include = sysconfig.get_python_inc()
|
| 151 |
+
plat_py_include = sysconfig.get_python_inc(plat_specific=1)
|
| 152 |
+
if self.include_dirs is None:
|
| 153 |
+
self.include_dirs = self.distribution.include_dirs or []
|
| 154 |
+
if isinstance(self.include_dirs, str):
|
| 155 |
+
self.include_dirs = self.include_dirs.split(os.pathsep)
|
| 156 |
+
|
| 157 |
+
# If in a virtualenv, add its include directory
|
| 158 |
+
# Issue 16116
|
| 159 |
+
if sys.exec_prefix != sys.base_exec_prefix:
|
| 160 |
+
self.include_dirs.append(os.path.join(sys.exec_prefix, 'include'))
|
| 161 |
+
|
| 162 |
+
# Put the Python "system" include dir at the end, so that
|
| 163 |
+
# any local include dirs take precedence.
|
| 164 |
+
self.include_dirs.extend(py_include.split(os.path.pathsep))
|
| 165 |
+
if plat_py_include != py_include:
|
| 166 |
+
self.include_dirs.extend(
|
| 167 |
+
plat_py_include.split(os.path.pathsep))
|
| 168 |
+
|
| 169 |
+
self.ensure_string_list('libraries')
|
| 170 |
+
self.ensure_string_list('link_objects')
|
| 171 |
+
|
| 172 |
+
# Life is easier if we're not forever checking for None, so
|
| 173 |
+
# simplify these options to empty lists if unset
|
| 174 |
+
if self.libraries is None:
|
| 175 |
+
self.libraries = []
|
| 176 |
+
if self.library_dirs is None:
|
| 177 |
+
self.library_dirs = []
|
| 178 |
+
elif isinstance(self.library_dirs, str):
|
| 179 |
+
self.library_dirs = self.library_dirs.split(os.pathsep)
|
| 180 |
+
|
| 181 |
+
if self.rpath is None:
|
| 182 |
+
self.rpath = []
|
| 183 |
+
elif isinstance(self.rpath, str):
|
| 184 |
+
self.rpath = self.rpath.split(os.pathsep)
|
| 185 |
+
|
| 186 |
+
# for extensions under windows use different directories
|
| 187 |
+
# for Release and Debug builds.
|
| 188 |
+
# also Python's library directory must be appended to library_dirs
|
| 189 |
+
if os.name == 'nt':
|
| 190 |
+
# the 'libs' directory is for binary installs - we assume that
|
| 191 |
+
# must be the *native* platform. But we don't really support
|
| 192 |
+
# cross-compiling via a binary install anyway, so we let it go.
|
| 193 |
+
self.library_dirs.append(os.path.join(sys.exec_prefix, 'libs'))
|
| 194 |
+
if sys.base_exec_prefix != sys.prefix: # Issue 16116
|
| 195 |
+
self.library_dirs.append(os.path.join(sys.base_exec_prefix, 'libs'))
|
| 196 |
+
if self.debug:
|
| 197 |
+
self.build_temp = os.path.join(self.build_temp, "Debug")
|
| 198 |
+
else:
|
| 199 |
+
self.build_temp = os.path.join(self.build_temp, "Release")
|
| 200 |
+
|
| 201 |
+
# Append the source distribution include and library directories,
|
| 202 |
+
# this allows distutils on windows to work in the source tree
|
| 203 |
+
self.include_dirs.append(os.path.dirname(get_config_h_filename()))
|
| 204 |
+
_sys_home = getattr(sys, '_home', None)
|
| 205 |
+
if _sys_home:
|
| 206 |
+
self.library_dirs.append(_sys_home)
|
| 207 |
+
|
| 208 |
+
# Use the .lib files for the correct architecture
|
| 209 |
+
if self.plat_name == 'win32':
|
| 210 |
+
suffix = 'win32'
|
| 211 |
+
else:
|
| 212 |
+
# win-amd64
|
| 213 |
+
suffix = self.plat_name[4:]
|
| 214 |
+
new_lib = os.path.join(sys.exec_prefix, 'PCbuild')
|
| 215 |
+
if suffix:
|
| 216 |
+
new_lib = os.path.join(new_lib, suffix)
|
| 217 |
+
self.library_dirs.append(new_lib)
|
| 218 |
+
|
| 219 |
+
# For extensions under Cygwin, Python's library directory must be
|
| 220 |
+
# appended to library_dirs
|
| 221 |
+
if sys.platform[:6] == 'cygwin':
|
| 222 |
+
if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
|
| 223 |
+
# building third party extensions
|
| 224 |
+
self.library_dirs.append(os.path.join(sys.prefix, "lib",
|
| 225 |
+
"python" + get_python_version(),
|
| 226 |
+
"config"))
|
| 227 |
+
else:
|
| 228 |
+
# building python standard extensions
|
| 229 |
+
self.library_dirs.append('.')
|
| 230 |
+
|
| 231 |
+
# For building extensions with a shared Python library,
|
| 232 |
+
# Python's library directory must be appended to library_dirs
|
| 233 |
+
# See Issues: #1600860, #4366
|
| 234 |
+
if (sysconfig.get_config_var('Py_ENABLE_SHARED')):
|
| 235 |
+
if not sysconfig.python_build:
|
| 236 |
+
# building third party extensions
|
| 237 |
+
self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
|
| 238 |
+
else:
|
| 239 |
+
# building python standard extensions
|
| 240 |
+
self.library_dirs.append('.')
|
| 241 |
+
|
| 242 |
+
# The argument parsing will result in self.define being a string, but
|
| 243 |
+
# it has to be a list of 2-tuples. All the preprocessor symbols
|
| 244 |
+
# specified by the 'define' option will be set to '1'. Multiple
|
| 245 |
+
# symbols can be separated with commas.
|
| 246 |
+
|
| 247 |
+
if self.define:
|
| 248 |
+
defines = self.define.split(',')
|
| 249 |
+
self.define = [(symbol, '1') for symbol in defines]
|
| 250 |
+
|
| 251 |
+
# The option for macros to undefine is also a string from the
|
| 252 |
+
# option parsing, but has to be a list. Multiple symbols can also
|
| 253 |
+
# be separated with commas here.
|
| 254 |
+
if self.undef:
|
| 255 |
+
self.undef = self.undef.split(',')
|
| 256 |
+
|
| 257 |
+
if self.swig_opts is None:
|
| 258 |
+
self.swig_opts = []
|
| 259 |
+
else:
|
| 260 |
+
self.swig_opts = self.swig_opts.split(' ')
|
| 261 |
+
|
| 262 |
+
# Finally add the user include and library directories if requested
|
| 263 |
+
if self.user:
|
| 264 |
+
user_include = os.path.join(USER_BASE, "include")
|
| 265 |
+
user_lib = os.path.join(USER_BASE, "lib")
|
| 266 |
+
if os.path.isdir(user_include):
|
| 267 |
+
self.include_dirs.append(user_include)
|
| 268 |
+
if os.path.isdir(user_lib):
|
| 269 |
+
self.library_dirs.append(user_lib)
|
| 270 |
+
self.rpath.append(user_lib)
|
| 271 |
+
|
| 272 |
+
if isinstance(self.parallel, str):
|
| 273 |
+
try:
|
| 274 |
+
self.parallel = int(self.parallel)
|
| 275 |
+
except ValueError:
|
| 276 |
+
raise DistutilsOptionError("parallel should be an integer")
|
| 277 |
+
|
| 278 |
+
def run(self):
|
| 279 |
+
from distutils.ccompiler import new_compiler
|
| 280 |
+
|
| 281 |
+
# 'self.extensions', as supplied by setup.py, is a list of
|
| 282 |
+
# Extension instances. See the documentation for Extension (in
|
| 283 |
+
# distutils.extension) for details.
|
| 284 |
+
#
|
| 285 |
+
# For backwards compatibility with Distutils 0.8.2 and earlier, we
|
| 286 |
+
# also allow the 'extensions' list to be a list of tuples:
|
| 287 |
+
# (ext_name, build_info)
|
| 288 |
+
# where build_info is a dictionary containing everything that
|
| 289 |
+
# Extension instances do except the name, with a few things being
|
| 290 |
+
# differently named. We convert these 2-tuples to Extension
|
| 291 |
+
# instances as needed.
|
| 292 |
+
|
| 293 |
+
if not self.extensions:
|
| 294 |
+
return
|
| 295 |
+
|
| 296 |
+
# If we were asked to build any C/C++ libraries, make sure that the
|
| 297 |
+
# directory where we put them is in the library search path for
|
| 298 |
+
# linking extensions.
|
| 299 |
+
if self.distribution.has_c_libraries():
|
| 300 |
+
build_clib = self.get_finalized_command('build_clib')
|
| 301 |
+
self.libraries.extend(build_clib.get_library_names() or [])
|
| 302 |
+
self.library_dirs.append(build_clib.build_clib)
|
| 303 |
+
|
| 304 |
+
# Setup the CCompiler object that we'll use to do all the
|
| 305 |
+
# compiling and linking
|
| 306 |
+
self.compiler = new_compiler(compiler=self.compiler,
|
| 307 |
+
verbose=self.verbose,
|
| 308 |
+
dry_run=self.dry_run,
|
| 309 |
+
force=self.force)
|
| 310 |
+
customize_compiler(self.compiler)
|
| 311 |
+
# If we are cross-compiling, init the compiler now (if we are not
|
| 312 |
+
# cross-compiling, init would not hurt, but people may rely on
|
| 313 |
+
# late initialization of compiler even if they shouldn't...)
|
| 314 |
+
if os.name == 'nt' and self.plat_name != get_platform():
|
| 315 |
+
self.compiler.initialize(self.plat_name)
|
| 316 |
+
|
| 317 |
+
# And make sure that any compile/link-related options (which might
|
| 318 |
+
# come from the command-line or from the setup script) are set in
|
| 319 |
+
# that CCompiler object -- that way, they automatically apply to
|
| 320 |
+
# all compiling and linking done here.
|
| 321 |
+
if self.include_dirs is not None:
|
| 322 |
+
self.compiler.set_include_dirs(self.include_dirs)
|
| 323 |
+
if self.define is not None:
|
| 324 |
+
# 'define' option is a list of (name,value) tuples
|
| 325 |
+
for (name, value) in self.define:
|
| 326 |
+
self.compiler.define_macro(name, value)
|
| 327 |
+
if self.undef is not None:
|
| 328 |
+
for macro in self.undef:
|
| 329 |
+
self.compiler.undefine_macro(macro)
|
| 330 |
+
if self.libraries is not None:
|
| 331 |
+
self.compiler.set_libraries(self.libraries)
|
| 332 |
+
if self.library_dirs is not None:
|
| 333 |
+
self.compiler.set_library_dirs(self.library_dirs)
|
| 334 |
+
if self.rpath is not None:
|
| 335 |
+
self.compiler.set_runtime_library_dirs(self.rpath)
|
| 336 |
+
if self.link_objects is not None:
|
| 337 |
+
self.compiler.set_link_objects(self.link_objects)
|
| 338 |
+
|
| 339 |
+
# Now actually compile and link everything.
|
| 340 |
+
self.build_extensions()
|
| 341 |
+
|
| 342 |
+
def check_extensions_list(self, extensions):
|
| 343 |
+
"""Ensure that the list of extensions (presumably provided as a
|
| 344 |
+
command option 'extensions') is valid, i.e. it is a list of
|
| 345 |
+
Extension objects. We also support the old-style list of 2-tuples,
|
| 346 |
+
where the tuples are (ext_name, build_info), which are converted to
|
| 347 |
+
Extension instances here.
|
| 348 |
+
|
| 349 |
+
Raise DistutilsSetupError if the structure is invalid anywhere;
|
| 350 |
+
just returns otherwise.
|
| 351 |
+
"""
|
| 352 |
+
if not isinstance(extensions, list):
|
| 353 |
+
raise DistutilsSetupError(
|
| 354 |
+
"'ext_modules' option must be a list of Extension instances")
|
| 355 |
+
|
| 356 |
+
for i, ext in enumerate(extensions):
|
| 357 |
+
if isinstance(ext, Extension):
|
| 358 |
+
continue # OK! (assume type-checking done
|
| 359 |
+
# by Extension constructor)
|
| 360 |
+
|
| 361 |
+
if not isinstance(ext, tuple) or len(ext) != 2:
|
| 362 |
+
raise DistutilsSetupError(
|
| 363 |
+
"each element of 'ext_modules' option must be an "
|
| 364 |
+
"Extension instance or 2-tuple")
|
| 365 |
+
|
| 366 |
+
ext_name, build_info = ext
|
| 367 |
+
|
| 368 |
+
log.warn("old-style (ext_name, build_info) tuple found in "
|
| 369 |
+
"ext_modules for extension '%s' "
|
| 370 |
+
"-- please convert to Extension instance", ext_name)
|
| 371 |
+
|
| 372 |
+
if not (isinstance(ext_name, str) and
|
| 373 |
+
extension_name_re.match(ext_name)):
|
| 374 |
+
raise DistutilsSetupError(
|
| 375 |
+
"first element of each tuple in 'ext_modules' "
|
| 376 |
+
"must be the extension name (a string)")
|
| 377 |
+
|
| 378 |
+
if not isinstance(build_info, dict):
|
| 379 |
+
raise DistutilsSetupError(
|
| 380 |
+
"second element of each tuple in 'ext_modules' "
|
| 381 |
+
"must be a dictionary (build info)")
|
| 382 |
+
|
| 383 |
+
# OK, the (ext_name, build_info) dict is type-safe: convert it
|
| 384 |
+
# to an Extension instance.
|
| 385 |
+
ext = Extension(ext_name, build_info['sources'])
|
| 386 |
+
|
| 387 |
+
# Easy stuff: one-to-one mapping from dict elements to
|
| 388 |
+
# instance attributes.
|
| 389 |
+
for key in ('include_dirs', 'library_dirs', 'libraries',
|
| 390 |
+
'extra_objects', 'extra_compile_args',
|
| 391 |
+
'extra_link_args'):
|
| 392 |
+
val = build_info.get(key)
|
| 393 |
+
if val is not None:
|
| 394 |
+
setattr(ext, key, val)
|
| 395 |
+
|
| 396 |
+
# Medium-easy stuff: same syntax/semantics, different names.
|
| 397 |
+
ext.runtime_library_dirs = build_info.get('rpath')
|
| 398 |
+
if 'def_file' in build_info:
|
| 399 |
+
log.warn("'def_file' element of build info dict "
|
| 400 |
+
"no longer supported")
|
| 401 |
+
|
| 402 |
+
# Non-trivial stuff: 'macros' split into 'define_macros'
|
| 403 |
+
# and 'undef_macros'.
|
| 404 |
+
macros = build_info.get('macros')
|
| 405 |
+
if macros:
|
| 406 |
+
ext.define_macros = []
|
| 407 |
+
ext.undef_macros = []
|
| 408 |
+
for macro in macros:
|
| 409 |
+
if not (isinstance(macro, tuple) and len(macro) in (1, 2)):
|
| 410 |
+
raise DistutilsSetupError(
|
| 411 |
+
"'macros' element of build info dict "
|
| 412 |
+
"must be 1- or 2-tuple")
|
| 413 |
+
if len(macro) == 1:
|
| 414 |
+
ext.undef_macros.append(macro[0])
|
| 415 |
+
elif len(macro) == 2:
|
| 416 |
+
ext.define_macros.append(macro)
|
| 417 |
+
|
| 418 |
+
extensions[i] = ext
|
| 419 |
+
|
| 420 |
+
def get_source_files(self):
|
| 421 |
+
self.check_extensions_list(self.extensions)
|
| 422 |
+
filenames = []
|
| 423 |
+
|
| 424 |
+
# Wouldn't it be neat if we knew the names of header files too...
|
| 425 |
+
for ext in self.extensions:
|
| 426 |
+
filenames.extend(ext.sources)
|
| 427 |
+
return filenames
|
| 428 |
+
|
| 429 |
+
def get_outputs(self):
|
| 430 |
+
# Sanity check the 'extensions' list -- can't assume this is being
|
| 431 |
+
# done in the same run as a 'build_extensions()' call (in fact, we
|
| 432 |
+
# can probably assume that it *isn't*!).
|
| 433 |
+
self.check_extensions_list(self.extensions)
|
| 434 |
+
|
| 435 |
+
# And build the list of output (built) filenames. Note that this
|
| 436 |
+
# ignores the 'inplace' flag, and assumes everything goes in the
|
| 437 |
+
# "build" tree.
|
| 438 |
+
outputs = []
|
| 439 |
+
for ext in self.extensions:
|
| 440 |
+
outputs.append(self.get_ext_fullpath(ext.name))
|
| 441 |
+
return outputs
|
| 442 |
+
|
| 443 |
+
def build_extensions(self):
|
| 444 |
+
# First, sanity-check the 'extensions' list
|
| 445 |
+
self.check_extensions_list(self.extensions)
|
| 446 |
+
if self.parallel:
|
| 447 |
+
self._build_extensions_parallel()
|
| 448 |
+
else:
|
| 449 |
+
self._build_extensions_serial()
|
| 450 |
+
|
| 451 |
+
def _build_extensions_parallel(self):
|
| 452 |
+
workers = self.parallel
|
| 453 |
+
if self.parallel is True:
|
| 454 |
+
workers = os.cpu_count() # may return None
|
| 455 |
+
try:
|
| 456 |
+
from concurrent.futures import ThreadPoolExecutor
|
| 457 |
+
except ImportError:
|
| 458 |
+
workers = None
|
| 459 |
+
|
| 460 |
+
if workers is None:
|
| 461 |
+
self._build_extensions_serial()
|
| 462 |
+
return
|
| 463 |
+
|
| 464 |
+
with ThreadPoolExecutor(max_workers=workers) as executor:
|
| 465 |
+
futures = [executor.submit(self.build_extension, ext)
|
| 466 |
+
for ext in self.extensions]
|
| 467 |
+
for ext, fut in zip(self.extensions, futures):
|
| 468 |
+
with self._filter_build_errors(ext):
|
| 469 |
+
fut.result()
|
| 470 |
+
|
| 471 |
+
def _build_extensions_serial(self):
|
| 472 |
+
for ext in self.extensions:
|
| 473 |
+
with self._filter_build_errors(ext):
|
| 474 |
+
self.build_extension(ext)
|
| 475 |
+
|
| 476 |
+
@contextlib.contextmanager
|
| 477 |
+
def _filter_build_errors(self, ext):
|
| 478 |
+
try:
|
| 479 |
+
yield
|
| 480 |
+
except (CCompilerError, DistutilsError, CompileError) as e:
|
| 481 |
+
if not ext.optional:
|
| 482 |
+
raise
|
| 483 |
+
self.warn('building extension "%s" failed: %s' %
|
| 484 |
+
(ext.name, e))
|
| 485 |
+
|
| 486 |
+
def build_extension(self, ext):
|
| 487 |
+
sources = ext.sources
|
| 488 |
+
if sources is None or not isinstance(sources, (list, tuple)):
|
| 489 |
+
raise DistutilsSetupError(
|
| 490 |
+
"in 'ext_modules' option (extension '%s'), "
|
| 491 |
+
"'sources' must be present and must be "
|
| 492 |
+
"a list of source filenames" % ext.name)
|
| 493 |
+
# sort to make the resulting .so file build reproducible
|
| 494 |
+
sources = sorted(sources)
|
| 495 |
+
|
| 496 |
+
ext_path = self.get_ext_fullpath(ext.name)
|
| 497 |
+
depends = sources + ext.depends
|
| 498 |
+
if not (self.force or newer_group(depends, ext_path, 'newer')):
|
| 499 |
+
log.debug("skipping '%s' extension (up-to-date)", ext.name)
|
| 500 |
+
return
|
| 501 |
+
else:
|
| 502 |
+
log.info("building '%s' extension", ext.name)
|
| 503 |
+
|
| 504 |
+
# First, scan the sources for SWIG definition files (.i), run
|
| 505 |
+
# SWIG on 'em to create .c files, and modify the sources list
|
| 506 |
+
# accordingly.
|
| 507 |
+
sources = self.swig_sources(sources, ext)
|
| 508 |
+
|
| 509 |
+
# Next, compile the source code to object files.
|
| 510 |
+
|
| 511 |
+
# XXX not honouring 'define_macros' or 'undef_macros' -- the
|
| 512 |
+
# CCompiler API needs to change to accommodate this, and I
|
| 513 |
+
# want to do one thing at a time!
|
| 514 |
+
|
| 515 |
+
# Two possible sources for extra compiler arguments:
|
| 516 |
+
# - 'extra_compile_args' in Extension object
|
| 517 |
+
# - CFLAGS environment variable (not particularly
|
| 518 |
+
# elegant, but people seem to expect it and I
|
| 519 |
+
# guess it's useful)
|
| 520 |
+
# The environment variable should take precedence, and
|
| 521 |
+
# any sensible compiler will give precedence to later
|
| 522 |
+
# command line args. Hence we combine them in order:
|
| 523 |
+
extra_args = ext.extra_compile_args or []
|
| 524 |
+
|
| 525 |
+
macros = ext.define_macros[:]
|
| 526 |
+
for undef in ext.undef_macros:
|
| 527 |
+
macros.append((undef,))
|
| 528 |
+
|
| 529 |
+
objects = self.compiler.compile(sources,
|
| 530 |
+
output_dir=self.build_temp,
|
| 531 |
+
macros=macros,
|
| 532 |
+
include_dirs=ext.include_dirs,
|
| 533 |
+
debug=self.debug,
|
| 534 |
+
extra_postargs=extra_args,
|
| 535 |
+
depends=ext.depends)
|
| 536 |
+
|
| 537 |
+
# XXX outdated variable, kept here in case third-part code
|
| 538 |
+
# needs it.
|
| 539 |
+
self._built_objects = objects[:]
|
| 540 |
+
|
| 541 |
+
# Now link the object files together into a "shared object" --
|
| 542 |
+
# of course, first we have to figure out all the other things
|
| 543 |
+
# that go into the mix.
|
| 544 |
+
if ext.extra_objects:
|
| 545 |
+
objects.extend(ext.extra_objects)
|
| 546 |
+
extra_args = ext.extra_link_args or []
|
| 547 |
+
|
| 548 |
+
# Detect target language, if not provided
|
| 549 |
+
language = ext.language or self.compiler.detect_language(sources)
|
| 550 |
+
|
| 551 |
+
self.compiler.link_shared_object(
|
| 552 |
+
objects, ext_path,
|
| 553 |
+
libraries=self.get_libraries(ext),
|
| 554 |
+
library_dirs=ext.library_dirs,
|
| 555 |
+
runtime_library_dirs=ext.runtime_library_dirs,
|
| 556 |
+
extra_postargs=extra_args,
|
| 557 |
+
export_symbols=self.get_export_symbols(ext),
|
| 558 |
+
debug=self.debug,
|
| 559 |
+
build_temp=self.build_temp,
|
| 560 |
+
target_lang=language)
|
| 561 |
+
|
| 562 |
+
def swig_sources(self, sources, extension):
|
| 563 |
+
"""Walk the list of source files in 'sources', looking for SWIG
|
| 564 |
+
interface (.i) files. Run SWIG on all that are found, and
|
| 565 |
+
return a modified 'sources' list with SWIG source files replaced
|
| 566 |
+
by the generated C (or C++) files.
|
| 567 |
+
"""
|
| 568 |
+
new_sources = []
|
| 569 |
+
swig_sources = []
|
| 570 |
+
swig_targets = {}
|
| 571 |
+
|
| 572 |
+
# XXX this drops generated C/C++ files into the source tree, which
|
| 573 |
+
# is fine for developers who want to distribute the generated
|
| 574 |
+
# source -- but there should be an option to put SWIG output in
|
| 575 |
+
# the temp dir.
|
| 576 |
+
|
| 577 |
+
if self.swig_cpp:
|
| 578 |
+
log.warn("--swig-cpp is deprecated - use --swig-opts=-c++")
|
| 579 |
+
|
| 580 |
+
if self.swig_cpp or ('-c++' in self.swig_opts) or \
|
| 581 |
+
('-c++' in extension.swig_opts):
|
| 582 |
+
target_ext = '.cpp'
|
| 583 |
+
else:
|
| 584 |
+
target_ext = '.c'
|
| 585 |
+
|
| 586 |
+
for source in sources:
|
| 587 |
+
(base, ext) = os.path.splitext(source)
|
| 588 |
+
if ext == ".i": # SWIG interface file
|
| 589 |
+
new_sources.append(base + '_wrap' + target_ext)
|
| 590 |
+
swig_sources.append(source)
|
| 591 |
+
swig_targets[source] = new_sources[-1]
|
| 592 |
+
else:
|
| 593 |
+
new_sources.append(source)
|
| 594 |
+
|
| 595 |
+
if not swig_sources:
|
| 596 |
+
return new_sources
|
| 597 |
+
|
| 598 |
+
swig = self.swig or self.find_swig()
|
| 599 |
+
swig_cmd = [swig, "-python"]
|
| 600 |
+
swig_cmd.extend(self.swig_opts)
|
| 601 |
+
if self.swig_cpp:
|
| 602 |
+
swig_cmd.append("-c++")
|
| 603 |
+
|
| 604 |
+
# Do not override commandline arguments
|
| 605 |
+
if not self.swig_opts:
|
| 606 |
+
for o in extension.swig_opts:
|
| 607 |
+
swig_cmd.append(o)
|
| 608 |
+
|
| 609 |
+
for source in swig_sources:
|
| 610 |
+
target = swig_targets[source]
|
| 611 |
+
log.info("swigging %s to %s", source, target)
|
| 612 |
+
self.spawn(swig_cmd + ["-o", target, source])
|
| 613 |
+
|
| 614 |
+
return new_sources
|
| 615 |
+
|
| 616 |
+
def find_swig(self):
|
| 617 |
+
"""Return the name of the SWIG executable. On Unix, this is
|
| 618 |
+
just "swig" -- it should be in the PATH. Tries a bit harder on
|
| 619 |
+
Windows.
|
| 620 |
+
"""
|
| 621 |
+
if os.name == "posix":
|
| 622 |
+
return "swig"
|
| 623 |
+
elif os.name == "nt":
|
| 624 |
+
# Look for SWIG in its standard installation directory on
|
| 625 |
+
# Windows (or so I presume!). If we find it there, great;
|
| 626 |
+
# if not, act like Unix and assume it's in the PATH.
|
| 627 |
+
for vers in ("1.3", "1.2", "1.1"):
|
| 628 |
+
fn = os.path.join("c:\\swig%s" % vers, "swig.exe")
|
| 629 |
+
if os.path.isfile(fn):
|
| 630 |
+
return fn
|
| 631 |
+
else:
|
| 632 |
+
return "swig.exe"
|
| 633 |
+
else:
|
| 634 |
+
raise DistutilsPlatformError(
|
| 635 |
+
"I don't know how to find (much less run) SWIG "
|
| 636 |
+
"on platform '%s'" % os.name)
|
| 637 |
+
|
| 638 |
+
# -- Name generators -----------------------------------------------
|
| 639 |
+
# (extension names, filenames, whatever)
|
| 640 |
+
def get_ext_fullpath(self, ext_name):
|
| 641 |
+
"""Returns the path of the filename for a given extension.
|
| 642 |
+
|
| 643 |
+
The file is located in `build_lib` or directly in the package
|
| 644 |
+
(inplace option).
|
| 645 |
+
"""
|
| 646 |
+
fullname = self.get_ext_fullname(ext_name)
|
| 647 |
+
modpath = fullname.split('.')
|
| 648 |
+
filename = self.get_ext_filename(modpath[-1])
|
| 649 |
+
|
| 650 |
+
if not self.inplace:
|
| 651 |
+
# no further work needed
|
| 652 |
+
# returning :
|
| 653 |
+
# build_dir/package/path/filename
|
| 654 |
+
filename = os.path.join(*modpath[:-1]+[filename])
|
| 655 |
+
return os.path.join(self.build_lib, filename)
|
| 656 |
+
|
| 657 |
+
# the inplace option requires to find the package directory
|
| 658 |
+
# using the build_py command for that
|
| 659 |
+
package = '.'.join(modpath[0:-1])
|
| 660 |
+
build_py = self.get_finalized_command('build_py')
|
| 661 |
+
package_dir = os.path.abspath(build_py.get_package_dir(package))
|
| 662 |
+
|
| 663 |
+
# returning
|
| 664 |
+
# package_dir/filename
|
| 665 |
+
return os.path.join(package_dir, filename)
|
| 666 |
+
|
| 667 |
+
def get_ext_fullname(self, ext_name):
|
| 668 |
+
"""Returns the fullname of a given extension name.
|
| 669 |
+
|
| 670 |
+
Adds the `package.` prefix"""
|
| 671 |
+
if self.package is None:
|
| 672 |
+
return ext_name
|
| 673 |
+
else:
|
| 674 |
+
return self.package + '.' + ext_name
|
| 675 |
+
|
| 676 |
+
def get_ext_filename(self, ext_name):
|
| 677 |
+
r"""Convert the name of an extension (eg. "foo.bar") into the name
|
| 678 |
+
of the file from which it will be loaded (eg. "foo/bar.so", or
|
| 679 |
+
"foo\bar.pyd").
|
| 680 |
+
"""
|
| 681 |
+
from distutils.sysconfig import get_config_var
|
| 682 |
+
ext_path = ext_name.split('.')
|
| 683 |
+
ext_suffix = get_config_var('EXT_SUFFIX')
|
| 684 |
+
return os.path.join(*ext_path) + ext_suffix
|
| 685 |
+
|
| 686 |
+
def get_export_symbols(self, ext):
|
| 687 |
+
"""Return the list of symbols that a shared extension has to
|
| 688 |
+
export. This either uses 'ext.export_symbols' or, if it's not
|
| 689 |
+
provided, "PyInit_" + module_name. Only relevant on Windows, where
|
| 690 |
+
the .pyd file (DLL) must export the module "PyInit_" function.
|
| 691 |
+
"""
|
| 692 |
+
suffix = '_' + ext.name.split('.')[-1]
|
| 693 |
+
try:
|
| 694 |
+
# Unicode module name support as defined in PEP-489
|
| 695 |
+
# https://www.python.org/dev/peps/pep-0489/#export-hook-name
|
| 696 |
+
suffix.encode('ascii')
|
| 697 |
+
except UnicodeEncodeError:
|
| 698 |
+
suffix = 'U' + suffix.encode('punycode').replace(b'-', b'_').decode('ascii')
|
| 699 |
+
|
| 700 |
+
initfunc_name = "PyInit" + suffix
|
| 701 |
+
if initfunc_name not in ext.export_symbols:
|
| 702 |
+
ext.export_symbols.append(initfunc_name)
|
| 703 |
+
return ext.export_symbols
|
| 704 |
+
|
| 705 |
+
def get_libraries(self, ext):
|
| 706 |
+
"""Return the list of libraries to link against when building a
|
| 707 |
+
shared extension. On most platforms, this is just 'ext.libraries';
|
| 708 |
+
on Windows, we add the Python library (eg. python20.dll).
|
| 709 |
+
"""
|
| 710 |
+
# The python library is always needed on Windows. For MSVC, this
|
| 711 |
+
# is redundant, since the library is mentioned in a pragma in
|
| 712 |
+
# pyconfig.h that MSVC groks. The other Windows compilers all seem
|
| 713 |
+
# to need it mentioned explicitly, though, so that's what we do.
|
| 714 |
+
# Append '_d' to the python import library on debug builds.
|
| 715 |
+
if sys.platform == "win32":
|
| 716 |
+
from distutils._msvccompiler import MSVCCompiler
|
| 717 |
+
if not isinstance(self.compiler, MSVCCompiler):
|
| 718 |
+
template = "python%d%d"
|
| 719 |
+
if self.debug:
|
| 720 |
+
template = template + '_d'
|
| 721 |
+
pythonlib = (template %
|
| 722 |
+
(sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
|
| 723 |
+
# don't extend ext.libraries, it may be shared with other
|
| 724 |
+
# extensions, it is a reference to the original list
|
| 725 |
+
return ext.libraries + [pythonlib]
|
| 726 |
+
else:
|
| 727 |
+
# On Android only the main executable and LD_PRELOADs are considered
|
| 728 |
+
# to be RTLD_GLOBAL, all the dependencies of the main executable
|
| 729 |
+
# remain RTLD_LOCAL and so the shared libraries must be linked with
|
| 730 |
+
# libpython when python is built with a shared python library (issue
|
| 731 |
+
# bpo-21536).
|
| 732 |
+
# On Cygwin (and if required, other POSIX-like platforms based on
|
| 733 |
+
# Windows like MinGW) it is simply necessary that all symbols in
|
| 734 |
+
# shared libraries are resolved at link time.
|
| 735 |
+
from distutils.sysconfig import get_config_var
|
| 736 |
+
link_libpython = False
|
| 737 |
+
if get_config_var('Py_ENABLE_SHARED'):
|
| 738 |
+
# A native build on an Android device or on Cygwin
|
| 739 |
+
if hasattr(sys, 'getandroidapilevel'):
|
| 740 |
+
link_libpython = True
|
| 741 |
+
elif sys.platform == 'cygwin':
|
| 742 |
+
link_libpython = True
|
| 743 |
+
elif '_PYTHON_HOST_PLATFORM' in os.environ:
|
| 744 |
+
# We are cross-compiling for one of the relevant platforms
|
| 745 |
+
if get_config_var('ANDROID_API_LEVEL') != 0:
|
| 746 |
+
link_libpython = True
|
| 747 |
+
elif get_config_var('MACHDEP') == 'cygwin':
|
| 748 |
+
link_libpython = True
|
| 749 |
+
|
| 750 |
+
if link_libpython:
|
| 751 |
+
ldversion = get_config_var('LDVERSION')
|
| 752 |
+
return ext.libraries + ['python' + ldversion]
|
| 753 |
+
|
| 754 |
+
return ext.libraries
|
vila/lib/python3.10/distutils/command/build_py.py
ADDED
|
@@ -0,0 +1,416 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.build_py
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'build_py' command."""
|
| 4 |
+
|
| 5 |
+
import os
|
| 6 |
+
import importlib.util
|
| 7 |
+
import sys
|
| 8 |
+
import glob
|
| 9 |
+
|
| 10 |
+
from distutils.core import Command
|
| 11 |
+
from distutils.errors import *
|
| 12 |
+
from distutils.util import convert_path, Mixin2to3
|
| 13 |
+
from distutils import log
|
| 14 |
+
|
| 15 |
+
class build_py (Command):
|
| 16 |
+
|
| 17 |
+
description = "\"build\" pure Python modules (copy to build directory)"
|
| 18 |
+
|
| 19 |
+
user_options = [
|
| 20 |
+
('build-lib=', 'd', "directory to \"build\" (copy) to"),
|
| 21 |
+
('compile', 'c', "compile .py to .pyc"),
|
| 22 |
+
('no-compile', None, "don't compile .py files [default]"),
|
| 23 |
+
('optimize=', 'O',
|
| 24 |
+
"also compile with optimization: -O1 for \"python -O\", "
|
| 25 |
+
"-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
|
| 26 |
+
('force', 'f', "forcibly build everything (ignore file timestamps)"),
|
| 27 |
+
]
|
| 28 |
+
|
| 29 |
+
boolean_options = ['compile', 'force']
|
| 30 |
+
negative_opt = {'no-compile' : 'compile'}
|
| 31 |
+
|
| 32 |
+
def initialize_options(self):
|
| 33 |
+
self.build_lib = None
|
| 34 |
+
self.py_modules = None
|
| 35 |
+
self.package = None
|
| 36 |
+
self.package_data = None
|
| 37 |
+
self.package_dir = None
|
| 38 |
+
self.compile = 0
|
| 39 |
+
self.optimize = 0
|
| 40 |
+
self.force = None
|
| 41 |
+
|
| 42 |
+
def finalize_options(self):
|
| 43 |
+
self.set_undefined_options('build',
|
| 44 |
+
('build_lib', 'build_lib'),
|
| 45 |
+
('force', 'force'))
|
| 46 |
+
|
| 47 |
+
# Get the distribution options that are aliases for build_py
|
| 48 |
+
# options -- list of packages and list of modules.
|
| 49 |
+
self.packages = self.distribution.packages
|
| 50 |
+
self.py_modules = self.distribution.py_modules
|
| 51 |
+
self.package_data = self.distribution.package_data
|
| 52 |
+
self.package_dir = {}
|
| 53 |
+
if self.distribution.package_dir:
|
| 54 |
+
for name, path in self.distribution.package_dir.items():
|
| 55 |
+
self.package_dir[name] = convert_path(path)
|
| 56 |
+
self.data_files = self.get_data_files()
|
| 57 |
+
|
| 58 |
+
# Ick, copied straight from install_lib.py (fancy_getopt needs a
|
| 59 |
+
# type system! Hell, *everything* needs a type system!!!)
|
| 60 |
+
if not isinstance(self.optimize, int):
|
| 61 |
+
try:
|
| 62 |
+
self.optimize = int(self.optimize)
|
| 63 |
+
assert 0 <= self.optimize <= 2
|
| 64 |
+
except (ValueError, AssertionError):
|
| 65 |
+
raise DistutilsOptionError("optimize must be 0, 1, or 2")
|
| 66 |
+
|
| 67 |
+
def run(self):
|
| 68 |
+
# XXX copy_file by default preserves atime and mtime. IMHO this is
|
| 69 |
+
# the right thing to do, but perhaps it should be an option -- in
|
| 70 |
+
# particular, a site administrator might want installed files to
|
| 71 |
+
# reflect the time of installation rather than the last
|
| 72 |
+
# modification time before the installed release.
|
| 73 |
+
|
| 74 |
+
# XXX copy_file by default preserves mode, which appears to be the
|
| 75 |
+
# wrong thing to do: if a file is read-only in the working
|
| 76 |
+
# directory, we want it to be installed read/write so that the next
|
| 77 |
+
# installation of the same module distribution can overwrite it
|
| 78 |
+
# without problems. (This might be a Unix-specific issue.) Thus
|
| 79 |
+
# we turn off 'preserve_mode' when copying to the build directory,
|
| 80 |
+
# since the build directory is supposed to be exactly what the
|
| 81 |
+
# installation will look like (ie. we preserve mode when
|
| 82 |
+
# installing).
|
| 83 |
+
|
| 84 |
+
# Two options control which modules will be installed: 'packages'
|
| 85 |
+
# and 'py_modules'. The former lets us work with whole packages, not
|
| 86 |
+
# specifying individual modules at all; the latter is for
|
| 87 |
+
# specifying modules one-at-a-time.
|
| 88 |
+
|
| 89 |
+
if self.py_modules:
|
| 90 |
+
self.build_modules()
|
| 91 |
+
if self.packages:
|
| 92 |
+
self.build_packages()
|
| 93 |
+
self.build_package_data()
|
| 94 |
+
|
| 95 |
+
self.byte_compile(self.get_outputs(include_bytecode=0))
|
| 96 |
+
|
| 97 |
+
def get_data_files(self):
|
| 98 |
+
"""Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
|
| 99 |
+
data = []
|
| 100 |
+
if not self.packages:
|
| 101 |
+
return data
|
| 102 |
+
for package in self.packages:
|
| 103 |
+
# Locate package source directory
|
| 104 |
+
src_dir = self.get_package_dir(package)
|
| 105 |
+
|
| 106 |
+
# Compute package build directory
|
| 107 |
+
build_dir = os.path.join(*([self.build_lib] + package.split('.')))
|
| 108 |
+
|
| 109 |
+
# Length of path to strip from found files
|
| 110 |
+
plen = 0
|
| 111 |
+
if src_dir:
|
| 112 |
+
plen = len(src_dir)+1
|
| 113 |
+
|
| 114 |
+
# Strip directory from globbed filenames
|
| 115 |
+
filenames = [
|
| 116 |
+
file[plen:] for file in self.find_data_files(package, src_dir)
|
| 117 |
+
]
|
| 118 |
+
data.append((package, src_dir, build_dir, filenames))
|
| 119 |
+
return data
|
| 120 |
+
|
| 121 |
+
def find_data_files(self, package, src_dir):
|
| 122 |
+
"""Return filenames for package's data files in 'src_dir'"""
|
| 123 |
+
globs = (self.package_data.get('', [])
|
| 124 |
+
+ self.package_data.get(package, []))
|
| 125 |
+
files = []
|
| 126 |
+
for pattern in globs:
|
| 127 |
+
# Each pattern has to be converted to a platform-specific path
|
| 128 |
+
filelist = glob.glob(os.path.join(glob.escape(src_dir), convert_path(pattern)))
|
| 129 |
+
# Files that match more than one pattern are only added once
|
| 130 |
+
files.extend([fn for fn in filelist if fn not in files
|
| 131 |
+
and os.path.isfile(fn)])
|
| 132 |
+
return files
|
| 133 |
+
|
| 134 |
+
def build_package_data(self):
|
| 135 |
+
"""Copy data files into build directory"""
|
| 136 |
+
lastdir = None
|
| 137 |
+
for package, src_dir, build_dir, filenames in self.data_files:
|
| 138 |
+
for filename in filenames:
|
| 139 |
+
target = os.path.join(build_dir, filename)
|
| 140 |
+
self.mkpath(os.path.dirname(target))
|
| 141 |
+
self.copy_file(os.path.join(src_dir, filename), target,
|
| 142 |
+
preserve_mode=False)
|
| 143 |
+
|
| 144 |
+
def get_package_dir(self, package):
|
| 145 |
+
"""Return the directory, relative to the top of the source
|
| 146 |
+
distribution, where package 'package' should be found
|
| 147 |
+
(at least according to the 'package_dir' option, if any)."""
|
| 148 |
+
path = package.split('.')
|
| 149 |
+
|
| 150 |
+
if not self.package_dir:
|
| 151 |
+
if path:
|
| 152 |
+
return os.path.join(*path)
|
| 153 |
+
else:
|
| 154 |
+
return ''
|
| 155 |
+
else:
|
| 156 |
+
tail = []
|
| 157 |
+
while path:
|
| 158 |
+
try:
|
| 159 |
+
pdir = self.package_dir['.'.join(path)]
|
| 160 |
+
except KeyError:
|
| 161 |
+
tail.insert(0, path[-1])
|
| 162 |
+
del path[-1]
|
| 163 |
+
else:
|
| 164 |
+
tail.insert(0, pdir)
|
| 165 |
+
return os.path.join(*tail)
|
| 166 |
+
else:
|
| 167 |
+
# Oops, got all the way through 'path' without finding a
|
| 168 |
+
# match in package_dir. If package_dir defines a directory
|
| 169 |
+
# for the root (nameless) package, then fallback on it;
|
| 170 |
+
# otherwise, we might as well have not consulted
|
| 171 |
+
# package_dir at all, as we just use the directory implied
|
| 172 |
+
# by 'tail' (which should be the same as the original value
|
| 173 |
+
# of 'path' at this point).
|
| 174 |
+
pdir = self.package_dir.get('')
|
| 175 |
+
if pdir is not None:
|
| 176 |
+
tail.insert(0, pdir)
|
| 177 |
+
|
| 178 |
+
if tail:
|
| 179 |
+
return os.path.join(*tail)
|
| 180 |
+
else:
|
| 181 |
+
return ''
|
| 182 |
+
|
| 183 |
+
def check_package(self, package, package_dir):
|
| 184 |
+
# Empty dir name means current directory, which we can probably
|
| 185 |
+
# assume exists. Also, os.path.exists and isdir don't know about
|
| 186 |
+
# my "empty string means current dir" convention, so we have to
|
| 187 |
+
# circumvent them.
|
| 188 |
+
if package_dir != "":
|
| 189 |
+
if not os.path.exists(package_dir):
|
| 190 |
+
raise DistutilsFileError(
|
| 191 |
+
"package directory '%s' does not exist" % package_dir)
|
| 192 |
+
if not os.path.isdir(package_dir):
|
| 193 |
+
raise DistutilsFileError(
|
| 194 |
+
"supposed package directory '%s' exists, "
|
| 195 |
+
"but is not a directory" % package_dir)
|
| 196 |
+
|
| 197 |
+
# Require __init__.py for all but the "root package"
|
| 198 |
+
if package:
|
| 199 |
+
init_py = os.path.join(package_dir, "__init__.py")
|
| 200 |
+
if os.path.isfile(init_py):
|
| 201 |
+
return init_py
|
| 202 |
+
else:
|
| 203 |
+
log.warn(("package init file '%s' not found " +
|
| 204 |
+
"(or not a regular file)"), init_py)
|
| 205 |
+
|
| 206 |
+
# Either not in a package at all (__init__.py not expected), or
|
| 207 |
+
# __init__.py doesn't exist -- so don't return the filename.
|
| 208 |
+
return None
|
| 209 |
+
|
| 210 |
+
def check_module(self, module, module_file):
|
| 211 |
+
if not os.path.isfile(module_file):
|
| 212 |
+
log.warn("file %s (for module %s) not found", module_file, module)
|
| 213 |
+
return False
|
| 214 |
+
else:
|
| 215 |
+
return True
|
| 216 |
+
|
| 217 |
+
def find_package_modules(self, package, package_dir):
|
| 218 |
+
self.check_package(package, package_dir)
|
| 219 |
+
module_files = glob.glob(os.path.join(glob.escape(package_dir), "*.py"))
|
| 220 |
+
modules = []
|
| 221 |
+
setup_script = os.path.abspath(self.distribution.script_name)
|
| 222 |
+
|
| 223 |
+
for f in module_files:
|
| 224 |
+
abs_f = os.path.abspath(f)
|
| 225 |
+
if abs_f != setup_script:
|
| 226 |
+
module = os.path.splitext(os.path.basename(f))[0]
|
| 227 |
+
modules.append((package, module, f))
|
| 228 |
+
else:
|
| 229 |
+
self.debug_print("excluding %s" % setup_script)
|
| 230 |
+
return modules
|
| 231 |
+
|
| 232 |
+
def find_modules(self):
|
| 233 |
+
"""Finds individually-specified Python modules, ie. those listed by
|
| 234 |
+
module name in 'self.py_modules'. Returns a list of tuples (package,
|
| 235 |
+
module_base, filename): 'package' is a tuple of the path through
|
| 236 |
+
package-space to the module; 'module_base' is the bare (no
|
| 237 |
+
packages, no dots) module name, and 'filename' is the path to the
|
| 238 |
+
".py" file (relative to the distribution root) that implements the
|
| 239 |
+
module.
|
| 240 |
+
"""
|
| 241 |
+
# Map package names to tuples of useful info about the package:
|
| 242 |
+
# (package_dir, checked)
|
| 243 |
+
# package_dir - the directory where we'll find source files for
|
| 244 |
+
# this package
|
| 245 |
+
# checked - true if we have checked that the package directory
|
| 246 |
+
# is valid (exists, contains __init__.py, ... ?)
|
| 247 |
+
packages = {}
|
| 248 |
+
|
| 249 |
+
# List of (package, module, filename) tuples to return
|
| 250 |
+
modules = []
|
| 251 |
+
|
| 252 |
+
# We treat modules-in-packages almost the same as toplevel modules,
|
| 253 |
+
# just the "package" for a toplevel is empty (either an empty
|
| 254 |
+
# string or empty list, depending on context). Differences:
|
| 255 |
+
# - don't check for __init__.py in directory for empty package
|
| 256 |
+
for module in self.py_modules:
|
| 257 |
+
path = module.split('.')
|
| 258 |
+
package = '.'.join(path[0:-1])
|
| 259 |
+
module_base = path[-1]
|
| 260 |
+
|
| 261 |
+
try:
|
| 262 |
+
(package_dir, checked) = packages[package]
|
| 263 |
+
except KeyError:
|
| 264 |
+
package_dir = self.get_package_dir(package)
|
| 265 |
+
checked = 0
|
| 266 |
+
|
| 267 |
+
if not checked:
|
| 268 |
+
init_py = self.check_package(package, package_dir)
|
| 269 |
+
packages[package] = (package_dir, 1)
|
| 270 |
+
if init_py:
|
| 271 |
+
modules.append((package, "__init__", init_py))
|
| 272 |
+
|
| 273 |
+
# XXX perhaps we should also check for just .pyc files
|
| 274 |
+
# (so greedy closed-source bastards can distribute Python
|
| 275 |
+
# modules too)
|
| 276 |
+
module_file = os.path.join(package_dir, module_base + ".py")
|
| 277 |
+
if not self.check_module(module, module_file):
|
| 278 |
+
continue
|
| 279 |
+
|
| 280 |
+
modules.append((package, module_base, module_file))
|
| 281 |
+
|
| 282 |
+
return modules
|
| 283 |
+
|
| 284 |
+
def find_all_modules(self):
|
| 285 |
+
"""Compute the list of all modules that will be built, whether
|
| 286 |
+
they are specified one-module-at-a-time ('self.py_modules') or
|
| 287 |
+
by whole packages ('self.packages'). Return a list of tuples
|
| 288 |
+
(package, module, module_file), just like 'find_modules()' and
|
| 289 |
+
'find_package_modules()' do."""
|
| 290 |
+
modules = []
|
| 291 |
+
if self.py_modules:
|
| 292 |
+
modules.extend(self.find_modules())
|
| 293 |
+
if self.packages:
|
| 294 |
+
for package in self.packages:
|
| 295 |
+
package_dir = self.get_package_dir(package)
|
| 296 |
+
m = self.find_package_modules(package, package_dir)
|
| 297 |
+
modules.extend(m)
|
| 298 |
+
return modules
|
| 299 |
+
|
| 300 |
+
def get_source_files(self):
|
| 301 |
+
return [module[-1] for module in self.find_all_modules()]
|
| 302 |
+
|
| 303 |
+
def get_module_outfile(self, build_dir, package, module):
|
| 304 |
+
outfile_path = [build_dir] + list(package) + [module + ".py"]
|
| 305 |
+
return os.path.join(*outfile_path)
|
| 306 |
+
|
| 307 |
+
def get_outputs(self, include_bytecode=1):
|
| 308 |
+
modules = self.find_all_modules()
|
| 309 |
+
outputs = []
|
| 310 |
+
for (package, module, module_file) in modules:
|
| 311 |
+
package = package.split('.')
|
| 312 |
+
filename = self.get_module_outfile(self.build_lib, package, module)
|
| 313 |
+
outputs.append(filename)
|
| 314 |
+
if include_bytecode:
|
| 315 |
+
if self.compile:
|
| 316 |
+
outputs.append(importlib.util.cache_from_source(
|
| 317 |
+
filename, optimization=''))
|
| 318 |
+
if self.optimize > 0:
|
| 319 |
+
outputs.append(importlib.util.cache_from_source(
|
| 320 |
+
filename, optimization=self.optimize))
|
| 321 |
+
|
| 322 |
+
outputs += [
|
| 323 |
+
os.path.join(build_dir, filename)
|
| 324 |
+
for package, src_dir, build_dir, filenames in self.data_files
|
| 325 |
+
for filename in filenames
|
| 326 |
+
]
|
| 327 |
+
|
| 328 |
+
return outputs
|
| 329 |
+
|
| 330 |
+
def build_module(self, module, module_file, package):
|
| 331 |
+
if isinstance(package, str):
|
| 332 |
+
package = package.split('.')
|
| 333 |
+
elif not isinstance(package, (list, tuple)):
|
| 334 |
+
raise TypeError(
|
| 335 |
+
"'package' must be a string (dot-separated), list, or tuple")
|
| 336 |
+
|
| 337 |
+
# Now put the module source file into the "build" area -- this is
|
| 338 |
+
# easy, we just copy it somewhere under self.build_lib (the build
|
| 339 |
+
# directory for Python source).
|
| 340 |
+
outfile = self.get_module_outfile(self.build_lib, package, module)
|
| 341 |
+
dir = os.path.dirname(outfile)
|
| 342 |
+
self.mkpath(dir)
|
| 343 |
+
return self.copy_file(module_file, outfile, preserve_mode=0)
|
| 344 |
+
|
| 345 |
+
def build_modules(self):
|
| 346 |
+
modules = self.find_modules()
|
| 347 |
+
for (package, module, module_file) in modules:
|
| 348 |
+
# Now "build" the module -- ie. copy the source file to
|
| 349 |
+
# self.build_lib (the build directory for Python source).
|
| 350 |
+
# (Actually, it gets copied to the directory for this package
|
| 351 |
+
# under self.build_lib.)
|
| 352 |
+
self.build_module(module, module_file, package)
|
| 353 |
+
|
| 354 |
+
def build_packages(self):
|
| 355 |
+
for package in self.packages:
|
| 356 |
+
# Get list of (package, module, module_file) tuples based on
|
| 357 |
+
# scanning the package directory. 'package' is only included
|
| 358 |
+
# in the tuple so that 'find_modules()' and
|
| 359 |
+
# 'find_package_tuples()' have a consistent interface; it's
|
| 360 |
+
# ignored here (apart from a sanity check). Also, 'module' is
|
| 361 |
+
# the *unqualified* module name (ie. no dots, no package -- we
|
| 362 |
+
# already know its package!), and 'module_file' is the path to
|
| 363 |
+
# the .py file, relative to the current directory
|
| 364 |
+
# (ie. including 'package_dir').
|
| 365 |
+
package_dir = self.get_package_dir(package)
|
| 366 |
+
modules = self.find_package_modules(package, package_dir)
|
| 367 |
+
|
| 368 |
+
# Now loop over the modules we found, "building" each one (just
|
| 369 |
+
# copy it to self.build_lib).
|
| 370 |
+
for (package_, module, module_file) in modules:
|
| 371 |
+
assert package == package_
|
| 372 |
+
self.build_module(module, module_file, package)
|
| 373 |
+
|
| 374 |
+
def byte_compile(self, files):
|
| 375 |
+
if sys.dont_write_bytecode:
|
| 376 |
+
self.warn('byte-compiling is disabled, skipping.')
|
| 377 |
+
return
|
| 378 |
+
|
| 379 |
+
from distutils.util import byte_compile
|
| 380 |
+
prefix = self.build_lib
|
| 381 |
+
if prefix[-1] != os.sep:
|
| 382 |
+
prefix = prefix + os.sep
|
| 383 |
+
|
| 384 |
+
# XXX this code is essentially the same as the 'byte_compile()
|
| 385 |
+
# method of the "install_lib" command, except for the determination
|
| 386 |
+
# of the 'prefix' string. Hmmm.
|
| 387 |
+
if self.compile:
|
| 388 |
+
byte_compile(files, optimize=0,
|
| 389 |
+
force=self.force, prefix=prefix, dry_run=self.dry_run)
|
| 390 |
+
if self.optimize > 0:
|
| 391 |
+
byte_compile(files, optimize=self.optimize,
|
| 392 |
+
force=self.force, prefix=prefix, dry_run=self.dry_run)
|
| 393 |
+
|
| 394 |
+
class build_py_2to3(build_py, Mixin2to3):
|
| 395 |
+
def run(self):
|
| 396 |
+
self.updated_files = []
|
| 397 |
+
|
| 398 |
+
# Base class code
|
| 399 |
+
if self.py_modules:
|
| 400 |
+
self.build_modules()
|
| 401 |
+
if self.packages:
|
| 402 |
+
self.build_packages()
|
| 403 |
+
self.build_package_data()
|
| 404 |
+
|
| 405 |
+
# 2to3
|
| 406 |
+
self.run_2to3(self.updated_files)
|
| 407 |
+
|
| 408 |
+
# Remaining base class code
|
| 409 |
+
self.byte_compile(self.get_outputs(include_bytecode=0))
|
| 410 |
+
|
| 411 |
+
def build_module(self, module, module_file, package):
|
| 412 |
+
res = build_py.build_module(self, module, module_file, package)
|
| 413 |
+
if res[1]:
|
| 414 |
+
# file was copied
|
| 415 |
+
self.updated_files.append(res[0])
|
| 416 |
+
return res
|
vila/lib/python3.10/distutils/command/build_scripts.py
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.build_scripts
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'build_scripts' command."""
|
| 4 |
+
|
| 5 |
+
import os, re
|
| 6 |
+
from stat import ST_MODE
|
| 7 |
+
from distutils import sysconfig
|
| 8 |
+
from distutils.core import Command
|
| 9 |
+
from distutils.dep_util import newer
|
| 10 |
+
from distutils.util import convert_path, Mixin2to3
|
| 11 |
+
from distutils import log
|
| 12 |
+
import tokenize
|
| 13 |
+
|
| 14 |
+
# check if Python is called on the first line with this expression
|
| 15 |
+
first_line_re = re.compile(b'^#!.*python[0-9.]*([ \t].*)?$')
|
| 16 |
+
|
| 17 |
+
class build_scripts(Command):
|
| 18 |
+
|
| 19 |
+
description = "\"build\" scripts (copy and fixup #! line)"
|
| 20 |
+
|
| 21 |
+
user_options = [
|
| 22 |
+
('build-dir=', 'd', "directory to \"build\" (copy) to"),
|
| 23 |
+
('force', 'f', "forcibly build everything (ignore file timestamps"),
|
| 24 |
+
('executable=', 'e', "specify final destination interpreter path"),
|
| 25 |
+
]
|
| 26 |
+
|
| 27 |
+
boolean_options = ['force']
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def initialize_options(self):
|
| 31 |
+
self.build_dir = None
|
| 32 |
+
self.scripts = None
|
| 33 |
+
self.force = None
|
| 34 |
+
self.executable = None
|
| 35 |
+
self.outfiles = None
|
| 36 |
+
|
| 37 |
+
def finalize_options(self):
|
| 38 |
+
self.set_undefined_options('build',
|
| 39 |
+
('build_scripts', 'build_dir'),
|
| 40 |
+
('force', 'force'),
|
| 41 |
+
('executable', 'executable'))
|
| 42 |
+
self.scripts = self.distribution.scripts
|
| 43 |
+
|
| 44 |
+
def get_source_files(self):
|
| 45 |
+
return self.scripts
|
| 46 |
+
|
| 47 |
+
def run(self):
|
| 48 |
+
if not self.scripts:
|
| 49 |
+
return
|
| 50 |
+
self.copy_scripts()
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def copy_scripts(self):
|
| 54 |
+
r"""Copy each script listed in 'self.scripts'; if it's marked as a
|
| 55 |
+
Python script in the Unix way (first line matches 'first_line_re',
|
| 56 |
+
ie. starts with "\#!" and contains "python"), then adjust the first
|
| 57 |
+
line to refer to the current Python interpreter as we copy.
|
| 58 |
+
"""
|
| 59 |
+
self.mkpath(self.build_dir)
|
| 60 |
+
outfiles = []
|
| 61 |
+
updated_files = []
|
| 62 |
+
for script in self.scripts:
|
| 63 |
+
adjust = False
|
| 64 |
+
script = convert_path(script)
|
| 65 |
+
outfile = os.path.join(self.build_dir, os.path.basename(script))
|
| 66 |
+
outfiles.append(outfile)
|
| 67 |
+
|
| 68 |
+
if not self.force and not newer(script, outfile):
|
| 69 |
+
log.debug("not copying %s (up-to-date)", script)
|
| 70 |
+
continue
|
| 71 |
+
|
| 72 |
+
# Always open the file, but ignore failures in dry-run mode --
|
| 73 |
+
# that way, we'll get accurate feedback if we can read the
|
| 74 |
+
# script.
|
| 75 |
+
try:
|
| 76 |
+
f = open(script, "rb")
|
| 77 |
+
except OSError:
|
| 78 |
+
if not self.dry_run:
|
| 79 |
+
raise
|
| 80 |
+
f = None
|
| 81 |
+
else:
|
| 82 |
+
encoding, lines = tokenize.detect_encoding(f.readline)
|
| 83 |
+
f.seek(0)
|
| 84 |
+
first_line = f.readline()
|
| 85 |
+
if not first_line:
|
| 86 |
+
self.warn("%s is an empty file (skipping)" % script)
|
| 87 |
+
continue
|
| 88 |
+
|
| 89 |
+
match = first_line_re.match(first_line)
|
| 90 |
+
if match:
|
| 91 |
+
adjust = True
|
| 92 |
+
post_interp = match.group(1) or b''
|
| 93 |
+
|
| 94 |
+
if adjust:
|
| 95 |
+
log.info("copying and adjusting %s -> %s", script,
|
| 96 |
+
self.build_dir)
|
| 97 |
+
updated_files.append(outfile)
|
| 98 |
+
if not self.dry_run:
|
| 99 |
+
if not sysconfig.python_build:
|
| 100 |
+
executable = self.executable
|
| 101 |
+
else:
|
| 102 |
+
executable = os.path.join(
|
| 103 |
+
sysconfig.get_config_var("BINDIR"),
|
| 104 |
+
"python%s%s" % (sysconfig.get_config_var("VERSION"),
|
| 105 |
+
sysconfig.get_config_var("EXE")))
|
| 106 |
+
executable = os.fsencode(executable)
|
| 107 |
+
shebang = b"#!" + executable + post_interp + b"\n"
|
| 108 |
+
# Python parser starts to read a script using UTF-8 until
|
| 109 |
+
# it gets a #coding:xxx cookie. The shebang has to be the
|
| 110 |
+
# first line of a file, the #coding:xxx cookie cannot be
|
| 111 |
+
# written before. So the shebang has to be decodable from
|
| 112 |
+
# UTF-8.
|
| 113 |
+
try:
|
| 114 |
+
shebang.decode('utf-8')
|
| 115 |
+
except UnicodeDecodeError:
|
| 116 |
+
raise ValueError(
|
| 117 |
+
"The shebang ({!r}) is not decodable "
|
| 118 |
+
"from utf-8".format(shebang))
|
| 119 |
+
# If the script is encoded to a custom encoding (use a
|
| 120 |
+
# #coding:xxx cookie), the shebang has to be decodable from
|
| 121 |
+
# the script encoding too.
|
| 122 |
+
try:
|
| 123 |
+
shebang.decode(encoding)
|
| 124 |
+
except UnicodeDecodeError:
|
| 125 |
+
raise ValueError(
|
| 126 |
+
"The shebang ({!r}) is not decodable "
|
| 127 |
+
"from the script encoding ({})"
|
| 128 |
+
.format(shebang, encoding))
|
| 129 |
+
with open(outfile, "wb") as outf:
|
| 130 |
+
outf.write(shebang)
|
| 131 |
+
outf.writelines(f.readlines())
|
| 132 |
+
if f:
|
| 133 |
+
f.close()
|
| 134 |
+
else:
|
| 135 |
+
if f:
|
| 136 |
+
f.close()
|
| 137 |
+
updated_files.append(outfile)
|
| 138 |
+
self.copy_file(script, outfile)
|
| 139 |
+
|
| 140 |
+
if os.name == 'posix':
|
| 141 |
+
for file in outfiles:
|
| 142 |
+
if self.dry_run:
|
| 143 |
+
log.info("changing mode of %s", file)
|
| 144 |
+
else:
|
| 145 |
+
oldmode = os.stat(file)[ST_MODE] & 0o7777
|
| 146 |
+
newmode = (oldmode | 0o555) & 0o7777
|
| 147 |
+
if newmode != oldmode:
|
| 148 |
+
log.info("changing mode of %s from %o to %o",
|
| 149 |
+
file, oldmode, newmode)
|
| 150 |
+
os.chmod(file, newmode)
|
| 151 |
+
# XXX should we modify self.outfiles?
|
| 152 |
+
return outfiles, updated_files
|
| 153 |
+
|
| 154 |
+
class build_scripts_2to3(build_scripts, Mixin2to3):
|
| 155 |
+
|
| 156 |
+
def copy_scripts(self):
|
| 157 |
+
outfiles, updated_files = build_scripts.copy_scripts(self)
|
| 158 |
+
if not self.dry_run:
|
| 159 |
+
self.run_2to3(updated_files)
|
| 160 |
+
return outfiles, updated_files
|
vila/lib/python3.10/distutils/command/clean.py
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.clean
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'clean' command."""
|
| 4 |
+
|
| 5 |
+
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
|
| 6 |
+
|
| 7 |
+
import os
|
| 8 |
+
from distutils.core import Command
|
| 9 |
+
from distutils.dir_util import remove_tree
|
| 10 |
+
from distutils import log
|
| 11 |
+
|
| 12 |
+
class clean(Command):
|
| 13 |
+
|
| 14 |
+
description = "clean up temporary files from 'build' command"
|
| 15 |
+
user_options = [
|
| 16 |
+
('build-base=', 'b',
|
| 17 |
+
"base build directory (default: 'build.build-base')"),
|
| 18 |
+
('build-lib=', None,
|
| 19 |
+
"build directory for all modules (default: 'build.build-lib')"),
|
| 20 |
+
('build-temp=', 't',
|
| 21 |
+
"temporary build directory (default: 'build.build-temp')"),
|
| 22 |
+
('build-scripts=', None,
|
| 23 |
+
"build directory for scripts (default: 'build.build-scripts')"),
|
| 24 |
+
('bdist-base=', None,
|
| 25 |
+
"temporary directory for built distributions"),
|
| 26 |
+
('all', 'a',
|
| 27 |
+
"remove all build output, not just temporary by-products")
|
| 28 |
+
]
|
| 29 |
+
|
| 30 |
+
boolean_options = ['all']
|
| 31 |
+
|
| 32 |
+
def initialize_options(self):
|
| 33 |
+
self.build_base = None
|
| 34 |
+
self.build_lib = None
|
| 35 |
+
self.build_temp = None
|
| 36 |
+
self.build_scripts = None
|
| 37 |
+
self.bdist_base = None
|
| 38 |
+
self.all = None
|
| 39 |
+
|
| 40 |
+
def finalize_options(self):
|
| 41 |
+
self.set_undefined_options('build',
|
| 42 |
+
('build_base', 'build_base'),
|
| 43 |
+
('build_lib', 'build_lib'),
|
| 44 |
+
('build_scripts', 'build_scripts'),
|
| 45 |
+
('build_temp', 'build_temp'))
|
| 46 |
+
self.set_undefined_options('bdist',
|
| 47 |
+
('bdist_base', 'bdist_base'))
|
| 48 |
+
|
| 49 |
+
def run(self):
|
| 50 |
+
# remove the build/temp.<plat> directory (unless it's already
|
| 51 |
+
# gone)
|
| 52 |
+
if os.path.exists(self.build_temp):
|
| 53 |
+
remove_tree(self.build_temp, dry_run=self.dry_run)
|
| 54 |
+
else:
|
| 55 |
+
log.debug("'%s' does not exist -- can't clean it",
|
| 56 |
+
self.build_temp)
|
| 57 |
+
|
| 58 |
+
if self.all:
|
| 59 |
+
# remove build directories
|
| 60 |
+
for directory in (self.build_lib,
|
| 61 |
+
self.bdist_base,
|
| 62 |
+
self.build_scripts):
|
| 63 |
+
if os.path.exists(directory):
|
| 64 |
+
remove_tree(directory, dry_run=self.dry_run)
|
| 65 |
+
else:
|
| 66 |
+
log.warn("'%s' does not exist -- can't clean it",
|
| 67 |
+
directory)
|
| 68 |
+
|
| 69 |
+
# just for the heck of it, try to remove the base build directory:
|
| 70 |
+
# we might have emptied it right now, but if not we don't care
|
| 71 |
+
if not self.dry_run:
|
| 72 |
+
try:
|
| 73 |
+
os.rmdir(self.build_base)
|
| 74 |
+
log.info("removing '%s'", self.build_base)
|
| 75 |
+
except OSError:
|
| 76 |
+
pass
|
vila/lib/python3.10/distutils/command/command_template
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.x
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'x' command.
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
# created 2000/mm/dd, John Doe
|
| 7 |
+
|
| 8 |
+
__revision__ = "$Id$"
|
| 9 |
+
|
| 10 |
+
from distutils.core import Command
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
class x(Command):
|
| 14 |
+
|
| 15 |
+
# Brief (40-50 characters) description of the command
|
| 16 |
+
description = ""
|
| 17 |
+
|
| 18 |
+
# List of option tuples: long name, short name (None if no short
|
| 19 |
+
# name), and help string.
|
| 20 |
+
user_options = [('', '',
|
| 21 |
+
""),
|
| 22 |
+
]
|
| 23 |
+
|
| 24 |
+
def initialize_options(self):
|
| 25 |
+
self. = None
|
| 26 |
+
self. = None
|
| 27 |
+
self. = None
|
| 28 |
+
|
| 29 |
+
def finalize_options(self):
|
| 30 |
+
if self.x is None:
|
| 31 |
+
self.x =
|
| 32 |
+
|
| 33 |
+
def run(self):
|
vila/lib/python3.10/distutils/command/config.py
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.config
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'config' command, a (mostly) empty command class
|
| 4 |
+
that exists mainly to be sub-classed by specific module distributions and
|
| 5 |
+
applications. The idea is that while every "config" command is different,
|
| 6 |
+
at least they're all named the same, and users always see "config" in the
|
| 7 |
+
list of standard commands. Also, this is a good place to put common
|
| 8 |
+
configure-like tasks: "try to compile this C code", or "figure out where
|
| 9 |
+
this header file lives".
|
| 10 |
+
"""
|
| 11 |
+
|
| 12 |
+
import os, re
|
| 13 |
+
|
| 14 |
+
from distutils.core import Command
|
| 15 |
+
from distutils.errors import DistutilsExecError
|
| 16 |
+
from distutils.sysconfig import customize_compiler
|
| 17 |
+
from distutils import log
|
| 18 |
+
|
| 19 |
+
LANG_EXT = {"c": ".c", "c++": ".cxx"}
|
| 20 |
+
|
| 21 |
+
class config(Command):
|
| 22 |
+
|
| 23 |
+
description = "prepare to build"
|
| 24 |
+
|
| 25 |
+
user_options = [
|
| 26 |
+
('compiler=', None,
|
| 27 |
+
"specify the compiler type"),
|
| 28 |
+
('cc=', None,
|
| 29 |
+
"specify the compiler executable"),
|
| 30 |
+
('include-dirs=', 'I',
|
| 31 |
+
"list of directories to search for header files"),
|
| 32 |
+
('define=', 'D',
|
| 33 |
+
"C preprocessor macros to define"),
|
| 34 |
+
('undef=', 'U',
|
| 35 |
+
"C preprocessor macros to undefine"),
|
| 36 |
+
('libraries=', 'l',
|
| 37 |
+
"external C libraries to link with"),
|
| 38 |
+
('library-dirs=', 'L',
|
| 39 |
+
"directories to search for external C libraries"),
|
| 40 |
+
|
| 41 |
+
('noisy', None,
|
| 42 |
+
"show every action (compile, link, run, ...) taken"),
|
| 43 |
+
('dump-source', None,
|
| 44 |
+
"dump generated source files before attempting to compile them"),
|
| 45 |
+
]
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
# The three standard command methods: since the "config" command
|
| 49 |
+
# does nothing by default, these are empty.
|
| 50 |
+
|
| 51 |
+
def initialize_options(self):
|
| 52 |
+
self.compiler = None
|
| 53 |
+
self.cc = None
|
| 54 |
+
self.include_dirs = None
|
| 55 |
+
self.libraries = None
|
| 56 |
+
self.library_dirs = None
|
| 57 |
+
|
| 58 |
+
# maximal output for now
|
| 59 |
+
self.noisy = 1
|
| 60 |
+
self.dump_source = 1
|
| 61 |
+
|
| 62 |
+
# list of temporary files generated along-the-way that we have
|
| 63 |
+
# to clean at some point
|
| 64 |
+
self.temp_files = []
|
| 65 |
+
|
| 66 |
+
def finalize_options(self):
|
| 67 |
+
if self.include_dirs is None:
|
| 68 |
+
self.include_dirs = self.distribution.include_dirs or []
|
| 69 |
+
elif isinstance(self.include_dirs, str):
|
| 70 |
+
self.include_dirs = self.include_dirs.split(os.pathsep)
|
| 71 |
+
|
| 72 |
+
if self.libraries is None:
|
| 73 |
+
self.libraries = []
|
| 74 |
+
elif isinstance(self.libraries, str):
|
| 75 |
+
self.libraries = [self.libraries]
|
| 76 |
+
|
| 77 |
+
if self.library_dirs is None:
|
| 78 |
+
self.library_dirs = []
|
| 79 |
+
elif isinstance(self.library_dirs, str):
|
| 80 |
+
self.library_dirs = self.library_dirs.split(os.pathsep)
|
| 81 |
+
|
| 82 |
+
def run(self):
|
| 83 |
+
pass
|
| 84 |
+
|
| 85 |
+
# Utility methods for actual "config" commands. The interfaces are
|
| 86 |
+
# loosely based on Autoconf macros of similar names. Sub-classes
|
| 87 |
+
# may use these freely.
|
| 88 |
+
|
| 89 |
+
def _check_compiler(self):
|
| 90 |
+
"""Check that 'self.compiler' really is a CCompiler object;
|
| 91 |
+
if not, make it one.
|
| 92 |
+
"""
|
| 93 |
+
# We do this late, and only on-demand, because this is an expensive
|
| 94 |
+
# import.
|
| 95 |
+
from distutils.ccompiler import CCompiler, new_compiler
|
| 96 |
+
if not isinstance(self.compiler, CCompiler):
|
| 97 |
+
self.compiler = new_compiler(compiler=self.compiler,
|
| 98 |
+
dry_run=self.dry_run, force=1)
|
| 99 |
+
customize_compiler(self.compiler)
|
| 100 |
+
if self.include_dirs:
|
| 101 |
+
self.compiler.set_include_dirs(self.include_dirs)
|
| 102 |
+
if self.libraries:
|
| 103 |
+
self.compiler.set_libraries(self.libraries)
|
| 104 |
+
if self.library_dirs:
|
| 105 |
+
self.compiler.set_library_dirs(self.library_dirs)
|
| 106 |
+
|
| 107 |
+
def _gen_temp_sourcefile(self, body, headers, lang):
|
| 108 |
+
filename = "_configtest" + LANG_EXT[lang]
|
| 109 |
+
with open(filename, "w") as file:
|
| 110 |
+
if headers:
|
| 111 |
+
for header in headers:
|
| 112 |
+
file.write("#include <%s>\n" % header)
|
| 113 |
+
file.write("\n")
|
| 114 |
+
file.write(body)
|
| 115 |
+
if body[-1] != "\n":
|
| 116 |
+
file.write("\n")
|
| 117 |
+
return filename
|
| 118 |
+
|
| 119 |
+
def _preprocess(self, body, headers, include_dirs, lang):
|
| 120 |
+
src = self._gen_temp_sourcefile(body, headers, lang)
|
| 121 |
+
out = "_configtest.i"
|
| 122 |
+
self.temp_files.extend([src, out])
|
| 123 |
+
self.compiler.preprocess(src, out, include_dirs=include_dirs)
|
| 124 |
+
return (src, out)
|
| 125 |
+
|
| 126 |
+
def _compile(self, body, headers, include_dirs, lang):
|
| 127 |
+
src = self._gen_temp_sourcefile(body, headers, lang)
|
| 128 |
+
if self.dump_source:
|
| 129 |
+
dump_file(src, "compiling '%s':" % src)
|
| 130 |
+
(obj,) = self.compiler.object_filenames([src])
|
| 131 |
+
self.temp_files.extend([src, obj])
|
| 132 |
+
self.compiler.compile([src], include_dirs=include_dirs)
|
| 133 |
+
return (src, obj)
|
| 134 |
+
|
| 135 |
+
def _link(self, body, headers, include_dirs, libraries, library_dirs,
|
| 136 |
+
lang):
|
| 137 |
+
(src, obj) = self._compile(body, headers, include_dirs, lang)
|
| 138 |
+
prog = os.path.splitext(os.path.basename(src))[0]
|
| 139 |
+
self.compiler.link_executable([obj], prog,
|
| 140 |
+
libraries=libraries,
|
| 141 |
+
library_dirs=library_dirs,
|
| 142 |
+
target_lang=lang)
|
| 143 |
+
|
| 144 |
+
if self.compiler.exe_extension is not None:
|
| 145 |
+
prog = prog + self.compiler.exe_extension
|
| 146 |
+
self.temp_files.append(prog)
|
| 147 |
+
|
| 148 |
+
return (src, obj, prog)
|
| 149 |
+
|
| 150 |
+
def _clean(self, *filenames):
|
| 151 |
+
if not filenames:
|
| 152 |
+
filenames = self.temp_files
|
| 153 |
+
self.temp_files = []
|
| 154 |
+
log.info("removing: %s", ' '.join(filenames))
|
| 155 |
+
for filename in filenames:
|
| 156 |
+
try:
|
| 157 |
+
os.remove(filename)
|
| 158 |
+
except OSError:
|
| 159 |
+
pass
|
| 160 |
+
|
| 161 |
+
|
| 162 |
+
# XXX these ignore the dry-run flag: what to do, what to do? even if
|
| 163 |
+
# you want a dry-run build, you still need some sort of configuration
|
| 164 |
+
# info. My inclination is to make it up to the real config command to
|
| 165 |
+
# consult 'dry_run', and assume a default (minimal) configuration if
|
| 166 |
+
# true. The problem with trying to do it here is that you'd have to
|
| 167 |
+
# return either true or false from all the 'try' methods, neither of
|
| 168 |
+
# which is correct.
|
| 169 |
+
|
| 170 |
+
# XXX need access to the header search path and maybe default macros.
|
| 171 |
+
|
| 172 |
+
def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c"):
|
| 173 |
+
"""Construct a source file from 'body' (a string containing lines
|
| 174 |
+
of C/C++ code) and 'headers' (a list of header files to include)
|
| 175 |
+
and run it through the preprocessor. Return true if the
|
| 176 |
+
preprocessor succeeded, false if there were any errors.
|
| 177 |
+
('body' probably isn't of much use, but what the heck.)
|
| 178 |
+
"""
|
| 179 |
+
from distutils.ccompiler import CompileError
|
| 180 |
+
self._check_compiler()
|
| 181 |
+
ok = True
|
| 182 |
+
try:
|
| 183 |
+
self._preprocess(body, headers, include_dirs, lang)
|
| 184 |
+
except CompileError:
|
| 185 |
+
ok = False
|
| 186 |
+
|
| 187 |
+
self._clean()
|
| 188 |
+
return ok
|
| 189 |
+
|
| 190 |
+
def search_cpp(self, pattern, body=None, headers=None, include_dirs=None,
|
| 191 |
+
lang="c"):
|
| 192 |
+
"""Construct a source file (just like 'try_cpp()'), run it through
|
| 193 |
+
the preprocessor, and return true if any line of the output matches
|
| 194 |
+
'pattern'. 'pattern' should either be a compiled regex object or a
|
| 195 |
+
string containing a regex. If both 'body' and 'headers' are None,
|
| 196 |
+
preprocesses an empty file -- which can be useful to determine the
|
| 197 |
+
symbols the preprocessor and compiler set by default.
|
| 198 |
+
"""
|
| 199 |
+
self._check_compiler()
|
| 200 |
+
src, out = self._preprocess(body, headers, include_dirs, lang)
|
| 201 |
+
|
| 202 |
+
if isinstance(pattern, str):
|
| 203 |
+
pattern = re.compile(pattern)
|
| 204 |
+
|
| 205 |
+
with open(out) as file:
|
| 206 |
+
match = False
|
| 207 |
+
while True:
|
| 208 |
+
line = file.readline()
|
| 209 |
+
if line == '':
|
| 210 |
+
break
|
| 211 |
+
if pattern.search(line):
|
| 212 |
+
match = True
|
| 213 |
+
break
|
| 214 |
+
|
| 215 |
+
self._clean()
|
| 216 |
+
return match
|
| 217 |
+
|
| 218 |
+
def try_compile(self, body, headers=None, include_dirs=None, lang="c"):
|
| 219 |
+
"""Try to compile a source file built from 'body' and 'headers'.
|
| 220 |
+
Return true on success, false otherwise.
|
| 221 |
+
"""
|
| 222 |
+
from distutils.ccompiler import CompileError
|
| 223 |
+
self._check_compiler()
|
| 224 |
+
try:
|
| 225 |
+
self._compile(body, headers, include_dirs, lang)
|
| 226 |
+
ok = True
|
| 227 |
+
except CompileError:
|
| 228 |
+
ok = False
|
| 229 |
+
|
| 230 |
+
log.info(ok and "success!" or "failure.")
|
| 231 |
+
self._clean()
|
| 232 |
+
return ok
|
| 233 |
+
|
| 234 |
+
def try_link(self, body, headers=None, include_dirs=None, libraries=None,
|
| 235 |
+
library_dirs=None, lang="c"):
|
| 236 |
+
"""Try to compile and link a source file, built from 'body' and
|
| 237 |
+
'headers', to executable form. Return true on success, false
|
| 238 |
+
otherwise.
|
| 239 |
+
"""
|
| 240 |
+
from distutils.ccompiler import CompileError, LinkError
|
| 241 |
+
self._check_compiler()
|
| 242 |
+
try:
|
| 243 |
+
self._link(body, headers, include_dirs,
|
| 244 |
+
libraries, library_dirs, lang)
|
| 245 |
+
ok = True
|
| 246 |
+
except (CompileError, LinkError):
|
| 247 |
+
ok = False
|
| 248 |
+
|
| 249 |
+
log.info(ok and "success!" or "failure.")
|
| 250 |
+
self._clean()
|
| 251 |
+
return ok
|
| 252 |
+
|
| 253 |
+
def try_run(self, body, headers=None, include_dirs=None, libraries=None,
|
| 254 |
+
library_dirs=None, lang="c"):
|
| 255 |
+
"""Try to compile, link to an executable, and run a program
|
| 256 |
+
built from 'body' and 'headers'. Return true on success, false
|
| 257 |
+
otherwise.
|
| 258 |
+
"""
|
| 259 |
+
from distutils.ccompiler import CompileError, LinkError
|
| 260 |
+
self._check_compiler()
|
| 261 |
+
try:
|
| 262 |
+
src, obj, exe = self._link(body, headers, include_dirs,
|
| 263 |
+
libraries, library_dirs, lang)
|
| 264 |
+
self.spawn([exe])
|
| 265 |
+
ok = True
|
| 266 |
+
except (CompileError, LinkError, DistutilsExecError):
|
| 267 |
+
ok = False
|
| 268 |
+
|
| 269 |
+
log.info(ok and "success!" or "failure.")
|
| 270 |
+
self._clean()
|
| 271 |
+
return ok
|
| 272 |
+
|
| 273 |
+
|
| 274 |
+
# -- High-level methods --------------------------------------------
|
| 275 |
+
# (these are the ones that are actually likely to be useful
|
| 276 |
+
# when implementing a real-world config command!)
|
| 277 |
+
|
| 278 |
+
def check_func(self, func, headers=None, include_dirs=None,
|
| 279 |
+
libraries=None, library_dirs=None, decl=0, call=0):
|
| 280 |
+
"""Determine if function 'func' is available by constructing a
|
| 281 |
+
source file that refers to 'func', and compiles and links it.
|
| 282 |
+
If everything succeeds, returns true; otherwise returns false.
|
| 283 |
+
|
| 284 |
+
The constructed source file starts out by including the header
|
| 285 |
+
files listed in 'headers'. If 'decl' is true, it then declares
|
| 286 |
+
'func' (as "int func()"); you probably shouldn't supply 'headers'
|
| 287 |
+
and set 'decl' true in the same call, or you might get errors about
|
| 288 |
+
a conflicting declarations for 'func'. Finally, the constructed
|
| 289 |
+
'main()' function either references 'func' or (if 'call' is true)
|
| 290 |
+
calls it. 'libraries' and 'library_dirs' are used when
|
| 291 |
+
linking.
|
| 292 |
+
"""
|
| 293 |
+
self._check_compiler()
|
| 294 |
+
body = []
|
| 295 |
+
if decl:
|
| 296 |
+
body.append("int %s ();" % func)
|
| 297 |
+
body.append("int main () {")
|
| 298 |
+
if call:
|
| 299 |
+
body.append(" %s();" % func)
|
| 300 |
+
else:
|
| 301 |
+
body.append(" %s;" % func)
|
| 302 |
+
body.append("}")
|
| 303 |
+
body = "\n".join(body) + "\n"
|
| 304 |
+
|
| 305 |
+
return self.try_link(body, headers, include_dirs,
|
| 306 |
+
libraries, library_dirs)
|
| 307 |
+
|
| 308 |
+
def check_lib(self, library, library_dirs=None, headers=None,
|
| 309 |
+
include_dirs=None, other_libraries=[]):
|
| 310 |
+
"""Determine if 'library' is available to be linked against,
|
| 311 |
+
without actually checking that any particular symbols are provided
|
| 312 |
+
by it. 'headers' will be used in constructing the source file to
|
| 313 |
+
be compiled, but the only effect of this is to check if all the
|
| 314 |
+
header files listed are available. Any libraries listed in
|
| 315 |
+
'other_libraries' will be included in the link, in case 'library'
|
| 316 |
+
has symbols that depend on other libraries.
|
| 317 |
+
"""
|
| 318 |
+
self._check_compiler()
|
| 319 |
+
return self.try_link("int main (void) { }", headers, include_dirs,
|
| 320 |
+
[library] + other_libraries, library_dirs)
|
| 321 |
+
|
| 322 |
+
def check_header(self, header, include_dirs=None, library_dirs=None,
|
| 323 |
+
lang="c"):
|
| 324 |
+
"""Determine if the system header file named by 'header_file'
|
| 325 |
+
exists and can be found by the preprocessor; return true if so,
|
| 326 |
+
false otherwise.
|
| 327 |
+
"""
|
| 328 |
+
return self.try_cpp(body="/* No body */", headers=[header],
|
| 329 |
+
include_dirs=include_dirs)
|
| 330 |
+
|
| 331 |
+
def dump_file(filename, head=None):
|
| 332 |
+
"""Dumps a file content into log.info.
|
| 333 |
+
|
| 334 |
+
If head is not None, will be dumped before the file content.
|
| 335 |
+
"""
|
| 336 |
+
if head is None:
|
| 337 |
+
log.info('%s', filename)
|
| 338 |
+
else:
|
| 339 |
+
log.info(head)
|
| 340 |
+
file = open(filename)
|
| 341 |
+
try:
|
| 342 |
+
log.info(file.read())
|
| 343 |
+
finally:
|
| 344 |
+
file.close()
|
vila/lib/python3.10/distutils/command/install_egg_info.py
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.install_egg_info
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'install_egg_info' command, for installing
|
| 4 |
+
a package's PKG-INFO metadata."""
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
from distutils.cmd import Command
|
| 8 |
+
from distutils import log, dir_util
|
| 9 |
+
import os, sys, re
|
| 10 |
+
|
| 11 |
+
class install_egg_info(Command):
|
| 12 |
+
"""Install an .egg-info file for the package"""
|
| 13 |
+
|
| 14 |
+
description = "Install package's PKG-INFO metadata as an .egg-info file"
|
| 15 |
+
user_options = [
|
| 16 |
+
('install-dir=', 'd', "directory to install to"),
|
| 17 |
+
]
|
| 18 |
+
|
| 19 |
+
def initialize_options(self):
|
| 20 |
+
self.install_dir = None
|
| 21 |
+
|
| 22 |
+
def finalize_options(self):
|
| 23 |
+
self.set_undefined_options('install_lib',('install_dir','install_dir'))
|
| 24 |
+
basename = "%s-%s-py%d.%d.egg-info" % (
|
| 25 |
+
to_filename(safe_name(self.distribution.get_name())),
|
| 26 |
+
to_filename(safe_version(self.distribution.get_version())),
|
| 27 |
+
*sys.version_info[:2]
|
| 28 |
+
)
|
| 29 |
+
self.target = os.path.join(self.install_dir, basename)
|
| 30 |
+
self.outputs = [self.target]
|
| 31 |
+
|
| 32 |
+
def run(self):
|
| 33 |
+
target = self.target
|
| 34 |
+
if os.path.isdir(target) and not os.path.islink(target):
|
| 35 |
+
dir_util.remove_tree(target, dry_run=self.dry_run)
|
| 36 |
+
elif os.path.exists(target):
|
| 37 |
+
self.execute(os.unlink,(self.target,),"Removing "+target)
|
| 38 |
+
elif not os.path.isdir(self.install_dir):
|
| 39 |
+
self.execute(os.makedirs, (self.install_dir,),
|
| 40 |
+
"Creating "+self.install_dir)
|
| 41 |
+
log.info("Writing %s", target)
|
| 42 |
+
if not self.dry_run:
|
| 43 |
+
with open(target, 'w', encoding='UTF-8') as f:
|
| 44 |
+
self.distribution.metadata.write_pkg_file(f)
|
| 45 |
+
|
| 46 |
+
def get_outputs(self):
|
| 47 |
+
return self.outputs
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
# The following routines are taken from setuptools' pkg_resources module and
|
| 51 |
+
# can be replaced by importing them from pkg_resources once it is included
|
| 52 |
+
# in the stdlib.
|
| 53 |
+
|
| 54 |
+
def safe_name(name):
|
| 55 |
+
"""Convert an arbitrary string to a standard distribution name
|
| 56 |
+
|
| 57 |
+
Any runs of non-alphanumeric/. characters are replaced with a single '-'.
|
| 58 |
+
"""
|
| 59 |
+
return re.sub('[^A-Za-z0-9.]+', '-', name)
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
def safe_version(version):
|
| 63 |
+
"""Convert an arbitrary string to a standard version string
|
| 64 |
+
|
| 65 |
+
Spaces become dots, and all other non-alphanumeric characters become
|
| 66 |
+
dashes, with runs of multiple dashes condensed to a single dash.
|
| 67 |
+
"""
|
| 68 |
+
version = version.replace(' ','.')
|
| 69 |
+
return re.sub('[^A-Za-z0-9.]+', '-', version)
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
def to_filename(name):
|
| 73 |
+
"""Convert a project or version name to its filename-escaped form
|
| 74 |
+
|
| 75 |
+
Any '-' characters are currently replaced with '_'.
|
| 76 |
+
"""
|
| 77 |
+
return name.replace('-','_')
|
vila/lib/python3.10/distutils/command/install_headers.py
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.install_headers
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'install_headers' command, to install C/C++ header
|
| 4 |
+
files to the Python include directory."""
|
| 5 |
+
|
| 6 |
+
from distutils.core import Command
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
# XXX force is never used
|
| 10 |
+
class install_headers(Command):
|
| 11 |
+
|
| 12 |
+
description = "install C/C++ header files"
|
| 13 |
+
|
| 14 |
+
user_options = [('install-dir=', 'd',
|
| 15 |
+
"directory to install header files to"),
|
| 16 |
+
('force', 'f',
|
| 17 |
+
"force installation (overwrite existing files)"),
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
boolean_options = ['force']
|
| 21 |
+
|
| 22 |
+
def initialize_options(self):
|
| 23 |
+
self.install_dir = None
|
| 24 |
+
self.force = 0
|
| 25 |
+
self.outfiles = []
|
| 26 |
+
|
| 27 |
+
def finalize_options(self):
|
| 28 |
+
self.set_undefined_options('install',
|
| 29 |
+
('install_headers', 'install_dir'),
|
| 30 |
+
('force', 'force'))
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
def run(self):
|
| 34 |
+
headers = self.distribution.headers
|
| 35 |
+
if not headers:
|
| 36 |
+
return
|
| 37 |
+
|
| 38 |
+
self.mkpath(self.install_dir)
|
| 39 |
+
for header in headers:
|
| 40 |
+
(out, _) = self.copy_file(header, self.install_dir)
|
| 41 |
+
self.outfiles.append(out)
|
| 42 |
+
|
| 43 |
+
def get_inputs(self):
|
| 44 |
+
return self.distribution.headers or []
|
| 45 |
+
|
| 46 |
+
def get_outputs(self):
|
| 47 |
+
return self.outfiles
|
vila/lib/python3.10/distutils/command/install_lib.py
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.install_lib
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'install_lib' command
|
| 4 |
+
(install all Python modules)."""
|
| 5 |
+
|
| 6 |
+
import os
|
| 7 |
+
import importlib.util
|
| 8 |
+
import sys
|
| 9 |
+
|
| 10 |
+
from distutils.core import Command
|
| 11 |
+
from distutils.errors import DistutilsOptionError
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
# Extension for Python source files.
|
| 15 |
+
PYTHON_SOURCE_EXTENSION = ".py"
|
| 16 |
+
|
| 17 |
+
class install_lib(Command):
|
| 18 |
+
|
| 19 |
+
description = "install all Python modules (extensions and pure Python)"
|
| 20 |
+
|
| 21 |
+
# The byte-compilation options are a tad confusing. Here are the
|
| 22 |
+
# possible scenarios:
|
| 23 |
+
# 1) no compilation at all (--no-compile --no-optimize)
|
| 24 |
+
# 2) compile .pyc only (--compile --no-optimize; default)
|
| 25 |
+
# 3) compile .pyc and "opt-1" .pyc (--compile --optimize)
|
| 26 |
+
# 4) compile "opt-1" .pyc only (--no-compile --optimize)
|
| 27 |
+
# 5) compile .pyc and "opt-2" .pyc (--compile --optimize-more)
|
| 28 |
+
# 6) compile "opt-2" .pyc only (--no-compile --optimize-more)
|
| 29 |
+
#
|
| 30 |
+
# The UI for this is two options, 'compile' and 'optimize'.
|
| 31 |
+
# 'compile' is strictly boolean, and only decides whether to
|
| 32 |
+
# generate .pyc files. 'optimize' is three-way (0, 1, or 2), and
|
| 33 |
+
# decides both whether to generate .pyc files and what level of
|
| 34 |
+
# optimization to use.
|
| 35 |
+
|
| 36 |
+
user_options = [
|
| 37 |
+
('install-dir=', 'd', "directory to install to"),
|
| 38 |
+
('build-dir=','b', "build directory (where to install from)"),
|
| 39 |
+
('force', 'f', "force installation (overwrite existing files)"),
|
| 40 |
+
('compile', 'c', "compile .py to .pyc [default]"),
|
| 41 |
+
('no-compile', None, "don't compile .py files"),
|
| 42 |
+
('optimize=', 'O',
|
| 43 |
+
"also compile with optimization: -O1 for \"python -O\", "
|
| 44 |
+
"-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
|
| 45 |
+
('skip-build', None, "skip the build steps"),
|
| 46 |
+
]
|
| 47 |
+
|
| 48 |
+
boolean_options = ['force', 'compile', 'skip-build']
|
| 49 |
+
negative_opt = {'no-compile' : 'compile'}
|
| 50 |
+
|
| 51 |
+
def initialize_options(self):
|
| 52 |
+
# let the 'install' command dictate our installation directory
|
| 53 |
+
self.install_dir = None
|
| 54 |
+
self.build_dir = None
|
| 55 |
+
self.force = 0
|
| 56 |
+
self.compile = None
|
| 57 |
+
self.optimize = None
|
| 58 |
+
self.skip_build = None
|
| 59 |
+
|
| 60 |
+
def finalize_options(self):
|
| 61 |
+
# Get all the information we need to install pure Python modules
|
| 62 |
+
# from the umbrella 'install' command -- build (source) directory,
|
| 63 |
+
# install (target) directory, and whether to compile .py files.
|
| 64 |
+
self.set_undefined_options('install',
|
| 65 |
+
('build_lib', 'build_dir'),
|
| 66 |
+
('install_lib', 'install_dir'),
|
| 67 |
+
('force', 'force'),
|
| 68 |
+
('compile', 'compile'),
|
| 69 |
+
('optimize', 'optimize'),
|
| 70 |
+
('skip_build', 'skip_build'),
|
| 71 |
+
)
|
| 72 |
+
|
| 73 |
+
if self.compile is None:
|
| 74 |
+
self.compile = True
|
| 75 |
+
if self.optimize is None:
|
| 76 |
+
self.optimize = False
|
| 77 |
+
|
| 78 |
+
if not isinstance(self.optimize, int):
|
| 79 |
+
try:
|
| 80 |
+
self.optimize = int(self.optimize)
|
| 81 |
+
if self.optimize not in (0, 1, 2):
|
| 82 |
+
raise AssertionError
|
| 83 |
+
except (ValueError, AssertionError):
|
| 84 |
+
raise DistutilsOptionError("optimize must be 0, 1, or 2")
|
| 85 |
+
|
| 86 |
+
def run(self):
|
| 87 |
+
# Make sure we have built everything we need first
|
| 88 |
+
self.build()
|
| 89 |
+
|
| 90 |
+
# Install everything: simply dump the entire contents of the build
|
| 91 |
+
# directory to the installation directory (that's the beauty of
|
| 92 |
+
# having a build directory!)
|
| 93 |
+
outfiles = self.install()
|
| 94 |
+
|
| 95 |
+
# (Optionally) compile .py to .pyc
|
| 96 |
+
if outfiles is not None and self.distribution.has_pure_modules():
|
| 97 |
+
self.byte_compile(outfiles)
|
| 98 |
+
|
| 99 |
+
# -- Top-level worker functions ------------------------------------
|
| 100 |
+
# (called from 'run()')
|
| 101 |
+
|
| 102 |
+
def build(self):
|
| 103 |
+
if not self.skip_build:
|
| 104 |
+
if self.distribution.has_pure_modules():
|
| 105 |
+
self.run_command('build_py')
|
| 106 |
+
if self.distribution.has_ext_modules():
|
| 107 |
+
self.run_command('build_ext')
|
| 108 |
+
|
| 109 |
+
def install(self):
|
| 110 |
+
if os.path.isdir(self.build_dir):
|
| 111 |
+
outfiles = self.copy_tree(self.build_dir, self.install_dir)
|
| 112 |
+
else:
|
| 113 |
+
self.warn("'%s' does not exist -- no Python modules to install" %
|
| 114 |
+
self.build_dir)
|
| 115 |
+
return
|
| 116 |
+
return outfiles
|
| 117 |
+
|
| 118 |
+
def byte_compile(self, files):
|
| 119 |
+
if sys.dont_write_bytecode:
|
| 120 |
+
self.warn('byte-compiling is disabled, skipping.')
|
| 121 |
+
return
|
| 122 |
+
|
| 123 |
+
from distutils.util import byte_compile
|
| 124 |
+
|
| 125 |
+
# Get the "--root" directory supplied to the "install" command,
|
| 126 |
+
# and use it as a prefix to strip off the purported filename
|
| 127 |
+
# encoded in bytecode files. This is far from complete, but it
|
| 128 |
+
# should at least generate usable bytecode in RPM distributions.
|
| 129 |
+
install_root = self.get_finalized_command('install').root
|
| 130 |
+
|
| 131 |
+
if self.compile:
|
| 132 |
+
byte_compile(files, optimize=0,
|
| 133 |
+
force=self.force, prefix=install_root,
|
| 134 |
+
dry_run=self.dry_run)
|
| 135 |
+
if self.optimize > 0:
|
| 136 |
+
byte_compile(files, optimize=self.optimize,
|
| 137 |
+
force=self.force, prefix=install_root,
|
| 138 |
+
verbose=self.verbose, dry_run=self.dry_run)
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
# -- Utility methods -----------------------------------------------
|
| 142 |
+
|
| 143 |
+
def _mutate_outputs(self, has_any, build_cmd, cmd_option, output_dir):
|
| 144 |
+
if not has_any:
|
| 145 |
+
return []
|
| 146 |
+
|
| 147 |
+
build_cmd = self.get_finalized_command(build_cmd)
|
| 148 |
+
build_files = build_cmd.get_outputs()
|
| 149 |
+
build_dir = getattr(build_cmd, cmd_option)
|
| 150 |
+
|
| 151 |
+
prefix_len = len(build_dir) + len(os.sep)
|
| 152 |
+
outputs = []
|
| 153 |
+
for file in build_files:
|
| 154 |
+
outputs.append(os.path.join(output_dir, file[prefix_len:]))
|
| 155 |
+
|
| 156 |
+
return outputs
|
| 157 |
+
|
| 158 |
+
def _bytecode_filenames(self, py_filenames):
|
| 159 |
+
bytecode_files = []
|
| 160 |
+
for py_file in py_filenames:
|
| 161 |
+
# Since build_py handles package data installation, the
|
| 162 |
+
# list of outputs can contain more than just .py files.
|
| 163 |
+
# Make sure we only report bytecode for the .py files.
|
| 164 |
+
ext = os.path.splitext(os.path.normcase(py_file))[1]
|
| 165 |
+
if ext != PYTHON_SOURCE_EXTENSION:
|
| 166 |
+
continue
|
| 167 |
+
if self.compile:
|
| 168 |
+
bytecode_files.append(importlib.util.cache_from_source(
|
| 169 |
+
py_file, optimization=''))
|
| 170 |
+
if self.optimize > 0:
|
| 171 |
+
bytecode_files.append(importlib.util.cache_from_source(
|
| 172 |
+
py_file, optimization=self.optimize))
|
| 173 |
+
|
| 174 |
+
return bytecode_files
|
| 175 |
+
|
| 176 |
+
|
| 177 |
+
# -- External interface --------------------------------------------
|
| 178 |
+
# (called by outsiders)
|
| 179 |
+
|
| 180 |
+
def get_outputs(self):
|
| 181 |
+
"""Return the list of files that would be installed if this command
|
| 182 |
+
were actually run. Not affected by the "dry-run" flag or whether
|
| 183 |
+
modules have actually been built yet.
|
| 184 |
+
"""
|
| 185 |
+
pure_outputs = \
|
| 186 |
+
self._mutate_outputs(self.distribution.has_pure_modules(),
|
| 187 |
+
'build_py', 'build_lib',
|
| 188 |
+
self.install_dir)
|
| 189 |
+
if self.compile:
|
| 190 |
+
bytecode_outputs = self._bytecode_filenames(pure_outputs)
|
| 191 |
+
else:
|
| 192 |
+
bytecode_outputs = []
|
| 193 |
+
|
| 194 |
+
ext_outputs = \
|
| 195 |
+
self._mutate_outputs(self.distribution.has_ext_modules(),
|
| 196 |
+
'build_ext', 'build_lib',
|
| 197 |
+
self.install_dir)
|
| 198 |
+
|
| 199 |
+
return pure_outputs + bytecode_outputs + ext_outputs
|
| 200 |
+
|
| 201 |
+
def get_inputs(self):
|
| 202 |
+
"""Get the list of files that are input to this command, ie. the
|
| 203 |
+
files that get installed as they are named in the build tree.
|
| 204 |
+
The files in this list correspond one-to-one to the output
|
| 205 |
+
filenames returned by 'get_outputs()'.
|
| 206 |
+
"""
|
| 207 |
+
inputs = []
|
| 208 |
+
|
| 209 |
+
if self.distribution.has_pure_modules():
|
| 210 |
+
build_py = self.get_finalized_command('build_py')
|
| 211 |
+
inputs.extend(build_py.get_outputs())
|
| 212 |
+
|
| 213 |
+
if self.distribution.has_ext_modules():
|
| 214 |
+
build_ext = self.get_finalized_command('build_ext')
|
| 215 |
+
inputs.extend(build_ext.get_outputs())
|
| 216 |
+
|
| 217 |
+
return inputs
|
vila/lib/python3.10/distutils/command/install_scripts.py
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.install_scripts
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'install_scripts' command, for installing
|
| 4 |
+
Python scripts."""
|
| 5 |
+
|
| 6 |
+
# contributed by Bastian Kleineidam
|
| 7 |
+
|
| 8 |
+
import os
|
| 9 |
+
from distutils.core import Command
|
| 10 |
+
from distutils import log
|
| 11 |
+
from stat import ST_MODE
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
class install_scripts(Command):
|
| 15 |
+
|
| 16 |
+
description = "install scripts (Python or otherwise)"
|
| 17 |
+
|
| 18 |
+
user_options = [
|
| 19 |
+
('install-dir=', 'd', "directory to install scripts to"),
|
| 20 |
+
('build-dir=','b', "build directory (where to install from)"),
|
| 21 |
+
('force', 'f', "force installation (overwrite existing files)"),
|
| 22 |
+
('skip-build', None, "skip the build steps"),
|
| 23 |
+
]
|
| 24 |
+
|
| 25 |
+
boolean_options = ['force', 'skip-build']
|
| 26 |
+
|
| 27 |
+
def initialize_options(self):
|
| 28 |
+
self.install_dir = None
|
| 29 |
+
self.force = 0
|
| 30 |
+
self.build_dir = None
|
| 31 |
+
self.skip_build = None
|
| 32 |
+
|
| 33 |
+
def finalize_options(self):
|
| 34 |
+
self.set_undefined_options('build', ('build_scripts', 'build_dir'))
|
| 35 |
+
self.set_undefined_options('install',
|
| 36 |
+
('install_scripts', 'install_dir'),
|
| 37 |
+
('force', 'force'),
|
| 38 |
+
('skip_build', 'skip_build'),
|
| 39 |
+
)
|
| 40 |
+
|
| 41 |
+
def run(self):
|
| 42 |
+
if not self.skip_build:
|
| 43 |
+
self.run_command('build_scripts')
|
| 44 |
+
self.outfiles = self.copy_tree(self.build_dir, self.install_dir)
|
| 45 |
+
if os.name == 'posix':
|
| 46 |
+
# Set the executable bits (owner, group, and world) on
|
| 47 |
+
# all the scripts we just installed.
|
| 48 |
+
for file in self.get_outputs():
|
| 49 |
+
if self.dry_run:
|
| 50 |
+
log.info("changing mode of %s", file)
|
| 51 |
+
else:
|
| 52 |
+
mode = ((os.stat(file)[ST_MODE]) | 0o555) & 0o7777
|
| 53 |
+
log.info("changing mode of %s to %o", file, mode)
|
| 54 |
+
os.chmod(file, mode)
|
| 55 |
+
|
| 56 |
+
def get_inputs(self):
|
| 57 |
+
return self.distribution.scripts or []
|
| 58 |
+
|
| 59 |
+
def get_outputs(self):
|
| 60 |
+
return self.outfiles or []
|
vila/lib/python3.10/distutils/command/sdist.py
ADDED
|
@@ -0,0 +1,494 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""distutils.command.sdist
|
| 2 |
+
|
| 3 |
+
Implements the Distutils 'sdist' command (create a source distribution)."""
|
| 4 |
+
|
| 5 |
+
import os
|
| 6 |
+
import sys
|
| 7 |
+
from glob import glob
|
| 8 |
+
from warnings import warn
|
| 9 |
+
|
| 10 |
+
from distutils.core import Command
|
| 11 |
+
from distutils import dir_util
|
| 12 |
+
from distutils import file_util
|
| 13 |
+
from distutils import archive_util
|
| 14 |
+
from distutils.text_file import TextFile
|
| 15 |
+
from distutils.filelist import FileList
|
| 16 |
+
from distutils import log
|
| 17 |
+
from distutils.util import convert_path
|
| 18 |
+
from distutils.errors import DistutilsTemplateError, DistutilsOptionError
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
def show_formats():
|
| 22 |
+
"""Print all possible values for the 'formats' option (used by
|
| 23 |
+
the "--help-formats" command-line option).
|
| 24 |
+
"""
|
| 25 |
+
from distutils.fancy_getopt import FancyGetopt
|
| 26 |
+
from distutils.archive_util import ARCHIVE_FORMATS
|
| 27 |
+
formats = []
|
| 28 |
+
for format in ARCHIVE_FORMATS.keys():
|
| 29 |
+
formats.append(("formats=" + format, None,
|
| 30 |
+
ARCHIVE_FORMATS[format][2]))
|
| 31 |
+
formats.sort()
|
| 32 |
+
FancyGetopt(formats).print_help(
|
| 33 |
+
"List of available source distribution formats:")
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
class sdist(Command):
|
| 37 |
+
|
| 38 |
+
description = "create a source distribution (tarball, zip file, etc.)"
|
| 39 |
+
|
| 40 |
+
def checking_metadata(self):
|
| 41 |
+
"""Callable used for the check sub-command.
|
| 42 |
+
|
| 43 |
+
Placed here so user_options can view it"""
|
| 44 |
+
return self.metadata_check
|
| 45 |
+
|
| 46 |
+
user_options = [
|
| 47 |
+
('template=', 't',
|
| 48 |
+
"name of manifest template file [default: MANIFEST.in]"),
|
| 49 |
+
('manifest=', 'm',
|
| 50 |
+
"name of manifest file [default: MANIFEST]"),
|
| 51 |
+
('use-defaults', None,
|
| 52 |
+
"include the default file set in the manifest "
|
| 53 |
+
"[default; disable with --no-defaults]"),
|
| 54 |
+
('no-defaults', None,
|
| 55 |
+
"don't include the default file set"),
|
| 56 |
+
('prune', None,
|
| 57 |
+
"specifically exclude files/directories that should not be "
|
| 58 |
+
"distributed (build tree, RCS/CVS dirs, etc.) "
|
| 59 |
+
"[default; disable with --no-prune]"),
|
| 60 |
+
('no-prune', None,
|
| 61 |
+
"don't automatically exclude anything"),
|
| 62 |
+
('manifest-only', 'o',
|
| 63 |
+
"just regenerate the manifest and then stop "
|
| 64 |
+
"(implies --force-manifest)"),
|
| 65 |
+
('force-manifest', 'f',
|
| 66 |
+
"forcibly regenerate the manifest and carry on as usual. "
|
| 67 |
+
"Deprecated: now the manifest is always regenerated."),
|
| 68 |
+
('formats=', None,
|
| 69 |
+
"formats for source distribution (comma-separated list)"),
|
| 70 |
+
('keep-temp', 'k',
|
| 71 |
+
"keep the distribution tree around after creating " +
|
| 72 |
+
"archive file(s)"),
|
| 73 |
+
('dist-dir=', 'd',
|
| 74 |
+
"directory to put the source distribution archive(s) in "
|
| 75 |
+
"[default: dist]"),
|
| 76 |
+
('metadata-check', None,
|
| 77 |
+
"Ensure that all required elements of meta-data "
|
| 78 |
+
"are supplied. Warn if any missing. [default]"),
|
| 79 |
+
('owner=', 'u',
|
| 80 |
+
"Owner name used when creating a tar file [default: current user]"),
|
| 81 |
+
('group=', 'g',
|
| 82 |
+
"Group name used when creating a tar file [default: current group]"),
|
| 83 |
+
]
|
| 84 |
+
|
| 85 |
+
boolean_options = ['use-defaults', 'prune',
|
| 86 |
+
'manifest-only', 'force-manifest',
|
| 87 |
+
'keep-temp', 'metadata-check']
|
| 88 |
+
|
| 89 |
+
help_options = [
|
| 90 |
+
('help-formats', None,
|
| 91 |
+
"list available distribution formats", show_formats),
|
| 92 |
+
]
|
| 93 |
+
|
| 94 |
+
negative_opt = {'no-defaults': 'use-defaults',
|
| 95 |
+
'no-prune': 'prune' }
|
| 96 |
+
|
| 97 |
+
sub_commands = [('check', checking_metadata)]
|
| 98 |
+
|
| 99 |
+
READMES = ('README', 'README.txt', 'README.rst')
|
| 100 |
+
|
| 101 |
+
def initialize_options(self):
|
| 102 |
+
# 'template' and 'manifest' are, respectively, the names of
|
| 103 |
+
# the manifest template and manifest file.
|
| 104 |
+
self.template = None
|
| 105 |
+
self.manifest = None
|
| 106 |
+
|
| 107 |
+
# 'use_defaults': if true, we will include the default file set
|
| 108 |
+
# in the manifest
|
| 109 |
+
self.use_defaults = 1
|
| 110 |
+
self.prune = 1
|
| 111 |
+
|
| 112 |
+
self.manifest_only = 0
|
| 113 |
+
self.force_manifest = 0
|
| 114 |
+
|
| 115 |
+
self.formats = ['gztar']
|
| 116 |
+
self.keep_temp = 0
|
| 117 |
+
self.dist_dir = None
|
| 118 |
+
|
| 119 |
+
self.archive_files = None
|
| 120 |
+
self.metadata_check = 1
|
| 121 |
+
self.owner = None
|
| 122 |
+
self.group = None
|
| 123 |
+
|
| 124 |
+
def finalize_options(self):
|
| 125 |
+
if self.manifest is None:
|
| 126 |
+
self.manifest = "MANIFEST"
|
| 127 |
+
if self.template is None:
|
| 128 |
+
self.template = "MANIFEST.in"
|
| 129 |
+
|
| 130 |
+
self.ensure_string_list('formats')
|
| 131 |
+
|
| 132 |
+
bad_format = archive_util.check_archive_formats(self.formats)
|
| 133 |
+
if bad_format:
|
| 134 |
+
raise DistutilsOptionError(
|
| 135 |
+
"unknown archive format '%s'" % bad_format)
|
| 136 |
+
|
| 137 |
+
if self.dist_dir is None:
|
| 138 |
+
self.dist_dir = "dist"
|
| 139 |
+
|
| 140 |
+
def run(self):
|
| 141 |
+
# 'filelist' contains the list of files that will make up the
|
| 142 |
+
# manifest
|
| 143 |
+
self.filelist = FileList()
|
| 144 |
+
|
| 145 |
+
# Run sub commands
|
| 146 |
+
for cmd_name in self.get_sub_commands():
|
| 147 |
+
self.run_command(cmd_name)
|
| 148 |
+
|
| 149 |
+
# Do whatever it takes to get the list of files to process
|
| 150 |
+
# (process the manifest template, read an existing manifest,
|
| 151 |
+
# whatever). File list is accumulated in 'self.filelist'.
|
| 152 |
+
self.get_file_list()
|
| 153 |
+
|
| 154 |
+
# If user just wanted us to regenerate the manifest, stop now.
|
| 155 |
+
if self.manifest_only:
|
| 156 |
+
return
|
| 157 |
+
|
| 158 |
+
# Otherwise, go ahead and create the source distribution tarball,
|
| 159 |
+
# or zipfile, or whatever.
|
| 160 |
+
self.make_distribution()
|
| 161 |
+
|
| 162 |
+
def check_metadata(self):
|
| 163 |
+
"""Deprecated API."""
|
| 164 |
+
warn("distutils.command.sdist.check_metadata is deprecated, \
|
| 165 |
+
use the check command instead", PendingDeprecationWarning)
|
| 166 |
+
check = self.distribution.get_command_obj('check')
|
| 167 |
+
check.ensure_finalized()
|
| 168 |
+
check.run()
|
| 169 |
+
|
| 170 |
+
def get_file_list(self):
|
| 171 |
+
"""Figure out the list of files to include in the source
|
| 172 |
+
distribution, and put it in 'self.filelist'. This might involve
|
| 173 |
+
reading the manifest template (and writing the manifest), or just
|
| 174 |
+
reading the manifest, or just using the default file set -- it all
|
| 175 |
+
depends on the user's options.
|
| 176 |
+
"""
|
| 177 |
+
# new behavior when using a template:
|
| 178 |
+
# the file list is recalculated every time because
|
| 179 |
+
# even if MANIFEST.in or setup.py are not changed
|
| 180 |
+
# the user might have added some files in the tree that
|
| 181 |
+
# need to be included.
|
| 182 |
+
#
|
| 183 |
+
# This makes --force the default and only behavior with templates.
|
| 184 |
+
template_exists = os.path.isfile(self.template)
|
| 185 |
+
if not template_exists and self._manifest_is_not_generated():
|
| 186 |
+
self.read_manifest()
|
| 187 |
+
self.filelist.sort()
|
| 188 |
+
self.filelist.remove_duplicates()
|
| 189 |
+
return
|
| 190 |
+
|
| 191 |
+
if not template_exists:
|
| 192 |
+
self.warn(("manifest template '%s' does not exist " +
|
| 193 |
+
"(using default file list)") %
|
| 194 |
+
self.template)
|
| 195 |
+
self.filelist.findall()
|
| 196 |
+
|
| 197 |
+
if self.use_defaults:
|
| 198 |
+
self.add_defaults()
|
| 199 |
+
|
| 200 |
+
if template_exists:
|
| 201 |
+
self.read_template()
|
| 202 |
+
|
| 203 |
+
if self.prune:
|
| 204 |
+
self.prune_file_list()
|
| 205 |
+
|
| 206 |
+
self.filelist.sort()
|
| 207 |
+
self.filelist.remove_duplicates()
|
| 208 |
+
self.write_manifest()
|
| 209 |
+
|
| 210 |
+
def add_defaults(self):
|
| 211 |
+
"""Add all the default files to self.filelist:
|
| 212 |
+
- README or README.txt
|
| 213 |
+
- setup.py
|
| 214 |
+
- test/test*.py
|
| 215 |
+
- all pure Python modules mentioned in setup script
|
| 216 |
+
- all files pointed by package_data (build_py)
|
| 217 |
+
- all files defined in data_files.
|
| 218 |
+
- all files defined as scripts.
|
| 219 |
+
- all C sources listed as part of extensions or C libraries
|
| 220 |
+
in the setup script (doesn't catch C headers!)
|
| 221 |
+
Warns if (README or README.txt) or setup.py are missing; everything
|
| 222 |
+
else is optional.
|
| 223 |
+
"""
|
| 224 |
+
self._add_defaults_standards()
|
| 225 |
+
self._add_defaults_optional()
|
| 226 |
+
self._add_defaults_python()
|
| 227 |
+
self._add_defaults_data_files()
|
| 228 |
+
self._add_defaults_ext()
|
| 229 |
+
self._add_defaults_c_libs()
|
| 230 |
+
self._add_defaults_scripts()
|
| 231 |
+
|
| 232 |
+
@staticmethod
|
| 233 |
+
def _cs_path_exists(fspath):
|
| 234 |
+
"""
|
| 235 |
+
Case-sensitive path existence check
|
| 236 |
+
|
| 237 |
+
>>> sdist._cs_path_exists(__file__)
|
| 238 |
+
True
|
| 239 |
+
>>> sdist._cs_path_exists(__file__.upper())
|
| 240 |
+
False
|
| 241 |
+
"""
|
| 242 |
+
if not os.path.exists(fspath):
|
| 243 |
+
return False
|
| 244 |
+
# make absolute so we always have a directory
|
| 245 |
+
abspath = os.path.abspath(fspath)
|
| 246 |
+
directory, filename = os.path.split(abspath)
|
| 247 |
+
return filename in os.listdir(directory)
|
| 248 |
+
|
| 249 |
+
def _add_defaults_standards(self):
|
| 250 |
+
standards = [self.READMES, self.distribution.script_name]
|
| 251 |
+
for fn in standards:
|
| 252 |
+
if isinstance(fn, tuple):
|
| 253 |
+
alts = fn
|
| 254 |
+
got_it = False
|
| 255 |
+
for fn in alts:
|
| 256 |
+
if self._cs_path_exists(fn):
|
| 257 |
+
got_it = True
|
| 258 |
+
self.filelist.append(fn)
|
| 259 |
+
break
|
| 260 |
+
|
| 261 |
+
if not got_it:
|
| 262 |
+
self.warn("standard file not found: should have one of " +
|
| 263 |
+
', '.join(alts))
|
| 264 |
+
else:
|
| 265 |
+
if self._cs_path_exists(fn):
|
| 266 |
+
self.filelist.append(fn)
|
| 267 |
+
else:
|
| 268 |
+
self.warn("standard file '%s' not found" % fn)
|
| 269 |
+
|
| 270 |
+
def _add_defaults_optional(self):
|
| 271 |
+
optional = ['test/test*.py', 'setup.cfg']
|
| 272 |
+
for pattern in optional:
|
| 273 |
+
files = filter(os.path.isfile, glob(pattern))
|
| 274 |
+
self.filelist.extend(files)
|
| 275 |
+
|
| 276 |
+
def _add_defaults_python(self):
|
| 277 |
+
# build_py is used to get:
|
| 278 |
+
# - python modules
|
| 279 |
+
# - files defined in package_data
|
| 280 |
+
build_py = self.get_finalized_command('build_py')
|
| 281 |
+
|
| 282 |
+
# getting python files
|
| 283 |
+
if self.distribution.has_pure_modules():
|
| 284 |
+
self.filelist.extend(build_py.get_source_files())
|
| 285 |
+
|
| 286 |
+
# getting package_data files
|
| 287 |
+
# (computed in build_py.data_files by build_py.finalize_options)
|
| 288 |
+
for pkg, src_dir, build_dir, filenames in build_py.data_files:
|
| 289 |
+
for filename in filenames:
|
| 290 |
+
self.filelist.append(os.path.join(src_dir, filename))
|
| 291 |
+
|
| 292 |
+
def _add_defaults_data_files(self):
|
| 293 |
+
# getting distribution.data_files
|
| 294 |
+
if self.distribution.has_data_files():
|
| 295 |
+
for item in self.distribution.data_files:
|
| 296 |
+
if isinstance(item, str):
|
| 297 |
+
# plain file
|
| 298 |
+
item = convert_path(item)
|
| 299 |
+
if os.path.isfile(item):
|
| 300 |
+
self.filelist.append(item)
|
| 301 |
+
else:
|
| 302 |
+
# a (dirname, filenames) tuple
|
| 303 |
+
dirname, filenames = item
|
| 304 |
+
for f in filenames:
|
| 305 |
+
f = convert_path(f)
|
| 306 |
+
if os.path.isfile(f):
|
| 307 |
+
self.filelist.append(f)
|
| 308 |
+
|
| 309 |
+
def _add_defaults_ext(self):
|
| 310 |
+
if self.distribution.has_ext_modules():
|
| 311 |
+
build_ext = self.get_finalized_command('build_ext')
|
| 312 |
+
self.filelist.extend(build_ext.get_source_files())
|
| 313 |
+
|
| 314 |
+
def _add_defaults_c_libs(self):
|
| 315 |
+
if self.distribution.has_c_libraries():
|
| 316 |
+
build_clib = self.get_finalized_command('build_clib')
|
| 317 |
+
self.filelist.extend(build_clib.get_source_files())
|
| 318 |
+
|
| 319 |
+
def _add_defaults_scripts(self):
|
| 320 |
+
if self.distribution.has_scripts():
|
| 321 |
+
build_scripts = self.get_finalized_command('build_scripts')
|
| 322 |
+
self.filelist.extend(build_scripts.get_source_files())
|
| 323 |
+
|
| 324 |
+
def read_template(self):
|
| 325 |
+
"""Read and parse manifest template file named by self.template.
|
| 326 |
+
|
| 327 |
+
(usually "MANIFEST.in") The parsing and processing is done by
|
| 328 |
+
'self.filelist', which updates itself accordingly.
|
| 329 |
+
"""
|
| 330 |
+
log.info("reading manifest template '%s'", self.template)
|
| 331 |
+
template = TextFile(self.template, strip_comments=1, skip_blanks=1,
|
| 332 |
+
join_lines=1, lstrip_ws=1, rstrip_ws=1,
|
| 333 |
+
collapse_join=1)
|
| 334 |
+
|
| 335 |
+
try:
|
| 336 |
+
while True:
|
| 337 |
+
line = template.readline()
|
| 338 |
+
if line is None: # end of file
|
| 339 |
+
break
|
| 340 |
+
|
| 341 |
+
try:
|
| 342 |
+
self.filelist.process_template_line(line)
|
| 343 |
+
# the call above can raise a DistutilsTemplateError for
|
| 344 |
+
# malformed lines, or a ValueError from the lower-level
|
| 345 |
+
# convert_path function
|
| 346 |
+
except (DistutilsTemplateError, ValueError) as msg:
|
| 347 |
+
self.warn("%s, line %d: %s" % (template.filename,
|
| 348 |
+
template.current_line,
|
| 349 |
+
msg))
|
| 350 |
+
finally:
|
| 351 |
+
template.close()
|
| 352 |
+
|
| 353 |
+
def prune_file_list(self):
|
| 354 |
+
"""Prune off branches that might slip into the file list as created
|
| 355 |
+
by 'read_template()', but really don't belong there:
|
| 356 |
+
* the build tree (typically "build")
|
| 357 |
+
* the release tree itself (only an issue if we ran "sdist"
|
| 358 |
+
previously with --keep-temp, or it aborted)
|
| 359 |
+
* any RCS, CVS, .svn, .hg, .git, .bzr, _darcs directories
|
| 360 |
+
"""
|
| 361 |
+
build = self.get_finalized_command('build')
|
| 362 |
+
base_dir = self.distribution.get_fullname()
|
| 363 |
+
|
| 364 |
+
self.filelist.exclude_pattern(None, prefix=build.build_base)
|
| 365 |
+
self.filelist.exclude_pattern(None, prefix=base_dir)
|
| 366 |
+
|
| 367 |
+
if sys.platform == 'win32':
|
| 368 |
+
seps = r'/|\\'
|
| 369 |
+
else:
|
| 370 |
+
seps = '/'
|
| 371 |
+
|
| 372 |
+
vcs_dirs = ['RCS', 'CVS', r'\.svn', r'\.hg', r'\.git', r'\.bzr',
|
| 373 |
+
'_darcs']
|
| 374 |
+
vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
|
| 375 |
+
self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
|
| 376 |
+
|
| 377 |
+
def write_manifest(self):
|
| 378 |
+
"""Write the file list in 'self.filelist' (presumably as filled in
|
| 379 |
+
by 'add_defaults()' and 'read_template()') to the manifest file
|
| 380 |
+
named by 'self.manifest'.
|
| 381 |
+
"""
|
| 382 |
+
if self._manifest_is_not_generated():
|
| 383 |
+
log.info("not writing to manually maintained "
|
| 384 |
+
"manifest file '%s'" % self.manifest)
|
| 385 |
+
return
|
| 386 |
+
|
| 387 |
+
content = self.filelist.files[:]
|
| 388 |
+
content.insert(0, '# file GENERATED by distutils, do NOT edit')
|
| 389 |
+
self.execute(file_util.write_file, (self.manifest, content),
|
| 390 |
+
"writing manifest file '%s'" % self.manifest)
|
| 391 |
+
|
| 392 |
+
def _manifest_is_not_generated(self):
|
| 393 |
+
# check for special comment used in 3.1.3 and higher
|
| 394 |
+
if not os.path.isfile(self.manifest):
|
| 395 |
+
return False
|
| 396 |
+
|
| 397 |
+
fp = open(self.manifest)
|
| 398 |
+
try:
|
| 399 |
+
first_line = fp.readline()
|
| 400 |
+
finally:
|
| 401 |
+
fp.close()
|
| 402 |
+
return first_line != '# file GENERATED by distutils, do NOT edit\n'
|
| 403 |
+
|
| 404 |
+
def read_manifest(self):
|
| 405 |
+
"""Read the manifest file (named by 'self.manifest') and use it to
|
| 406 |
+
fill in 'self.filelist', the list of files to include in the source
|
| 407 |
+
distribution.
|
| 408 |
+
"""
|
| 409 |
+
log.info("reading manifest file '%s'", self.manifest)
|
| 410 |
+
with open(self.manifest) as manifest:
|
| 411 |
+
for line in manifest:
|
| 412 |
+
# ignore comments and blank lines
|
| 413 |
+
line = line.strip()
|
| 414 |
+
if line.startswith('#') or not line:
|
| 415 |
+
continue
|
| 416 |
+
self.filelist.append(line)
|
| 417 |
+
|
| 418 |
+
def make_release_tree(self, base_dir, files):
|
| 419 |
+
"""Create the directory tree that will become the source
|
| 420 |
+
distribution archive. All directories implied by the filenames in
|
| 421 |
+
'files' are created under 'base_dir', and then we hard link or copy
|
| 422 |
+
(if hard linking is unavailable) those files into place.
|
| 423 |
+
Essentially, this duplicates the developer's source tree, but in a
|
| 424 |
+
directory named after the distribution, containing only the files
|
| 425 |
+
to be distributed.
|
| 426 |
+
"""
|
| 427 |
+
# Create all the directories under 'base_dir' necessary to
|
| 428 |
+
# put 'files' there; the 'mkpath()' is just so we don't die
|
| 429 |
+
# if the manifest happens to be empty.
|
| 430 |
+
self.mkpath(base_dir)
|
| 431 |
+
dir_util.create_tree(base_dir, files, dry_run=self.dry_run)
|
| 432 |
+
|
| 433 |
+
# And walk over the list of files, either making a hard link (if
|
| 434 |
+
# os.link exists) to each one that doesn't already exist in its
|
| 435 |
+
# corresponding location under 'base_dir', or copying each file
|
| 436 |
+
# that's out-of-date in 'base_dir'. (Usually, all files will be
|
| 437 |
+
# out-of-date, because by default we blow away 'base_dir' when
|
| 438 |
+
# we're done making the distribution archives.)
|
| 439 |
+
|
| 440 |
+
if hasattr(os, 'link'): # can make hard links on this system
|
| 441 |
+
link = 'hard'
|
| 442 |
+
msg = "making hard links in %s..." % base_dir
|
| 443 |
+
else: # nope, have to copy
|
| 444 |
+
link = None
|
| 445 |
+
msg = "copying files to %s..." % base_dir
|
| 446 |
+
|
| 447 |
+
if not files:
|
| 448 |
+
log.warn("no files to distribute -- empty manifest?")
|
| 449 |
+
else:
|
| 450 |
+
log.info(msg)
|
| 451 |
+
for file in files:
|
| 452 |
+
if not os.path.isfile(file):
|
| 453 |
+
log.warn("'%s' not a regular file -- skipping", file)
|
| 454 |
+
else:
|
| 455 |
+
dest = os.path.join(base_dir, file)
|
| 456 |
+
self.copy_file(file, dest, link=link)
|
| 457 |
+
|
| 458 |
+
self.distribution.metadata.write_pkg_info(base_dir)
|
| 459 |
+
|
| 460 |
+
def make_distribution(self):
|
| 461 |
+
"""Create the source distribution(s). First, we create the release
|
| 462 |
+
tree with 'make_release_tree()'; then, we create all required
|
| 463 |
+
archive files (according to 'self.formats') from the release tree.
|
| 464 |
+
Finally, we clean up by blowing away the release tree (unless
|
| 465 |
+
'self.keep_temp' is true). The list of archive files created is
|
| 466 |
+
stored so it can be retrieved later by 'get_archive_files()'.
|
| 467 |
+
"""
|
| 468 |
+
# Don't warn about missing meta-data here -- should be (and is!)
|
| 469 |
+
# done elsewhere.
|
| 470 |
+
base_dir = self.distribution.get_fullname()
|
| 471 |
+
base_name = os.path.join(self.dist_dir, base_dir)
|
| 472 |
+
|
| 473 |
+
self.make_release_tree(base_dir, self.filelist.files)
|
| 474 |
+
archive_files = [] # remember names of files we create
|
| 475 |
+
# tar archive must be created last to avoid overwrite and remove
|
| 476 |
+
if 'tar' in self.formats:
|
| 477 |
+
self.formats.append(self.formats.pop(self.formats.index('tar')))
|
| 478 |
+
|
| 479 |
+
for fmt in self.formats:
|
| 480 |
+
file = self.make_archive(base_name, fmt, base_dir=base_dir,
|
| 481 |
+
owner=self.owner, group=self.group)
|
| 482 |
+
archive_files.append(file)
|
| 483 |
+
self.distribution.dist_files.append(('sdist', '', file))
|
| 484 |
+
|
| 485 |
+
self.archive_files = archive_files
|
| 486 |
+
|
| 487 |
+
if not self.keep_temp:
|
| 488 |
+
dir_util.remove_tree(base_dir, dry_run=self.dry_run)
|
| 489 |
+
|
| 490 |
+
def get_archive_files(self):
|
| 491 |
+
"""Return the list of archive files created when the command
|
| 492 |
+
was run, or None if the command hasn't run yet.
|
| 493 |
+
"""
|
| 494 |
+
return self.archive_files
|
vila/lib/python3.10/ensurepip/__pycache__/__main__.cpython-310.pyc
ADDED
|
Binary file (489 Bytes). View file
|
|
|
vila/lib/python3.10/json/__init__.py
ADDED
|
@@ -0,0 +1,359 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
r"""JSON (JavaScript Object Notation) <https://json.org> is a subset of
|
| 2 |
+
JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
|
| 3 |
+
interchange format.
|
| 4 |
+
|
| 5 |
+
:mod:`json` exposes an API familiar to users of the standard library
|
| 6 |
+
:mod:`marshal` and :mod:`pickle` modules. It is derived from a
|
| 7 |
+
version of the externally maintained simplejson library.
|
| 8 |
+
|
| 9 |
+
Encoding basic Python object hierarchies::
|
| 10 |
+
|
| 11 |
+
>>> import json
|
| 12 |
+
>>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
|
| 13 |
+
'["foo", {"bar": ["baz", null, 1.0, 2]}]'
|
| 14 |
+
>>> print(json.dumps("\"foo\bar"))
|
| 15 |
+
"\"foo\bar"
|
| 16 |
+
>>> print(json.dumps('\u1234'))
|
| 17 |
+
"\u1234"
|
| 18 |
+
>>> print(json.dumps('\\'))
|
| 19 |
+
"\\"
|
| 20 |
+
>>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
|
| 21 |
+
{"a": 0, "b": 0, "c": 0}
|
| 22 |
+
>>> from io import StringIO
|
| 23 |
+
>>> io = StringIO()
|
| 24 |
+
>>> json.dump(['streaming API'], io)
|
| 25 |
+
>>> io.getvalue()
|
| 26 |
+
'["streaming API"]'
|
| 27 |
+
|
| 28 |
+
Compact encoding::
|
| 29 |
+
|
| 30 |
+
>>> import json
|
| 31 |
+
>>> mydict = {'4': 5, '6': 7}
|
| 32 |
+
>>> json.dumps([1,2,3,mydict], separators=(',', ':'))
|
| 33 |
+
'[1,2,3,{"4":5,"6":7}]'
|
| 34 |
+
|
| 35 |
+
Pretty printing::
|
| 36 |
+
|
| 37 |
+
>>> import json
|
| 38 |
+
>>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4))
|
| 39 |
+
{
|
| 40 |
+
"4": 5,
|
| 41 |
+
"6": 7
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
Decoding JSON::
|
| 45 |
+
|
| 46 |
+
>>> import json
|
| 47 |
+
>>> obj = ['foo', {'bar': ['baz', None, 1.0, 2]}]
|
| 48 |
+
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') == obj
|
| 49 |
+
True
|
| 50 |
+
>>> json.loads('"\\"foo\\bar"') == '"foo\x08ar'
|
| 51 |
+
True
|
| 52 |
+
>>> from io import StringIO
|
| 53 |
+
>>> io = StringIO('["streaming API"]')
|
| 54 |
+
>>> json.load(io)[0] == 'streaming API'
|
| 55 |
+
True
|
| 56 |
+
|
| 57 |
+
Specializing JSON object decoding::
|
| 58 |
+
|
| 59 |
+
>>> import json
|
| 60 |
+
>>> def as_complex(dct):
|
| 61 |
+
... if '__complex__' in dct:
|
| 62 |
+
... return complex(dct['real'], dct['imag'])
|
| 63 |
+
... return dct
|
| 64 |
+
...
|
| 65 |
+
>>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
| 66 |
+
... object_hook=as_complex)
|
| 67 |
+
(1+2j)
|
| 68 |
+
>>> from decimal import Decimal
|
| 69 |
+
>>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
|
| 70 |
+
True
|
| 71 |
+
|
| 72 |
+
Specializing JSON object encoding::
|
| 73 |
+
|
| 74 |
+
>>> import json
|
| 75 |
+
>>> def encode_complex(obj):
|
| 76 |
+
... if isinstance(obj, complex):
|
| 77 |
+
... return [obj.real, obj.imag]
|
| 78 |
+
... raise TypeError(f'Object of type {obj.__class__.__name__} '
|
| 79 |
+
... f'is not JSON serializable')
|
| 80 |
+
...
|
| 81 |
+
>>> json.dumps(2 + 1j, default=encode_complex)
|
| 82 |
+
'[2.0, 1.0]'
|
| 83 |
+
>>> json.JSONEncoder(default=encode_complex).encode(2 + 1j)
|
| 84 |
+
'[2.0, 1.0]'
|
| 85 |
+
>>> ''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j))
|
| 86 |
+
'[2.0, 1.0]'
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
Using json.tool from the shell to validate and pretty-print::
|
| 90 |
+
|
| 91 |
+
$ echo '{"json":"obj"}' | python -m json.tool
|
| 92 |
+
{
|
| 93 |
+
"json": "obj"
|
| 94 |
+
}
|
| 95 |
+
$ echo '{ 1.2:3.4}' | python -m json.tool
|
| 96 |
+
Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
|
| 97 |
+
"""
|
| 98 |
+
__version__ = '2.0.9'
|
| 99 |
+
__all__ = [
|
| 100 |
+
'dump', 'dumps', 'load', 'loads',
|
| 101 |
+
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
|
| 102 |
+
]
|
| 103 |
+
|
| 104 |
+
__author__ = 'Bob Ippolito <bob@redivi.com>'
|
| 105 |
+
|
| 106 |
+
from .decoder import JSONDecoder, JSONDecodeError
|
| 107 |
+
from .encoder import JSONEncoder
|
| 108 |
+
import codecs
|
| 109 |
+
|
| 110 |
+
_default_encoder = JSONEncoder(
|
| 111 |
+
skipkeys=False,
|
| 112 |
+
ensure_ascii=True,
|
| 113 |
+
check_circular=True,
|
| 114 |
+
allow_nan=True,
|
| 115 |
+
indent=None,
|
| 116 |
+
separators=None,
|
| 117 |
+
default=None,
|
| 118 |
+
)
|
| 119 |
+
|
| 120 |
+
def dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True,
|
| 121 |
+
allow_nan=True, cls=None, indent=None, separators=None,
|
| 122 |
+
default=None, sort_keys=False, **kw):
|
| 123 |
+
"""Serialize ``obj`` as a JSON formatted stream to ``fp`` (a
|
| 124 |
+
``.write()``-supporting file-like object).
|
| 125 |
+
|
| 126 |
+
If ``skipkeys`` is true then ``dict`` keys that are not basic types
|
| 127 |
+
(``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
|
| 128 |
+
instead of raising a ``TypeError``.
|
| 129 |
+
|
| 130 |
+
If ``ensure_ascii`` is false, then the strings written to ``fp`` can
|
| 131 |
+
contain non-ASCII characters if they appear in strings contained in
|
| 132 |
+
``obj``. Otherwise, all such characters are escaped in JSON strings.
|
| 133 |
+
|
| 134 |
+
If ``check_circular`` is false, then the circular reference check
|
| 135 |
+
for container types will be skipped and a circular reference will
|
| 136 |
+
result in an ``RecursionError`` (or worse).
|
| 137 |
+
|
| 138 |
+
If ``allow_nan`` is false, then it will be a ``ValueError`` to
|
| 139 |
+
serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``)
|
| 140 |
+
in strict compliance of the JSON specification, instead of using the
|
| 141 |
+
JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).
|
| 142 |
+
|
| 143 |
+
If ``indent`` is a non-negative integer, then JSON array elements and
|
| 144 |
+
object members will be pretty-printed with that indent level. An indent
|
| 145 |
+
level of 0 will only insert newlines. ``None`` is the most compact
|
| 146 |
+
representation.
|
| 147 |
+
|
| 148 |
+
If specified, ``separators`` should be an ``(item_separator, key_separator)``
|
| 149 |
+
tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and
|
| 150 |
+
``(',', ': ')`` otherwise. To get the most compact JSON representation,
|
| 151 |
+
you should specify ``(',', ':')`` to eliminate whitespace.
|
| 152 |
+
|
| 153 |
+
``default(obj)`` is a function that should return a serializable version
|
| 154 |
+
of obj or raise TypeError. The default simply raises TypeError.
|
| 155 |
+
|
| 156 |
+
If *sort_keys* is true (default: ``False``), then the output of
|
| 157 |
+
dictionaries will be sorted by key.
|
| 158 |
+
|
| 159 |
+
To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
|
| 160 |
+
``.default()`` method to serialize additional types), specify it with
|
| 161 |
+
the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
|
| 162 |
+
|
| 163 |
+
"""
|
| 164 |
+
# cached encoder
|
| 165 |
+
if (not skipkeys and ensure_ascii and
|
| 166 |
+
check_circular and allow_nan and
|
| 167 |
+
cls is None and indent is None and separators is None and
|
| 168 |
+
default is None and not sort_keys and not kw):
|
| 169 |
+
iterable = _default_encoder.iterencode(obj)
|
| 170 |
+
else:
|
| 171 |
+
if cls is None:
|
| 172 |
+
cls = JSONEncoder
|
| 173 |
+
iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
|
| 174 |
+
check_circular=check_circular, allow_nan=allow_nan, indent=indent,
|
| 175 |
+
separators=separators,
|
| 176 |
+
default=default, sort_keys=sort_keys, **kw).iterencode(obj)
|
| 177 |
+
# could accelerate with writelines in some versions of Python, at
|
| 178 |
+
# a debuggability cost
|
| 179 |
+
for chunk in iterable:
|
| 180 |
+
fp.write(chunk)
|
| 181 |
+
|
| 182 |
+
|
| 183 |
+
def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,
|
| 184 |
+
allow_nan=True, cls=None, indent=None, separators=None,
|
| 185 |
+
default=None, sort_keys=False, **kw):
|
| 186 |
+
"""Serialize ``obj`` to a JSON formatted ``str``.
|
| 187 |
+
|
| 188 |
+
If ``skipkeys`` is true then ``dict`` keys that are not basic types
|
| 189 |
+
(``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
|
| 190 |
+
instead of raising a ``TypeError``.
|
| 191 |
+
|
| 192 |
+
If ``ensure_ascii`` is false, then the return value can contain non-ASCII
|
| 193 |
+
characters if they appear in strings contained in ``obj``. Otherwise, all
|
| 194 |
+
such characters are escaped in JSON strings.
|
| 195 |
+
|
| 196 |
+
If ``check_circular`` is false, then the circular reference check
|
| 197 |
+
for container types will be skipped and a circular reference will
|
| 198 |
+
result in an ``RecursionError`` (or worse).
|
| 199 |
+
|
| 200 |
+
If ``allow_nan`` is false, then it will be a ``ValueError`` to
|
| 201 |
+
serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in
|
| 202 |
+
strict compliance of the JSON specification, instead of using the
|
| 203 |
+
JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).
|
| 204 |
+
|
| 205 |
+
If ``indent`` is a non-negative integer, then JSON array elements and
|
| 206 |
+
object members will be pretty-printed with that indent level. An indent
|
| 207 |
+
level of 0 will only insert newlines. ``None`` is the most compact
|
| 208 |
+
representation.
|
| 209 |
+
|
| 210 |
+
If specified, ``separators`` should be an ``(item_separator, key_separator)``
|
| 211 |
+
tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and
|
| 212 |
+
``(',', ': ')`` otherwise. To get the most compact JSON representation,
|
| 213 |
+
you should specify ``(',', ':')`` to eliminate whitespace.
|
| 214 |
+
|
| 215 |
+
``default(obj)`` is a function that should return a serializable version
|
| 216 |
+
of obj or raise TypeError. The default simply raises TypeError.
|
| 217 |
+
|
| 218 |
+
If *sort_keys* is true (default: ``False``), then the output of
|
| 219 |
+
dictionaries will be sorted by key.
|
| 220 |
+
|
| 221 |
+
To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
|
| 222 |
+
``.default()`` method to serialize additional types), specify it with
|
| 223 |
+
the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.
|
| 224 |
+
|
| 225 |
+
"""
|
| 226 |
+
# cached encoder
|
| 227 |
+
if (not skipkeys and ensure_ascii and
|
| 228 |
+
check_circular and allow_nan and
|
| 229 |
+
cls is None and indent is None and separators is None and
|
| 230 |
+
default is None and not sort_keys and not kw):
|
| 231 |
+
return _default_encoder.encode(obj)
|
| 232 |
+
if cls is None:
|
| 233 |
+
cls = JSONEncoder
|
| 234 |
+
return cls(
|
| 235 |
+
skipkeys=skipkeys, ensure_ascii=ensure_ascii,
|
| 236 |
+
check_circular=check_circular, allow_nan=allow_nan, indent=indent,
|
| 237 |
+
separators=separators, default=default, sort_keys=sort_keys,
|
| 238 |
+
**kw).encode(obj)
|
| 239 |
+
|
| 240 |
+
|
| 241 |
+
_default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)
|
| 242 |
+
|
| 243 |
+
|
| 244 |
+
def detect_encoding(b):
|
| 245 |
+
bstartswith = b.startswith
|
| 246 |
+
if bstartswith((codecs.BOM_UTF32_BE, codecs.BOM_UTF32_LE)):
|
| 247 |
+
return 'utf-32'
|
| 248 |
+
if bstartswith((codecs.BOM_UTF16_BE, codecs.BOM_UTF16_LE)):
|
| 249 |
+
return 'utf-16'
|
| 250 |
+
if bstartswith(codecs.BOM_UTF8):
|
| 251 |
+
return 'utf-8-sig'
|
| 252 |
+
|
| 253 |
+
if len(b) >= 4:
|
| 254 |
+
if not b[0]:
|
| 255 |
+
# 00 00 -- -- - utf-32-be
|
| 256 |
+
# 00 XX -- -- - utf-16-be
|
| 257 |
+
return 'utf-16-be' if b[1] else 'utf-32-be'
|
| 258 |
+
if not b[1]:
|
| 259 |
+
# XX 00 00 00 - utf-32-le
|
| 260 |
+
# XX 00 00 XX - utf-16-le
|
| 261 |
+
# XX 00 XX -- - utf-16-le
|
| 262 |
+
return 'utf-16-le' if b[2] or b[3] else 'utf-32-le'
|
| 263 |
+
elif len(b) == 2:
|
| 264 |
+
if not b[0]:
|
| 265 |
+
# 00 XX - utf-16-be
|
| 266 |
+
return 'utf-16-be'
|
| 267 |
+
if not b[1]:
|
| 268 |
+
# XX 00 - utf-16-le
|
| 269 |
+
return 'utf-16-le'
|
| 270 |
+
# default
|
| 271 |
+
return 'utf-8'
|
| 272 |
+
|
| 273 |
+
|
| 274 |
+
def load(fp, *, cls=None, object_hook=None, parse_float=None,
|
| 275 |
+
parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):
|
| 276 |
+
"""Deserialize ``fp`` (a ``.read()``-supporting file-like object containing
|
| 277 |
+
a JSON document) to a Python object.
|
| 278 |
+
|
| 279 |
+
``object_hook`` is an optional function that will be called with the
|
| 280 |
+
result of any object literal decode (a ``dict``). The return value of
|
| 281 |
+
``object_hook`` will be used instead of the ``dict``. This feature
|
| 282 |
+
can be used to implement custom decoders (e.g. JSON-RPC class hinting).
|
| 283 |
+
|
| 284 |
+
``object_pairs_hook`` is an optional function that will be called with the
|
| 285 |
+
result of any object literal decoded with an ordered list of pairs. The
|
| 286 |
+
return value of ``object_pairs_hook`` will be used instead of the ``dict``.
|
| 287 |
+
This feature can be used to implement custom decoders. If ``object_hook``
|
| 288 |
+
is also defined, the ``object_pairs_hook`` takes priority.
|
| 289 |
+
|
| 290 |
+
To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
|
| 291 |
+
kwarg; otherwise ``JSONDecoder`` is used.
|
| 292 |
+
"""
|
| 293 |
+
return loads(fp.read(),
|
| 294 |
+
cls=cls, object_hook=object_hook,
|
| 295 |
+
parse_float=parse_float, parse_int=parse_int,
|
| 296 |
+
parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)
|
| 297 |
+
|
| 298 |
+
|
| 299 |
+
def loads(s, *, cls=None, object_hook=None, parse_float=None,
|
| 300 |
+
parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):
|
| 301 |
+
"""Deserialize ``s`` (a ``str``, ``bytes`` or ``bytearray`` instance
|
| 302 |
+
containing a JSON document) to a Python object.
|
| 303 |
+
|
| 304 |
+
``object_hook`` is an optional function that will be called with the
|
| 305 |
+
result of any object literal decode (a ``dict``). The return value of
|
| 306 |
+
``object_hook`` will be used instead of the ``dict``. This feature
|
| 307 |
+
can be used to implement custom decoders (e.g. JSON-RPC class hinting).
|
| 308 |
+
|
| 309 |
+
``object_pairs_hook`` is an optional function that will be called with the
|
| 310 |
+
result of any object literal decoded with an ordered list of pairs. The
|
| 311 |
+
return value of ``object_pairs_hook`` will be used instead of the ``dict``.
|
| 312 |
+
This feature can be used to implement custom decoders. If ``object_hook``
|
| 313 |
+
is also defined, the ``object_pairs_hook`` takes priority.
|
| 314 |
+
|
| 315 |
+
``parse_float``, if specified, will be called with the string
|
| 316 |
+
of every JSON float to be decoded. By default this is equivalent to
|
| 317 |
+
float(num_str). This can be used to use another datatype or parser
|
| 318 |
+
for JSON floats (e.g. decimal.Decimal).
|
| 319 |
+
|
| 320 |
+
``parse_int``, if specified, will be called with the string
|
| 321 |
+
of every JSON int to be decoded. By default this is equivalent to
|
| 322 |
+
int(num_str). This can be used to use another datatype or parser
|
| 323 |
+
for JSON integers (e.g. float).
|
| 324 |
+
|
| 325 |
+
``parse_constant``, if specified, will be called with one of the
|
| 326 |
+
following strings: -Infinity, Infinity, NaN.
|
| 327 |
+
This can be used to raise an exception if invalid JSON numbers
|
| 328 |
+
are encountered.
|
| 329 |
+
|
| 330 |
+
To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
|
| 331 |
+
kwarg; otherwise ``JSONDecoder`` is used.
|
| 332 |
+
"""
|
| 333 |
+
if isinstance(s, str):
|
| 334 |
+
if s.startswith('\ufeff'):
|
| 335 |
+
raise JSONDecodeError("Unexpected UTF-8 BOM (decode using utf-8-sig)",
|
| 336 |
+
s, 0)
|
| 337 |
+
else:
|
| 338 |
+
if not isinstance(s, (bytes, bytearray)):
|
| 339 |
+
raise TypeError(f'the JSON object must be str, bytes or bytearray, '
|
| 340 |
+
f'not {s.__class__.__name__}')
|
| 341 |
+
s = s.decode(detect_encoding(s), 'surrogatepass')
|
| 342 |
+
|
| 343 |
+
if (cls is None and object_hook is None and
|
| 344 |
+
parse_int is None and parse_float is None and
|
| 345 |
+
parse_constant is None and object_pairs_hook is None and not kw):
|
| 346 |
+
return _default_decoder.decode(s)
|
| 347 |
+
if cls is None:
|
| 348 |
+
cls = JSONDecoder
|
| 349 |
+
if object_hook is not None:
|
| 350 |
+
kw['object_hook'] = object_hook
|
| 351 |
+
if object_pairs_hook is not None:
|
| 352 |
+
kw['object_pairs_hook'] = object_pairs_hook
|
| 353 |
+
if parse_float is not None:
|
| 354 |
+
kw['parse_float'] = parse_float
|
| 355 |
+
if parse_int is not None:
|
| 356 |
+
kw['parse_int'] = parse_int
|
| 357 |
+
if parse_constant is not None:
|
| 358 |
+
kw['parse_constant'] = parse_constant
|
| 359 |
+
return cls(**kw).decode(s)
|
vila/lib/python3.10/json/__pycache__/decoder.cpython-310.pyc
ADDED
|
Binary file (10 kB). View file
|
|
|
vila/lib/python3.10/json/__pycache__/encoder.cpython-310.pyc
ADDED
|
Binary file (11.4 kB). View file
|
|
|
vila/lib/python3.10/json/decoder.py
ADDED
|
@@ -0,0 +1,356 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Implementation of JSONDecoder
|
| 2 |
+
"""
|
| 3 |
+
import re
|
| 4 |
+
|
| 5 |
+
from json import scanner
|
| 6 |
+
try:
|
| 7 |
+
from _json import scanstring as c_scanstring
|
| 8 |
+
except ImportError:
|
| 9 |
+
c_scanstring = None
|
| 10 |
+
|
| 11 |
+
__all__ = ['JSONDecoder', 'JSONDecodeError']
|
| 12 |
+
|
| 13 |
+
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
|
| 14 |
+
|
| 15 |
+
NaN = float('nan')
|
| 16 |
+
PosInf = float('inf')
|
| 17 |
+
NegInf = float('-inf')
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
class JSONDecodeError(ValueError):
|
| 21 |
+
"""Subclass of ValueError with the following additional properties:
|
| 22 |
+
|
| 23 |
+
msg: The unformatted error message
|
| 24 |
+
doc: The JSON document being parsed
|
| 25 |
+
pos: The start index of doc where parsing failed
|
| 26 |
+
lineno: The line corresponding to pos
|
| 27 |
+
colno: The column corresponding to pos
|
| 28 |
+
|
| 29 |
+
"""
|
| 30 |
+
# Note that this exception is used from _json
|
| 31 |
+
def __init__(self, msg, doc, pos):
|
| 32 |
+
lineno = doc.count('\n', 0, pos) + 1
|
| 33 |
+
colno = pos - doc.rfind('\n', 0, pos)
|
| 34 |
+
errmsg = '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos)
|
| 35 |
+
ValueError.__init__(self, errmsg)
|
| 36 |
+
self.msg = msg
|
| 37 |
+
self.doc = doc
|
| 38 |
+
self.pos = pos
|
| 39 |
+
self.lineno = lineno
|
| 40 |
+
self.colno = colno
|
| 41 |
+
|
| 42 |
+
def __reduce__(self):
|
| 43 |
+
return self.__class__, (self.msg, self.doc, self.pos)
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
_CONSTANTS = {
|
| 47 |
+
'-Infinity': NegInf,
|
| 48 |
+
'Infinity': PosInf,
|
| 49 |
+
'NaN': NaN,
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS)
|
| 54 |
+
BACKSLASH = {
|
| 55 |
+
'"': '"', '\\': '\\', '/': '/',
|
| 56 |
+
'b': '\b', 'f': '\f', 'n': '\n', 'r': '\r', 't': '\t',
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
def _decode_uXXXX(s, pos):
|
| 60 |
+
esc = s[pos + 1:pos + 5]
|
| 61 |
+
if len(esc) == 4 and esc[1] not in 'xX':
|
| 62 |
+
try:
|
| 63 |
+
return int(esc, 16)
|
| 64 |
+
except ValueError:
|
| 65 |
+
pass
|
| 66 |
+
msg = "Invalid \\uXXXX escape"
|
| 67 |
+
raise JSONDecodeError(msg, s, pos)
|
| 68 |
+
|
| 69 |
+
def py_scanstring(s, end, strict=True,
|
| 70 |
+
_b=BACKSLASH, _m=STRINGCHUNK.match):
|
| 71 |
+
"""Scan the string s for a JSON string. End is the index of the
|
| 72 |
+
character in s after the quote that started the JSON string.
|
| 73 |
+
Unescapes all valid JSON string escape sequences and raises ValueError
|
| 74 |
+
on attempt to decode an invalid string. If strict is False then literal
|
| 75 |
+
control characters are allowed in the string.
|
| 76 |
+
|
| 77 |
+
Returns a tuple of the decoded string and the index of the character in s
|
| 78 |
+
after the end quote."""
|
| 79 |
+
chunks = []
|
| 80 |
+
_append = chunks.append
|
| 81 |
+
begin = end - 1
|
| 82 |
+
while 1:
|
| 83 |
+
chunk = _m(s, end)
|
| 84 |
+
if chunk is None:
|
| 85 |
+
raise JSONDecodeError("Unterminated string starting at", s, begin)
|
| 86 |
+
end = chunk.end()
|
| 87 |
+
content, terminator = chunk.groups()
|
| 88 |
+
# Content is contains zero or more unescaped string characters
|
| 89 |
+
if content:
|
| 90 |
+
_append(content)
|
| 91 |
+
# Terminator is the end of string, a literal control character,
|
| 92 |
+
# or a backslash denoting that an escape sequence follows
|
| 93 |
+
if terminator == '"':
|
| 94 |
+
break
|
| 95 |
+
elif terminator != '\\':
|
| 96 |
+
if strict:
|
| 97 |
+
#msg = "Invalid control character %r at" % (terminator,)
|
| 98 |
+
msg = "Invalid control character {0!r} at".format(terminator)
|
| 99 |
+
raise JSONDecodeError(msg, s, end)
|
| 100 |
+
else:
|
| 101 |
+
_append(terminator)
|
| 102 |
+
continue
|
| 103 |
+
try:
|
| 104 |
+
esc = s[end]
|
| 105 |
+
except IndexError:
|
| 106 |
+
raise JSONDecodeError("Unterminated string starting at",
|
| 107 |
+
s, begin) from None
|
| 108 |
+
# If not a unicode escape sequence, must be in the lookup table
|
| 109 |
+
if esc != 'u':
|
| 110 |
+
try:
|
| 111 |
+
char = _b[esc]
|
| 112 |
+
except KeyError:
|
| 113 |
+
msg = "Invalid \\escape: {0!r}".format(esc)
|
| 114 |
+
raise JSONDecodeError(msg, s, end)
|
| 115 |
+
end += 1
|
| 116 |
+
else:
|
| 117 |
+
uni = _decode_uXXXX(s, end)
|
| 118 |
+
end += 5
|
| 119 |
+
if 0xd800 <= uni <= 0xdbff and s[end:end + 2] == '\\u':
|
| 120 |
+
uni2 = _decode_uXXXX(s, end + 1)
|
| 121 |
+
if 0xdc00 <= uni2 <= 0xdfff:
|
| 122 |
+
uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
|
| 123 |
+
end += 6
|
| 124 |
+
char = chr(uni)
|
| 125 |
+
_append(char)
|
| 126 |
+
return ''.join(chunks), end
|
| 127 |
+
|
| 128 |
+
|
| 129 |
+
# Use speedup if available
|
| 130 |
+
scanstring = c_scanstring or py_scanstring
|
| 131 |
+
|
| 132 |
+
WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
|
| 133 |
+
WHITESPACE_STR = ' \t\n\r'
|
| 134 |
+
|
| 135 |
+
|
| 136 |
+
def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,
|
| 137 |
+
memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
|
| 138 |
+
s, end = s_and_end
|
| 139 |
+
pairs = []
|
| 140 |
+
pairs_append = pairs.append
|
| 141 |
+
# Backwards compatibility
|
| 142 |
+
if memo is None:
|
| 143 |
+
memo = {}
|
| 144 |
+
memo_get = memo.setdefault
|
| 145 |
+
# Use a slice to prevent IndexError from being raised, the following
|
| 146 |
+
# check will raise a more specific ValueError if the string is empty
|
| 147 |
+
nextchar = s[end:end + 1]
|
| 148 |
+
# Normally we expect nextchar == '"'
|
| 149 |
+
if nextchar != '"':
|
| 150 |
+
if nextchar in _ws:
|
| 151 |
+
end = _w(s, end).end()
|
| 152 |
+
nextchar = s[end:end + 1]
|
| 153 |
+
# Trivial empty object
|
| 154 |
+
if nextchar == '}':
|
| 155 |
+
if object_pairs_hook is not None:
|
| 156 |
+
result = object_pairs_hook(pairs)
|
| 157 |
+
return result, end + 1
|
| 158 |
+
pairs = {}
|
| 159 |
+
if object_hook is not None:
|
| 160 |
+
pairs = object_hook(pairs)
|
| 161 |
+
return pairs, end + 1
|
| 162 |
+
elif nextchar != '"':
|
| 163 |
+
raise JSONDecodeError(
|
| 164 |
+
"Expecting property name enclosed in double quotes", s, end)
|
| 165 |
+
end += 1
|
| 166 |
+
while True:
|
| 167 |
+
key, end = scanstring(s, end, strict)
|
| 168 |
+
key = memo_get(key, key)
|
| 169 |
+
# To skip some function call overhead we optimize the fast paths where
|
| 170 |
+
# the JSON key separator is ": " or just ":".
|
| 171 |
+
if s[end:end + 1] != ':':
|
| 172 |
+
end = _w(s, end).end()
|
| 173 |
+
if s[end:end + 1] != ':':
|
| 174 |
+
raise JSONDecodeError("Expecting ':' delimiter", s, end)
|
| 175 |
+
end += 1
|
| 176 |
+
|
| 177 |
+
try:
|
| 178 |
+
if s[end] in _ws:
|
| 179 |
+
end += 1
|
| 180 |
+
if s[end] in _ws:
|
| 181 |
+
end = _w(s, end + 1).end()
|
| 182 |
+
except IndexError:
|
| 183 |
+
pass
|
| 184 |
+
|
| 185 |
+
try:
|
| 186 |
+
value, end = scan_once(s, end)
|
| 187 |
+
except StopIteration as err:
|
| 188 |
+
raise JSONDecodeError("Expecting value", s, err.value) from None
|
| 189 |
+
pairs_append((key, value))
|
| 190 |
+
try:
|
| 191 |
+
nextchar = s[end]
|
| 192 |
+
if nextchar in _ws:
|
| 193 |
+
end = _w(s, end + 1).end()
|
| 194 |
+
nextchar = s[end]
|
| 195 |
+
except IndexError:
|
| 196 |
+
nextchar = ''
|
| 197 |
+
end += 1
|
| 198 |
+
|
| 199 |
+
if nextchar == '}':
|
| 200 |
+
break
|
| 201 |
+
elif nextchar != ',':
|
| 202 |
+
raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
|
| 203 |
+
end = _w(s, end).end()
|
| 204 |
+
nextchar = s[end:end + 1]
|
| 205 |
+
end += 1
|
| 206 |
+
if nextchar != '"':
|
| 207 |
+
raise JSONDecodeError(
|
| 208 |
+
"Expecting property name enclosed in double quotes", s, end - 1)
|
| 209 |
+
if object_pairs_hook is not None:
|
| 210 |
+
result = object_pairs_hook(pairs)
|
| 211 |
+
return result, end
|
| 212 |
+
pairs = dict(pairs)
|
| 213 |
+
if object_hook is not None:
|
| 214 |
+
pairs = object_hook(pairs)
|
| 215 |
+
return pairs, end
|
| 216 |
+
|
| 217 |
+
def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
|
| 218 |
+
s, end = s_and_end
|
| 219 |
+
values = []
|
| 220 |
+
nextchar = s[end:end + 1]
|
| 221 |
+
if nextchar in _ws:
|
| 222 |
+
end = _w(s, end + 1).end()
|
| 223 |
+
nextchar = s[end:end + 1]
|
| 224 |
+
# Look-ahead for trivial empty array
|
| 225 |
+
if nextchar == ']':
|
| 226 |
+
return values, end + 1
|
| 227 |
+
_append = values.append
|
| 228 |
+
while True:
|
| 229 |
+
try:
|
| 230 |
+
value, end = scan_once(s, end)
|
| 231 |
+
except StopIteration as err:
|
| 232 |
+
raise JSONDecodeError("Expecting value", s, err.value) from None
|
| 233 |
+
_append(value)
|
| 234 |
+
nextchar = s[end:end + 1]
|
| 235 |
+
if nextchar in _ws:
|
| 236 |
+
end = _w(s, end + 1).end()
|
| 237 |
+
nextchar = s[end:end + 1]
|
| 238 |
+
end += 1
|
| 239 |
+
if nextchar == ']':
|
| 240 |
+
break
|
| 241 |
+
elif nextchar != ',':
|
| 242 |
+
raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
|
| 243 |
+
try:
|
| 244 |
+
if s[end] in _ws:
|
| 245 |
+
end += 1
|
| 246 |
+
if s[end] in _ws:
|
| 247 |
+
end = _w(s, end + 1).end()
|
| 248 |
+
except IndexError:
|
| 249 |
+
pass
|
| 250 |
+
|
| 251 |
+
return values, end
|
| 252 |
+
|
| 253 |
+
|
| 254 |
+
class JSONDecoder(object):
|
| 255 |
+
"""Simple JSON <https://json.org> decoder
|
| 256 |
+
|
| 257 |
+
Performs the following translations in decoding by default:
|
| 258 |
+
|
| 259 |
+
+---------------+-------------------+
|
| 260 |
+
| JSON | Python |
|
| 261 |
+
+===============+===================+
|
| 262 |
+
| object | dict |
|
| 263 |
+
+---------------+-------------------+
|
| 264 |
+
| array | list |
|
| 265 |
+
+---------------+-------------------+
|
| 266 |
+
| string | str |
|
| 267 |
+
+---------------+-------------------+
|
| 268 |
+
| number (int) | int |
|
| 269 |
+
+---------------+-------------------+
|
| 270 |
+
| number (real) | float |
|
| 271 |
+
+---------------+-------------------+
|
| 272 |
+
| true | True |
|
| 273 |
+
+---------------+-------------------+
|
| 274 |
+
| false | False |
|
| 275 |
+
+---------------+-------------------+
|
| 276 |
+
| null | None |
|
| 277 |
+
+---------------+-------------------+
|
| 278 |
+
|
| 279 |
+
It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as
|
| 280 |
+
their corresponding ``float`` values, which is outside the JSON spec.
|
| 281 |
+
|
| 282 |
+
"""
|
| 283 |
+
|
| 284 |
+
def __init__(self, *, object_hook=None, parse_float=None,
|
| 285 |
+
parse_int=None, parse_constant=None, strict=True,
|
| 286 |
+
object_pairs_hook=None):
|
| 287 |
+
"""``object_hook``, if specified, will be called with the result
|
| 288 |
+
of every JSON object decoded and its return value will be used in
|
| 289 |
+
place of the given ``dict``. This can be used to provide custom
|
| 290 |
+
deserializations (e.g. to support JSON-RPC class hinting).
|
| 291 |
+
|
| 292 |
+
``object_pairs_hook``, if specified will be called with the result of
|
| 293 |
+
every JSON object decoded with an ordered list of pairs. The return
|
| 294 |
+
value of ``object_pairs_hook`` will be used instead of the ``dict``.
|
| 295 |
+
This feature can be used to implement custom decoders.
|
| 296 |
+
If ``object_hook`` is also defined, the ``object_pairs_hook`` takes
|
| 297 |
+
priority.
|
| 298 |
+
|
| 299 |
+
``parse_float``, if specified, will be called with the string
|
| 300 |
+
of every JSON float to be decoded. By default this is equivalent to
|
| 301 |
+
float(num_str). This can be used to use another datatype or parser
|
| 302 |
+
for JSON floats (e.g. decimal.Decimal).
|
| 303 |
+
|
| 304 |
+
``parse_int``, if specified, will be called with the string
|
| 305 |
+
of every JSON int to be decoded. By default this is equivalent to
|
| 306 |
+
int(num_str). This can be used to use another datatype or parser
|
| 307 |
+
for JSON integers (e.g. float).
|
| 308 |
+
|
| 309 |
+
``parse_constant``, if specified, will be called with one of the
|
| 310 |
+
following strings: -Infinity, Infinity, NaN.
|
| 311 |
+
This can be used to raise an exception if invalid JSON numbers
|
| 312 |
+
are encountered.
|
| 313 |
+
|
| 314 |
+
If ``strict`` is false (true is the default), then control
|
| 315 |
+
characters will be allowed inside strings. Control characters in
|
| 316 |
+
this context are those with character codes in the 0-31 range,
|
| 317 |
+
including ``'\\t'`` (tab), ``'\\n'``, ``'\\r'`` and ``'\\0'``.
|
| 318 |
+
"""
|
| 319 |
+
self.object_hook = object_hook
|
| 320 |
+
self.parse_float = parse_float or float
|
| 321 |
+
self.parse_int = parse_int or int
|
| 322 |
+
self.parse_constant = parse_constant or _CONSTANTS.__getitem__
|
| 323 |
+
self.strict = strict
|
| 324 |
+
self.object_pairs_hook = object_pairs_hook
|
| 325 |
+
self.parse_object = JSONObject
|
| 326 |
+
self.parse_array = JSONArray
|
| 327 |
+
self.parse_string = scanstring
|
| 328 |
+
self.memo = {}
|
| 329 |
+
self.scan_once = scanner.make_scanner(self)
|
| 330 |
+
|
| 331 |
+
|
| 332 |
+
def decode(self, s, _w=WHITESPACE.match):
|
| 333 |
+
"""Return the Python representation of ``s`` (a ``str`` instance
|
| 334 |
+
containing a JSON document).
|
| 335 |
+
|
| 336 |
+
"""
|
| 337 |
+
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
| 338 |
+
end = _w(s, end).end()
|
| 339 |
+
if end != len(s):
|
| 340 |
+
raise JSONDecodeError("Extra data", s, end)
|
| 341 |
+
return obj
|
| 342 |
+
|
| 343 |
+
def raw_decode(self, s, idx=0):
|
| 344 |
+
"""Decode a JSON document from ``s`` (a ``str`` beginning with
|
| 345 |
+
a JSON document) and return a 2-tuple of the Python
|
| 346 |
+
representation and the index in ``s`` where the document ended.
|
| 347 |
+
|
| 348 |
+
This can be used to decode a JSON document from a string that may
|
| 349 |
+
have extraneous data at the end.
|
| 350 |
+
|
| 351 |
+
"""
|
| 352 |
+
try:
|
| 353 |
+
obj, end = self.scan_once(s, idx)
|
| 354 |
+
except StopIteration as err:
|
| 355 |
+
raise JSONDecodeError("Expecting value", s, err.value) from None
|
| 356 |
+
return obj, end
|
vila/lib/python3.10/json/encoder.py
ADDED
|
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Implementation of JSONEncoder
|
| 2 |
+
"""
|
| 3 |
+
import re
|
| 4 |
+
|
| 5 |
+
try:
|
| 6 |
+
from _json import encode_basestring_ascii as c_encode_basestring_ascii
|
| 7 |
+
except ImportError:
|
| 8 |
+
c_encode_basestring_ascii = None
|
| 9 |
+
try:
|
| 10 |
+
from _json import encode_basestring as c_encode_basestring
|
| 11 |
+
except ImportError:
|
| 12 |
+
c_encode_basestring = None
|
| 13 |
+
try:
|
| 14 |
+
from _json import make_encoder as c_make_encoder
|
| 15 |
+
except ImportError:
|
| 16 |
+
c_make_encoder = None
|
| 17 |
+
|
| 18 |
+
ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]')
|
| 19 |
+
ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])')
|
| 20 |
+
HAS_UTF8 = re.compile(b'[\x80-\xff]')
|
| 21 |
+
ESCAPE_DCT = {
|
| 22 |
+
'\\': '\\\\',
|
| 23 |
+
'"': '\\"',
|
| 24 |
+
'\b': '\\b',
|
| 25 |
+
'\f': '\\f',
|
| 26 |
+
'\n': '\\n',
|
| 27 |
+
'\r': '\\r',
|
| 28 |
+
'\t': '\\t',
|
| 29 |
+
}
|
| 30 |
+
for i in range(0x20):
|
| 31 |
+
ESCAPE_DCT.setdefault(chr(i), '\\u{0:04x}'.format(i))
|
| 32 |
+
#ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,))
|
| 33 |
+
|
| 34 |
+
INFINITY = float('inf')
|
| 35 |
+
|
| 36 |
+
def py_encode_basestring(s):
|
| 37 |
+
"""Return a JSON representation of a Python string
|
| 38 |
+
|
| 39 |
+
"""
|
| 40 |
+
def replace(match):
|
| 41 |
+
return ESCAPE_DCT[match.group(0)]
|
| 42 |
+
return '"' + ESCAPE.sub(replace, s) + '"'
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
encode_basestring = (c_encode_basestring or py_encode_basestring)
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def py_encode_basestring_ascii(s):
|
| 49 |
+
"""Return an ASCII-only JSON representation of a Python string
|
| 50 |
+
|
| 51 |
+
"""
|
| 52 |
+
def replace(match):
|
| 53 |
+
s = match.group(0)
|
| 54 |
+
try:
|
| 55 |
+
return ESCAPE_DCT[s]
|
| 56 |
+
except KeyError:
|
| 57 |
+
n = ord(s)
|
| 58 |
+
if n < 0x10000:
|
| 59 |
+
return '\\u{0:04x}'.format(n)
|
| 60 |
+
#return '\\u%04x' % (n,)
|
| 61 |
+
else:
|
| 62 |
+
# surrogate pair
|
| 63 |
+
n -= 0x10000
|
| 64 |
+
s1 = 0xd800 | ((n >> 10) & 0x3ff)
|
| 65 |
+
s2 = 0xdc00 | (n & 0x3ff)
|
| 66 |
+
return '\\u{0:04x}\\u{1:04x}'.format(s1, s2)
|
| 67 |
+
return '"' + ESCAPE_ASCII.sub(replace, s) + '"'
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
encode_basestring_ascii = (
|
| 71 |
+
c_encode_basestring_ascii or py_encode_basestring_ascii)
|
| 72 |
+
|
| 73 |
+
class JSONEncoder(object):
|
| 74 |
+
"""Extensible JSON <https://json.org> encoder for Python data structures.
|
| 75 |
+
|
| 76 |
+
Supports the following objects and types by default:
|
| 77 |
+
|
| 78 |
+
+-------------------+---------------+
|
| 79 |
+
| Python | JSON |
|
| 80 |
+
+===================+===============+
|
| 81 |
+
| dict | object |
|
| 82 |
+
+-------------------+---------------+
|
| 83 |
+
| list, tuple | array |
|
| 84 |
+
+-------------------+---------------+
|
| 85 |
+
| str | string |
|
| 86 |
+
+-------------------+---------------+
|
| 87 |
+
| int, float | number |
|
| 88 |
+
+-------------------+---------------+
|
| 89 |
+
| True | true |
|
| 90 |
+
+-------------------+---------------+
|
| 91 |
+
| False | false |
|
| 92 |
+
+-------------------+---------------+
|
| 93 |
+
| None | null |
|
| 94 |
+
+-------------------+---------------+
|
| 95 |
+
|
| 96 |
+
To extend this to recognize other objects, subclass and implement a
|
| 97 |
+
``.default()`` method with another method that returns a serializable
|
| 98 |
+
object for ``o`` if possible, otherwise it should call the superclass
|
| 99 |
+
implementation (to raise ``TypeError``).
|
| 100 |
+
|
| 101 |
+
"""
|
| 102 |
+
item_separator = ', '
|
| 103 |
+
key_separator = ': '
|
| 104 |
+
def __init__(self, *, skipkeys=False, ensure_ascii=True,
|
| 105 |
+
check_circular=True, allow_nan=True, sort_keys=False,
|
| 106 |
+
indent=None, separators=None, default=None):
|
| 107 |
+
"""Constructor for JSONEncoder, with sensible defaults.
|
| 108 |
+
|
| 109 |
+
If skipkeys is false, then it is a TypeError to attempt
|
| 110 |
+
encoding of keys that are not str, int, float or None. If
|
| 111 |
+
skipkeys is True, such items are simply skipped.
|
| 112 |
+
|
| 113 |
+
If ensure_ascii is true, the output is guaranteed to be str
|
| 114 |
+
objects with all incoming non-ASCII characters escaped. If
|
| 115 |
+
ensure_ascii is false, the output can contain non-ASCII characters.
|
| 116 |
+
|
| 117 |
+
If check_circular is true, then lists, dicts, and custom encoded
|
| 118 |
+
objects will be checked for circular references during encoding to
|
| 119 |
+
prevent an infinite recursion (which would cause an RecursionError).
|
| 120 |
+
Otherwise, no such check takes place.
|
| 121 |
+
|
| 122 |
+
If allow_nan is true, then NaN, Infinity, and -Infinity will be
|
| 123 |
+
encoded as such. This behavior is not JSON specification compliant,
|
| 124 |
+
but is consistent with most JavaScript based encoders and decoders.
|
| 125 |
+
Otherwise, it will be a ValueError to encode such floats.
|
| 126 |
+
|
| 127 |
+
If sort_keys is true, then the output of dictionaries will be
|
| 128 |
+
sorted by key; this is useful for regression tests to ensure
|
| 129 |
+
that JSON serializations can be compared on a day-to-day basis.
|
| 130 |
+
|
| 131 |
+
If indent is a non-negative integer, then JSON array
|
| 132 |
+
elements and object members will be pretty-printed with that
|
| 133 |
+
indent level. An indent level of 0 will only insert newlines.
|
| 134 |
+
None is the most compact representation.
|
| 135 |
+
|
| 136 |
+
If specified, separators should be an (item_separator, key_separator)
|
| 137 |
+
tuple. The default is (', ', ': ') if *indent* is ``None`` and
|
| 138 |
+
(',', ': ') otherwise. To get the most compact JSON representation,
|
| 139 |
+
you should specify (',', ':') to eliminate whitespace.
|
| 140 |
+
|
| 141 |
+
If specified, default is a function that gets called for objects
|
| 142 |
+
that can't otherwise be serialized. It should return a JSON encodable
|
| 143 |
+
version of the object or raise a ``TypeError``.
|
| 144 |
+
|
| 145 |
+
"""
|
| 146 |
+
|
| 147 |
+
self.skipkeys = skipkeys
|
| 148 |
+
self.ensure_ascii = ensure_ascii
|
| 149 |
+
self.check_circular = check_circular
|
| 150 |
+
self.allow_nan = allow_nan
|
| 151 |
+
self.sort_keys = sort_keys
|
| 152 |
+
self.indent = indent
|
| 153 |
+
if separators is not None:
|
| 154 |
+
self.item_separator, self.key_separator = separators
|
| 155 |
+
elif indent is not None:
|
| 156 |
+
self.item_separator = ','
|
| 157 |
+
if default is not None:
|
| 158 |
+
self.default = default
|
| 159 |
+
|
| 160 |
+
def default(self, o):
|
| 161 |
+
"""Implement this method in a subclass such that it returns
|
| 162 |
+
a serializable object for ``o``, or calls the base implementation
|
| 163 |
+
(to raise a ``TypeError``).
|
| 164 |
+
|
| 165 |
+
For example, to support arbitrary iterators, you could
|
| 166 |
+
implement default like this::
|
| 167 |
+
|
| 168 |
+
def default(self, o):
|
| 169 |
+
try:
|
| 170 |
+
iterable = iter(o)
|
| 171 |
+
except TypeError:
|
| 172 |
+
pass
|
| 173 |
+
else:
|
| 174 |
+
return list(iterable)
|
| 175 |
+
# Let the base class default method raise the TypeError
|
| 176 |
+
return JSONEncoder.default(self, o)
|
| 177 |
+
|
| 178 |
+
"""
|
| 179 |
+
raise TypeError(f'Object of type {o.__class__.__name__} '
|
| 180 |
+
f'is not JSON serializable')
|
| 181 |
+
|
| 182 |
+
def encode(self, o):
|
| 183 |
+
"""Return a JSON string representation of a Python data structure.
|
| 184 |
+
|
| 185 |
+
>>> from json.encoder import JSONEncoder
|
| 186 |
+
>>> JSONEncoder().encode({"foo": ["bar", "baz"]})
|
| 187 |
+
'{"foo": ["bar", "baz"]}'
|
| 188 |
+
|
| 189 |
+
"""
|
| 190 |
+
# This is for extremely simple cases and benchmarks.
|
| 191 |
+
if isinstance(o, str):
|
| 192 |
+
if self.ensure_ascii:
|
| 193 |
+
return encode_basestring_ascii(o)
|
| 194 |
+
else:
|
| 195 |
+
return encode_basestring(o)
|
| 196 |
+
# This doesn't pass the iterator directly to ''.join() because the
|
| 197 |
+
# exceptions aren't as detailed. The list call should be roughly
|
| 198 |
+
# equivalent to the PySequence_Fast that ''.join() would do.
|
| 199 |
+
chunks = self.iterencode(o, _one_shot=True)
|
| 200 |
+
if not isinstance(chunks, (list, tuple)):
|
| 201 |
+
chunks = list(chunks)
|
| 202 |
+
return ''.join(chunks)
|
| 203 |
+
|
| 204 |
+
def iterencode(self, o, _one_shot=False):
|
| 205 |
+
"""Encode the given object and yield each string
|
| 206 |
+
representation as available.
|
| 207 |
+
|
| 208 |
+
For example::
|
| 209 |
+
|
| 210 |
+
for chunk in JSONEncoder().iterencode(bigobject):
|
| 211 |
+
mysocket.write(chunk)
|
| 212 |
+
|
| 213 |
+
"""
|
| 214 |
+
if self.check_circular:
|
| 215 |
+
markers = {}
|
| 216 |
+
else:
|
| 217 |
+
markers = None
|
| 218 |
+
if self.ensure_ascii:
|
| 219 |
+
_encoder = encode_basestring_ascii
|
| 220 |
+
else:
|
| 221 |
+
_encoder = encode_basestring
|
| 222 |
+
|
| 223 |
+
def floatstr(o, allow_nan=self.allow_nan,
|
| 224 |
+
_repr=float.__repr__, _inf=INFINITY, _neginf=-INFINITY):
|
| 225 |
+
# Check for specials. Note that this type of test is processor
|
| 226 |
+
# and/or platform-specific, so do tests which don't depend on the
|
| 227 |
+
# internals.
|
| 228 |
+
|
| 229 |
+
if o != o:
|
| 230 |
+
text = 'NaN'
|
| 231 |
+
elif o == _inf:
|
| 232 |
+
text = 'Infinity'
|
| 233 |
+
elif o == _neginf:
|
| 234 |
+
text = '-Infinity'
|
| 235 |
+
else:
|
| 236 |
+
return _repr(o)
|
| 237 |
+
|
| 238 |
+
if not allow_nan:
|
| 239 |
+
raise ValueError(
|
| 240 |
+
"Out of range float values are not JSON compliant: " +
|
| 241 |
+
repr(o))
|
| 242 |
+
|
| 243 |
+
return text
|
| 244 |
+
|
| 245 |
+
|
| 246 |
+
if (_one_shot and c_make_encoder is not None
|
| 247 |
+
and self.indent is None):
|
| 248 |
+
_iterencode = c_make_encoder(
|
| 249 |
+
markers, self.default, _encoder, self.indent,
|
| 250 |
+
self.key_separator, self.item_separator, self.sort_keys,
|
| 251 |
+
self.skipkeys, self.allow_nan)
|
| 252 |
+
else:
|
| 253 |
+
_iterencode = _make_iterencode(
|
| 254 |
+
markers, self.default, _encoder, self.indent, floatstr,
|
| 255 |
+
self.key_separator, self.item_separator, self.sort_keys,
|
| 256 |
+
self.skipkeys, _one_shot)
|
| 257 |
+
return _iterencode(o, 0)
|
| 258 |
+
|
| 259 |
+
def _make_iterencode(markers, _default, _encoder, _indent, _floatstr,
|
| 260 |
+
_key_separator, _item_separator, _sort_keys, _skipkeys, _one_shot,
|
| 261 |
+
## HACK: hand-optimized bytecode; turn globals into locals
|
| 262 |
+
ValueError=ValueError,
|
| 263 |
+
dict=dict,
|
| 264 |
+
float=float,
|
| 265 |
+
id=id,
|
| 266 |
+
int=int,
|
| 267 |
+
isinstance=isinstance,
|
| 268 |
+
list=list,
|
| 269 |
+
str=str,
|
| 270 |
+
tuple=tuple,
|
| 271 |
+
_intstr=int.__repr__,
|
| 272 |
+
):
|
| 273 |
+
|
| 274 |
+
if _indent is not None and not isinstance(_indent, str):
|
| 275 |
+
_indent = ' ' * _indent
|
| 276 |
+
|
| 277 |
+
def _iterencode_list(lst, _current_indent_level):
|
| 278 |
+
if not lst:
|
| 279 |
+
yield '[]'
|
| 280 |
+
return
|
| 281 |
+
if markers is not None:
|
| 282 |
+
markerid = id(lst)
|
| 283 |
+
if markerid in markers:
|
| 284 |
+
raise ValueError("Circular reference detected")
|
| 285 |
+
markers[markerid] = lst
|
| 286 |
+
buf = '['
|
| 287 |
+
if _indent is not None:
|
| 288 |
+
_current_indent_level += 1
|
| 289 |
+
newline_indent = '\n' + _indent * _current_indent_level
|
| 290 |
+
separator = _item_separator + newline_indent
|
| 291 |
+
buf += newline_indent
|
| 292 |
+
else:
|
| 293 |
+
newline_indent = None
|
| 294 |
+
separator = _item_separator
|
| 295 |
+
first = True
|
| 296 |
+
for value in lst:
|
| 297 |
+
if first:
|
| 298 |
+
first = False
|
| 299 |
+
else:
|
| 300 |
+
buf = separator
|
| 301 |
+
if isinstance(value, str):
|
| 302 |
+
yield buf + _encoder(value)
|
| 303 |
+
elif value is None:
|
| 304 |
+
yield buf + 'null'
|
| 305 |
+
elif value is True:
|
| 306 |
+
yield buf + 'true'
|
| 307 |
+
elif value is False:
|
| 308 |
+
yield buf + 'false'
|
| 309 |
+
elif isinstance(value, int):
|
| 310 |
+
# Subclasses of int/float may override __repr__, but we still
|
| 311 |
+
# want to encode them as integers/floats in JSON. One example
|
| 312 |
+
# within the standard library is IntEnum.
|
| 313 |
+
yield buf + _intstr(value)
|
| 314 |
+
elif isinstance(value, float):
|
| 315 |
+
# see comment above for int
|
| 316 |
+
yield buf + _floatstr(value)
|
| 317 |
+
else:
|
| 318 |
+
yield buf
|
| 319 |
+
if isinstance(value, (list, tuple)):
|
| 320 |
+
chunks = _iterencode_list(value, _current_indent_level)
|
| 321 |
+
elif isinstance(value, dict):
|
| 322 |
+
chunks = _iterencode_dict(value, _current_indent_level)
|
| 323 |
+
else:
|
| 324 |
+
chunks = _iterencode(value, _current_indent_level)
|
| 325 |
+
yield from chunks
|
| 326 |
+
if newline_indent is not None:
|
| 327 |
+
_current_indent_level -= 1
|
| 328 |
+
yield '\n' + _indent * _current_indent_level
|
| 329 |
+
yield ']'
|
| 330 |
+
if markers is not None:
|
| 331 |
+
del markers[markerid]
|
| 332 |
+
|
| 333 |
+
def _iterencode_dict(dct, _current_indent_level):
|
| 334 |
+
if not dct:
|
| 335 |
+
yield '{}'
|
| 336 |
+
return
|
| 337 |
+
if markers is not None:
|
| 338 |
+
markerid = id(dct)
|
| 339 |
+
if markerid in markers:
|
| 340 |
+
raise ValueError("Circular reference detected")
|
| 341 |
+
markers[markerid] = dct
|
| 342 |
+
yield '{'
|
| 343 |
+
if _indent is not None:
|
| 344 |
+
_current_indent_level += 1
|
| 345 |
+
newline_indent = '\n' + _indent * _current_indent_level
|
| 346 |
+
item_separator = _item_separator + newline_indent
|
| 347 |
+
yield newline_indent
|
| 348 |
+
else:
|
| 349 |
+
newline_indent = None
|
| 350 |
+
item_separator = _item_separator
|
| 351 |
+
first = True
|
| 352 |
+
if _sort_keys:
|
| 353 |
+
items = sorted(dct.items())
|
| 354 |
+
else:
|
| 355 |
+
items = dct.items()
|
| 356 |
+
for key, value in items:
|
| 357 |
+
if isinstance(key, str):
|
| 358 |
+
pass
|
| 359 |
+
# JavaScript is weakly typed for these, so it makes sense to
|
| 360 |
+
# also allow them. Many encoders seem to do something like this.
|
| 361 |
+
elif isinstance(key, float):
|
| 362 |
+
# see comment for int/float in _make_iterencode
|
| 363 |
+
key = _floatstr(key)
|
| 364 |
+
elif key is True:
|
| 365 |
+
key = 'true'
|
| 366 |
+
elif key is False:
|
| 367 |
+
key = 'false'
|
| 368 |
+
elif key is None:
|
| 369 |
+
key = 'null'
|
| 370 |
+
elif isinstance(key, int):
|
| 371 |
+
# see comment for int/float in _make_iterencode
|
| 372 |
+
key = _intstr(key)
|
| 373 |
+
elif _skipkeys:
|
| 374 |
+
continue
|
| 375 |
+
else:
|
| 376 |
+
raise TypeError(f'keys must be str, int, float, bool or None, '
|
| 377 |
+
f'not {key.__class__.__name__}')
|
| 378 |
+
if first:
|
| 379 |
+
first = False
|
| 380 |
+
else:
|
| 381 |
+
yield item_separator
|
| 382 |
+
yield _encoder(key)
|
| 383 |
+
yield _key_separator
|
| 384 |
+
if isinstance(value, str):
|
| 385 |
+
yield _encoder(value)
|
| 386 |
+
elif value is None:
|
| 387 |
+
yield 'null'
|
| 388 |
+
elif value is True:
|
| 389 |
+
yield 'true'
|
| 390 |
+
elif value is False:
|
| 391 |
+
yield 'false'
|
| 392 |
+
elif isinstance(value, int):
|
| 393 |
+
# see comment for int/float in _make_iterencode
|
| 394 |
+
yield _intstr(value)
|
| 395 |
+
elif isinstance(value, float):
|
| 396 |
+
# see comment for int/float in _make_iterencode
|
| 397 |
+
yield _floatstr(value)
|
| 398 |
+
else:
|
| 399 |
+
if isinstance(value, (list, tuple)):
|
| 400 |
+
chunks = _iterencode_list(value, _current_indent_level)
|
| 401 |
+
elif isinstance(value, dict):
|
| 402 |
+
chunks = _iterencode_dict(value, _current_indent_level)
|
| 403 |
+
else:
|
| 404 |
+
chunks = _iterencode(value, _current_indent_level)
|
| 405 |
+
yield from chunks
|
| 406 |
+
if newline_indent is not None:
|
| 407 |
+
_current_indent_level -= 1
|
| 408 |
+
yield '\n' + _indent * _current_indent_level
|
| 409 |
+
yield '}'
|
| 410 |
+
if markers is not None:
|
| 411 |
+
del markers[markerid]
|
| 412 |
+
|
| 413 |
+
def _iterencode(o, _current_indent_level):
|
| 414 |
+
if isinstance(o, str):
|
| 415 |
+
yield _encoder(o)
|
| 416 |
+
elif o is None:
|
| 417 |
+
yield 'null'
|
| 418 |
+
elif o is True:
|
| 419 |
+
yield 'true'
|
| 420 |
+
elif o is False:
|
| 421 |
+
yield 'false'
|
| 422 |
+
elif isinstance(o, int):
|
| 423 |
+
# see comment for int/float in _make_iterencode
|
| 424 |
+
yield _intstr(o)
|
| 425 |
+
elif isinstance(o, float):
|
| 426 |
+
# see comment for int/float in _make_iterencode
|
| 427 |
+
yield _floatstr(o)
|
| 428 |
+
elif isinstance(o, (list, tuple)):
|
| 429 |
+
yield from _iterencode_list(o, _current_indent_level)
|
| 430 |
+
elif isinstance(o, dict):
|
| 431 |
+
yield from _iterencode_dict(o, _current_indent_level)
|
| 432 |
+
else:
|
| 433 |
+
if markers is not None:
|
| 434 |
+
markerid = id(o)
|
| 435 |
+
if markerid in markers:
|
| 436 |
+
raise ValueError("Circular reference detected")
|
| 437 |
+
markers[markerid] = o
|
| 438 |
+
o = _default(o)
|
| 439 |
+
yield from _iterencode(o, _current_indent_level)
|
| 440 |
+
if markers is not None:
|
| 441 |
+
del markers[markerid]
|
| 442 |
+
return _iterencode
|
vila/lib/python3.10/json/scanner.py
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""JSON token scanner
|
| 2 |
+
"""
|
| 3 |
+
import re
|
| 4 |
+
try:
|
| 5 |
+
from _json import make_scanner as c_make_scanner
|
| 6 |
+
except ImportError:
|
| 7 |
+
c_make_scanner = None
|
| 8 |
+
|
| 9 |
+
__all__ = ['make_scanner']
|
| 10 |
+
|
| 11 |
+
NUMBER_RE = re.compile(
|
| 12 |
+
r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?',
|
| 13 |
+
(re.VERBOSE | re.MULTILINE | re.DOTALL))
|
| 14 |
+
|
| 15 |
+
def py_make_scanner(context):
|
| 16 |
+
parse_object = context.parse_object
|
| 17 |
+
parse_array = context.parse_array
|
| 18 |
+
parse_string = context.parse_string
|
| 19 |
+
match_number = NUMBER_RE.match
|
| 20 |
+
strict = context.strict
|
| 21 |
+
parse_float = context.parse_float
|
| 22 |
+
parse_int = context.parse_int
|
| 23 |
+
parse_constant = context.parse_constant
|
| 24 |
+
object_hook = context.object_hook
|
| 25 |
+
object_pairs_hook = context.object_pairs_hook
|
| 26 |
+
memo = context.memo
|
| 27 |
+
|
| 28 |
+
def _scan_once(string, idx):
|
| 29 |
+
try:
|
| 30 |
+
nextchar = string[idx]
|
| 31 |
+
except IndexError:
|
| 32 |
+
raise StopIteration(idx) from None
|
| 33 |
+
|
| 34 |
+
if nextchar == '"':
|
| 35 |
+
return parse_string(string, idx + 1, strict)
|
| 36 |
+
elif nextchar == '{':
|
| 37 |
+
return parse_object((string, idx + 1), strict,
|
| 38 |
+
_scan_once, object_hook, object_pairs_hook, memo)
|
| 39 |
+
elif nextchar == '[':
|
| 40 |
+
return parse_array((string, idx + 1), _scan_once)
|
| 41 |
+
elif nextchar == 'n' and string[idx:idx + 4] == 'null':
|
| 42 |
+
return None, idx + 4
|
| 43 |
+
elif nextchar == 't' and string[idx:idx + 4] == 'true':
|
| 44 |
+
return True, idx + 4
|
| 45 |
+
elif nextchar == 'f' and string[idx:idx + 5] == 'false':
|
| 46 |
+
return False, idx + 5
|
| 47 |
+
|
| 48 |
+
m = match_number(string, idx)
|
| 49 |
+
if m is not None:
|
| 50 |
+
integer, frac, exp = m.groups()
|
| 51 |
+
if frac or exp:
|
| 52 |
+
res = parse_float(integer + (frac or '') + (exp or ''))
|
| 53 |
+
else:
|
| 54 |
+
res = parse_int(integer)
|
| 55 |
+
return res, m.end()
|
| 56 |
+
elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
|
| 57 |
+
return parse_constant('NaN'), idx + 3
|
| 58 |
+
elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':
|
| 59 |
+
return parse_constant('Infinity'), idx + 8
|
| 60 |
+
elif nextchar == '-' and string[idx:idx + 9] == '-Infinity':
|
| 61 |
+
return parse_constant('-Infinity'), idx + 9
|
| 62 |
+
else:
|
| 63 |
+
raise StopIteration(idx)
|
| 64 |
+
|
| 65 |
+
def scan_once(string, idx):
|
| 66 |
+
try:
|
| 67 |
+
return _scan_once(string, idx)
|
| 68 |
+
finally:
|
| 69 |
+
memo.clear()
|
| 70 |
+
|
| 71 |
+
return scan_once
|
| 72 |
+
|
| 73 |
+
make_scanner = c_make_scanner or py_make_scanner
|
vila/lib/python3.10/json/tool.py
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
r"""Command-line tool to validate and pretty-print JSON
|
| 2 |
+
|
| 3 |
+
Usage::
|
| 4 |
+
|
| 5 |
+
$ echo '{"json":"obj"}' | python -m json.tool
|
| 6 |
+
{
|
| 7 |
+
"json": "obj"
|
| 8 |
+
}
|
| 9 |
+
$ echo '{ 1.2:3.4}' | python -m json.tool
|
| 10 |
+
Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
|
| 11 |
+
|
| 12 |
+
"""
|
| 13 |
+
import argparse
|
| 14 |
+
import json
|
| 15 |
+
import sys
|
| 16 |
+
from pathlib import Path
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
def main():
|
| 20 |
+
prog = 'python -m json.tool'
|
| 21 |
+
description = ('A simple command line interface for json module '
|
| 22 |
+
'to validate and pretty-print JSON objects.')
|
| 23 |
+
parser = argparse.ArgumentParser(prog=prog, description=description)
|
| 24 |
+
parser.add_argument('infile', nargs='?',
|
| 25 |
+
type=argparse.FileType(encoding="utf-8"),
|
| 26 |
+
help='a JSON file to be validated or pretty-printed',
|
| 27 |
+
default=sys.stdin)
|
| 28 |
+
parser.add_argument('outfile', nargs='?',
|
| 29 |
+
type=Path,
|
| 30 |
+
help='write the output of infile to outfile',
|
| 31 |
+
default=None)
|
| 32 |
+
parser.add_argument('--sort-keys', action='store_true', default=False,
|
| 33 |
+
help='sort the output of dictionaries alphabetically by key')
|
| 34 |
+
parser.add_argument('--no-ensure-ascii', dest='ensure_ascii', action='store_false',
|
| 35 |
+
help='disable escaping of non-ASCII characters')
|
| 36 |
+
parser.add_argument('--json-lines', action='store_true', default=False,
|
| 37 |
+
help='parse input using the JSON Lines format. '
|
| 38 |
+
'Use with --no-indent or --compact to produce valid JSON Lines output.')
|
| 39 |
+
group = parser.add_mutually_exclusive_group()
|
| 40 |
+
group.add_argument('--indent', default=4, type=int,
|
| 41 |
+
help='separate items with newlines and use this number '
|
| 42 |
+
'of spaces for indentation')
|
| 43 |
+
group.add_argument('--tab', action='store_const', dest='indent',
|
| 44 |
+
const='\t', help='separate items with newlines and use '
|
| 45 |
+
'tabs for indentation')
|
| 46 |
+
group.add_argument('--no-indent', action='store_const', dest='indent',
|
| 47 |
+
const=None,
|
| 48 |
+
help='separate items with spaces rather than newlines')
|
| 49 |
+
group.add_argument('--compact', action='store_true',
|
| 50 |
+
help='suppress all whitespace separation (most compact)')
|
| 51 |
+
options = parser.parse_args()
|
| 52 |
+
|
| 53 |
+
dump_args = {
|
| 54 |
+
'sort_keys': options.sort_keys,
|
| 55 |
+
'indent': options.indent,
|
| 56 |
+
'ensure_ascii': options.ensure_ascii,
|
| 57 |
+
}
|
| 58 |
+
if options.compact:
|
| 59 |
+
dump_args['indent'] = None
|
| 60 |
+
dump_args['separators'] = ',', ':'
|
| 61 |
+
|
| 62 |
+
with options.infile as infile:
|
| 63 |
+
try:
|
| 64 |
+
if options.json_lines:
|
| 65 |
+
objs = (json.loads(line) for line in infile)
|
| 66 |
+
else:
|
| 67 |
+
objs = (json.load(infile),)
|
| 68 |
+
|
| 69 |
+
if options.outfile is None:
|
| 70 |
+
out = sys.stdout
|
| 71 |
+
else:
|
| 72 |
+
out = options.outfile.open('w', encoding='utf-8')
|
| 73 |
+
with out as outfile:
|
| 74 |
+
for obj in objs:
|
| 75 |
+
json.dump(obj, outfile, **dump_args)
|
| 76 |
+
outfile.write('\n')
|
| 77 |
+
except ValueError as e:
|
| 78 |
+
raise SystemExit(e)
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
if __name__ == '__main__':
|
| 82 |
+
try:
|
| 83 |
+
main()
|
| 84 |
+
except BrokenPipeError as exc:
|
| 85 |
+
sys.exit(exc.errno)
|
vila/lib/python3.10/tkinter/__init__.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
vila/lib/python3.10/tkinter/__main__.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Main entry point"""
|
| 2 |
+
|
| 3 |
+
import sys
|
| 4 |
+
if sys.argv[0].endswith("__main__.py"):
|
| 5 |
+
sys.argv[0] = "python -m tkinter"
|
| 6 |
+
from . import _test as main
|
| 7 |
+
main()
|