-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-132933: Allow zipapp target to overwrite filtered source file #132934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
fddf365
f1bf9e2
ff363e8
bc371c7
1a76a0d
0f8979f
3b20cf6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,6 +135,11 @@ def create_archive(source, target=None, interpreter=None, main=None, | |
# the target is being created in the source directory - we | ||
# don't want the target being added to itself | ||
files_to_add = sorted(source.rglob('*')) | ||
if filter: | ||
files_to_add = {f: f2 for f in files_to_add | ||
if filter(f2 := f.relative_to(source))} | ||
else: | ||
files_to_add = {f: f.relative_to(source) for f in files_to_add} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comprehension doesn't add to readability, IMO. I suggest something more like:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can do away with the comprehension, but building files_to_add as a list of tuples makes it more difficult to search for target in it. A simple
I have no strong opinion. Doing the target check separately as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point. I have no particular opinion between using a dictionary or checking in the loop - do whatever you prefer. But let's use an explicit loop, readability is important. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, I went with the dictionary. It occurred to me that when files_to_add is a dictionary, the |
||
|
||
# The target cannot be in the list of files to add. If it were, we'd | ||
# end up overwriting the source file and writing the archive into | ||
|
@@ -154,15 +159,14 @@ def create_archive(source, target=None, interpreter=None, main=None, | |
raise ZipAppError( | ||
f"The target archive {target} overwrites one of the source files.") | ||
|
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unintended blank line? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, will fix! |
||
with _maybe_open(target, 'wb') as fd: | ||
_write_file_prefix(fd, interpreter) | ||
compression = (zipfile.ZIP_DEFLATED if compressed else | ||
zipfile.ZIP_STORED) | ||
with zipfile.ZipFile(fd, 'w', compression=compression) as z: | ||
for child in files_to_add: | ||
arcname = child.relative_to(source) | ||
if filter is None or filter(arcname): | ||
z.write(child, arcname.as_posix()) | ||
for child, arcname in files_to_add.items(): | ||
z.write(child, arcname.as_posix()) | ||
if main_py: | ||
z.writestr('__main__.py', main_py.encode('utf-8')) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The zipapp module now applies the provided filter to the list of files to be added before determining whether the target file overwrites a source file. This allows the target file to be written inside the source directory provided it is excluded by the filter. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I disagree strongly with this news item, as it suggests that writing the target into the source directory is intended usage. Maybe
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure. I wanted to get a bit of rationale in there, but I agree that it could come off as a recommendation, and it got long-winded too. I'll change it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, copy/paste error!