Package org.apache.lucene.store
Class LockValidatingDirectoryWrapper
- java.lang.Object
-
- org.apache.lucene.store.Directory
-
- org.apache.lucene.store.FilterDirectory
-
- org.apache.lucene.store.LockValidatingDirectoryWrapper
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public final class LockValidatingDirectoryWrapper extends FilterDirectory
This class makes a best-effort check that a providedLock
is valid before any destructive filesystem operation.
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.store.FilterDirectory
in
-
-
Constructor Summary
Constructors Constructor Description LockValidatingDirectoryWrapper(Directory in, Lock writeLock)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
copyFrom(Directory from, String src, String dest, IOContext context)
Copies an existingsrc
file from directoryfrom
to a non-existent filedest
in this directory.IndexOutput
createOutput(String name, IOContext context)
Creates a new, empty file in the directory and returns anIndexOutput
instance for appending data to this file.void
deleteFile(String name)
Removes an existing file in the directory.void
rename(String source, String dest)
Renamessource
file todest
file wheredest
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.-
Methods inherited from class org.apache.lucene.store.FilterDirectory
close, createTempOutput, ensureOpen, fileLength, getDelegate, getPendingDeletions, listAll, obtainLock, openInput, toString, unwrap
-
Methods inherited from class org.apache.lucene.store.Directory
getTempFileName, openChecksumInput
-
-
-
-
Method Detail
-
deleteFile
public void deleteFile(String name) throws IOException
Description copied from class:Directory
Removes an existing file in the directory.This method must throw either
NoSuchFileException
orFileNotFoundException
ifname
points to a non-existing file.- Overrides:
deleteFile
in classFilterDirectory
- Parameters:
name
- the name of an existing file.- Throws:
IOException
- in case of I/O error
-
createOutput
public IndexOutput createOutput(String name, IOContext context) throws IOException
Description copied from class:Directory
Creates a new, empty file in the directory and returns anIndexOutput
instance for appending data to this file.This method must throw
FileAlreadyExistsException
if the file already exists.- Overrides:
createOutput
in classFilterDirectory
- Parameters:
name
- the name of the file to create.- Throws:
IOException
- in case of I/O error
-
copyFrom
public void copyFrom(Directory from, String src, String dest, IOContext context) throws IOException
Description copied from class:Directory
Copies an existingsrc
file from directoryfrom
to a non-existent filedest
in this directory.- Overrides:
copyFrom
in classDirectory
- Throws:
IOException
-
rename
public void rename(String source, String dest) throws IOException
Description copied from class:Directory
Renamessource
file todest
file wheredest
must not already exist in the directory.It is permitted for this operation to not be truly atomic, for example both
source
anddest
can be visible temporarily inDirectory.listAll()
. However, the implementation of this method must ensure the content ofdest
appears as the entiresource
atomically. So oncedest
is visible for readers, the entire content of previoussource
is visible.This method is used by IndexWriter to publish commits.
- Overrides:
rename
in classFilterDirectory
- Throws:
IOException
-
syncMetaData
public void syncMetaData() throws IOException
Description copied from class:Directory
Ensures that directory metadata, such as recent file renames, are moved to stable storage.- Overrides:
syncMetaData
in classFilterDirectory
- Throws:
IOException
- See Also:
Directory.sync(Collection)
-
sync
public void sync(Collection<String> names) throws IOException
Description copied from class:Directory
Ensures that any writes to these files are moved to stable storage (made durable).Lucene uses this to properly commit changes to the index, to prevent a machine/OS crash from corrupting the index.
- Overrides:
sync
in classFilterDirectory
- Throws:
IOException
- See Also:
Directory.syncMetaData()
-
-