diff_tree.py 22 KB

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