blob: f0b66b7ee7303d8a31db66bc028e1b31e216c8c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.text;
import java.util.ArrayList;
import java.util.Arrays;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.compare.rangedifferencer.IRangeComparator;
import org.eclipse.jdt.internal.ui.JavaPlugin;
/**
* This implementation of <code>IRangeComparator</code> compares lines of a document.
* The lines are compared using a DJB hash function.
*
* @since 3.4
*/
public class LineComparator implements IRangeComparator {
private final IDocument fDocument;
private final ArrayList<Integer> fHashes;
/**
* Create a line comparator for the given document.
*
* @param document the document
*/
public LineComparator(IDocument document) {
fDocument= document;
Integer[] nulls= new Integer[fDocument.getNumberOfLines()];
fHashes= new ArrayList<Integer>(Arrays.asList(nulls));
}
/*
* @see org.eclipse.compare.rangedifferencer.IRangeComparator#getRangeCount()
*/
public int getRangeCount() {
return fDocument.getNumberOfLines();
}
/*
* @see org.eclipse.compare.rangedifferencer.IRangeComparator#rangesEqual(int, org.eclipse.compare.rangedifferencer.IRangeComparator, int)
*/
public boolean rangesEqual(int thisIndex, IRangeComparator other, int otherIndex) {
try {
return getHash(thisIndex).equals(((LineComparator) other).getHash(otherIndex));
} catch (BadLocationException e) {
JavaPlugin.log(e);
return false;
}
}
/*
* @see org.eclipse.compare.rangedifferencer.IRangeComparator#skipRangeComparison(int, int, org.eclipse.compare.rangedifferencer.IRangeComparator)
*/
public boolean skipRangeComparison(int length, int maxLength, IRangeComparator other) {
return false;
}
/**
* @param line the number of the line in the document to get the hash for
* @return the hash of the line
* @throws BadLocationException if the line number is invalid
*/
private Integer getHash(int line) throws BadLocationException {
Integer hash= fHashes.get(line);
if (hash == null) {
IRegion lineRegion= fDocument.getLineInformation(line);
String lineContents= fDocument.get(lineRegion.getOffset(), lineRegion.getLength());
hash= new Integer(computeDJBHash(lineContents));
fHashes.set(line, hash);
}
return hash;
}
/**
* Compute a hash using the DJB hash algorithm
*
* @param string the string for which to compute a hash
* @return the DJB hash value of the string
*/
private int computeDJBHash(String string) {
int hash= 5381;
int len= string.length();
for (int i= 0; i < len; i++) {
char ch= string.charAt(i);
hash= (hash << 5) + hash + ch;
}
return hash;
}
}