Skip to content

Commit

Permalink
PERF: do not recreate the parent dir before extracting each file from…
Browse files Browse the repository at this point in the history
… a wheel
  • Loading branch information
rmmancom committed Jun 25, 2024
1 parent 5c389ec commit 0a3b119
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions news/12782.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Improve performance of pip install. When extracting a wheel,
do not recheck/recreate the parent directory before extracting each file.
14 changes: 8 additions & 6 deletions src/pip/_internal/operations/install/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,6 @@ def _getinfo(self) -> ZipInfo:
return self._zip_file.getinfo(self.src_record_path)

def save(self) -> None:
# directory creation is lazy and after file filtering
# to ensure we don't install empty dirs; empty dirs can't be
# uninstalled.
parent_dir = os.path.dirname(self.dest_path)
ensure_dir(parent_dir)

# When we open the output file below, any existing file is truncated
# before we start writing the new contents. This is fine in most
# cases, but can cause a segfault if pip has loaded a shared
Expand Down Expand Up @@ -580,7 +574,15 @@ def is_entrypoint_wrapper(file: "File") -> bool:
script_scheme_files = map(ScriptFile, script_scheme_files)
files = chain(files, script_scheme_files)

existing_parents = set()
for file in files:
# directory creation is lazy and after file filtering
# to ensure we don't install empty dirs; empty dirs can't be
# uninstalled.
parent_dir = os.path.dirname(file.dest_path)
if parent_dir not in existing_parents:
ensure_dir(parent_dir)
existing_parents.add(parent_dir)
file.save()
record_installed(file.src_record_path, file.dest_path, file.changed)

Expand Down

0 comments on commit 0a3b119

Please sign in to comment.