public class FileSwitchDirectory extends Directory
Files with the specified extensions are placed in the primary directory; others are placed in the secondary directory. The provided Set must not change once passed to this class, and must allow multiple threads to call contains at once.
Locks with a name having the specified extensions are delegated to the primary directory; others are delegated to the secondary directory. Ideally, both Directory instances should use the same lock factory.
Constructor and Description |
---|
FileSwitchDirectory(Set<String> primaryExtensions,
Directory primaryDir,
Directory secondaryDir,
boolean doClose) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the directory.
|
IndexOutput |
createOutput(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(String prefix,
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(String name)
Removes an existing file in the directory.
|
long |
fileLength(String name)
Returns the byte length of a file in the directory.
|
static String |
getExtension(String name)
Utility method to return a file's extension.
|
Set<String> |
getPendingDeletions()
Returns a set of files currently pending deletion in this directory.
|
Directory |
getPrimaryDir()
Return the primary directory
|
Directory |
getSecondaryDir()
Return the secondary directory
|
String[] |
listAll()
Returns names of all files stored in this directory.
|
Lock |
obtainLock(String name)
Acquires and returns a
Lock for a file with the given name. |
IndexInput |
openInput(String name,
IOContext context)
Opens a stream for reading an existing file.
|
void |
rename(String source,
String dest)
Renames
source file to dest file where
dest must not already exist in the directory. |
void |
sync(Collection<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.
|
copyFrom, ensureOpen, openChecksumInput, toString
public Directory getPrimaryDir()
public Directory getSecondaryDir()
public Lock obtainLock(String name) throws IOException
Directory
Lock
for a file with the given name.obtainLock
in class Directory
name
- the name of the lock fileLockObtainFailedException
- (optional specific exception) if the lock could
not be obtained because it is currently held elsewhere.IOException
- if any i/o error occurs attempting to gain the lockpublic void close() throws IOException
Directory
close
in interface Closeable
close
in interface AutoCloseable
close
in class Directory
IOException
public String[] listAll() throws IOException
Directory
String.compareTo(java.lang.String)
) order.listAll
in class Directory
IOException
- in case of I/O errorpublic static String getExtension(String name)
public void deleteFile(String name) throws IOException
Directory
NoSuchFileException
or FileNotFoundException
if name
points to a non-existing file.deleteFile
in class Directory
name
- the name of an existing file.IOException
- in case of I/O errorpublic long fileLength(String name) throws IOException
Directory
NoSuchFileException
or FileNotFoundException
if name
points to a non-existing file.fileLength
in class Directory
name
- the name of an existing file.IOException
- in case of I/O errorpublic IndexOutput createOutput(String name, IOContext context) throws IOException
Directory
IndexOutput
instance for appending data to this file.
This method must throw FileAlreadyExistsException
if the file
already exists.createOutput
in class Directory
name
- the name of the file to create.IOException
- in case of I/O errorpublic IndexOutput createTempOutput(String prefix, String suffix, IOContext context) throws IOException
Directory
IndexOutput
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 Directory
IOException
public void sync(Collection<String> names) throws IOException
Directory
sync
in class Directory
IOException
Directory.syncMetaData()
public void rename(String source, String dest) throws IOException
Directory
source
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.rename
in class Directory
IOException
public void syncMetaData() throws IOException
Directory
syncMetaData
in class Directory
IOException
Directory.sync(Collection)
public IndexInput openInput(String name, IOContext context) throws IOException
Directory
NoSuchFileException
or FileNotFoundException
if name
points to a non-existing file.openInput
in class Directory
name
- the name of an existing file.IOException
- in case of I/O errorpublic Set<String> getPendingDeletions() throws IOException
Directory
getPendingDeletions
in class Directory
IOException
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.