Package com.tangosol.io.journal
Class FlashJournalRM.JournalFile
java.lang.Object
com.tangosol.io.journal.AbstractJournalRM.JournalFile
com.tangosol.io.journal.FlashJournalRM.JournalFile
- All Implemented Interfaces:
Disposable
,AutoCloseable
- Enclosing class:
FlashJournalRM
A JournalFile is created for each OS file used to store the journal
contents. It is created in an initial "append" mode -- which may be
interrupted from time to time by a "congested" mode if writes are
falling too far behind, it then transitions to a "full" mode, and
once enough of its storage has been released it transitions to an
"evacuating" mode, which (once evacuated) becomes "garbage" and (upon
deletion) is "discarded".
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final byte[]
Random overlay data.protected FileChannel
A random access FileChannel for read purposes.protected final FileChannel
A FileOutputStream FileChannel for append purposes.protected final File
The file.protected long
The offset of the next Binary to clean out of the map (ie "flush" out of memory).Fields inherited from class com.tangosol.io.journal.AbstractJournalRM.JournalFile
f_journalFileCondition, f_journalFileLock, m_cbReleased, m_cbWritten, m_fNotifiedFull, m_jrnlfileNext, m_lStateOffset, m_nFile, STATE_APPENDING, STATE_CONGESTION, STATE_DISCARDED, STATE_EVACUATING, STATE_FULL, STATE_GARBAGE, STATE_MASK, STATE_RESERVED
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAllocate a Buffer to use with this JournalFile.protected void
congestionCheck
(int cbDelta) Check if a change to the backlog causes a change to the congestion state.void
dispose()
Invoked when all resources owned by the implementer can safely be released.long
Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.protected String
Format the object attributes into a String for inclusion in the String returned from theAbstractJournalRM.JournalFile.toString()
method.getFile()
Obtain the File that this JournalFile object represents.Determine the JournalFile for the file in the journal that follows the file represented by this JournalFile.Obtain the FileChannel used for reading from the JournalFile.Obtain the FileChannel used for appending to the JournalFile.void
Called by the WriterDaemon to indicate that all the data for the JournalFile has been flushed.void
notifyWriteOccurred
(int cbWritten) Called by the WriterDaemon to indicate that more data has been flushed from the write-behind queue to disk.read
(long lTicket) Read the Binary associated with the specified ticket from the journal file.void
release
(int cbValue) Release the specified number of bytes from this journal file.void
touch()
This method is called periodically by the collector daemon to indicate that the file is still being used.Methods inherited from class com.tangosol.io.journal.AbstractJournalRM.JournalFile
compareAndSetOffset, compareAndSetState, evacuate, getBytesWritten, getFileId, getOffset, getOffset, getReleased, getState, getState, isAppending, isReserved, notifyWriteCompleted, setNextJournalFile, setReserved, setState, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.oracle.coherence.common.base.Disposable
close
-
Field Details
-
m_file
The file. Immutable field. -
m_channelRead
A random access FileChannel for read purposes. -
m_channelWrite
A FileOutputStream FileChannel for append purposes. -
m_abOv
protected final byte[] m_abOvRandom overlay data. -
m_ofNextFlush
protected long m_ofNextFlushThe offset of the next Binary to clean out of the map (ie "flush" out of memory).
-
-
Constructor Details
-
JournalFile
public JournalFile(int nFile) Construct a Journal File.- Parameters:
nFile
- the file number in the range 0-511 (inclusive)
-
-
Method Details
-
enqueue
Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.- Specified by:
enqueue
in classAbstractJournalRM.JournalFile
- Parameters:
bin
- the value to append to the journal file- Returns:
- a ticket if the Binary has successfully been enqueued, or 0L if the file is full
-
read
Read the Binary associated with the specified ticket from the journal file.- Specified by:
read
in classAbstractJournalRM.JournalFile
- Parameters:
lTicket
- a ticket previously returned fromAbstractJournalRM.JournalFile.enqueue(com.tangosol.util.Binary)
- Returns:
- the Binary value that is associated with the ticket
-
release
public void release(int cbValue) Release the specified number of bytes from this journal file.- Overrides:
release
in classAbstractJournalRM.JournalFile
- Parameters:
cbValue
- the number of bytes that are being released
-
getNextJournalFile
Determine the JournalFile for the file in the journal that follows the file represented by this JournalFile.- Overrides:
getNextJournalFile
in classAbstractJournalRM.JournalFile
- Returns:
- the next file in the journal, or null if it has not yet been set
-
getFile
Obtain the File that this JournalFile object represents.- Returns:
- a File object representing the OS file that this JournalFile writes and reads to and from
-
getReadChannel
Obtain the FileChannel used for reading from the JournalFile.- Returns:
- a random access FileChannel
-
getWriteChannel
Obtain the FileChannel used for appending to the JournalFile.- Returns:
- an appending FileChannel
-
touch
public void touch()This method is called periodically by the collector daemon to indicate that the file is still being used.- Overrides:
touch
in classAbstractJournalRM.JournalFile
-
getDescription
Format the object attributes into a String for inclusion in the String returned from theAbstractJournalRM.JournalFile.toString()
method.- Overrides:
getDescription
in classAbstractJournalRM.JournalFile
- Returns:
- a comma-delimited String listing the attributes of this object in the form "attribute=value"
-
notifyWriteOccurred
public void notifyWriteOccurred(int cbWritten) Called by the WriterDaemon to indicate that more data has been flushed from the write-behind queue to disk.- Parameters:
cbWritten
- the number of additional bytes written
-
notifyWriteBehindCompleted
public void notifyWriteBehindCompleted()Called by the WriterDaemon to indicate that all the data for the JournalFile has been flushed. -
dispose
public void dispose()Invoked when all resources owned by the implementer can safely be released.Once disposed of the object should no longer be considered to be usable.
Note the Disposable interface is compatible with try-with-resources which will automatically invoke this method.
- Specified by:
dispose
in interfaceDisposable
- Specified by:
dispose
in classAbstractJournalRM.JournalFile
-
congestionCheck
protected void congestionCheck(int cbDelta) Check if a change to the backlog causes a change to the congestion state.- Parameters:
cbDelta
- number of bytes added to or removed from the backlog
-
allocateBuffer
Allocate a Buffer to use with this JournalFile.- Returns:
- a new (or pooled) Buffer
-