|
|
|
@ -184,13 +184,14 @@ public class BEncodedHeap implements Iterable<Map.Entry<byte[], Map<String, byte
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* iterate all rows of the table.
|
|
|
|
|
* Be aware that this first closes the table to force flushing of all elements in
|
|
|
|
|
* the write buffer. After that an iterator on the closed file is generated and then
|
|
|
|
|
* the file is opened again.
|
|
|
|
|
*/
|
|
|
|
|
public Iterator<Map.Entry<byte[], Map<String, byte[]>>> iterator() {
|
|
|
|
|
File location = this.table.location();
|
|
|
|
|
int keylen = this.table.keylength();
|
|
|
|
|
try {
|
|
|
|
|
this.table.flushBuffer();
|
|
|
|
|
return new EntryIter(location, keylen);
|
|
|
|
|
} catch (IOException e1) {
|
|
|
|
|
ByteOrder order = this.table.ordering();
|
|
|
|
|
int buffermax = this.table.getBuffermax();
|
|
|
|
|
this.table.close();
|
|
|
|
@ -203,6 +204,7 @@ public class BEncodedHeap implements Iterable<Map.Entry<byte[], Map<String, byte
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* iterate all rows of the table. this is a static method that expects that the given
|
|
|
|
|