Add formal storage of symlink targets when parsing diffs.
Review Request #12066 — Created Feb. 20, 2022 and submitted
ParsedDiffFile
andFileDiff
both contained information on whether a
file was a symlink, but nothing more than that. There was no information
on targets, meaning that it was up to the diff implementation and
patch
to generate a suitable symlink for display or when applying a
patch. This wasn't ideal.
ParsedDiffFile
now contains typed attributes for old and new symlink
targets. These are optional, but can be set by the diff parser. The
DiffX parser is currently the only one that sets these.
FileDiff
provides attributes for getting or setting all symlink state.
These areis_symlink
,old_symlink_target
, andnew_symlink_target
.
These all wrapextra_data
, giving us a formal way of working with
these attributes.An upcoming SCM will need thess. A separate upcoming change will enable
this support for Git (and Mercurial by extension). Eventually, we'll be
able to use these to avoid some hacks we're currently using to render
symlink changes in diffs.This will also be useful for Review Bot and RBTools, which will benefit
from being able to know how to correctly manage symlinks.
Unit tests pass.
- Change Summary:
-
Fixed some issues in new docstrings.
- Commits:
-
Summary ID 78a00e684d8faaed99ad7760423f9edd3f2a7ad2 e07f58b77bcea51808d0941ccc92af108797d694 - Diff:
-
Revision 2 (+1284 -80)
- Change Summary:
-
- Fixed an indentation issue
- Fixed the description to reference
ParsedDiffFile
rather thanParsedFileDiff
. - Small updates to the DiffX parser to improve code organization.
- Description:
-
~ ParsedFileDiff
andFileDiff
both contained information on whether a~ ParsedDiffFile
andFileDiff
both contained information on whether afile was a symlink, but nothing more than that. There was no information on targets, meaning that it was up to the diff implementation and patch
to generate a suitable symlink for display or when applying apatch. This wasn't ideal. ~ ParsedFileDiff
now contains typed attributes for old and new symlink~ ParsedDiffFile
now contains typed attributes for old and new symlinktargets. These are optional, but can be set by the diff parser. The DiffX parser is currently the only one that sets these. FileDiff
provides attributes for getting or setting all symlink state.These are is_symlink
,old_symlink_target
, andnew_symlink_target
.These all wrap extra_data
, giving us a formal way of working withthese attributes. An upcoming SCM will need thess. A separate upcoming change will enable
this support for Git (and Mercurial by extension). Eventually, we'll be able to use these to avoid some hacks we're currently using to render symlink changes in diffs. This will also be useful for Review Bot and RBTools, which will benefit
from being able to know how to correctly manage symlinks. - Commits:
-
Summary ID e07f58b77bcea51808d0941ccc92af108797d694 c72f8aeb64c60920357e5e84098449f7cc8d86f8 - Diff:
-
Revision 3 (+1296 -84)