diff_tree.py 22 KB

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