|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.jboss.cache.loader.SharedStoreCacheLoader
CacheLoader proxy used only when multiple CacheLoaders in a cluster access the same underlying store (e.g.
a shared filesystem, or DB). SharedStoreCacheLoader is a simply facade to a real CacheLoader implementation. It
always delegates reads to the real CacheLoader. Writes are forwarded only if this SharedStoreCacheLoader is
currently the cordinator. This avoid having all CacheLoaders in a cluster writing the same data to the same
underlying store. Although not incorrect (e.g. a DB will just discard additional INSERTs for the same key, and
throw an exception), this will avoid a lot of redundant work.
Whenever the current coordinator dies (or leaves), the second in line will take over. That SharedStoreCacheLoader
will then pass writes through to its underlying CacheLoader.
| Constructor Summary | |
SharedStoreCacheLoader(CacheLoader loader,
org.jgroups.Address local_addr,
boolean coordinator)
|
|
| Method Summary | |
void |
cacheStarted(TreeCache cache)
Called when the cache is started. |
void |
cacheStopped(TreeCache cache)
Called when the cache is stopped. |
void |
commit(Object tx)
Commit the transaction. |
void |
create()
|
void |
destroy()
|
boolean |
exists(Fqn name)
Checks whether the CacheLoader has a node with Fqn |
Map |
get(Fqn name)
Returns all keys and values from the persistent store, given a fully qualified name |
Object |
get(Fqn name,
Object key)
Returns the value for a given key. |
Set |
getChildrenNames(Fqn fqn)
Returns a list of children names, all names are relative. |
byte[] |
loadEntireState()
Fetch the entire state for this cache from secondary storage (disk, DB) and return it as a byte buffer. |
void |
nodeCreated(Fqn fqn)
Called when a node is created |
void |
nodeEvicted(Fqn fqn)
Called when a node is evicted (not the same as remove()). |
void |
nodeLoaded(Fqn fqn)
Called when a node is loaded into memory via the CacheLoader. |
void |
nodeModified(Fqn fqn)
Called when a node is modified, e.g., one (key, value) pair in the internal map storage has been modified. |
void |
nodeRemoved(Fqn fqn)
Called when a node is removed. |
void |
nodeVisited(Fqn fqn)
Called when a node is visisted, i.e., get(). |
void |
prepare(Object tx,
List modifications,
boolean one_phase)
Prepare the modifications. |
void |
put(Fqn name,
Map attributes)
Inserts all elements of attributes into the attributes hashmap of the given node, overwriting existing attributes, but not clearing the existing hashmap before insertion (making it a union of existing and new attributes) If the node does not exist, all parent nodes from the root down are created automatically |
Object |
put(Fqn name,
Object key,
Object value)
Inserts key and value into the attributes hashmap of the given node. |
void |
put(List modifications)
Inserts all modifications to the backend store. |
void |
remove(Fqn name)
Removes the given node. |
Object |
remove(Fqn name,
Object key)
Removes the given key and value from the attributes of the given node. |
void |
removeData(Fqn name)
Removes all attributes from a given node, but doesn't delete the node itself |
void |
rollback(Object tx)
Roll the transaction back. |
void |
setCache(TreeCache c)
This method allows the CacheLoader to set the TreeCache, therefore allowing the CacheLoader to invoke methods of the TreeCache. |
void |
setConfig(Properties props)
Sets the configuration. |
void |
start()
|
void |
stop()
|
void |
storeEntireState(byte[] state)
Store the given state in secondary storage. |
void |
viewChange(org.jgroups.View new_view)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public SharedStoreCacheLoader(CacheLoader loader, org.jgroups.Address local_addr, boolean coordinator)
| Method Detail |
public void nodeCreated(Fqn fqn)
TreeCacheListener
nodeCreated in interface TreeCacheListenerfqn - public void nodeRemoved(Fqn fqn)
TreeCacheListener
nodeRemoved in interface TreeCacheListenerfqn - public void nodeLoaded(Fqn fqn)
TreeCacheListenerTreeCacheListener.nodeCreated(Fqn).
nodeLoaded in interface TreeCacheListenerpublic void nodeEvicted(Fqn fqn)
TreeCacheListener
nodeEvicted in interface TreeCacheListenerfqn - public void nodeModified(Fqn fqn)
TreeCacheListener
nodeModified in interface TreeCacheListenerfqn - public void nodeVisited(Fqn fqn)
TreeCacheListener
nodeVisited in interface TreeCacheListenerfqn - public void cacheStarted(TreeCache cache)
TreeCacheListener
cacheStarted in interface TreeCacheListenercache - public void cacheStopped(TreeCache cache)
TreeCacheListener
cacheStopped in interface TreeCacheListenercache - public void viewChange(org.jgroups.View new_view)
viewChange in interface TreeCacheListenerpublic void setConfig(Properties props)
CacheLoaderService.create() and Service.start()
setConfig in interface CacheLoaderprops - A list of properties, defined in the XML filepublic void setCache(TreeCache c)
CacheLoader
setCache in interface CacheLoaderc - The cache on which this loader workspublic Set getChildrenNames(Fqn fqn) throws Exception
CacheLoader
getChildrenNames in interface CacheLoaderfqn - The FQN of the parent
Exceptionpublic Object get(Fqn name, Object key) throws Exception
CacheLoader
get in interface CacheLoadername -
Exceptionpublic Map get(Fqn name) throws Exception
CacheLoader
get in interface CacheLoadername -
public boolean exists(Fqn name) throws Exception
CacheLoader
exists in interface CacheLoadername -
Exceptionpublic Object put(Fqn name, Object key, Object value) throws Exception
CacheLoader
put in interface CacheLoaderExceptionpublic void put(Fqn name, Map attributes) throws Exception
CacheLoader
put in interface CacheLoadername - The fully qualified name of the nodeattributes - A Map of attributes. Can be null
Exceptionpublic void put(List modifications) throws Exception
CacheLoader
put in interface CacheLoadermodifications - A ListExceptionpublic Object remove(Fqn name, Object key) throws Exception
CacheLoader
remove in interface CacheLoaderExceptionpublic void remove(Fqn name) throws Exception
CacheLoader
remove in interface CacheLoaderExceptionpublic void removeData(Fqn name) throws Exception
CacheLoader
removeData in interface CacheLoadername -
Exceptionpublic void prepare(Object tx, List modifications, boolean one_phase) throws Exception
CacheLoadertx (tx is the key)
prepare in interface CacheLoadertx - The transaction, just used as a hashmap keymodifications - Listone_phase - Persist immediately and (for example) commit the local JDBC transaction as well. When true,
we won't get a CacheLoader.commit(Object) or CacheLoader.rollback(Object) method call later
Exceptionpublic void commit(Object tx) throws Exception
CacheLoadertx and commit that transactiontx key, to (for example) a file system (note this only holds if the previous prepare() did
not define one_phase=true
commit in interface CacheLoadertx -
Exceptionpublic void rollback(Object tx)
CacheLoadertx and roll back that transaction
rollback in interface CacheLoadertx -
public byte[] loadEntireState()
throws Exception
CacheLoader
loadEntireState in interface CacheLoaderException
public void storeEntireState(byte[] state)
throws Exception
CacheLoader
storeEntireState in interface CacheLoaderException
public void create()
throws Exception
create in interface org.jboss.system.ServiceException
public void start()
throws Exception
start in interface org.jboss.system.ServiceExceptionpublic void stop()
stop in interface org.jboss.system.Servicepublic void destroy()
destroy in interface org.jboss.system.Service
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||