org.apache.lucene.store
Class Directory
- java.lang.Object
-
- org.apache.lucene.store.Directory
-
- Direct Known Subclasses:
- FSDirectory, RAMDirectory
public abstract class Directory extends java.lang.ObjectA Directory is a flat list of files. Files may be written once, when they are created. Once a file is created it may only be opened for read, or deleted. Random access is permitted both when reading and writing.Java's i/o APIs not used directly, but rather all i/o is through this API. This permits things such as:
- implementation of RAM-based indices;
- implementation indices stored in a database, via JDBC;
- implementation of an index as a single file;
LockFactory, and can be changed for each Directory instance usingsetLockFactory(org.apache.lucene.store.LockFactory).
-
-
Constructor Summary
Constructors Constructor and Description Directory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description voidclearLock(java.lang.String name)Attempt to clear (forcefully unlock and remove) the specified lock.abstract voidclose()Closes the store.static voidcopy(Directory src, Directory dest, boolean closeDirSrc)Copy contents of a directory src to a directory dest.abstract IndexOutputcreateOutput(java.lang.String name)Creates a new, empty file in the directory with the given name.abstract voiddeleteFile(java.lang.String name)Removes an existing file in the directory.abstract booleanfileExists(java.lang.String name)Returns true iff a file with the given name exists.abstract longfileLength(java.lang.String name)Returns the length of a file in the directory.abstract longfileModified(java.lang.String name)Returns the time the named file was last modified.LockFactorygetLockFactory()Get the LockFactory that this Directory instance is using for its locking implementation.java.lang.StringgetLockID()Return a string identifier that uniquely differentiates this Directory instance from other Directory instances.abstract java.lang.String[]list()Returns an array of strings, one for each file in the directory.LockmakeLock(java.lang.String name)Construct aLock.abstract IndexInputopenInput(java.lang.String name)Returns a stream reading an existing file.IndexInputopenInput(java.lang.String name, int bufferSize)Returns a stream reading an existing file, with the specified read buffer size.abstract voidrenameFile(java.lang.String from, java.lang.String to)Deprecated.voidsetLockFactory(LockFactory lockFactory)Set the LockFactory that this Directory instance should use for its locking implementation.abstract voidtouchFile(java.lang.String name)Set the modified time of an existing file to now.
-
-
-
Method Detail
-
list
public abstract java.lang.String[] list() throws java.io.IOExceptionReturns an array of strings, one for each file in the directory. This method may return null (for example forFSDirectoryif the underlying directory doesn't exist in the filesystem or there are permissions problems).- Throws:
java.io.IOException
-
fileExists
public abstract boolean fileExists(java.lang.String name) throws java.io.IOExceptionReturns true iff a file with the given name exists.- Throws:
java.io.IOException
-
fileModified
public abstract long fileModified(java.lang.String name) throws java.io.IOExceptionReturns the time the named file was last modified.- Throws:
java.io.IOException
-
touchFile
public abstract void touchFile(java.lang.String name) throws java.io.IOExceptionSet the modified time of an existing file to now.- Throws:
java.io.IOException
-
deleteFile
public abstract void deleteFile(java.lang.String name) throws java.io.IOExceptionRemoves an existing file in the directory.- Throws:
java.io.IOException
-
renameFile
public abstract void renameFile(java.lang.String from, java.lang.String to) throws java.io.IOExceptionDeprecated.Renames an existing file in the directory. If a file already exists with the new name, then it is replaced. This replacement is not guaranteed to be atomic.- Throws:
java.io.IOException
-
fileLength
public abstract long fileLength(java.lang.String name) throws java.io.IOExceptionReturns the length of a file in the directory.- Throws:
java.io.IOException
-
createOutput
public abstract IndexOutput createOutput(java.lang.String name) throws java.io.IOException
Creates a new, empty file in the directory with the given name. Returns a stream writing this file.- Throws:
java.io.IOException
-
openInput
public abstract IndexInput openInput(java.lang.String name) throws java.io.IOException
Returns a stream reading an existing file.- Throws:
java.io.IOException
-
openInput
public IndexInput openInput(java.lang.String name, int bufferSize) throws java.io.IOException
Returns a stream reading an existing file, with the specified read buffer size. The particular Directory implementation may ignore the buffer size. Currently the only Directory implementations that respect this parameter areFSDirectoryandCompoundFileReader.- Throws:
java.io.IOException
-
makeLock
public Lock makeLock(java.lang.String name)
Construct aLock.- Parameters:
name- the name of the lock file
-
clearLock
public void clearLock(java.lang.String name) throws java.io.IOExceptionAttempt to clear (forcefully unlock and remove) the specified lock. Only call this at a time when you are certain this lock is no longer in use.- Parameters:
name- name of the lock to be cleared.- Throws:
java.io.IOException
-
close
public abstract void close() throws java.io.IOExceptionCloses the store.- Throws:
java.io.IOException
-
setLockFactory
public void setLockFactory(LockFactory lockFactory)
Set the LockFactory that this Directory instance should use for its locking implementation. Each * instance of LockFactory should only be used for one directory (ie, do not share a single instance across multiple Directories).- Parameters:
lockFactory- instance ofLockFactory.
-
getLockFactory
public LockFactory getLockFactory()
Get the LockFactory that this Directory instance is using for its locking implementation. Note that this may be null for Directory implementations that provide their own locking implementation.
-
getLockID
public java.lang.String getLockID()
Return a string identifier that uniquely differentiates this Directory instance from other Directory instances. This ID should be the same if two Directory instances (even in different JVMs and/or on different machines) are considered "the same index". This is how locking "scopes" to the right index.
-
copy
public static void copy(Directory src, Directory dest, boolean closeDirSrc) throws java.io.IOException
Copy contents of a directory src to a directory dest. If a file in src already exists in dest then the one in dest will be blindly overwritten.- Parameters:
src- source directorydest- destination directorycloseDirSrc- iftrue, callclose()method on source directory- Throws:
java.io.IOException
-
-
DataMelt 3.0 © DataMelt by jWork.ORG