Class Transaction
java.lang.Object
org.apache.activemq.store.kahadb.disk.page.Transaction
The class used to read/update a PageFile object. Using a transaction allows you to
do multiple update operations in a single unit of work.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceTransaction.CallableClosure<R,T extends Throwable> This closure interface is intended for the end user implement callbacks for the Transaction.exectue() method.static interfaceTransaction.Closure<T extends Throwable>This closure interface is intended for the end user implement callbacks for the Transaction.exectue() method.classThe InvalidPageIOException is thrown if try to load/store a a page with an invalid page id.classThe PageOverflowIOException occurs when a page write is requested and it's data is larger than what would fit into a single page. -
Method Summary
Modifier and TypeMethodDescription<T> Page<T>allocate()Allocates a free page that you can write data to.<T> Page<T>allocate(int count) Allocates a block of free pages that you can write data to.voidcommit()Commits the transaction to the PageFile as a single 'Unit of Work'.<R,T extends Throwable>
Rexecute(Transaction.CallableClosure<R, T> closure) Executes a closure and if it does not throw any exceptions, then it commits the transaction.<T extends Throwable>
voidexecute(Transaction.Closure<T> closure) Executes a closure and if it does not throw any exceptions, then it commits the transaction.voidfree(long pageId) Frees up a previously allocated page so that it can be re-allocated again.voidfree(long pageId, int count) Frees up a previously allocated sequence of pages so that it can be re-allocated again.<T> voidFrees up a previously allocated page so that it can be re-allocated again.<T> voidFrees up a previously allocated sequence of pages so that it can be re-allocated again.protected Filebooleaniterator()Allows you to iterate through all active Pages in this object.iterator(boolean includeFreePages) Allows you to iterate through all active Pages in this object.<T> Page<T>load(long pageId, Marshaller<T> marshaller) Loads a page from disk.<T> voidload(Page<T> page, Marshaller<T> marshaller) Loads a page from disk.openOutputStream(Page page, boolean overflow) voidrollback()Rolls back the transaction.<T> voidstore(Page<T> page, Marshaller<T> marshaller, boolean overflow) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getPageFile
- Returns:
- the page file that created this Transaction
-
allocate
Allocates a free page that you can write data to.- Returns:
- a newly allocated page.
- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
allocate
Allocates a block of free pages that you can write data to.- Parameters:
count- the number of sequential pages to allocate- Returns:
- the first page of the sequential set.
- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
free
Frees up a previously allocated page so that it can be re-allocated again.- Parameters:
pageId- the page to free up- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
free
Frees up a previously allocated sequence of pages so that it can be re-allocated again.- Parameters:
pageId- the initial page of the sequence that will be getting freedcount- the number of pages in the sequence- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
free
Frees up a previously allocated sequence of pages so that it can be re-allocated again.- Parameters:
page- the initial page of the sequence that will be getting freedcount- the number of pages in the sequence- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
free
Frees up a previously allocated page so that it can be re-allocated again.- Parameters:
page- the page to free up- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
store
- Parameters:
page- the page to write. The Page object must be fully populated with a valid pageId, type, and data.marshaller- the marshaler to use to load the data portion of the Page, may be null if you do not wish to write the data.overflow- If true, then if the page data marshalls to a bigger size than can fit in one page, then additional overflow pages are automatically allocated and chained to this page to store all the data. If false, and the overflow condition would occur, then the PageOverflowIOException is thrown.- Throws:
IOException- If an disk error occurred.Transaction.PageOverflowIOException- If the page data marshalls to size larger than maximum page size and overflow was false.IllegalStateException- if the PageFile is not loaded
-
openOutputStream
- Throws:
IOException
-
load
Loads a page from disk.- Parameters:
pageId- the id of the page to loadmarshaller- the marshaler to use to load the data portion of the Page, may be null if you do not wish to load the data.- Returns:
- The page with the given id
- Throws:
IOException- If an disk error occurred.IllegalStateException- if the PageFile is not loaded
-
load
Loads a page from disk.- Parameters:
page- - The pageId field must be properly setmarshaller- the marshaler to use to load the data portion of the Page, may be null if you do not wish to load the data.- Throws:
IOException- If an disk error occurred.Transaction.InvalidPageIOException- If the page is is not valid.IllegalStateException- if the PageFile is not loaded
-
openInputStream
-
iterator
Allows you to iterate through all active Pages in this object. Pages with type Page.FREE_TYPE are not included in this iteration. Pages removed with Iterator.remove() will not actually get removed until the transaction commits.- Specified by:
iteratorin interfaceIterable<Page>- Throws:
IllegalStateException- if the PageFile is not loaded
-
iterator
Allows you to iterate through all active Pages in this object. You can optionally include free pages in the pages iterated.- Parameters:
includeFreePages- - if true, free pages are included in the iteration- Throws:
IllegalStateException- if the PageFile is not loaded
-
commit
Commits the transaction to the PageFile as a single 'Unit of Work'. Either all page updates associated with the transaction are written to disk or none will.- Throws:
IOException
-
rollback
Rolls back the transaction.- Throws:
IOException
-
getTempFile
-
isReadOnly
public boolean isReadOnly()- Returns:
- true if there are no uncommitted page file updates associated with this transaction.
-
execute
Executes a closure and if it does not throw any exceptions, then it commits the transaction. If the closure throws an Exception, then the transaction is rolled back.- Type Parameters:
T-- Parameters:
closure- - the work to get exectued.- Throws:
T- if the closure throws itIOException- If the commit fails.
-
execute
public <R,T extends Throwable> R execute(Transaction.CallableClosure<R, T> closure) throws T, IOExceptionExecutes a closure and if it does not throw any exceptions, then it commits the transaction. If the closure throws an Exception, then the transaction is rolled back.- Type Parameters:
T-- Parameters:
closure- - the work to get exectued.- Throws:
T- if the closure throws itIOException- If the commit fails.
-