You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.1 KiB
87 lines
3.1 KiB
// kelondroHandle.java
|
|
// (C) 2003 - 2007 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany
|
|
// first published 2003 on http://yacy.net
|
|
//
|
|
// This is a part of YaCy, a peer-to-peer based web search engine
|
|
//
|
|
// $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $
|
|
// $LastChangedRevision: 1986 $
|
|
// $LastChangedBy: orbiter $
|
|
//
|
|
// LICENSE
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package de.anomic.kelondro;
|
|
|
|
public class kelondroHandle implements Comparable<kelondroHandle> {
|
|
|
|
public final static int NUL = Integer.MIN_VALUE; // the meta value for the kelondroTray' NUL abstraction
|
|
|
|
protected int index;
|
|
|
|
protected kelondroHandle(int i) {
|
|
assert (i == NUL) || (i >= 0) : "node handle index too low: " + i;
|
|
//assert (i == NUL) || (i < USAGE.allCount()) : "node handle index too high: " + i + ", USEDC=" + USAGE.USEDC + ", FREEC=" + USAGE.FREEC;
|
|
this.index = i;
|
|
//if ((USAGE != null) && (this.index != NUL)) USAGE.allocate(this.index);
|
|
}
|
|
|
|
public boolean isNUL() {
|
|
return index == NUL;
|
|
}
|
|
|
|
public String toString() {
|
|
if (index == NUL) return "NULL";
|
|
String s = Integer.toHexString(index);
|
|
while (s.length() < 4) s = "0" + s;
|
|
return s;
|
|
}
|
|
|
|
public boolean equals(kelondroHandle h) {
|
|
assert (index != NUL);
|
|
assert (h.index != NUL);
|
|
return (this.index == h.index);
|
|
}
|
|
|
|
public boolean equals(Object h) {
|
|
assert (index != NUL);
|
|
assert (((kelondroHandle) h).index != NUL);
|
|
return (h instanceof kelondroHandle && this.index == ((kelondroHandle) h).index);
|
|
}
|
|
|
|
public int compare(kelondroHandle h0, kelondroHandle h1) {
|
|
assert (((kelondroHandle) h0).index != NUL);
|
|
assert (((kelondroHandle) h1).index != NUL);
|
|
if (((kelondroHandle) h0).index < ((kelondroHandle) h1).index) return -1;
|
|
if (((kelondroHandle) h0).index > ((kelondroHandle) h1).index) return 1;
|
|
return 0;
|
|
}
|
|
|
|
public int compareTo(kelondroHandle h) {
|
|
// this is needed for a TreeMap
|
|
assert (index != NUL) : "this.index is NUL in compareTo";
|
|
assert (((kelondroHandle) h).index != NUL) : "handle.index is NUL in compareTo";
|
|
if (index < ((kelondroHandle) h).index) return -1;
|
|
if (index > ((kelondroHandle) h).index) return 1;
|
|
return 0;
|
|
}
|
|
|
|
public int hashCode() {
|
|
assert (index != NUL);
|
|
return this.index;
|
|
}
|
|
}
|