Skip to content

Commit

Permalink
- added a new file reader cache that may serve as full-file-copy of b…
Browse files Browse the repository at this point in the history
…lob database files. This is not yet used

- removed class FileWriter and replaced all usage of that class with CachedFileWriter

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6309 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Sep 9, 2009
1 parent fd6b9cb commit 27d0028
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 112 deletions.
17 changes: 13 additions & 4 deletions source/de/anomic/kelondro/blob/HeapReader.java
Expand Up @@ -36,6 +36,7 @@

import de.anomic.kelondro.index.HandleMap;
import de.anomic.kelondro.io.random.CachedFileWriter;
import de.anomic.kelondro.io.random.Writer;
import de.anomic.kelondro.order.ByteOrder;
import de.anomic.kelondro.order.CloneableIterator;
import de.anomic.kelondro.order.RotateIterator;
Expand All @@ -47,12 +48,15 @@ public class HeapReader {

public final static long keepFreeMem = 20 * 1024 * 1024;

// input values
protected int keylength; // the length of the primary key
protected HandleMap index; // key/seek relation for used records
protected Gap free; // set of {seek, size} pairs denoting space and position of free records
protected File heapFile; // the file of the heap
protected final ByteOrder ordering; // the ordering on keys
protected CachedFileWriter file; // a random access to the file

// computed values
protected Writer file; // a random access to the file
protected HandleMap index; // key/seek relation for used records
protected Gap free; // set of {seek, size} pairs denoting space and position of free records

public HeapReader(
final File heapFile,
Expand Down Expand Up @@ -391,7 +395,12 @@ public synchronized long length(byte[] key) throws IOException {
* close the BLOB table
*/
public synchronized void close(boolean writeIDX) {
if (file != null) file.close();
if (file != null)
try {
file.close();
} catch (IOException e) {
e.printStackTrace();
}
file = null;
if (writeIDX && index != null && free != null && (index.size() > 3 || free.size() > 3)) {
// now we can create a dump of the index and the gap information
Expand Down
91 changes: 91 additions & 0 deletions source/de/anomic/kelondro/io/random/CachedFileReader.java
@@ -0,0 +1,91 @@
// CachedFileReader.java
// ---------------------
// (C) 2009 by Michael Peter Christen; mc@yacy.net
// first published 09.09.2009 on http://yacy.net
//
// 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.io.random;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;

import de.anomic.kelondro.util.MemoryControl;

public class CachedFileReader extends AbstractReader implements Reader {

private RandomAccessFile RAFile;
private byte[] cache;
private int cachelen;

public CachedFileReader(final File file) throws IOException, FileNotFoundException {
this.name = file.getName();
this.file = file;
this.RAFile = new RandomAccessFile(this.file, "r");
if (MemoryControl.available() / 10L > this.RAFile.length() && this.RAFile.length() < (long) Integer.MAX_VALUE) {
this.cache = new byte[(int) this.RAFile.length()];
this.RAFile.seek(0);
this.RAFile.readFully(this.cache);
} else {
this.cache = null;
}
this.cachelen = 0;
}

public synchronized long available() throws IOException {
return this.length() - RAFile.getFilePointer();
}

public synchronized long length() throws IOException {
return this.RAFile.length();
}

public synchronized final void readFully(final byte[] b, final int off, int len) throws IOException {
long seek = RAFile.getFilePointer();
if (cache != null && cachelen - seek >= len) {
// read from cache
System.arraycopy(cache, (int) (seek), b, off, len);
RAFile.seek(seek + len);
return;
}
// cannot use the cache
RAFile.readFully(b, off, len);
return;
}

public synchronized void seek(final long pos) throws IOException {
RAFile.seek(pos);
}

public synchronized void close() {
if (RAFile != null) try {
try{RAFile.getChannel().close();} catch (IOException e) {}
RAFile.close();
} catch (IOException e) {
e.printStackTrace();
}
this.cache = null;
this.RAFile = null;
}

protected void finalize() throws Throwable {
this.close();
super.finalize();
}

}
103 changes: 0 additions & 103 deletions source/de/anomic/kelondro/io/random/FileWriter.java

This file was deleted.

10 changes: 5 additions & 5 deletions source/de/anomic/kelondro/table/Records.java
Expand Up @@ -43,7 +43,7 @@
import de.anomic.kelondro.index.Row.EntryIndex;
import de.anomic.kelondro.io.chunks.IOChunksInterface;
import de.anomic.kelondro.io.chunks.RandomAccessIOChunks;
import de.anomic.kelondro.io.random.FileWriter;
import de.anomic.kelondro.io.random.CachedFileWriter;
import de.anomic.kelondro.io.random.Writer;
import de.anomic.kelondro.order.ByteOrder;
import de.anomic.kelondro.order.NaturalOrder;
Expand Down Expand Up @@ -351,7 +351,7 @@ private synchronized void checkConsistency() {
public static int staticsize(final File file) {
if (!(file.exists())) return 0;
try {
final Writer ra = new FileWriter(new File(file.getCanonicalPath()));
final Writer ra = new CachedFileWriter(new File(file.getCanonicalPath()));
final IOChunksInterface entryFile = new RandomAccessIOChunks(ra, ra.name());

final int used = entryFile.readInt(POS_USEDC); // works only if consistency with file size is given
Expand Down Expand Up @@ -385,15 +385,15 @@ public Records(final File file,
if (file.exists()) {
// opens an existing tree
this.filename = file.getCanonicalPath();
Writer raf = new FileWriter(new File(this.filename));
Writer raf = new CachedFileWriter(new File(this.filename));
//kelondroRA raf = new kelondroBufferedRA(new kelondroFileRA(this.filename), 1024, 100);
//kelondroRA raf = new kelondroCachedRA(new kelondroFileRA(this.filename), 5000000, 1000);
//kelondroRA raf = new kelondroNIOFileRA(this.filename, (file.length() < 4000000), 10000);
//raf = new kelondroCachedRA(raf);
initExistingFile(raf);
} else {
this.filename = file.getCanonicalPath();
final Writer raf = new FileWriter(new File(this.filename));
final Writer raf = new CachedFileWriter(new File(this.filename));
// kelondroRA raf = new kelondroBufferedRA(new kelondroFileRA(this.filename), 1024, 100);
// kelondroRA raf = new kelondroNIOFileRA(this.filename, false, 10000);
initNewFile(raf, FHandles, txtProps);
Expand All @@ -417,7 +417,7 @@ public void clear() throws IOException {
assert f != null;
this.entryFile.close();
FileUtils.deletedelete(f);
ra = new FileWriter(f);
ra = new CachedFileWriter(f);
initNewFile(ra, this.HANDLES.length, this.TXTPROPS.length);
}

Expand Down

0 comments on commit 27d0028

Please sign in to comment.