Class SafePersistenceWrappers.SafePersistenceManager<R,T extends Throwable>
- Type Parameters:
R
- the type of a raw, environment specific object representationT
- the type of a Throwable failure to protect
- All Implemented Interfaces:
com.oracle.coherence.persistence.PersistenceManager<R>
,com.oracle.coherence.persistence.PersistenceTools
- Enclosing class:
SafePersistenceWrappers
Continuation
.-
Field Summary
Modifier and TypeFieldDescriptionprotected final Continuation
<? super T> The failure continuation for this manager.protected final SafePersistenceWrappers.FailureContinuationFactory
<R, ? super T> The FailureContinuationFactory.protected final com.oracle.coherence.persistence.PersistenceManager
<R> The underlying PersistenceManager.Fields inherited from class com.tangosol.util.NullImplementation.NullPersistenceManager
INSTANCE
-
Constructor Summary
ConstructorDescriptionSafePersistenceManager
(com.oracle.coherence.persistence.PersistenceManager<R> mgr) Construct a SafePersistenceManager backed by the specified manager.SafePersistenceManager
(com.oracle.coherence.persistence.PersistenceManager<R> mgr, Continuation<? super Throwable> cont) Construct a SafePersistenceManager backed by the specified manager.SafePersistenceManager
(com.oracle.coherence.persistence.PersistenceManager<R> mgr, SafePersistenceWrappers.FailureContinuationFactory<R, ? super T> factory) Construct a PersistenceManager backed by the specified manager. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Close the associated PersistentStore and release exclusive access to the associated resources.com.oracle.coherence.persistence.PersistentStore
<R> createStore
(String sId) Create aPersistentStore
associated with the specified identifier.boolean
Remove the PersistentStore associated with the specified identifier.com.oracle.coherence.persistence.PersistenceManager
Return the underlying PersistenceManager.getName()
Return the name of this manager.String[]
list()
Return the identifiers of the PersistentStores known to this manager.String[]
listOpen()
Return the identifiers of PersistentStores that are currently open.void
onException
(T t) Called to handle an unexpected exception.com.oracle.coherence.persistence.PersistentStore
<R> Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.com.oracle.coherence.persistence.PersistentStore
<R> open
(String sId, com.oracle.coherence.persistence.PersistentStore<R> store, Collector<Object> collector) Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.void
read
(String sId, ReadBuffer.BufferInput in) Read the PersistenceStore associated with the specified identifier from the given input stream, making it available to this manager.void
read
(String sId, InputStream in) Read the PersistenceStore associated with the specified identifier from the given input stream, making it available to this manager.void
release()
Release all resources held by this manager.toString()
Return a human readable description of this SafePersistenceManager.protected com.oracle.coherence.persistence.PersistentStore
<R> Wrap the specified store in a SafePersistentStore implementation.void
write
(String sId, WriteBuffer.BufferOutput out) Write the PersistentStore associated with the specified identifier to the given output buffer.void
write
(String sId, OutputStream out) Write the PersistentStore associated with the specified identifier to the given output stream.void
Copy the PersistentStore associated with the specified identifier to the configured safe area.Methods inherited from class com.tangosol.util.NullImplementation.NullPersistenceManager
getPersistenceInfo, getPersistenceTools, getStatistics, validate
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.oracle.coherence.persistence.PersistenceManager
contains
-
Field Details
-
f_manager
The underlying PersistenceManager. -
f_contFailure
The failure continuation for this manager. -
f_factoryCont
protected final SafePersistenceWrappers.FailureContinuationFactory<R,? super T extends Throwable> f_factoryContThe FailureContinuationFactory.
-
-
Constructor Details
-
SafePersistenceManager
Construct a SafePersistenceManager backed by the specified manager.- Parameters:
mgr
- the underlying PersistenceManager
-
SafePersistenceManager
public SafePersistenceManager(com.oracle.coherence.persistence.PersistenceManager<R> mgr, Continuation<? super Throwable> cont) Construct a SafePersistenceManager backed by the specified manager.- Parameters:
mgr
- the underlying PersistenceManagercont
- the failure continuation to use to handle unexpected exceptions
-
SafePersistenceManager
public SafePersistenceManager(com.oracle.coherence.persistence.PersistenceManager<R> mgr, SafePersistenceWrappers.FailureContinuationFactory<R, ? super T> factory) Construct a PersistenceManager backed by the specified manager.- Parameters:
mgr
- the underlying PersistenceManagerfactory
- the failure continuation factory to use to create handlers for unexpected exceptions
-
-
Method Details
-
getManager
public com.oracle.coherence.persistence.PersistenceManager getManager()Return the underlying PersistenceManager.- Returns:
- the underlying PersistenceManager
-
onException
Called to handle an unexpected exception.- Parameters:
t
- the Throwable
-
wrap
protected com.oracle.coherence.persistence.PersistentStore<R> wrap(com.oracle.coherence.persistence.PersistentStore<R> store) Wrap the specified store in a SafePersistentStore implementation.- Parameters:
store
- the underlying PersistentStore- Returns:
- a "safe" PersistenceManger or null if the specified store is null
-
getName
Return the name of this manager.- Specified by:
getName
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
getName
in classNullImplementation.NullPersistenceManager<R>
- Returns:
- the name of this manager
-
createStore
Create aPersistentStore
associated with the specified identifier.Creation of a store suggests its registration but has no usage until it transitions into a state of open. The implementation may choose to forgo any resource allocation until the caller
opens
the same identifier.- Specified by:
createStore
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
createStore
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store- Returns:
- a persistent store
-
open
public com.oracle.coherence.persistence.PersistentStore<R> open(String sId, com.oracle.coherence.persistence.PersistentStore<R> store) Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.Upon a new store being created the provided store should be used as the basis for the new store such that the extents and associated data is available in the returned store. This provides an opportunity for an implementation to optimize initializing the new store based upon knowledge of the storage mechanics.
- Specified by:
open
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
open
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier for the storestore
- the PersistenceStore the new store should be based upon- Returns:
- a PersistentStore associated with the specified identifier
-
open
public com.oracle.coherence.persistence.PersistentStore<R> open(String sId, com.oracle.coherence.persistence.PersistentStore<R> store, Collector<Object> collector) Open or create aPersistentStore
associated with the specified identifier and based on the providedstore
.Upon a new store being created the provided store should be used as the basis for the new store such that the extents and associated data is available in the returned store. This provides an opportunity for an implementation to optimize initializing the new store based upon knowledge of the storage mechanics.
Providing a
Collector
allows the open operation to be performed asynchronously. This may be desirable when the calling thread can not be blocked on IO operations that are required when creating a new store based on an old store (storeFrom
). Open is only non-blocking when both an old store and a Collector are provided. Upon completion of an asynchronous open request the provided Collector is called with either a String (GUID) or an AsyncPersistenceException, thus notifying the collector of success of failure respectively.Note: the behavior of a returned store that has not been opened is undefined.
- Specified by:
open
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
open
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier for the storestore
- the PersistenceStore the new store should be based uponcollector
- the Collector to notify once the store has been opened or failed to open; the collector will either receive a String (GUID) or an AsyncPersistenceException- Returns:
- a PersistentStore associated with the specified identifier
-
close
Close the associated PersistentStore and release exclusive access to the associated resources.- Specified by:
close
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
close
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to close
-
delete
Remove the PersistentStore associated with the specified identifier.- Specified by:
delete
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
delete
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to removefSafe
- if true, remove the store by moving it to a restorable location (if possible) rather than deleting it- Returns:
- true if the store was successfully removed, false otherwise
-
list
Return the identifiers of the PersistentStores known to this manager.- Specified by:
list
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
list
in classNullImplementation.NullPersistenceManager<R>
- Returns:
- a list of the known store identifiers
-
listOpen
Return the identifiers of PersistentStores that are currently open.- Specified by:
listOpen
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
listOpen
in classNullImplementation.NullPersistenceManager<R>
- Returns:
- a list of the open store identifiers
-
read
Read the PersistenceStore associated with the specified identifier from the given input stream, making it available to this manager.- Specified by:
read
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
read
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to readin
- the stream to read from- Throws:
IOException
- if an error occurred while reading from the stream
-
write
Write the PersistentStore associated with the specified identifier to the given output stream.- Specified by:
write
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
write
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to writeout
- the stream to write to- Throws:
IOException
- if an error occurred while writing to the stream
-
writeSafe
Copy the PersistentStore associated with the specified identifier to the configured safe area. -
read
Read the PersistenceStore associated with the specified identifier from the given input stream, making it available to this manager.- Specified by:
read
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
read
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to readin
- the stream to read from- Throws:
IOException
- if an error occurred while reading from the stream
-
write
Write the PersistentStore associated with the specified identifier to the given output buffer.- Specified by:
write
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
write
in classNullImplementation.NullPersistenceManager<R>
- Parameters:
sId
- a unique identifier of the store to writeout
- the output buffer to write to- Throws:
IOException
- if an error occurred while writing to the stream
-
release
public void release()Release all resources held by this manager. Note that the behavior of all other methods on this manager is undefined after this method is called.- Specified by:
release
in interfacecom.oracle.coherence.persistence.PersistenceManager<R>
- Overrides:
release
in classNullImplementation.NullPersistenceManager<R>
-
toString
Return a human readable description of this SafePersistenceManager.
-