Package org.apache.lucene.store
Class IndexOutput
java.lang.Object
org.apache.lucene.store.DataOutput
org.apache.lucene.store.IndexOutput
- All Implemented Interfaces:
Closeable
,AutoCloseable
- Direct Known Subclasses:
ByteBuffersIndexOutput
,OutputStreamIndexOutput
,RateLimitedIndexOutput
A
DataOutput
for appending data to a file in a Directory
.
Instances of this class are not thread-safe.
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
IndexOutput
(String resourceDescription, String name) Sole constructor. -
Method Summary
Modifier and TypeMethodDescriptionfinal long
alignFilePointer
(int alignmentBytes) Aligns the current file pointer to multiples ofalignmentBytes
bytes to improve reads with mmap.static final long
alignOffset
(long offset, int alignmentBytes) Aligns the givenoffset
to multiples ofalignmentBytes
bytes by rounding up.abstract void
close()
Closes this stream to further operations.abstract long
Returns the current checksum of bytes written so farabstract long
Returns the current position in this file, where the next write will occur.getName()
Returns the name used to create thisIndexOutput
.toString()
Methods inherited from class org.apache.lucene.store.DataOutput
copyBytes, writeByte, writeBytes, writeBytes, writeInt, writeLong, writeMapOfStrings, writeSetOfStrings, writeShort, writeString, writeVInt, writeVLong, writeZInt, writeZLong
-
Constructor Details
-
IndexOutput
Sole constructor. resourceDescription should be non-null, opaque string describing this resource; it's returned fromtoString()
.
-
-
Method Details
-
getName
Returns the name used to create thisIndexOutput
. This is especially useful when usingDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)
. -
close
Closes this stream to further operations.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
-
getFilePointer
public abstract long getFilePointer()Returns the current position in this file, where the next write will occur. -
getChecksum
Returns the current checksum of bytes written so far- Throws:
IOException
-
toString
-
alignFilePointer
Aligns the current file pointer to multiples ofalignmentBytes
bytes to improve reads with mmap. This will write between 0 and(alignmentBytes-1)
zero bytes usingDataOutput.writeByte(byte)
.- Parameters:
alignmentBytes
- the alignment to which it should forward file pointer (must be a power of 2)- Returns:
- the new file pointer after alignment
- Throws:
IOException
- See Also:
-
alignOffset
public static final long alignOffset(long offset, int alignmentBytes) Aligns the givenoffset
to multiples ofalignmentBytes
bytes by rounding up. The alignment must be a power of 2.
-