diff --git a/source/de/anomic/http/client/ConnectionInfo.java b/source/de/anomic/http/client/ConnectionInfo.java index 1d31a7c63..9080f5068 100644 --- a/source/de/anomic/http/client/ConnectionInfo.java +++ b/source/de/anomic/http/client/ConnectionInfo.java @@ -211,19 +211,10 @@ public class ConnectionInfo { */ @Override public boolean equals(final Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } + if (this == obj) return true; + if (obj == null) return false; + if (getClass() != obj.getClass()) return false; final ConnectionInfo other = (ConnectionInfo) obj; - if (id != other.id) { - return false; - } - return true; + return this.id == other.id; } } diff --git a/source/de/anomic/http/server/HTTPDemon.java b/source/de/anomic/http/server/HTTPDemon.java index a0acd129b..166db7030 100644 --- a/source/de/anomic/http/server/HTTPDemon.java +++ b/source/de/anomic/http/server/HTTPDemon.java @@ -1267,7 +1267,7 @@ public final class HTTPDemon implements serverHandler, Cloneable { headers.put(HeaderFramework.SERVER, "AnomicHTTPD (www.anomic.de)"); headers.put(HeaderFramework.DATE, DateFormatter.formatRFC1123(now)); if (moddate.after(now)) { - System.out.println("*** DEBUG: correcting moddate = " + moddate.toString() + " to now = " + now.toString()); + //System.out.println("*** DEBUG: correcting moddate = " + moddate.toString() + " to now = " + now.toString()); moddate = now; } headers.put(HeaderFramework.LAST_MODIFIED, DateFormatter.formatRFC1123(moddate)); diff --git a/source/de/anomic/search/MediaSnippet.java b/source/de/anomic/search/MediaSnippet.java index 82c1ab00e..c74df64a5 100644 --- a/source/de/anomic/search/MediaSnippet.java +++ b/source/de/anomic/search/MediaSnippet.java @@ -57,10 +57,18 @@ public class MediaSnippet implements Comparable, Comparator, Comparator, Comparator { private static final int maxCache = 1000; @@ -168,6 +169,16 @@ public class TextSnippet { public boolean exists() { return line != null; } + public int compareTo(TextSnippet o) { + return Base64Order.enhancedCoder.compare(this.url.hash().getBytes(), o.url.hash().getBytes()); + } + public int compare(TextSnippet o1, TextSnippet o2) { + return o1.compareTo(o2); + } + public int hashCode() { + return this.url.hash().hashCode(); + } + @Override public String toString() { return (line == null) ? "" : line; diff --git a/source/de/anomic/yacy/yacyClient.java b/source/de/anomic/yacy/yacyClient.java index 9fea2dd09..a5221f6d3 100644 --- a/source/de/anomic/yacy/yacyClient.java +++ b/source/de/anomic/yacy/yacyClient.java @@ -407,7 +407,7 @@ public final class yacyClient { if (feed == null) { // case where the rss reader does not understand the content yacyCore.log.logWarning("yacyClient.queryRemoteCrawlURLs failed asking peer '" + target.getName() + "': probably bad response from remote peer (2)"); - System.out.println("***DEBUG*** rss input = " + new String(result)); + //System.out.println("***DEBUG*** rss input = " + new String(result)); target.put(yacySeed.RCOUNT, "0"); seedDB.update(target.hash, target); // overwrite number of remote-available number to avoid that this peer is called again (until update is done by peer ping) //Log.logException(e); diff --git a/source/net/yacy/document/geolocalization/Coordinates.java b/source/net/yacy/document/geolocalization/Coordinates.java index d6fce283b..86a45e9e0 100644 --- a/source/net/yacy/document/geolocalization/Coordinates.java +++ b/source/net/yacy/document/geolocalization/Coordinates.java @@ -85,7 +85,7 @@ public class Coordinates implements Comparable, Comparator implements Order { protected A zero = null; @@ -53,11 +51,19 @@ public abstract class AbstractOrder implements Order { this.zero = newzero; } - public boolean equals(final Order otherOrder) { - if (otherOrder == null) return false; + @SuppressWarnings("unchecked") + public boolean equals(final Object obj) { + if (this == obj) return true; + if (obj == null) return false; + if (!(obj instanceof Order)) return false; + Order other = (Order) obj; final String thisSig = this.signature(); - final String otherSig = otherOrder.signature(); + final String otherSig = other.signature(); if ((thisSig == null) || (otherSig == null)) return false; return thisSig.equals(otherSig); } + + public int hashCode() { + return this.signature().hashCode(); + } } diff --git a/source/net/yacy/kelondro/order/Bitfield.java b/source/net/yacy/kelondro/order/Bitfield.java index 23458eb01..345f8b66d 100644 --- a/source/net/yacy/kelondro/order/Bitfield.java +++ b/source/net/yacy/kelondro/order/Bitfield.java @@ -106,12 +106,20 @@ public class Bitfield implements Cloneable { return new String(sb); } - public boolean equals(final Bitfield x) { - if (x.bb.length != bb.length) return false; - for (int i = 0; i < bb.length; i++) if (bb[i] != x.bb[i]) return false; + public boolean equals(final Object obj) { + if (this == obj) return true; + if (obj == null) return false; + if (!(obj instanceof Bitfield)) return false; + Bitfield other = (Bitfield) obj; + if (other.bb.length != this.bb.length) return false; + for (int i = 0; i < this.bb.length; i++) if (this.bb[i] != other.bb[i]) return false; return true; } + public int hashCode() { + return this.toString().hashCode(); + } + public void and(final Bitfield x) { final int c = Math.min(x.length(), this.length()); for (int i = 0; i < c; i++) set(i, this.get(i) && x.get(i)); diff --git a/source/net/yacy/kelondro/order/Order.java b/source/net/yacy/kelondro/order/Order.java index fb08fbb2d..b3fdad7a0 100644 --- a/source/net/yacy/kelondro/order/Order.java +++ b/source/net/yacy/kelondro/order/Order.java @@ -50,6 +50,7 @@ public interface Order extends Comparator { public void rotate(A zero); // defines that the ordering rotates, and sets the zero point for the rotation - public boolean equals(Order o); // used to compare different order objects; they may define the same ordering + public boolean equals(Object o); // used to compare different order objects; they may define the same ordering + public int hashCode(); } diff --git a/source/net/yacy/kelondro/rwi/Reference.java b/source/net/yacy/kelondro/rwi/Reference.java index d9b5342c0..eeaace717 100644 --- a/source/net/yacy/kelondro/rwi/Reference.java +++ b/source/net/yacy/kelondro/rwi/Reference.java @@ -44,8 +44,8 @@ public interface Reference { public int hashCode(); - public boolean equals(Reference other); - + public boolean equals(Object other); + public void join(final Reference oe); public int positions(); diff --git a/source/net/yacy/kelondro/rwi/ReferenceContainerOrder.java b/source/net/yacy/kelondro/rwi/ReferenceContainerOrder.java index 06c0640d8..4bdb9540c 100644 --- a/source/net/yacy/kelondro/rwi/ReferenceContainerOrder.java +++ b/source/net/yacy/kelondro/rwi/ReferenceContainerOrder.java @@ -76,9 +76,13 @@ public class ReferenceContainerOrder extends Ab return this.embeddedOrder.cardinal(key); } - public boolean equals(final Order> otherOrder) { - if (!(otherOrder instanceof ReferenceContainerOrder)) return false; - return this.embeddedOrder.equals(((ReferenceContainerOrder) otherOrder).embeddedOrder); + @SuppressWarnings("unchecked") + public boolean equals(final Object obj) { + if (this == obj) return true; + if (obj == null) return false; + if (!(obj instanceof ReferenceContainerOrder)) return false; + ReferenceContainerOrder other = (ReferenceContainerOrder) obj; + return this.embeddedOrder.equals(other.embeddedOrder); } public long cardinal(final ReferenceContainer key) { diff --git a/source/net/yacy/kelondro/table/Records.java b/source/net/yacy/kelondro/table/Records.java index 3052dca34..0508225ff 100644 --- a/source/net/yacy/kelondro/table/Records.java +++ b/source/net/yacy/kelondro/table/Records.java @@ -1244,17 +1244,13 @@ public class Records { while (s.length() < 4) s = "0" + s; return s; } - - public boolean equals(final Handle h) { - assert (index != NUL); - assert (h.index != NUL); - return (this.index == h.index); - } - - public boolean equals(final Object h) { - assert (index != NUL); - assert (h instanceof Handle && ((Handle) h).index != NUL); - return (h instanceof Handle && this.index == ((Handle) h).index); + + public boolean equals(final Object obj) { + if (this == obj) return true; + if (obj == null) return false; + if (!(obj instanceof Handle)) return false; + Handle other = (Handle) obj; + return this.index == other.index; } public int compare(final Handle h0, final Handle h1) { diff --git a/source/net/yacy/kelondro/util/SortStack.java b/source/net/yacy/kelondro/util/SortStack.java index cb4af740f..f06397829 100644 --- a/source/net/yacy/kelondro/util/SortStack.java +++ b/source/net/yacy/kelondro/util/SortStack.java @@ -33,7 +33,7 @@ import java.util.List; import java.util.Map; import java.util.TreeMap; -public class SortStack> { +public class SortStack { // implements a stack where elements 'float' on-top of the stack according to a weight value. // objects pushed on the stack must implement the hashCode() method to provide a handle @@ -147,5 +147,8 @@ public class SortStack> { this.element = element; this.weight = weight; } + public String toString() { + return element.toString() + "/" + weight; + } } } diff --git a/source/net/yacy/kelondro/util/SortStore.java b/source/net/yacy/kelondro/util/SortStore.java index ccb74d953..428163c4a 100644 --- a/source/net/yacy/kelondro/util/SortStore.java +++ b/source/net/yacy/kelondro/util/SortStore.java @@ -36,7 +36,7 @@ import java.util.Iterator; * specific elements in the list. * @param */ -public class SortStore> extends SortStack { +public class SortStore extends SortStack { private final ArrayList offstack; // objects that had been on the stack but had been removed private HashSet offset; // keeps track which element has been on the stack or is now in the offstack diff --git a/source/org/apache/tools/tar/TarEntry.java b/source/org/apache/tools/tar/TarEntry.java index 39c2343a1..2a6c8ecec 100644 --- a/source/org/apache/tools/tar/TarEntry.java +++ b/source/org/apache/tools/tar/TarEntry.java @@ -31,6 +31,7 @@ import java.io.File; import java.util.Date; import java.util.Locale; + /** * This class represents an entry in a Tar archive. It consists * of the entry's header, as well as the entry's File. Entries @@ -273,18 +274,7 @@ public class TarEntry implements TarConstants { this(); this.parseTarHeader(headerBuf); } - - /** - * Determine if the two entries are equal. Equality is determined - * by the header names being equal. - * - * @param it Entry to be checked for equality. - * @return True if the entries are equal. - */ - public boolean equals(TarEntry it) { - return this.getName().equals(it.getName()); - } - + /** * Determine if the two entries are equal. Equality is determined * by the header names being equal. @@ -292,11 +282,12 @@ public class TarEntry implements TarConstants { * @param it Entry to be checked for equality. * @return True if the entries are equal. */ - public boolean equals(Object it) { - if (it == null || getClass() != it.getClass()) { - return false; - } - return equals((TarEntry) it); + public boolean equals(final Object obj) { + if (this == obj) return true; + if (obj == null) return false; + if (!(obj instanceof TarEntry)) return false; + TarEntry other = (TarEntry) obj; + return this.getName().equals(other.getName()); } /**