import java.util.List;
import org.eclipse.jgit.diff.DiffAlgorithm;
+import org.eclipse.jgit.diff.DiffAlgorithm.SupportedAlgorithm;
import org.eclipse.jgit.diff.DiffEntry;
import org.eclipse.jgit.diff.DiffFormatter;
-import org.eclipse.jgit.diff.HistogramDiff;
-import org.eclipse.jgit.diff.MyersDiff;
import org.eclipse.jgit.diff.RawTextComparator;
import org.eclipse.jgit.diff.RenameDetector;
import org.eclipse.jgit.dircache.DirCacheIterator;
detectRenames = Boolean.FALSE;
}
- enum SupportedAlgorithm {
- myers(MyersDiff.INSTANCE), histogram(new HistogramDiff());
-
- public DiffAlgorithm algorithm;
-
- SupportedAlgorithm(DiffAlgorithm a) {
- algorithm = a;
- }
- };
-
@Option(name = "--algorithm", metaVar = "metaVar_diffAlg", usage = "usage_diffAlgorithm")
void setAlgorithm(SupportedAlgorithm s) {
- diffFmt.setDiffAlgorithm(s.algorithm);
+ diffFmt.setDiffAlgorithm(DiffAlgorithm.getAlgorithm(s));
}
@Option(name = "-l", usage = "usage_renameLimit")
}
private String merge(String commonBase, String ours, String theirs) throws IOException {
- MergeResult r = MergeAlgorithm.merge(RawTextComparator.DEFAULT,
+ MergeResult r = new MergeAlgorithm().merge(RawTextComparator.DEFAULT,
T(commonBase), T(ours), T(theirs));
ByteArrayOutputStream bo=new ByteArrayOutputStream(50);
fmt.formatMerge(bo, r, "B", "O", "T", Constants.CHARACTER_ENCODING);
* a unique instance per thread.
*/
public abstract class DiffAlgorithm {
+ /**
+ * Supported diff algorithm
+ */
+ public enum SupportedAlgorithm {
+ /**
+ * Myers diff algorithm
+ */
+ MYERS,
+
+ /**
+ * Histogram diff algorithm
+ */
+ HISTOGRAM
+ }
+
+ /**
+ * @param alg
+ * the diff algorithm for which an implementation should be
+ * returned
+ * @return an implementation of the specified diff algorithm
+ */
+ public static DiffAlgorithm getAlgorithm(SupportedAlgorithm alg) {
+ switch (alg) {
+ case MYERS:
+ return MyersDiff.INSTANCE;
+ case HISTOGRAM:
+ return new HistogramDiff();
+ default:
+ throw new IllegalArgumentException();
+ }
+ }
+
/**
* Compare two sequences and identify a list of edits between them.
*
import java.util.List;
import org.eclipse.jgit.JGitText;
+import org.eclipse.jgit.diff.DiffAlgorithm.SupportedAlgorithm;
import org.eclipse.jgit.diff.DiffEntry.ChangeType;
import org.eclipse.jgit.errors.AmbiguousObjectException;
import org.eclipse.jgit.errors.CorruptObjectException;
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.lib.AbbreviatedObjectId;
import org.eclipse.jgit.lib.AnyObjectId;
+import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.lib.ObjectId;
private int abbreviationLength = 7;
- private DiffAlgorithm diffAlgorithm = new HistogramDiff();
+ private DiffAlgorithm diffAlgorithm;
private RawTextComparator comparator = RawTextComparator.DEFAULT;
setNewPrefix("");
}
setDetectRenames(dc.isRenameDetectionEnabled());
+
+ diffAlgorithm = DiffAlgorithm.getAlgorithm(db.getConfig().getEnum(
+ ConfigConstants.CONFIG_DIFF_SECTION, null,
+ ConfigConstants.CONFIG_KEY_ALGORITHM,
+ SupportedAlgorithm.HISTOGRAM));
+
}
/**
/** The "remote" section */
public static final String CONFIG_REMOTE_SECTION = "remote";
+ /** The "diff" section */
+ public static final String CONFIG_DIFF_SECTION = "diff";
+
+ /** The "algorithm" key */
+ public static final String CONFIG_KEY_ALGORITHM = "algorithm";
+
/** The "autocrlf" key */
public static final String CONFIG_KEY_AUTOCRLF = "autocrlf";
import java.util.Iterator;
import java.util.List;
+import org.eclipse.jgit.diff.DiffAlgorithm;
import org.eclipse.jgit.diff.Edit;
import org.eclipse.jgit.diff.EditList;
import org.eclipse.jgit.diff.MyersDiff;
/**
* Provides the merge algorithm which does a three-way merge on content provided
- * as RawText. Makes use of {@link MyersDiff} to compute the diffs.
+ * as RawText. By default {@link MyersDiff} is used as diff algorithm.
*/
public final class MergeAlgorithm {
+ private final DiffAlgorithm diffAlg;
/**
- * Since this class provides only static methods I add a private default
- * constructor to prevent instantiation.
+ * Creates a new MergeAlgorithm which uses {@link MyersDiff} as diff
+ * algorithm
*/
- private MergeAlgorithm() {
+ public MergeAlgorithm() {
+ this(MyersDiff.INSTANCE);
+ }
+
+ /**
+ * Creates a new MergeAlgorithm
+ *
+ * @param diff
+ * the diff algorithm used by this merge
+ */
+ public MergeAlgorithm(DiffAlgorithm diff) {
+ this.diffAlg = diff;
}
// An special edit which acts as a sentinel value by marking the end the
* @param theirs the second sequence to be merged
* @return the resulting content
*/
- public static <S extends Sequence> MergeResult<S> merge(
+ public <S extends Sequence> MergeResult<S> merge(
SequenceComparator<S> cmp, S base, S ours, S theirs) {
List<S> sequences = new ArrayList<S>(3);
sequences.add(base);
sequences.add(ours);
sequences.add(theirs);
- MergeResult result = new MergeResult<S>(sequences);
- EditList oursEdits = MyersDiff.INSTANCE.diff(cmp, base, ours);
+ MergeResult<S> result = new MergeResult<S>(sequences);
+ EditList oursEdits = diffAlg.diff(cmp, base, ours);
Iterator<Edit> baseToOurs = oursEdits.iterator();
- EditList theirsEdits = MyersDiff.INSTANCE.diff(cmp, base, theirs);
+ EditList theirsEdits = diffAlg.diff(cmp, base, theirs);
Iterator<Edit> baseToTheirs = theirsEdits.iterator();
int current = 0; // points to the next line (first line is 0) of base
// which was not handled yet
import java.util.Map;
import org.eclipse.jgit.JGitText;
+import org.eclipse.jgit.diff.DiffAlgorithm;
+import org.eclipse.jgit.diff.DiffAlgorithm.SupportedAlgorithm;
import org.eclipse.jgit.diff.RawText;
import org.eclipse.jgit.diff.RawTextComparator;
import org.eclipse.jgit.diff.Sequence;
import org.eclipse.jgit.errors.IndexWriteException;
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.errors.NoWorkTreeException;
+import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.lib.ObjectId;
private WorkingTreeIterator workingTreeIterator;
+ private MergeAlgorithm mergeAlgorithm;
/**
* @param local
*/
protected ResolveMerger(Repository local, boolean inCore) {
super(local);
+ SupportedAlgorithm diffAlg = local.getConfig().getEnum(
+ ConfigConstants.CONFIG_DIFF_SECTION, null,
+ ConfigConstants.CONFIG_KEY_ALGORITHM,
+ SupportedAlgorithm.HISTOGRAM);
+ mergeAlgorithm = new MergeAlgorithm(DiffAlgorithm.getAlgorithm(diffAlg));
commitNames = new String[] { "BASE", "OURS", "THEIRS" };
oi = getObjectInserter();
this.inCore = inCore;
MergeFormatter fmt = new MergeFormatter();
// do the merge
- MergeResult<RawText> result = MergeAlgorithm.merge(
+ MergeResult<RawText> result = mergeAlgorithm.merge(
RawTextComparator.DEFAULT,
getRawText(base.getEntryObjectId(), db),
getRawText(ours.getEntryObjectId(), db),