diff_tree.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. # diff_tree.py -- Utilities for diffing files and trees.
  2. # Copyright (C) 2010 Google, Inc.
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Utilities for diffing files and trees."""
  21. import sys
  22. from collections import (
  23. defaultdict,
  24. namedtuple,
  25. )
  26. from io import BytesIO
  27. from itertools import chain
  28. import stat
  29. from dulwich.objects import (
  30. S_ISGITLINK,
  31. TreeEntry,
  32. )
  33. # TreeChange type constants.
  34. CHANGE_ADD = 'add'
  35. CHANGE_MODIFY = 'modify'
  36. CHANGE_DELETE = 'delete'
  37. CHANGE_RENAME = 'rename'
  38. CHANGE_COPY = 'copy'
  39. CHANGE_UNCHANGED = 'unchanged'
  40. RENAME_CHANGE_TYPES = (CHANGE_RENAME, CHANGE_COPY)
  41. _NULL_ENTRY = TreeEntry(None, None, None)
  42. _MAX_SCORE = 100
  43. RENAME_THRESHOLD = 60
  44. MAX_FILES = 200
  45. REWRITE_THRESHOLD = None
  46. class TreeChange(namedtuple('TreeChange', ['type', 'old', 'new'])):
  47. """Named tuple a single change between two trees."""
  48. @classmethod
  49. def add(cls, new):
  50. return cls(CHANGE_ADD, _NULL_ENTRY, new)
  51. @classmethod
  52. def delete(cls, old):
  53. return cls(CHANGE_DELETE, old, _NULL_ENTRY)
  54. def _tree_entries(path, tree):
  55. result = []
  56. if not tree:
  57. return result
  58. for entry in tree.iteritems(name_order=True):
  59. result.append(entry.in_path(path))
  60. return result
  61. def _merge_entries(path, tree1, tree2):
  62. """Merge the entries of two trees.
  63. :param path: A path to prepend to all tree entry names.
  64. :param tree1: The first Tree object to iterate, or None.
  65. :param tree2: The second Tree object to iterate, or None.
  66. :return: A list of pairs of TreeEntry objects for each pair of entries in
  67. the trees. If an entry exists in one tree but not the other, the other
  68. entry will have all attributes set to None. If neither entry's path is
  69. None, they are guaranteed to match.
  70. """
  71. entries1 = _tree_entries(path, tree1)
  72. entries2 = _tree_entries(path, tree2)
  73. i1 = i2 = 0
  74. len1 = len(entries1)
  75. len2 = len(entries2)
  76. result = []
  77. while i1 < len1 and i2 < len2:
  78. entry1 = entries1[i1]
  79. entry2 = entries2[i2]
  80. if entry1.path < entry2.path:
  81. result.append((entry1, _NULL_ENTRY))
  82. i1 += 1
  83. elif entry1.path > entry2.path:
  84. result.append((_NULL_ENTRY, entry2))
  85. i2 += 1
  86. else:
  87. result.append((entry1, entry2))
  88. i1 += 1
  89. i2 += 1
  90. for i in range(i1, len1):
  91. result.append((entries1[i], _NULL_ENTRY))
  92. for i in range(i2, len2):
  93. result.append((_NULL_ENTRY, entries2[i]))
  94. return result
  95. def _is_tree(entry):
  96. mode = entry.mode
  97. if mode is None:
  98. return False
  99. return stat.S_ISDIR(mode)
  100. def walk_trees(store, tree1_id, tree2_id, prune_identical=False):
  101. """Recursively walk all the entries of two trees.
  102. Iteration is depth-first pre-order, as in e.g. os.walk.
  103. :param store: An ObjectStore for looking up objects.
  104. :param tree1_id: The SHA of the first Tree object to iterate, or None.
  105. :param tree2_id: The SHA of the second Tree object to iterate, or None.
  106. :param prune_identical: If True, identical subtrees will not be walked.
  107. :return: Iterator over Pairs of TreeEntry objects for each pair of entries
  108. in the trees and their subtrees recursively. If an entry exists in one
  109. tree but not the other, the other entry will have all attributes set
  110. to None. If neither entry's path is None, they are guaranteed to
  111. match.
  112. """
  113. # This could be fairly easily generalized to >2 trees if we find a use
  114. # case.
  115. mode1 = tree1_id and stat.S_IFDIR or None
  116. mode2 = tree2_id and stat.S_IFDIR or None
  117. todo = [(TreeEntry(b'', mode1, tree1_id), TreeEntry(b'', mode2, tree2_id))]
  118. while todo:
  119. entry1, entry2 = todo.pop()
  120. is_tree1 = _is_tree(entry1)
  121. is_tree2 = _is_tree(entry2)
  122. if prune_identical and is_tree1 and is_tree2 and entry1 == entry2:
  123. continue
  124. tree1 = is_tree1 and store[entry1.sha] or None
  125. tree2 = is_tree2 and store[entry2.sha] or None
  126. path = entry1.path or entry2.path
  127. todo.extend(reversed(_merge_entries(path, tree1, tree2)))
  128. yield entry1, entry2
  129. def _skip_tree(entry, include_trees):
  130. if entry.mode is None or (not include_trees and stat.S_ISDIR(entry.mode)):
  131. return _NULL_ENTRY
  132. return entry
  133. def tree_changes(store, tree1_id, tree2_id, want_unchanged=False,
  134. rename_detector=None, include_trees=False,
  135. change_type_same=False):
  136. """Find the differences between the contents of two trees.
  137. :param store: An ObjectStore for looking up objects.
  138. :param tree1_id: The SHA of the source tree.
  139. :param tree2_id: The SHA of the target tree.
  140. :param want_unchanged: If True, include TreeChanges for unmodified entries
  141. as well.
  142. :param include_trees: Whether to include trees
  143. :param rename_detector: RenameDetector object for detecting renames.
  144. :param change_type_same: Whether to report change types in the same
  145. entry or as delete+add.
  146. :return: Iterator over TreeChange instances for each change between the
  147. source and target tree.
  148. """
  149. if include_trees and rename_detector is not None:
  150. raise NotImplementedError(
  151. 'rename_detector and include_trees are mutually exclusive')
  152. if (rename_detector is not None and tree1_id is not None and
  153. tree2_id is not None):
  154. for change in rename_detector.changes_with_renames(
  155. tree1_id, tree2_id, want_unchanged=want_unchanged):
  156. yield change
  157. return
  158. entries = walk_trees(store, tree1_id, tree2_id,
  159. prune_identical=(not want_unchanged))
  160. for entry1, entry2 in entries:
  161. if entry1 == entry2 and not want_unchanged:
  162. continue
  163. # Treat entries for trees as missing.
  164. entry1 = _skip_tree(entry1, include_trees)
  165. entry2 = _skip_tree(entry2, include_trees)
  166. if entry1 != _NULL_ENTRY and entry2 != _NULL_ENTRY:
  167. if (stat.S_IFMT(entry1.mode) != stat.S_IFMT(entry2.mode)
  168. and not change_type_same):
  169. # File type changed: report as delete/add.
  170. yield TreeChange.delete(entry1)
  171. entry1 = _NULL_ENTRY
  172. change_type = CHANGE_ADD
  173. elif entry1 == entry2:
  174. change_type = CHANGE_UNCHANGED
  175. else:
  176. change_type = CHANGE_MODIFY
  177. elif entry1 != _NULL_ENTRY:
  178. change_type = CHANGE_DELETE
  179. elif entry2 != _NULL_ENTRY:
  180. change_type = CHANGE_ADD
  181. else:
  182. # Both were None because at least one was a tree.
  183. continue
  184. yield TreeChange(change_type, entry1, entry2)
  185. def _all_eq(seq, key, value):
  186. for e in seq:
  187. if key(e) != value:
  188. return False
  189. return True
  190. def _all_same(seq, key):
  191. return _all_eq(seq[1:], key, key(seq[0]))
  192. def tree_changes_for_merge(store, parent_tree_ids, tree_id,
  193. rename_detector=None):
  194. """Get the tree changes for a merge tree relative to all its parents.
  195. :param store: An ObjectStore for looking up objects.
  196. :param parent_tree_ids: An iterable of the SHAs of the parent trees.
  197. :param tree_id: The SHA of the merge tree.
  198. :param rename_detector: RenameDetector object for detecting renames.
  199. :return: Iterator over lists of TreeChange objects, one per conflicted path
  200. in the merge.
  201. Each list contains one element per parent, with the TreeChange for that
  202. path relative to that parent. An element may be None if it never
  203. existed in one parent and was deleted in two others.
  204. A path is only included in the output if it is a conflict, i.e. its SHA
  205. in the merge tree is not found in any of the parents, or in the case of
  206. deletes, if not all of the old SHAs match.
  207. """
  208. all_parent_changes = [tree_changes(store, t, tree_id,
  209. rename_detector=rename_detector)
  210. for t in parent_tree_ids]
  211. num_parents = len(parent_tree_ids)
  212. changes_by_path = defaultdict(lambda: [None] * num_parents)
  213. # Organize by path.
  214. for i, parent_changes in enumerate(all_parent_changes):
  215. for change in parent_changes:
  216. if change.type == CHANGE_DELETE:
  217. path = change.old.path
  218. else:
  219. path = change.new.path
  220. changes_by_path[path][i] = change
  221. def old_sha(c):
  222. return c.old.sha
  223. def change_type(c):
  224. return c.type
  225. # Yield only conflicting changes.
  226. for _, changes in sorted(changes_by_path.items()):
  227. assert len(changes) == num_parents
  228. have = [c for c in changes if c is not None]
  229. if _all_eq(have, change_type, CHANGE_DELETE):
  230. if not _all_same(have, old_sha):
  231. yield changes
  232. elif not _all_same(have, change_type):
  233. yield changes
  234. elif None not in changes:
  235. # If no change was found relative to one parent, that means the SHA
  236. # must have matched the SHA in that parent, so it is not a
  237. # conflict.
  238. yield changes
  239. _BLOCK_SIZE = 64
  240. def _count_blocks(obj):
  241. """Count the blocks in an object.
  242. Splits the data into blocks either on lines or <=64-byte chunks of lines.
  243. :param obj: The object to count blocks for.
  244. :return: A dict of block hashcode -> total bytes occurring.
  245. """
  246. block_counts = defaultdict(int)
  247. block = BytesIO()
  248. n = 0
  249. # Cache attrs as locals to avoid expensive lookups in the inner loop.
  250. block_write = block.write
  251. block_seek = block.seek
  252. block_truncate = block.truncate
  253. block_getvalue = block.getvalue
  254. for c in chain(*obj.as_raw_chunks()):
  255. if sys.version_info[0] == 3:
  256. c = c.to_bytes(1, 'big')
  257. block_write(c)
  258. n += 1
  259. if c == b'\n' or n == _BLOCK_SIZE:
  260. value = block_getvalue()
  261. block_counts[hash(value)] += len(value)
  262. block_seek(0)
  263. block_truncate()
  264. n = 0
  265. if n > 0:
  266. last_block = block_getvalue()
  267. block_counts[hash(last_block)] += len(last_block)
  268. return block_counts
  269. def _common_bytes(blocks1, blocks2):
  270. """Count the number of common bytes in two block count dicts.
  271. :param block1: The first dict of block hashcode -> total bytes.
  272. :param block2: The second dict of block hashcode -> total bytes.
  273. :return: The number of bytes in common between blocks1 and blocks2. This is
  274. only approximate due to possible hash collisions.
  275. """
  276. # Iterate over the smaller of the two dicts, since this is symmetrical.
  277. if len(blocks1) > len(blocks2):
  278. blocks1, blocks2 = blocks2, blocks1
  279. score = 0
  280. for block, count1 in blocks1.items():
  281. count2 = blocks2.get(block)
  282. if count2:
  283. score += min(count1, count2)
  284. return score
  285. def _similarity_score(obj1, obj2, block_cache=None):
  286. """Compute a similarity score for two objects.
  287. :param obj1: The first object to score.
  288. :param obj2: The second object to score.
  289. :param block_cache: An optional dict of SHA to block counts to cache
  290. results between calls.
  291. :return: The similarity score between the two objects, defined as the
  292. number of bytes in common between the two objects divided by the
  293. maximum size, scaled to the range 0-100.
  294. """
  295. if block_cache is None:
  296. block_cache = {}
  297. if obj1.id not in block_cache:
  298. block_cache[obj1.id] = _count_blocks(obj1)
  299. if obj2.id not in block_cache:
  300. block_cache[obj2.id] = _count_blocks(obj2)
  301. common_bytes = _common_bytes(block_cache[obj1.id], block_cache[obj2.id])
  302. max_size = max(obj1.raw_length(), obj2.raw_length())
  303. if not max_size:
  304. return _MAX_SCORE
  305. return int(float(common_bytes) * _MAX_SCORE / max_size)
  306. def _tree_change_key(entry):
  307. # Sort by old path then new path. If only one exists, use it for both keys.
  308. path1 = entry.old.path
  309. path2 = entry.new.path
  310. if path1 is None:
  311. path1 = path2
  312. if path2 is None:
  313. path2 = path1
  314. return (path1, path2)
  315. class RenameDetector(object):
  316. """Object for handling rename detection between two trees."""
  317. def __init__(self, store, rename_threshold=RENAME_THRESHOLD,
  318. max_files=MAX_FILES,
  319. rewrite_threshold=REWRITE_THRESHOLD,
  320. find_copies_harder=False):
  321. """Initialize the rename detector.
  322. :param store: An ObjectStore for looking up objects.
  323. :param rename_threshold: The threshold similarity score for considering
  324. an add/delete pair to be a rename/copy; see _similarity_score.
  325. :param max_files: The maximum number of adds and deletes to consider,
  326. or None for no limit. The detector is guaranteed to compare no more
  327. than max_files ** 2 add/delete pairs. This limit is provided
  328. because rename detection can be quadratic in the project size. If
  329. the limit is exceeded, no content rename detection is attempted.
  330. :param rewrite_threshold: The threshold similarity score below which a
  331. modify should be considered a delete/add, or None to not break
  332. modifies; see _similarity_score.
  333. :param find_copies_harder: If True, consider unmodified files when
  334. detecting copies.
  335. """
  336. self._store = store
  337. self._rename_threshold = rename_threshold
  338. self._rewrite_threshold = rewrite_threshold
  339. self._max_files = max_files
  340. self._find_copies_harder = find_copies_harder
  341. self._want_unchanged = False
  342. def _reset(self):
  343. self._adds = []
  344. self._deletes = []
  345. self._changes = []
  346. def _should_split(self, change):
  347. if (self._rewrite_threshold is None or change.type != CHANGE_MODIFY or
  348. change.old.sha == change.new.sha):
  349. return False
  350. old_obj = self._store[change.old.sha]
  351. new_obj = self._store[change.new.sha]
  352. return _similarity_score(old_obj, new_obj) < self._rewrite_threshold
  353. def _add_change(self, change):
  354. if change.type == CHANGE_ADD:
  355. self._adds.append(change)
  356. elif change.type == CHANGE_DELETE:
  357. self._deletes.append(change)
  358. elif self._should_split(change):
  359. self._deletes.append(TreeChange.delete(change.old))
  360. self._adds.append(TreeChange.add(change.new))
  361. elif ((self._find_copies_harder and change.type == CHANGE_UNCHANGED)
  362. or change.type == CHANGE_MODIFY):
  363. # Treat all modifies as potential deletes for rename detection,
  364. # but don't split them (to avoid spurious renames). Setting
  365. # find_copies_harder means we treat unchanged the same as
  366. # modified.
  367. self._deletes.append(change)
  368. else:
  369. self._changes.append(change)
  370. def _collect_changes(self, tree1_id, tree2_id):
  371. want_unchanged = self._find_copies_harder or self._want_unchanged
  372. for change in tree_changes(self._store, tree1_id, tree2_id,
  373. want_unchanged=want_unchanged):
  374. self._add_change(change)
  375. def _prune(self, add_paths, delete_paths):
  376. self._adds = [a for a in self._adds if a.new.path not in add_paths]
  377. self._deletes = [d for d in self._deletes
  378. if d.old.path not in delete_paths]
  379. def _find_exact_renames(self):
  380. add_map = defaultdict(list)
  381. for add in self._adds:
  382. add_map[add.new.sha].append(add.new)
  383. delete_map = defaultdict(list)
  384. for delete in self._deletes:
  385. # Keep track of whether the delete was actually marked as a delete.
  386. # If not, it needs to be marked as a copy.
  387. is_delete = delete.type == CHANGE_DELETE
  388. delete_map[delete.old.sha].append((delete.old, is_delete))
  389. add_paths = set()
  390. delete_paths = set()
  391. for sha, sha_deletes in delete_map.items():
  392. sha_adds = add_map[sha]
  393. for (old, is_delete), new in zip(sha_deletes, sha_adds):
  394. if stat.S_IFMT(old.mode) != stat.S_IFMT(new.mode):
  395. continue
  396. if is_delete:
  397. delete_paths.add(old.path)
  398. add_paths.add(new.path)
  399. new_type = is_delete and CHANGE_RENAME or CHANGE_COPY
  400. self._changes.append(TreeChange(new_type, old, new))
  401. num_extra_adds = len(sha_adds) - len(sha_deletes)
  402. # TODO(dborowitz): Less arbitrary way of dealing with extra copies.
  403. old = sha_deletes[0][0]
  404. if num_extra_adds > 0:
  405. for new in sha_adds[-num_extra_adds:]:
  406. add_paths.add(new.path)
  407. self._changes.append(TreeChange(CHANGE_COPY, old, new))
  408. self._prune(add_paths, delete_paths)
  409. def _should_find_content_renames(self):
  410. return len(self._adds) * len(self._deletes) <= self._max_files ** 2
  411. def _rename_type(self, check_paths, delete, add):
  412. if check_paths and delete.old.path == add.new.path:
  413. # If the paths match, this must be a split modify, so make sure it
  414. # comes out as a modify.
  415. return CHANGE_MODIFY
  416. elif delete.type != CHANGE_DELETE:
  417. # If it's in deletes but not marked as a delete, it must have been
  418. # added due to find_copies_harder, and needs to be marked as a
  419. # copy.
  420. return CHANGE_COPY
  421. return CHANGE_RENAME
  422. def _find_content_rename_candidates(self):
  423. candidates = self._candidates = []
  424. # TODO: Optimizations:
  425. # - Compare object sizes before counting blocks.
  426. # - Skip if delete's S_IFMT differs from all adds.
  427. # - Skip if adds or deletes is empty.
  428. # Match C git's behavior of not attempting to find content renames if
  429. # the matrix size exceeds the threshold.
  430. if not self._should_find_content_renames():
  431. return
  432. block_cache = {}
  433. check_paths = self._rename_threshold is not None
  434. for delete in self._deletes:
  435. if S_ISGITLINK(delete.old.mode):
  436. continue # Git links don't exist in this repo.
  437. old_sha = delete.old.sha
  438. old_obj = self._store[old_sha]
  439. block_cache[old_sha] = _count_blocks(old_obj)
  440. for add in self._adds:
  441. if stat.S_IFMT(delete.old.mode) != stat.S_IFMT(add.new.mode):
  442. continue
  443. new_obj = self._store[add.new.sha]
  444. score = _similarity_score(old_obj, new_obj,
  445. block_cache=block_cache)
  446. if score > self._rename_threshold:
  447. new_type = self._rename_type(check_paths, delete, add)
  448. rename = TreeChange(new_type, delete.old, add.new)
  449. candidates.append((-score, rename))
  450. def _choose_content_renames(self):
  451. # Sort scores from highest to lowest, but keep names in ascending
  452. # order.
  453. self._candidates.sort()
  454. delete_paths = set()
  455. add_paths = set()
  456. for _, change in self._candidates:
  457. new_path = change.new.path
  458. if new_path in add_paths:
  459. continue
  460. old_path = change.old.path
  461. orig_type = change.type
  462. if old_path in delete_paths:
  463. change = TreeChange(CHANGE_COPY, change.old, change.new)
  464. # If the candidate was originally a copy, that means it came from a
  465. # modified or unchanged path, so we don't want to prune it.
  466. if orig_type != CHANGE_COPY:
  467. delete_paths.add(old_path)
  468. add_paths.add(new_path)
  469. self._changes.append(change)
  470. self._prune(add_paths, delete_paths)
  471. def _join_modifies(self):
  472. if self._rewrite_threshold is None:
  473. return
  474. modifies = {}
  475. delete_map = dict((d.old.path, d) for d in self._deletes)
  476. for add in self._adds:
  477. path = add.new.path
  478. delete = delete_map.get(path)
  479. if (delete is not None and
  480. stat.S_IFMT(delete.old.mode) == stat.S_IFMT(add.new.mode)):
  481. modifies[path] = TreeChange(CHANGE_MODIFY, delete.old, add.new)
  482. self._adds = [a for a in self._adds if a.new.path not in modifies]
  483. self._deletes = [a for a in self._deletes if a.new.path not in
  484. modifies]
  485. self._changes += modifies.values()
  486. def _sorted_changes(self):
  487. result = []
  488. result.extend(self._adds)
  489. result.extend(self._deletes)
  490. result.extend(self._changes)
  491. result.sort(key=_tree_change_key)
  492. return result
  493. def _prune_unchanged(self):
  494. if self._want_unchanged:
  495. return
  496. self._deletes = [
  497. d for d in self._deletes if d.type != CHANGE_UNCHANGED]
  498. def changes_with_renames(self, tree1_id, tree2_id, want_unchanged=False):
  499. """Iterate TreeChanges between two tree SHAs, with rename detection."""
  500. self._reset()
  501. self._want_unchanged = want_unchanged
  502. self._collect_changes(tree1_id, tree2_id)
  503. self._find_exact_renames()
  504. self._find_content_rename_candidates()
  505. self._choose_content_renames()
  506. self._join_modifies()
  507. self._prune_unchanged()
  508. return self._sorted_changes()
  509. # Hold on to the pure-python implementations for testing.
  510. _is_tree_py = _is_tree
  511. _merge_entries_py = _merge_entries
  512. _count_blocks_py = _count_blocks
  513. try:
  514. # Try to import C versions
  515. from dulwich._diff_tree import _is_tree, _merge_entries, _count_blocks
  516. except ImportError:
  517. pass