mirror of https://github.com/apache/lucene.git
LUCENE-2779: Use ConcurrentHashMap in RAMDirectory
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1040138 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c724b958b
commit
7f443f67ea
|
@ -20,8 +20,8 @@ package org.apache.lucene.store;
|
|||
import java.io.IOException;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.Set;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
|
||||
import org.apache.lucene.util.ThreadInterruptedException;
|
||||
|
@ -35,7 +35,7 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
|
||||
private static final long serialVersionUID = 1l;
|
||||
|
||||
protected HashMap<String,RAMFile> fileMap = new HashMap<String,RAMFile>();
|
||||
protected Map<String,RAMFile> fileMap = new ConcurrentHashMap<String,RAMFile>();
|
||||
protected final AtomicLong sizeInBytes = new AtomicLong();
|
||||
|
||||
// *****
|
||||
|
@ -78,25 +78,16 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
}
|
||||
|
||||
@Override
|
||||
public synchronized final String[] listAll() {
|
||||
public final String[] listAll() {
|
||||
ensureOpen();
|
||||
Set<String> fileNames = fileMap.keySet();
|
||||
String[] result = new String[fileNames.size()];
|
||||
int i = 0;
|
||||
for(final String fileName: fileNames)
|
||||
result[i++] = fileName;
|
||||
return result;
|
||||
return fileMap.keySet().toArray(new String[0]);
|
||||
}
|
||||
|
||||
/** Returns true iff the named file exists in this directory. */
|
||||
@Override
|
||||
public final boolean fileExists(String name) {
|
||||
ensureOpen();
|
||||
RAMFile file;
|
||||
synchronized (this) {
|
||||
file = fileMap.get(name);
|
||||
}
|
||||
return file != null;
|
||||
return fileMap.containsKey(name);
|
||||
}
|
||||
|
||||
/** Returns the time the named file was last modified.
|
||||
|
@ -105,12 +96,10 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
@Override
|
||||
public final long fileModified(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file;
|
||||
synchronized (this) {
|
||||
file = fileMap.get(name);
|
||||
}
|
||||
if (file==null)
|
||||
RAMFile file = fileMap.get(name);
|
||||
if (file == null) {
|
||||
throw new FileNotFoundException(name);
|
||||
}
|
||||
return file.getLastModified();
|
||||
}
|
||||
|
||||
|
@ -120,12 +109,10 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
@Override
|
||||
public void touchFile(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file;
|
||||
synchronized (this) {
|
||||
file = fileMap.get(name);
|
||||
}
|
||||
if (file==null)
|
||||
RAMFile file = fileMap.get(name);
|
||||
if (file == null) {
|
||||
throw new FileNotFoundException(name);
|
||||
}
|
||||
|
||||
long ts2, ts1 = System.currentTimeMillis();
|
||||
do {
|
||||
|
@ -146,19 +133,18 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
@Override
|
||||
public final long fileLength(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file;
|
||||
synchronized (this) {
|
||||
file = fileMap.get(name);
|
||||
}
|
||||
if (file==null)
|
||||
RAMFile file = fileMap.get(name);
|
||||
if (file == null) {
|
||||
throw new FileNotFoundException(name);
|
||||
}
|
||||
return file.getLength();
|
||||
}
|
||||
|
||||
/** Return total size in bytes of all files in this
|
||||
* directory. This is currently quantized to
|
||||
* RAMOutputStream.BUFFER_SIZE. */
|
||||
public synchronized final long sizeInBytes() {
|
||||
/**
|
||||
* Return total size in bytes of all files in this directory. This is
|
||||
* currently quantized to RAMOutputStream.BUFFER_SIZE.
|
||||
*/
|
||||
public final long sizeInBytes() {
|
||||
ensureOpen();
|
||||
return sizeInBytes.get();
|
||||
}
|
||||
|
@ -167,29 +153,28 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
* @throws IOException if the file does not exist
|
||||
*/
|
||||
@Override
|
||||
public synchronized void deleteFile(String name) throws IOException {
|
||||
public void deleteFile(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file = fileMap.remove(name);
|
||||
if (file!=null) {
|
||||
if (file != null) {
|
||||
file.directory = null;
|
||||
sizeInBytes.addAndGet(-file.sizeInBytes);
|
||||
} else
|
||||
} else {
|
||||
throw new FileNotFoundException(name);
|
||||
}
|
||||
}
|
||||
|
||||
/** Creates a new, empty file in the directory with the given name. Returns a stream writing this file. */
|
||||
@Override
|
||||
public IndexOutput createOutput(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file = newRAMFile();
|
||||
synchronized (this) {
|
||||
RAMFile existing = fileMap.get(name);
|
||||
if (existing!=null) {
|
||||
RAMFile existing = fileMap.remove(name);
|
||||
if (existing != null) {
|
||||
sizeInBytes.addAndGet(-existing.sizeInBytes);
|
||||
existing.directory = null;
|
||||
}
|
||||
fileMap.put(name, file);
|
||||
}
|
||||
return new RAMOutputStream(file);
|
||||
}
|
||||
|
||||
|
@ -206,12 +191,10 @@ public class RAMDirectory extends Directory implements Serializable {
|
|||
@Override
|
||||
public IndexInput openInput(String name) throws IOException {
|
||||
ensureOpen();
|
||||
RAMFile file;
|
||||
synchronized (this) {
|
||||
file = fileMap.get(name);
|
||||
}
|
||||
if (file == null)
|
||||
RAMFile file = fileMap.get(name);
|
||||
if (file == null) {
|
||||
throw new FileNotFoundException(name);
|
||||
}
|
||||
return new RAMInputStream(file);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue