| Server IP : 74.208.236.52 / Your IP : 216.73.217.12 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/breezy/ |
Upload File : |
# Copyright (C) 2005-2011 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Tree classes, representing directory at point in time."""
__docformat__ = "google"
from collections.abc import Iterator
from typing import TYPE_CHECKING, Optional, Union, cast
from . import errors, lock, osutils, trace
from . import revision as _mod_revision
from .inter import InterObject
class FileTimestampUnavailable(errors.BzrError):
_fmt = "The filestamp for %(path)s is not available."
internal_error = True
def __init__(self, path):
self.path = path
class MissingNestedTree(errors.BzrError):
_fmt = "The nested tree for %(path)s can not be resolved."
def __init__(self, path):
self.path = path
class TreeEntry:
"""An entry that implements the minimum interface used by commands."""
__slots__: list[str] = []
def __eq__(self, other):
# yes, this is ugly, TODO: best practice __eq__ style.
return isinstance(other, TreeEntry) and other.__class__ == self.__class__
kind: str
def kind_character(self):
return "???"
def is_unmodified(self, other):
"""Does this entry reference the same entry?
This is mostly the same as __eq__, but returns False
for entries without enough information (i.e. revision is None)
"""
return False
class TreeDirectory(TreeEntry):
"""See TreeEntry. This is a directory in a working tree."""
__slots__: list[str] = []
kind = "directory"
def kind_character(self):
return "/"
class TreeFile(TreeEntry):
"""See TreeEntry. This is a regular file in a working tree."""
__slots__: list[str] = []
kind = "file"
def kind_character(self):
return ""
class TreeLink(TreeEntry):
"""See TreeEntry. This is a symlink in a working tree."""
__slots__: list[str] = []
kind = "symlink"
def kind_character(self):
return ""
class TreeReference(TreeEntry):
"""See TreeEntry. This is a reference to a nested tree in a working tree."""
__slots__: list[str] = []
kind = "tree-reference"
def kind_character(self):
return "+"
class TreeChange:
"""Describes the changes between the same item in two different trees."""
__slots__ = [
"changed_content",
"copied",
"executable",
"kind",
"name",
"path",
"versioned",
]
def __init__(
self, path, changed_content, versioned, name, kind, executable, copied=False
):
self.path = path
self.changed_content = changed_content
self.versioned = versioned
self.name = name
self.kind = kind
self.executable = executable
self.copied = copied
def __repr__(self):
return "{}{!r}".format(self.__class__.__name__, self._as_tuple())
def _as_tuple(self):
return (
self.path,
self.changed_content,
self.versioned,
self.name,
self.kind,
self.executable,
self.copied,
)
def __eq__(self, other):
if isinstance(other, TreeChange):
return self._as_tuple() == other._as_tuple()
if isinstance(other, tuple):
return self._as_tuple() == other
return False
def __lt__(self, other):
return self._as_tuple() < other._as_tuple()
def meta_modified(self):
if self.versioned == (True, True):
return self.executable[0] != self.executable[1]
return False
@property
def renamed(self):
return (
not self.copied and None not in self.name and self.path[0] != self.path[1]
)
def is_reparented(self):
return osutils.dirname(self.path[0]) != osutils.dirname(self.path[1])
def discard_new(self):
return self.__class__(
(self.path[0], None),
self.changed_content,
(self.versioned[0], None),
(self.name[0], None),
(self.kind[0], None),
(self.executable[0], None),
copied=False,
)
class Tree:
"""Abstract file tree.
There are several subclasses:
* `WorkingTree` exists as files on disk editable by the user.
* `RevisionTree` is a tree as recorded at some point in the past.
Trees can be compared, etc, regardless of whether they are working
trees or versioned trees.
"""
def supports_rename_tracking(self):
"""Whether this tree supports rename tracking.
This defaults to True, but some implementations may want to override
it.
"""
return True
def has_versioned_directories(self):
"""Whether this tree can contain explicitly versioned directories.
This defaults to True, but some implementations may want to override
it.
"""
return True
def supports_tree_reference(self):
raise NotImplementedError(self.supports_tree_reference)
def supports_symlinks(self):
"""Does this tree support symbolic links?"""
return True
def is_special_path(self, path):
"""Is the specified path special to the VCS."""
return False
@property
def supports_file_ids(self):
"""Does this tree support file ids?"""
raise NotImplementedError(self.supports_file_ids)
def changes_from(
self,
other,
want_unchanged=False,
specific_files=None,
extra_trees=None,
require_versioned=False,
include_root=False,
want_unversioned=False,
):
"""Return a TreeDelta of the changes from other to this tree.
Args:
other: A tree to compare with.
specific_files: An optional list of file paths to restrict the
comparison to. When mapping filenames to ids, all matches in all
trees (including optional extra_trees) are used, and all children of
matched directories are included.
want_unchanged: An optional boolean requesting the inclusion of
unchanged entries in the result.
extra_trees: An optional list of additional trees to use when
mapping the contents of specific_files (paths) to their identities.
require_versioned: An optional boolean (defaults to False). When
supplied and True all the 'specific_files' must be versioned, or
a PathsNotVersionedError will be thrown.
want_unversioned: Scan for unversioned paths.
The comparison will be performed by an InterTree object looked up on
self and other.
"""
# Martin observes that Tree.changes_from returns a TreeDelta and this
# may confuse people, because the class name of the returned object is
# a synonym of the object referenced in the method name.
return InterTree.get(other, self).compare(
want_unchanged=want_unchanged,
specific_files=specific_files,
extra_trees=extra_trees,
require_versioned=require_versioned,
include_root=include_root,
want_unversioned=want_unversioned,
)
def iter_changes(
self,
from_tree,
include_unchanged=False,
specific_files=None,
pb=None,
extra_trees=None,
require_versioned=True,
want_unversioned=False,
):
"""See InterTree.iter_changes."""
intertree = InterTree.get(from_tree, self)
return intertree.iter_changes(
include_unchanged,
specific_files,
pb,
extra_trees,
require_versioned,
want_unversioned=want_unversioned,
)
def conflicts(self):
"""Get a list of the conflicts in the tree.
Each conflict is an instance of breezy.conflicts.Conflict.
"""
from . import conflicts as _mod_conflicts
return _mod_conflicts.ConflictList()
def extras(self):
"""For trees that can have unversioned files, return all such paths."""
return []
def get_parent_ids(self):
"""Get the parent ids for this tree.
Returns: a list of parent ids. [] is returned to indicate
a tree with no parents.
Raises:
BzrError: if the parents are not known.
"""
raise NotImplementedError(self.get_parent_ids)
def has_filename(self, filename):
"""True if the tree has given filename."""
raise NotImplementedError(self.has_filename)
def is_ignored(self, filename):
"""Check whether the filename is ignored by this tree.
Args:
filename: The relative filename within the tree.
Returns: True if the filename is ignored.
"""
return False
def all_versioned_paths(self) -> Iterator[str]:
"""Iterate through all paths, including paths for missing files."""
raise NotImplementedError(self.all_versioned_paths)
def iter_entries_by_dir(
self, specific_files: Optional[list[str]] = None, recurse_nested: bool = False
):
"""Walk the tree in 'by_dir' order.
This will yield each entry in the tree as a (path, entry) tuple.
The order that they are yielded is:
Directories are walked in a depth-first lexicographical order,
however, whenever a directory is reached, all of its direct child
nodes are yielded in lexicographical order before yielding the
grandchildren.
For example, in the tree::
a/
b/
c
d/
e
f/
g
The yield order (ignoring root) would be::
a, f, a/b, a/d, a/b/c, a/d/e, f/g
If recurse_nested is enabled then nested trees are included as if
they were a part of the tree. If is disabled then TreeReference
objects (without any children) are yielded.
"""
raise NotImplementedError(self.iter_entries_by_dir)
def iter_child_entries(self, path):
"""Iterate over the children of a directory or tree reference.
Args:
path: Path of the directory
Raises:
NoSuchFile: When the path does not exist
Returns: Iterator over entries in the directory
"""
raise NotImplementedError(self.iter_child_entries)
def list_files(
self, include_root=False, from_dir=None, recursive=True, recurse_nested=False
):
"""List all files in this tree.
Args:
include_root: Whether to include the entry for the tree root
from_dir: Directory under which to list files
recursive: Whether to list files recursively
recurse_nested: enter nested trees
Returns: iterator over tuples of
(path, versioned, kind, inventory entry)
"""
raise NotImplementedError(self.list_files)
def iter_references(self):
if self.supports_tree_reference():
for path, entry in self.iter_entries_by_dir():
if entry.kind == "tree-reference":
yield path
def get_containing_nested_tree(self, path):
"""Find the nested tree that contains a path.
Returns: tuple with (nested tree and path inside the nested tree)
"""
for nested_path in self.iter_references():
nested_path += "/"
if path.startswith(nested_path):
nested_tree = self.get_nested_tree(nested_path)
return nested_tree, path[len(nested_path) :]
else:
return None, None
def get_nested_tree(self, path):
"""Open the nested tree at the specified path.
Args:
path: Path from which to resolve tree reference.
Returns: A Tree object for the nested tree
Raises:
MissingNestedTree: If the nested tree can not be resolved
"""
raise NotImplementedError(self.get_nested_tree)
def kind(self, path):
raise NotImplementedError(
"Tree subclass {} must implement kind".format(self.__class__.__name__)
)
def stored_kind(self, path):
"""File kind stored for this path.
May not match kind on disk for working trees. Always available
for versioned files, even when the file itself is missing.
"""
return self.kind(path)
def path_content_summary(self, path):
"""Get a summary of the information about path.
All the attributes returned are for the canonical form, not the
convenient form (if content filters are in use.)
Args:
path: A relative path within the tree.
Returns: A tuple containing kind, size, exec, sha1-or-link.
Kind is always present (see tree.kind()).
size is present if kind is file and the size of the
canonical form can be cheaply determined, None otherwise.
exec is None unless kind is file and the platform supports the 'x'
bit.
sha1-or-link is the link target if kind is symlink, or the sha1 if
it can be obtained without reading the file.
"""
raise NotImplementedError(self.path_content_summary)
def get_reference_revision(self, path):
raise NotImplementedError(
"Tree subclass {} must implement get_reference_revision".format(
self.__class__.__name__
)
)
def _comparison_data(self, entry, path):
"""Return a tuple of kind, executable, stat_value for a file.
entry may be None if there is no inventory entry for the file, but
path must always be supplied.
kind is None if there is no file present (even if an inventory id is
present). executable is False for non-file entries.
"""
raise NotImplementedError(self._comparison_data)
def get_file(self, path):
"""Return a file object for the file path in the tree."""
raise NotImplementedError(self.get_file)
def get_file_with_stat(self, path):
"""Get a file handle and stat object for path.
The default implementation returns (self.get_file, None) for backwards
compatibility.
Args:
path: The path of the file.
Returns: A tuple (file_handle, stat_value_or_None). If the tree has
no stat facility, or need for a stat cache feedback during commit,
it may return None for the second element of the tuple.
"""
return (self.get_file(path), None)
def get_file_text(self, path):
"""Return the byte content of a file.
Args:
path: The path of the file.
Returns: A single byte string for the whole file.
"""
with self.get_file(path) as my_file:
return my_file.read()
def get_file_lines(self, path):
"""Return the content of a file, as lines.
Args:
path: The path of the file.
"""
return osutils.split_lines(self.get_file_text(path))
def get_file_verifier(self, path, stat_value=None):
"""Return a verifier for a file.
The default implementation returns a sha1.
Args:
path: The path that this file can be found at.
These must point to the same object.
stat_value: Optional stat value for the object
Returns: Tuple with verifier name and verifier data
"""
return ("SHA1", self.get_file_sha1(path, stat_value=stat_value))
def get_file_sha1(self, path, stat_value=None):
"""Return the SHA1 file for a file.
:note: callers should use get_file_verifier instead
where possible, as the underlying repository implementation may
have quicker access to a non-sha1 verifier.
Args:
path: The path that this file can be found at.
stat_value: Optional stat value for the object
"""
raise NotImplementedError(self.get_file_sha1)
def get_file_mtime(self, path):
"""Return the modification time for a file.
Args:
path: The path that this file can be found at.
"""
raise NotImplementedError(self.get_file_mtime)
def get_file_size(self, path):
"""Return the size of a file in bytes.
This applies only to regular files. If invoked on directories or
symlinks, it will return None.
"""
raise NotImplementedError(self.get_file_size)
def is_executable(self, path):
"""Check if a file is executable.
Args:
path: The path that this file can be found at.
"""
raise NotImplementedError(self.is_executable)
def iter_files_bytes(self, desired_files):
"""Iterate through file contents.
Files will not necessarily be returned in the order they occur in
desired_files. No specific order is guaranteed.
Yields pairs of identifier, bytes_iterator. identifier is an opaque
value supplied by the caller as part of desired_files. It should
uniquely identify the file version in the caller's context. (Examples:
an index number or a TreeTransform trans_id.)
bytes_iterator is an iterable of bytestrings for the file. The
kind of iterable and length of the bytestrings are unspecified, but for
this implementation, it is a tuple containing a single bytestring with
the complete text of the file.
Args:
desired_files: a list of (path, identifier) pairs
"""
for path, identifier in desired_files:
# We wrap the string in a tuple so that we can return an iterable
# of bytestrings. (Technically, a bytestring is also an iterable
# of bytestrings, but iterating through each character is not
# performant.)
cur_file = (self.get_file_text(path),)
yield identifier, cur_file
def get_symlink_target(self, path):
"""Get the target for a given path.
It is assumed that the caller already knows that path is referencing
a symlink.
Args:
path: The path of the file.
Returns: The path the symlink points to.
"""
raise NotImplementedError(self.get_symlink_target)
def annotate_iter(self, path, default_revision=_mod_revision.CURRENT_REVISION):
"""Return an iterator of revision_id, line tuples.
For working trees (and mutable trees in general), the special
revision_id 'current:' will be used for lines that are new in this
tree, e.g. uncommitted changes.
Args;
path: The file to produce an annotated version from
default_revision: For lines that don't match a basis, mark them
with this revision id. Not all implementations will make use of
this value.
"""
raise NotImplementedError(self.annotate_iter)
def is_versioned(self, path: str) -> bool:
"""Check whether path is versioned.
Args:
path: Path to check
Returns: boolean
"""
raise NotImplementedError(self.is_versioned)
def find_related_paths_across_trees(
self, paths, trees=None, require_versioned=True
):
"""Find related paths in tree corresponding to specified filenames in any
of `lookup_trees`.
All matches in all trees will be used, and all children of matched
directories will be used.
Args:
paths: The filenames to find related paths for (if None, returns
None)
trees: The trees to find file_ids within
require_versioned: if true, all specified filenames must occur in
at least one tree.
Returns: a set of paths for the specified filenames and their children
in `tree`
"""
raise NotImplementedError(self.find_related_paths_across_trees)
def lock_read(self):
"""Lock this tree for multiple read only operations.
Returns: A breezy.lock.LogicalLockResult.
"""
return lock.LogicalLockResult(self.unlock)
def revision_tree(self, revision_id):
"""Obtain a revision tree for the revision revision_id.
The intention of this method is to allow access to possibly cached
tree data. Implementors of this method should raise NoSuchRevision if
the tree is not locally available, even if they could obtain the
tree via a repository or some other means. Callers are responsible
for finding the ultimate source for a revision tree.
Args:
revision_id: The revision_id of the requested tree.
Returns: A Tree.
Raises:
NoSuchRevision: if the tree cannot be obtained.
"""
raise errors.NoSuchRevisionInTree(self, revision_id)
def unknowns(self) -> Iterator[str]:
"""What files are present in this tree and unknown.
Returns: an iterator over the unknown files.
"""
return iter([])
def unlock(self):
pass
def filter_unversioned_files(self, paths):
"""Filter out paths that are versioned.
Returns: set of paths.
"""
# NB: we specifically *don't* call self.has_filename, because for
# WorkingTrees that can indicate files that exist on disk but that
# are not versioned.
return {p for p in paths if not self.is_versioned(p)}
def walkdirs(self, prefix=""):
"""Walk the contents of this tree from path down.
This yields all the data about the contents of a directory at a time.
After each directory has been yielded, if the caller has mutated the
list to exclude some directories, they are then not descended into.
The data yielded is of the form:
(directory-relpath,
[(relpath, basename, kind, lstat, path_from_tree_root,
versioned_kind), ...]),
- directory-path-from-root is the containing dirs path from /
- relpath is the relative path within the subtree being walked.
- basename is the basename
- kind is the kind of the file now. If unknonwn then the file is not
present within the tree - but it may be recorded as versioned. See
versioned_kind.
- lstat is the stat data *if* the file was statted.
- path_from_tree_root is the path from the root of the tree.
- versioned_kind is the kind of the file as last recorded in the
versioning system. If 'unknown' the file is not versioned.
One of 'kind' and 'versioned_kind' must not be 'unknown'.
Args:
prefix: Start walking from prefix within the tree rather than
at the root. This allows one to walk a subtree but get paths that are
relative to a tree rooted higher up.
Returns: an iterator over the directory data.
"""
raise NotImplementedError(self.walkdirs)
def supports_content_filtering(self):
return False
def _content_filter_stack(self, path=None):
"""The stack of content filters for a path if filtering is supported.
Readers will be applied in first-to-last order.
Writers will be applied in last-to-first order.
Either the path or the file-id needs to be provided.
Args:
path: path relative to the root of the tree
or None if unknown
Returns: the list of filters - [] if there are none
"""
from . import debug, filters
filter_pref_names = filters._get_registered_names()
if len(filter_pref_names) == 0:
return []
prefs = next(self.iter_search_rules([path], filter_pref_names))
stk = filters._get_filter_stack_for(prefs)
if "filters" in debug.debug_flags:
trace.note("*** {0} content-filter: {1} => {2!r}").format(path, prefs, stk)
return stk
def _content_filter_stack_provider(self):
"""A function that returns a stack of ContentFilters.
The function takes a path (relative to the top of the tree) and a
file-id as parameters.
Returns: None if content filtering is not supported by this tree.
"""
if self.supports_content_filtering():
return self._content_filter_stack
else:
return None
def iter_search_rules(self, path_names, pref_names=None, _default_searcher=None):
"""Find the preferences for filenames in a tree.
Args:
path_names: an iterable of paths to find attributes for.
Paths are given relative to the root of the tree.
pref_names: the list of preferences to lookup - None for all
_default_searcher: private parameter to assist testing - don't use
Returns: an iterator of tuple sequences, one per path-name.
See _RulesSearcher.get_items for details on the tuple sequence.
"""
from . import rules
if _default_searcher is None:
_default_searcher = rules._per_user_searcher
searcher = self._get_rules_searcher(_default_searcher)
if searcher is not None:
if pref_names is not None:
for path in path_names:
yield searcher.get_selected_items(path, pref_names)
else:
for path in path_names:
yield searcher.get_items(path)
def _get_rules_searcher(self, default_searcher):
"""Get the RulesSearcher for this tree given the default one."""
searcher = default_searcher
return searcher
def archive(
self,
format: str,
name: str,
root: str = "",
subdir: Optional[str] = None,
force_mtime: Optional[Union[int, float]] = None,
recurse_nested: bool = False,
) -> Iterator[bytes]:
"""Create an archive of this tree.
Args:
format: Format name (e.g. 'tar')
name: target file name
root: Root directory name (or None)
subdir: Subdirectory to export (or None)
Returns: Iterator over archive chunks
"""
from .archive import create_archive
with self.lock_read():
return create_archive(
format,
self,
name,
root,
subdir,
force_mtime=force_mtime,
recurse_nested=recurse_nested,
)
@classmethod
def versionable_kind(cls, kind):
"""Check if this tree support versioning a specific file kind."""
return kind in ("file", "directory", "symlink", "tree-reference")
def preview_transform(self, pb=None):
"""Obtain a transform object."""
raise NotImplementedError(self.preview_transform)
class InterTree(InterObject[Tree]):
"""This class represents operations taking place between two Trees.
Its instances have methods like 'compare' and contain references to the
source and target trees these operations are to be carried out on.
Clients of breezy should not need to use InterTree directly, rather they
should use the convenience methods on Tree such as 'Tree.compare()' which
will pass through to InterTree as appropriate.
"""
# Formats that will be used to test this InterTree. If both are
# None, this InterTree will not be tested (e.g. because a complex
# setup is required)
if TYPE_CHECKING:
from .workingtree import WorkingTreeFormat
_matching_from_tree_format: Optional["WorkingTreeFormat"] = None
_matching_to_tree_format: Optional["WorkingTreeFormat"] = None
_optimisers = []
@classmethod
def is_compatible(kls, source, target):
# The default implementation is naive and uses the public API, so
# it works for all trees.
return True
@classmethod
def get(cls, source: Tree, target: Tree) -> "InterTree":
return cast(InterTree, super().get(source, target))
def compare(
self,
want_unchanged: bool = False,
specific_files: Optional[list[str]] = None,
extra_trees: Optional[list[Tree]] = None,
require_versioned: bool = False,
include_root: bool = False,
want_unversioned: bool = False,
):
"""Return the changes from source to target.
Returns: A TreeDelta.
Args:
specific_files: An optional list of file paths to restrict the
comparison to. When mapping filenames to ids, all matches in all
trees (including optional extra_trees) are used, and all children of
matched directories are included.
want_unchanged: An optional boolean requesting the inclusion of
unchanged entries in the result.
extra_trees: An optional list of additional trees to use when
mapping the contents of specific_files (paths) to file_ids.
require_versioned: An optional boolean (defaults to False). When
supplied and True all the 'specific_files' must be versioned, or
a PathsNotVersionedError will be thrown.
want_unversioned: Scan for unversioned paths.
"""
from . import delta
trees = [self.source]
if extra_trees is not None:
trees = trees + extra_trees
with self.lock_read():
return delta._compare_trees(
self.source,
self.target,
want_unchanged,
specific_files,
include_root,
extra_trees=extra_trees,
require_versioned=require_versioned,
want_unversioned=want_unversioned,
)
def iter_changes(
self,
include_unchanged: bool = False,
specific_files: Optional[list[str]] = None,
pb=None,
extra_trees: Optional[list[Tree]] = None,
require_versioned: bool = True,
want_unversioned: bool = False,
):
"""Generate an iterator of changes between trees.
A TreeChange object is returned.
Changed_content is True if the file's content has changed. This
includes changes to its kind, and to a symlink's target.
versioned, parent, name, kind, executable are tuples of (from, to).
If a file is missing in a tree, its kind is None.
Iteration is done in parent-to-child order, relative to the target
tree.
There is no guarantee that all paths are in sorted order: the
requirement to expand the search due to renames may result in children
that should be found early being found late in the search, after
lexically later results have been returned.
Args:
require_versioned: Raise errors.PathsNotVersionedError if a
path in the specific_files list is not versioned in one of
source, target or extra_trees.
specific_files: An optional list of file paths to restrict the
comparison to. When mapping filenames to ids, all matches in all
trees (including optional extra_trees) are used, and all children
of matched directories are included. The parents in the target tree
of the specific files up to and including the root of the tree are
always evaluated for changes too.
want_unversioned: Should unversioned files be returned in the
output. An unversioned file is defined as one with (False, False)
for the versioned pair.
"""
raise NotImplementedError(self.iter_changes)
def file_content_matches(
self, source_path: str, target_path: str, source_stat=None, target_stat=None
):
"""Check if two files are the same in the source and target trees.
This only checks that the contents of the files are the same,
it does not touch anything else.
Args:
source_path: Path of the file in the source tree
target_path: Path of the file in the target tree
source_stat: Optional stat value of the file in the source tree
target_stat: Optional stat value of the file in the target tree
Returns: Boolean indicating whether the files have the same contents
"""
with self.lock_read():
source_verifier_kind, source_verifier_data = self.source.get_file_verifier(
source_path, source_stat
)
target_verifier_kind, target_verifier_data = self.target.get_file_verifier(
target_path, target_stat
)
if source_verifier_kind == target_verifier_kind:
return source_verifier_data == target_verifier_data
# Fall back to SHA1 for now
if source_verifier_kind != "SHA1":
source_sha1 = self.source.get_file_sha1(source_path, source_stat)
else:
source_sha1 = source_verifier_data
if target_verifier_kind != "SHA1":
target_sha1 = self.target.get_file_sha1(target_path, target_stat)
else:
target_sha1 = target_verifier_data
return source_sha1 == target_sha1
def find_target_path(self, path: str, recurse: str = "none") -> Optional[str]:
"""Find target tree path.
Args:
path: Path to search for (exists in source)
Returns: path in target, or None if there is no equivalent path.
Raises:
NoSuchFile: If the path doesn't exist in source
"""
raise NotImplementedError(self.find_target_path)
def find_source_path(self, path: str, recurse: str = "none") -> Optional[str]:
"""Find the source tree path.
Args:
path: Path to search for (exists in target)
Returns: path in source, or None if there is no equivalent path.
Raises:
NoSuchFile: if the path doesn't exist in target
"""
raise NotImplementedError(self.find_source_path)
def find_target_paths(
self, paths: list[str], recurse="none"
) -> dict[str, Optional[str]]:
"""Find target tree paths.
Args:
paths: Iterable over paths in target to search for
Returns: Dictionary mapping from source paths to paths in target , or
None if there is no equivalent path.
"""
ret = {}
for path in paths:
ret[path] = self.find_target_path(path, recurse=recurse)
return ret
def find_source_paths(
self, paths: list[str], recurse: str = "none"
) -> dict[str, Optional[str]]:
"""Find source tree paths.
Args:
paths: Iterable over paths in target to search for
Returns: Dictionary mapping from target paths to paths in source, or
None if there is no equivalent path.
"""
ret = {}
for path in paths:
ret[path] = self.find_source_path(path, recurse=recurse)
return ret
def find_previous_paths(
from_tree: Tree, to_tree: Tree, paths: list[str], recurse: str = "none"
) -> dict[str, Optional[str]]:
"""Find previous tree paths.
Args:
from_tree: From tree
to_tree: To tree
paths: Iterable over paths in from_tree to search for
Returns: Dictionary mapping from from_tree paths to paths in to_tree, or
None if there is no equivalent path.
"""
return InterTree.get(to_tree, from_tree).find_source_paths(paths, recurse=recurse)
def find_previous_path(from_tree, to_tree, path, recurse="none"):
"""Find previous tree path.
Args:
from_tree: From tree
to_tree: To tree
path: Path to search for (exists in from_tree)
Returns: path in to_tree, or None if there is no equivalent path.
Raises:
NoSuchFile: If the path doesn't exist in from_tree
"""
return InterTree.get(to_tree, from_tree).find_source_path(path, recurse=recurse)
def get_canonical_path(tree, path, normalize):
"""Find the canonical path of an item, ignoring case.
Args:
tree: Tree to traverse
path: Case-insensitive path to look up
normalize: Function to normalize a filename for comparison
Returns: The canonical path
"""
# go walkin...
cur_path = ""
bit_iter = iter(path.split("/"))
for elt in bit_iter:
if not elt:
continue
lelt = normalize(elt)
new_path = None
try:
for child in tree.iter_child_entries(cur_path):
try:
if child.name == elt:
# if we found an exact match, we can stop now; if
# we found an approximate match we need to keep
# searching because there might be an exact match
# later.
new_path = osutils.pathjoin(cur_path, child.name)
break
elif normalize(child.name) == lelt:
new_path = osutils.pathjoin(cur_path, child.name)
except errors.NoSuchId:
# before a change is committed we can see this error...
continue
except errors.NotADirectory:
pass
if new_path:
cur_path = new_path
else:
# got to the end of this directory and no entries matched.
# Return what matched so far, plus the rest as specified.
cur_path = osutils.pathjoin(cur_path, elt, *list(bit_iter))
break
return cur_path