##// END OF EJS Templates
findrenames: Optimise "addremove -s100" by matching files by their SHA1 hashes....
David Greenaway -
r11060:e6df0177 default
parent child Browse files
Show More
@@ -10,29 +10,49 import util
10 10 import mdiff
11 11 import bdiff
12 12
13 def findrenames(repo, added, removed, threshold):
14 '''find renamed files -- yields (before, after, score) tuples'''
13 def _findexactmatches(repo, added, removed):
14 '''find renamed files that have no changes
15
16 Takes a list of new filectxs and a list of removed filectxs, and yields
17 (before, after) tuples of exact matches.
18 '''
19 numfiles = len(added) + len(removed)
20
21 # Get hashes of removed files.
22 hashes = {}
23 for i, fctx in enumerate(removed):
24 repo.ui.progress(_('searching for exact renames'), i, total=numfiles)
25 h = util.sha1(fctx.data()).digest()
26 hashes[h] = fctx
27
28 # For each added file, see if it corresponds to a removed file.
29 for i, fctx in enumerate(added):
30 repo.ui.progress(_('searching for exact renames'), i + len(removed),
31 total=numfiles)
32 h = util.sha1(fctx.data()).digest()
33 if h in hashes:
34 yield (hashes[h], fctx)
35
36 # Done
37 repo.ui.progress(_('searching for exact renames'), None)
38
39 def _findsimilarmatches(repo, added, removed, threshold):
40 '''find potentially renamed files based on similar file content
41
42 Takes a list of new filectxs and a list of removed filectxs, and yields
43 (before, after, score) tuples of partial matches.
44 '''
15 45 copies = {}
16 ctx = repo['.']
17 46 for i, r in enumerate(removed):
18 repo.ui.progress(_('searching'), i, total=len(removed))
19 if r not in ctx:
20 continue
21 fctx = ctx.filectx(r)
47 repo.ui.progress(_('searching for similar files'), i, total=len(removed))
22 48
23 49 # lazily load text
24 50 @util.cachefunc
25 51 def data():
26 orig = fctx.data()
52 orig = r.data()
27 53 return orig, mdiff.splitnewlines(orig)
28 54
29 55 def score(text):
30 if not len(text):
31 return 0.0
32 if not fctx.cmp(text):
33 return 1.0
34 if threshold == 1.0:
35 return 0.0
36 56 orig, lines = data()
37 57 # bdiff.blocks() returns blocks of matching lines
38 58 # count the number of bytes in each
@@ -47,7 +67,7 def findrenames(repo, added, removed, th
47 67
48 68 for a in added:
49 69 bestscore = copies.get(a, (None, threshold))[1]
50 myscore = score(repo.wread(a))
70 myscore = score(a.data())
51 71 if myscore >= bestscore:
52 72 copies[a] = (r, myscore)
53 73 repo.ui.progress(_('searching'), None)
@@ -56,4 +76,28 def findrenames(repo, added, removed, th
56 76 source, score = v
57 77 yield source, dest, score
58 78
79 def findrenames(repo, added, removed, threshold):
80 '''find renamed files -- yields (before, after, score) tuples'''
81 parentctx = repo['.']
82 workingctx = repo[None]
59 83
84 # Zero length files will be frequently unrelated to each other, and
85 # tracking the deletion/addition of such a file will probably cause more
86 # harm than good. We strip them out here to avoid matching them later on.
87 addedfiles = set([workingctx[fp] for fp in added
88 if workingctx[fp].size() > 0])
89 removedfiles = set([parentctx[fp] for fp in removed
90 if fp in parentctx and parentctx[fp].size() > 0])
91
92 # Find exact matches.
93 for (a, b) in _findexactmatches(repo,
94 sorted(addedfiles),sorted( removedfiles)):
95 addedfiles.remove(b)
96 yield (a.path(), b.path(), 1.0)
97
98 # If the user requested similar files to be matched, search for them also.
99 if threshold < 1.0:
100 for (a, b, score) in _findsimilarmatches(repo,
101 sorted(addedfiles), sorted(removedfiles), threshold):
102 yield (a.path(), b.path(), score)
103
General Comments 0
You need to be logged in to leave comments. Login now