public abstract class FilterDirectory extends Directory
Directory implementation such as
NRTCachingDirectory or to add additional
sanity checks for tests. However, if you plan to write your own
Directory implementation, you should consider extending directly
Directory or BaseDirectory rather than try to reuse
functionality of existing Directorys by extending this class.| Modifier | Constructor and Description |
|---|---|
protected |
FilterDirectory(Directory in)
Sole constructor, typically called from sub-classes.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the directory.
|
IndexOutput |
createOutput(java.lang.String name,
IOContext context)
Creates a new, empty file in the directory and returns an
IndexOutput
instance for appending data to this file. |
IndexOutput |
createTempOutput(java.lang.String prefix,
java.lang.String suffix,
IOContext context)
Creates a new, empty, temporary file in the directory and returns an
IndexOutput
instance for appending data to this file. |
void |
deleteFile(java.lang.String name)
Removes an existing file in the directory.
|
long |
fileLength(java.lang.String name)
Returns the byte length of a file in the directory.
|
Directory |
getDelegate()
Return the wrapped
Directory. |
java.util.Set<java.lang.String> |
getPendingDeletions()
Returns a set of files currently pending deletion in this directory.
|
java.lang.String[] |
listAll()
Returns names of all files stored in this directory.
|
Lock |
obtainLock(java.lang.String name)
Acquires and returns a
Lock for a file with the given name. |
IndexInput |
openInput(java.lang.String name,
IOContext context)
Opens a stream for reading an existing file.
|
void |
rename(java.lang.String source,
java.lang.String dest)
Renames
source file to dest file where
dest must not already exist in the directory. |
void |
sync(java.util.Collection<java.lang.String> names)
Ensures that any writes to these files are moved to
stable storage (made durable).
|
void |
syncMetaData()
Ensures that directory metadata, such as recent file renames, are moved to stable
storage.
|
java.lang.String |
toString() |
static Directory |
unwrap(Directory dir)
Get the wrapped instance by
dir as long as this reader is
an instance of FilterDirectory. |
copyFrom, ensureOpen, openChecksumInputprotected final Directory in
protected FilterDirectory(Directory in)
public static Directory unwrap(Directory dir)
dir as long as this reader is
an instance of FilterDirectory.public java.lang.String[] listAll()
throws java.io.IOException
DirectoryString.compareTo(java.lang.String)) order.public void deleteFile(java.lang.String name)
throws java.io.IOException
DirectoryNoSuchFileException or FileNotFoundException
if name points to a non-existing file.deleteFile in class Directoryname - the name of an existing file.java.io.IOException - in case of I/O errorpublic long fileLength(java.lang.String name)
throws java.io.IOException
DirectoryNoSuchFileException or FileNotFoundException
if name points to a non-existing file.fileLength in class Directoryname - the name of an existing file.java.io.IOException - in case of I/O errorpublic IndexOutput createOutput(java.lang.String name, IOContext context) throws java.io.IOException
DirectoryIndexOutput
instance for appending data to this file.
This method must throw FileAlreadyExistsException if the file
already exists.createOutput in class Directoryname - the name of the file to create.java.io.IOException - in case of I/O errorpublic IndexOutput createTempOutput(java.lang.String prefix, java.lang.String suffix, IOContext context) throws java.io.IOException
DirectoryIndexOutput
instance for appending data to this file.
The temporary file name (accessible via IndexOutput.getName()) will start with
prefix, end with suffix and have a reserved file extension .tmp.createTempOutput in class Directoryjava.io.IOExceptionpublic void sync(java.util.Collection<java.lang.String> names)
throws java.io.IOException
Directorysync in class Directoryjava.io.IOExceptionDirectory.syncMetaData()public void rename(java.lang.String source,
java.lang.String dest)
throws java.io.IOException
Directorysource file to dest file where
dest must not already exist in the directory.
It is permitted for this operation to not be truly atomic, for example
both source and dest can be visible temporarily in Directory.listAll().
However, the implementation of this method must ensure the content of
dest appears as the entire source atomically. So once
dest is visible for readers, the entire content of previous source
is visible.
This method is used by IndexWriter to publish commits.public void syncMetaData()
throws java.io.IOException
DirectorysyncMetaData in class Directoryjava.io.IOExceptionDirectory.sync(Collection)public IndexInput openInput(java.lang.String name, IOContext context) throws java.io.IOException
DirectoryNoSuchFileException or FileNotFoundException
if name points to a non-existing file.public Lock obtainLock(java.lang.String name) throws java.io.IOException
DirectoryLock for a file with the given name.obtainLock in class Directoryname - the name of the lock fileLockObtainFailedException - (optional specific exception) if the lock could
not be obtained because it is currently held elsewhere.java.io.IOException - if any i/o error occurs attempting to gain the lockpublic void close()
throws java.io.IOException
Directorypublic java.util.Set<java.lang.String> getPendingDeletions()
throws java.io.IOException
DirectorygetPendingDeletions in class Directoryjava.io.IOExceptionCopyright © 2000–2025 The Apache Software Foundation. All rights reserved.