Mercurial > jhg
annotate src/org/tmatesoft/hg/internal/DiffHelper.java @ 591:e447384f3771
CommitFacility as internal class; refactored infrastructure around internals (access to RevlogStream)
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> | 
|---|---|
| date | Tue, 30 Apr 2013 18:55:42 +0200 | 
| parents | 47dfa0ec7e35 | 
| children | 507602cb4fb3 | 
| rev | line source | 
|---|---|
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 1 /* | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 2 * Copyright (c) 2013 TMate Software Ltd | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 3 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 4 * This program is free software; you can redistribute it and/or modify | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 5 * it under the terms of the GNU General Public License as published by | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 6 * the Free Software Foundation; version 2 of the License. | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 7 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 8 * This program is distributed in the hope that it will be useful, | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 11 * GNU General Public License for more details. | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 12 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 13 * For information on how to redistribute this software under | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 14 * the terms of a license other than GNU General Public License | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 15 * contact TMate Software at support@hg4j.com | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 16 */ | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 17 package org.tmatesoft.hg.internal; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 18 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 19 import java.util.ArrayList; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 20 import java.util.HashMap; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 21 import java.util.Map; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 22 | 
| 549 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 23 import org.tmatesoft.hg.repo.HgInvalidStateException; | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 24 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 25 /** | 
| 538 
dd4f6311af52
Commit: first working version
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
533diff
changeset | 26 * Mercurial cares about changes only up to the line level, e.g. a simple file version dump in manifest looks like (RevlogDump output): | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 27 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 28 * 522: 233748 0 103 17438 433 522 521 -1 756073cf2321df44d3ed0585f2a5754bc8a1b2f6 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 29 * <PATCH>: | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 30 * 3487..3578, 91:src/org/tmatesoft/hg/core/HgIterateDirection.java\00add61a8a665c5d8f092210767f812fe0d335ac8 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 31 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 32 * I.e. for the {fname}{revision} entry format of manifest, not only {revision} is changed, but the whole line, with unchanged {fname} is recorded | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 33 * in the patch. | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 34 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 35 * Mercurial paper describes reasons for choosing this approach to delta generation, too. | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 36 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 37 * | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 38 * @author Artem Tikhomirov | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 39 * @author TMate Software Ltd. | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 40 */ | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 41 public class DiffHelper<T extends DiffHelper.ChunkSequence<?>> { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 42 | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 43 private Map<Object, IntVector> chunk2UseIndex; | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 44 private T seq1, seq2; | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 45 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 46 // get filled by #longestMatch, track start of common sequence in seq1 and seq2, respectively | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 47 private int matchStartS1, matchStartS2; | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 48 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 49 private MatchInspector<T> matchInspector; | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 50 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 51 public void init(T s1, T s2) { | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 52 seq1 = s1; | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 53 seq2 = s2; | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 54 prepare(s2); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 55 } | 
| 549 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 56 | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 57 public void init(T s1) { | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 58 if (seq2 == null) { | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 59 throw new IllegalStateException("Use this #init() only when target sequence shall be matched against different origin"); | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 60 } | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 61 seq1 = s1; | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 62 } | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 63 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 64 | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 65 private void prepare(T s2) { | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 66 chunk2UseIndex = new HashMap<Object, IntVector>(); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 67 for (int i = 0, len = s2.chunkCount(); i < len; i++) { | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 68 Object bc = s2.chunk(i); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 69 IntVector loc = chunk2UseIndex.get(bc); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 70 if (loc == null) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 71 chunk2UseIndex.put(bc, loc = new IntVector()); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 72 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 73 loc.add(i); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 74 // bc.registerUseIn(i) - BEWARE, use of bc here is incorrect | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 75 // in this case need to find the only ByteChain to keep indexes | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 76 // i.e. when there are few equal ByteChain instances, notion of "usedIn" shall be either shared (reference same vector) | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 77 // or kept within only one of them | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 78 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 79 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 80 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 81 public void findMatchingBlocks(MatchInspector<T> insp) { | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 82 insp.begin(seq1, seq2); | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 83 matchInspector = insp; | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 84 findMatchingBlocks(0, seq1.chunkCount(), 0, seq2.chunkCount()); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 85 insp.end(); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 86 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 87 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 88 /** | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 89 * implementation based on Python's difflib.py and SequenceMatcher | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 90 */ | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 91 public int longestMatch(int startS1, int endS1, int startS2, int endS2) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 92 matchStartS1 = matchStartS2 = 0; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 93 int maxLength = 0; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 94 IntMap<Integer> chunkIndex2MatchCount = new IntMap<Integer>(8); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 95 for (int i = startS1; i < endS1; i++) { | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 96 Object bc = seq1.chunk(i); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 97 IntVector occurencesInS2 = chunk2UseIndex.get(bc); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 98 if (occurencesInS2 == null) { | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 99 chunkIndex2MatchCount.clear(); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 100 continue; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 101 } | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 102 IntMap<Integer> newChunkIndex2MatchCount = new IntMap<Integer>(8); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 103 for (int j : occurencesInS2.toArray()) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 104 // s1[i] == s2[j] | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 105 if (j < startS2) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 106 continue; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 107 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 108 if (j >= endS2) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 109 break; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 110 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 111 int prevChunkMatches = chunkIndex2MatchCount.containsKey(j-1) ? chunkIndex2MatchCount.get(j-1) : 0; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 112 int k = prevChunkMatches + 1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 113 newChunkIndex2MatchCount.put(j, k); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 114 if (k > maxLength) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 115 matchStartS1 = i-k+1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 116 matchStartS2 = j-k+1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 117 maxLength = k; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 118 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 119 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 120 chunkIndex2MatchCount = newChunkIndex2MatchCount; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 121 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 122 return maxLength; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 123 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 124 | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 125 private void findMatchingBlocks(int startS1, int endS1, int startS2, int endS2) { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 126 int matchLength = longestMatch(startS1, endS1, startS2, endS2); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 127 if (matchLength > 0) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 128 final int saveStartS1 = matchStartS1, saveStartS2 = matchStartS2; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 129 if (startS1 < matchStartS1 && startS2 < matchStartS2) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 130 findMatchingBlocks(startS1, matchStartS1, startS2, matchStartS2); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 131 } | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 132 matchInspector.match(saveStartS1, saveStartS2, matchLength); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 133 if (saveStartS1+matchLength < endS1 && saveStartS2+matchLength < endS2) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 134 findMatchingBlocks(saveStartS1 + matchLength, endS1, saveStartS2 + matchLength, endS2); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 135 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 136 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 137 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 138 | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 139 public interface MatchInspector<T extends ChunkSequence<?>> { | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 140 void begin(T s1, T s2); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 141 void match(int startSeq1, int startSeq2, int matchLength); | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 142 void end(); | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 143 } | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 144 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 145 static class MatchDumpInspector<T extends ChunkSequence<?>> implements MatchInspector<T> { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 146 private int matchCount; | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 147 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 148 public void begin(T s1, T s2) { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 149 matchCount = 0; | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 150 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 151 | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 152 public void match(int startSeq1, int startSeq2, int matchLength) { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 153 matchCount++; | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 154 System.out.printf("match #%d: from line #%d and line #%d of length %d\n", matchCount, startSeq1, startSeq2, matchLength); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 155 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 156 | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 157 public void end() { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 158 if (matchCount == 0) { | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 159 System.out.println("NO MATCHES FOUND!"); | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 160 } | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 161 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 162 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 163 | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 164 /** | 
| 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 165 * Matcher implementation that translates "match/equal" notification to a delta-style "added/removed/changed". | 
| 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 166 */ | 
| 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 167 public static class DeltaInspector<T extends ChunkSequence<?>> implements MatchInspector<T> { | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 168 protected int changeStartS1, changeStartS2; | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 169 protected T seq1, seq2; | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 170 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 171 public void begin(T s1, T s2) { | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 172 seq1 = s1; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 173 seq2 = s2; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 174 changeStartS1 = changeStartS2 = 0; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 175 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 176 | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 177 public void match(int startSeq1, int startSeq2, int matchLength) { | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 178 reportDeltaElement(startSeq1, startSeq2, matchLength); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 179 changeStartS1 = startSeq1 + matchLength; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 180 changeStartS2 = startSeq2 + matchLength; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 181 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 182 | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 183 public void end() { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 184 if (changeStartS1 < seq1.chunkCount()-1 || changeStartS2 < seq2.chunkCount()-1) { | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 185 reportDeltaElement(seq1.chunkCount()-1, seq2.chunkCount()-1, 0); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 186 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 187 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 188 | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 189 protected void reportDeltaElement(int matchStartSeq1, int matchStartSeq2, int matchLength) { | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 190 if (changeStartS1 < matchStartSeq1) { | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 191 if (changeStartS2 < matchStartSeq2) { | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 192 changed(changeStartS1, matchStartSeq1, changeStartS2, matchStartSeq2); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 193 } else { | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 194 assert changeStartS2 == matchStartSeq2; | 
| 543 
1e95f48d9886
Report line index for insertion and deletion, test against 'hg diff' output
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
542diff
changeset | 195 deleted(matchStartSeq2, changeStartS1, matchStartSeq1); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 196 } | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 197 } else { | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 198 assert changeStartS1 == matchStartSeq1; | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 199 if(changeStartS2 < matchStartSeq2) { | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 200 added(changeStartS1, changeStartS2, matchStartSeq2); | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 201 } else { | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 202 assert changeStartS2 == matchStartSeq2; | 
| 549 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 203 if (matchStartSeq1 > 0 || matchStartSeq2 > 0) { | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 204 // FIXME perhaps, exception is too much for the case | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 205 // once diff is covered with tests, replace with assert false : msg; | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 206 throw new HgInvalidStateException(String.format("adjustent equal blocks %d, %d and %d,%d", changeStartS1, matchStartSeq1, changeStartS2, matchStartSeq2)); | 
| 
83afa680555d
Annotate merge revision (combined diff against two parents without looking further)
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
545diff
changeset | 207 } | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 208 } | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 209 } | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 210 if (matchLength > 0) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 211 unchanged(matchStartSeq1, matchStartSeq2, matchLength); | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 212 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 213 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 214 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 215 /** | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 216 * [s1From..s1To) replaced with [s2From..s2To) | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 217 */ | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 218 protected void changed(int s1From, int s1To, int s2From, int s2To) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 219 // NO-OP | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 220 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 221 | 
| 543 
1e95f48d9886
Report line index for insertion and deletion, test against 'hg diff' output
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
542diff
changeset | 222 protected void deleted(int s2DeletePoint, int s1From, int s1To) { | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 223 // NO-OP | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 224 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 225 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 226 protected void added(int s1InsertPoint, int s2From, int s2To) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 227 // NO-OP | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 228 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 229 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 230 protected void unchanged(int s1From, int s2From, int length) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 231 // NO-OP | 
| 541 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 232 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 233 } | 
| 
946b13196252
PatchGenerator: refactoring to facilitate use in annotate/blame
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
538diff
changeset | 234 | 
| 583 
47dfa0ec7e35
Effective revlog patching
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
556diff
changeset | 235 public static class DeltaDumpInspector<T extends ChunkSequence<?>> extends DeltaInspector<T> { | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 236 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 237 @Override | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 238 protected void changed(int s1From, int s1To, int s2From, int s2To) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 239 System.out.printf("changed [%d..%d) with [%d..%d)\n", s1From, s1To, s2From, s2To); | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 240 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 241 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 242 @Override | 
| 543 
1e95f48d9886
Report line index for insertion and deletion, test against 'hg diff' output
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
542diff
changeset | 243 protected void deleted(int s2DeletionPoint, int s1From, int s1To) { | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 244 System.out.printf("deleted [%d..%d)\n", s1From, s1To); | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 245 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 246 | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 247 @Override | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 248 protected void added(int s1InsertPoint, int s2From, int s2To) { | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 249 System.out.printf("added [%d..%d) at %d\n", s2From, s2To, s1InsertPoint); | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 250 } | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 251 | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 252 @Override | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 253 protected void unchanged(int s1From, int s2From, int length) { | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 254 System.out.printf("same [%d..%d) and [%d..%d)\n", s1From, s1From + length, s2From, s2From + length); | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 255 } | 
| 542 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 256 } | 
| 
a71a05ec11bc
Towards annotate/blame support: general outline of the functionality
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
541diff
changeset | 257 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 258 /** | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 259 * Generic sequence of chunk, where chunk is anything comparable to another chunk, e.g. a string or a single char | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 260 * Sequence diff algorithm above doesn't care about sequence nature. | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 261 */ | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 262 public interface ChunkSequence<T> { | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 263 public T chunk(int index); | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 264 public int chunkCount(); | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 265 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 266 | 
| 551 
4ea0351ca878
Better (precise) name for diff facility, tests
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
549diff
changeset | 267 public static final class LineSequence implements ChunkSequence<LineSequence.ByteChain> { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 268 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 269 private final byte[] input; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 270 private ArrayList<ByteChain> lines; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 271 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 272 public LineSequence(byte[] data) { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 273 input = data; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 274 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 275 | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 276 public static LineSequence newlines(byte[] array) { | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 277 return new LineSequence(array).splitByNewlines(); | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 278 } | 
| 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 279 | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 280 // sequence ends with fake, empty line chunk | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 281 public LineSequence splitByNewlines() { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 282 lines = new ArrayList<ByteChain>(); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 283 int lastStart = 0; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 284 for (int i = 0; i < input.length; i++) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 285 if (input[i] == '\n') { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 286 lines.add(new ByteChain(lastStart, i+1)); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 287 lastStart = i+1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 288 } else if (input[i] == '\r') { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 289 if (i+1 < input.length && input[i+1] == '\n') { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 290 i++; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 291 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 292 lines.add(new ByteChain(lastStart, i+1)); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 293 lastStart = i+1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 294 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 295 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 296 if (lastStart < input.length) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 297 lines.add(new ByteChain(lastStart, input.length)); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 298 } | 
| 538 
dd4f6311af52
Commit: first working version
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
533diff
changeset | 299 // empty chunk to keep offset of input end | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 300 lines.add(new ByteChain(input.length)); | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 301 return this; | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 302 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 303 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 304 public ByteChain chunk(int index) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 305 return lines.get(index); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 306 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 307 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 308 public int chunkCount() { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 309 return lines.size(); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 310 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 311 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 312 public byte[] data(int chunkFrom, int chunkTo) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 313 if (chunkFrom == chunkTo) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 314 return new byte[0]; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 315 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 316 int from = chunk(chunkFrom).getOffset(), to = chunk(chunkTo).getOffset(); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 317 byte[] rv = new byte[to - from]; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 318 System.arraycopy(input, from, rv, 0, rv.length); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 319 return rv; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 320 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 321 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 322 | 
| 556 
e55f17a7a195
AnnotateFacility renamed to HgBlameFacility and exposed, API shapes out and got some javadoc
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
551diff
changeset | 323 public final class ByteChain { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 324 private final int start, end; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 325 private final int hash; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 326 | 
| 545 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 327 /** | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 328 * construct a chunk with a sole purpose to keep | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 329 * offset of the data end | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 330 */ | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 331 ByteChain(int offset) { | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 332 start = end = offset; | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 333 // ensure this chunk doesn't match trailing chunk of another sequence | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 334 hash = System.identityHashCode(this); | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 335 } | 
| 
15b406c7cd9d
First round of annotate file is functional
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
544diff
changeset | 336 | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 337 ByteChain(int s, int e) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 338 start = s; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 339 end = e; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 340 hash = calcHash(input, s, e); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 341 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 342 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 343 /** | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 344 * byte offset of the this ByteChain inside ChainSequence | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 345 */ | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 346 public int getOffset() { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 347 return start; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 348 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 349 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 350 public byte[] data() { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 351 byte[] rv = new byte[end - start]; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 352 System.arraycopy(input, start, rv, 0, rv.length); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 353 return rv; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 354 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 355 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 356 @Override | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 357 public boolean equals(Object obj) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 358 if (obj == null || obj.getClass() != ByteChain.class) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 359 return false; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 360 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 361 ByteChain other = (ByteChain) obj; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 362 if (other.hash != hash || other.end - other.start != end - start) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 363 return false; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 364 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 365 return other.match(input, start); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 366 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 367 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 368 private boolean match(byte[] oi, int from) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 369 for (int i = start, j = from; i < end; i++, j++) { | 
| 544 
7f5998a9619d
Refactor PatchGenerator to be generic and welcome sequence of any nature
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: 
543diff
changeset | 370 if (LineSequence.this.input[i] != oi[j]) { | 
| 533 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 371 return false; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 372 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 373 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 374 return true; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 375 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 376 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 377 @Override | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 378 public int hashCode() { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 379 return hash; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 380 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 381 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 382 @Override | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 383 public String toString() { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 384 return String.format("[@%d\"%s\"]", start, new String(data())); | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 385 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 386 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 387 | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 388 // same as Arrays.hashCode(byte[]), just for a slice of a bigger array | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 389 static int calcHash(byte[] data, int from, int to) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 390 int result = 1; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 391 for (int i = from; i < to; i++) { | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 392 result = 31 * result + data[i]; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 393 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 394 return result; | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 395 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 396 } | 
| 
e6f72c9829a6
Generate patches using diff algorithm
 Artem Tikhomirov <tikhomirov.artem@gmail.com> parents: diff
changeset | 397 } | 
