another fix to ordering of table indexes; fixes also network stats

graphics
pull/1/head
Michael Peter Christen 10 years ago
parent 1db476c67e
commit 421ee64f33

@ -437,7 +437,7 @@ public final class RAMIndex implements Index, Iterable<Row.Entry> {
// sort index1 to enable working of the merge iterator
//index1.sort();
//assert consistencyAnalysis0() : "consistency problem: " + consistencyAnalysis();
return new StackIterator<Row.Entry>(this.index0.rows(), this.index1.rows());
return new StackIterator<Row.Entry>(this.index0.rows(), this.index1.rows(), null, true);
}
@Override

@ -28,6 +28,7 @@ import java.io.IOException;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
@ -53,7 +54,7 @@ public final class RAMIndexCluster implements Index, Iterable<Row.Entry>, Clonea
this.name = name;
this.cluster = new RAMIndex[clusterSize];
this.rowdef = rowdef;
for (int i = 0; i < clusterSize; i++) {
for (int i = 0; i < this.cluster.length; i++) {
this.cluster[i] = null; // lazy initialization, the actual initialization is at accessArray()
}
}
@ -319,20 +320,29 @@ public final class RAMIndexCluster implements Index, Iterable<Row.Entry>, Clonea
@Override
@SuppressWarnings("unchecked")
public final CloneableIterator<Entry> rows(final boolean up, final byte[] firstKey) {
public final CloneableIterator<Row.Entry> rows(final boolean up, final byte[] firstKey) {
synchronized (this.cluster) {
final List<CloneableIterator<Entry>> col = new ArrayList<CloneableIterator<Entry>>(this.cluster.length);
final List<CloneableIterator<Row.Entry>> col = new ArrayList<CloneableIterator<Row.Entry>>(this.cluster.length);
for (RAMIndex element : this.cluster) {
if (element != null) {
col.add(element.rows(up, firstKey));
}
}
return StackIterator.stack(col.toArray((CloneableIterator<Entry>[]) Array.newInstance(CloneableIterator.class, col.size())));
return StackIterator.stack(col.toArray((CloneableIterator<Row.Entry>[]) Array.newInstance(CloneableIterator.class, col.size())), getEntryComparator(), up);
}
}
private Comparator<Row.Entry> getEntryComparator() {
return new Comparator<Row.Entry>() {
@Override
public int compare(Row.Entry o1, Row.Entry o2) {
return RAMIndexCluster.this.rowdef.objectOrder.compare(o1.getPrimaryKeyBytes(), o2.getPrimaryKeyBytes());
}
};
}
@Override
public final CloneableIterator<Entry> rows() {
public final CloneableIterator<Row.Entry> rows() {
return rows(true, null);
}

@ -573,7 +573,7 @@ public class SplitTable implements Index, Iterable<Row.Entry> {
while (i.hasNext()) {
c[d++] = i.next().rows();
}
return StackIterator.stack(c);
return StackIterator.stack(c, null, true);
}
@Override

@ -23,6 +23,7 @@
package net.yacy.kelondro.util;
import java.lang.reflect.Array;
import java.util.Comparator;
import java.util.ConcurrentModificationException;
import net.yacy.cora.order.CloneableIterator;
@ -32,32 +33,37 @@ public class StackIterator<E> implements CloneableIterator<E> {
private final CloneableIterator<E> a, b;
private E na, nb;
private final Comparator<E> c;
public StackIterator(
final CloneableIterator<E> a,
final CloneableIterator<E> b) {
final CloneableIterator<E> b,
final Comparator<E> c, final boolean up) {
// this works currently only for String-type key iterations
this.a = a;
this.b = b;
this.c = up ? c : new Comparator<E>() {
@Override public int compare(E o1, E o2) {return -c.compare(o1, o2);}
};
nexta();
nextb();
}
@Override
public StackIterator<E> clone(final Object modifier) {
return new StackIterator<E>(this.a.clone(modifier), this.b.clone(modifier));
return new StackIterator<E>(this.a.clone(modifier), this.b.clone(modifier), this.c, true);
}
private void nexta() {
try {
if ((this.a != null) && (this.a.hasNext())) this.na = this.a.next(); else this.na = null;
if (this.a != null && this.a.hasNext()) this.na = this.a.next(); else this.na = null;
} catch (final ConcurrentModificationException e) {
this.na = null;
}
}
private void nextb() {
try {
if ((this.b != null) && (this.b.hasNext())) this.nb = this.b.next(); else this.nb = null;
if (this.b != null && this.b.hasNext()) this.nb = this.b.next(); else this.nb = null;
} catch (final ConcurrentModificationException e) {
this.nb = null;
}
@ -65,7 +71,7 @@ public class StackIterator<E> implements CloneableIterator<E> {
@Override
public boolean hasNext() {
return (this.na != null) || (this.nb != null);
return this.na != null || this.nb != null;
}
@Override
@ -81,9 +87,14 @@ public class StackIterator<E> implements CloneableIterator<E> {
nexta();
return s;
}
// just stack the Objects
s = this.na;
nexta();
// return the object in right order
if (this.c == null || this.c.compare(this.na, this.nb) <= 0) {
s = this.na;
nexta();
return s;
}
s = this.nb;
nextb();
return s;
}
@ -93,7 +104,7 @@ public class StackIterator<E> implements CloneableIterator<E> {
}
@SuppressWarnings("unchecked")
public static <A> CloneableIterator<A> stack(final CloneableIterator<A>[] iterators) {
public static <A> CloneableIterator<A> stack(final CloneableIterator<A>[] iterators, final Comparator<A> c, final boolean up) {
// this extends the ability to combine two iterators
// to the ability of combining a set of iterators
if (iterators == null || iterators.length == 0) return new CloneableIterator<A>() {
@ -122,13 +133,13 @@ public class StackIterator<E> implements CloneableIterator<E> {
if (iterators.length == 2) {
if (iterators[0] == null) return iterators[1];
if (iterators[1] == null) return iterators[0];
return new StackIterator<A>(iterators[0], iterators[1]);
return new StackIterator<A>(iterators[0], iterators[1], c, up);
}
CloneableIterator<A> a = iterators[0];
final CloneableIterator<A>[] iterators0 = (CloneableIterator<A>[]) Array.newInstance(CloneableIterator.class, iterators.length - 1);
System.arraycopy(iterators, 1, iterators0, 0, iterators.length - 1);
if (a == null) return stack(iterators0);
return new StackIterator<A>(a, stack(iterators0));
if (a == null) return stack(iterators0, c, up);
return new StackIterator<A>(a, stack(iterators0, c, up), c, up);
}
@Override

Loading…
Cancel
Save