tests/fixes

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2226 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent ce9a98ee25
commit d083b15c4b

@ -141,8 +141,9 @@ public class kelondroRow {
this.rowinstance = rowinstance;
} else {
this.rowinstance = new byte[objectsize];
System.arraycopy(rowinstance, 0, this.rowinstance, 0, rowinstance.length);
for (int i = rowinstance.length; i < objectsize; i++) this.rowinstance[i] = 0;
int ll = Math.min(objectsize, rowinstance.length);
System.arraycopy(rowinstance, 0, this.rowinstance, 0, ll);
for (int i = ll; i < objectsize; i++) this.rowinstance[i] = 0;
}
}

@ -109,6 +109,14 @@ public class kelondroRowBufferedSet extends kelondroRowSet {
}
}
public void add(byte[] a) {
this.add(super.rowdef.newEntry(a));
}
public void add(kelondroRow.Entry a) {
this.put(a);
}
public kelondroRow.Entry get(byte[] key) {
synchronized (buffer) {
kelondroRow.Entry entry = (kelondroRow.Entry) buffer.get(key);
@ -170,8 +178,8 @@ public class kelondroRowBufferedSet extends kelondroRowSet {
String[] test = { "eins", "zwei", "drei", "vier", "fuenf", "sechs", "sieben", "acht", "neun", "zehn" };
kelondroRowBufferedSet c = new kelondroRowBufferedSet(new kelondroRow(new int[]{10, 3}));
c.setOrdering(kelondroNaturalOrder.naturalOrder, 0);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes(), 0, 10);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes(), 0, 10);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes());
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes());
c.sort();
c.remove("fuenf".getBytes());
Iterator i = c.elements();
@ -201,7 +209,7 @@ public class kelondroRowBufferedSet extends kelondroRowSet {
for (long k = 0; k < 60000; k++) {
t = System.currentTimeMillis();
w = "a" + Long.toString(rand.nextLong());
c.add(w.getBytes(), 0, 10);
c.add(w.getBytes());
if (k % 10000 == 0)
System.out.println("added " + k + " entries in " +
((t - start) / 1000) + " seconds, " +
@ -225,7 +233,7 @@ public class kelondroRowBufferedSet extends kelondroRowSet {
for (long k = 0; k < 60000; k++) {
t = System.currentTimeMillis();
w = "a" + Long.toString(rand.nextLong());
if (c.get(w.getBytes()) == null) c.add(w.getBytes(), 0, 10); else d++;
if (c.get(w.getBytes()) == null) c.add(w.getBytes()); else d++;
if (k % 10000 == 0)
System.out.println("added " + k + " entries in " +
((t - start) / 1000) + " seconds, " +

@ -108,11 +108,15 @@ public class kelondroRowCollection {
this.lastTimeWrote = System.currentTimeMillis();
}
public final void add(kelondroRow.Entry a) {
public void add(kelondroRow.Entry a) {
add(a.bytes(), 0, a.bytes().length);
}
public final void add(byte[] a, int astart, int alength) {
public void add(byte[] a) {
add(a, 0, a.length);
}
private final void add(byte[] a, int astart, int alength) {
int l = Math.min(rowdef.objectsize(), Math.min(alength, a.length - astart));
synchronized (chunkcache) {
ensureSize(chunkcount + 1);

@ -175,8 +175,8 @@ public class kelondroRowSet extends kelondroRowCollection {
String[] test = { "eins", "zwei", "drei", "vier", "fuenf", "sechs", "sieben", "acht", "neun", "zehn" };
kelondroRowSet c = new kelondroRowSet(new kelondroRow(new int[]{10, 3}));
c.setOrdering(kelondroNaturalOrder.naturalOrder, 0);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes(), 0, 10);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes(), 0, 10);
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes());
for (int i = 0; i < test.length; i++) c.add(test[i].getBytes());
c.sort();
c.remove("fuenf".getBytes(), 0, 5);
Iterator i = c.elements();
@ -206,7 +206,7 @@ public class kelondroRowSet extends kelondroRowCollection {
for (long k = 0; k < 60000; k++) {
t = System.currentTimeMillis();
w = "a" + Long.toString(rand.nextLong());
c.add(w.getBytes(), 0, 10);
c.add(w.getBytes());
if (k % 10000 == 0)
System.out.println("added " + k + " entries in " +
((t - start) / 1000) + " seconds, " +
@ -230,7 +230,7 @@ public class kelondroRowSet extends kelondroRowCollection {
for (long k = 0; k < 60000; k++) {
t = System.currentTimeMillis();
w = "a" + Long.toString(rand.nextLong());
if (c.get(w.getBytes(), 0, 10) == null) c.add(w.getBytes(), 0, 10); else d++;
if (c.get(w.getBytes(), 0, 10) == null) c.add(w.getBytes()); else d++;
if (k % 10000 == 0)
System.out.println("added " + k + " entries in " +
((t - start) / 1000) + " seconds, " +

Loading…
Cancel
Save