|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.cache.AbstractTreeCacheListener
org.jboss.cache.loader.SharedStoreCacheLoader
public class 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(java.lang.Object tx)
Commits the transaction. |
void |
create()
|
void |
destroy()
|
boolean |
exists(Fqn name)
Returns true if the CacheLoader has a node with a Fqn . |
java.util.Map |
get(Fqn name)
Returns all keys and values from the persistent store, given a fully qualified name. |
java.util.Set |
getChildrenNames(Fqn fqn)
Returns a set of children node names as Strings. |
byte[] |
loadEntireState()
Fetches the entire state for this cache from secondary storage (disk, DB) and returns 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(java.lang.Object tx,
java.util.List modifications,
boolean one_phase)
Prepares a list of modifications. |
void |
put(Fqn name,
java.util.Map attributes)
Puts all entries of the map into the existing map of the given node, overwriting existing keys, but not clearing the existing map before insertion. |
java.lang.Object |
put(Fqn name,
java.lang.Object key,
java.lang.Object value)
Puts a key and value into the attribute map of a given node. |
void |
put(java.util.List modifications)
Applies all modifications to the backend store. |
void |
remove(Fqn name)
Removes the given node and all its subnodes. |
java.lang.Object |
remove(Fqn name,
java.lang.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 or any subnodes. |
void |
rollback(java.lang.Object tx)
Rolls the transaction back. |
void |
setCache(TreeCache c)
Sets the TreeCache that is maintaining this CacheLoader. |
void |
setConfig(java.util.Properties props)
Sets the configuration. |
void |
start()
|
void |
stop()
|
void |
storeEntireState(byte[] state)
Stores the given state in secondary storage. |
void |
viewChange(org.jgroups.View new_view)
|
Methods inherited from class org.jboss.cache.AbstractTreeCacheListener |
---|
nodeActivate, nodeEvict, nodeModify, nodePassivate, nodeRemove |
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 TreeCacheListener
nodeCreated
in class AbstractTreeCacheListener
public void nodeRemoved(Fqn fqn)
TreeCacheListener
nodeRemoved
in interface TreeCacheListener
nodeRemoved
in class AbstractTreeCacheListener
public void nodeLoaded(Fqn fqn)
TreeCacheListener
TreeCacheListener.nodeCreated(Fqn)
.
nodeLoaded
in interface TreeCacheListener
nodeLoaded
in class AbstractTreeCacheListener
public void nodeEvicted(Fqn fqn)
TreeCacheListener
nodeEvicted
in interface TreeCacheListener
nodeEvicted
in class AbstractTreeCacheListener
public void nodeModified(Fqn fqn)
TreeCacheListener
nodeModified
in interface TreeCacheListener
nodeModified
in class AbstractTreeCacheListener
public void nodeVisited(Fqn fqn)
TreeCacheListener
nodeVisited
in interface TreeCacheListener
nodeVisited
in class AbstractTreeCacheListener
public void cacheStarted(TreeCache cache)
TreeCacheListener
cacheStarted
in interface TreeCacheListener
cacheStarted
in class AbstractTreeCacheListener
public void cacheStopped(TreeCache cache)
TreeCacheListener
cacheStopped
in interface TreeCacheListener
cacheStopped
in class AbstractTreeCacheListener
public void viewChange(org.jgroups.View new_view)
viewChange
in interface TreeCacheListener
viewChange
in class AbstractTreeCacheListener
public void setConfig(java.util.Properties props)
CacheLoader
Service.create()
and Service.start()
.
setConfig
in interface CacheLoader
props
- a collection of configuration propertiespublic void setCache(TreeCache c)
CacheLoader
TreeCache
that is maintaining this CacheLoader.
This method allows this CacheLoader to invoke methods on TreeCache,
including fetching additional configuration information. This method is
called be called after the CacheLoader instance has been constructed.
setCache
in interface CacheLoader
c
- The cache on which this loader workspublic java.util.Set getChildrenNames(Fqn fqn) throws java.lang.Exception
CacheLoader
Fqn
.
Returns null if the named node is not found or there are no children.
The returned set must not be modifiable. Implementors can use
Collections.unmodifiableSet(Set)
to make the set unmodifiable.
getChildrenNames
in interface CacheLoader
fqn
- The FQN of the parent
java.lang.Exception
public java.util.Map get(Fqn name) throws java.lang.Exception
CacheLoader
get
in interface CacheLoader
public boolean exists(Fqn name) throws java.lang.Exception
CacheLoader
Fqn
.
exists
in interface CacheLoader
java.lang.Exception
public java.lang.Object put(Fqn name, java.lang.Object key, java.lang.Object value) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
java.lang.Exception
public void put(Fqn name, java.util.Map attributes) throws java.lang.Exception
CacheLoader
Map.putAll(java.util.Map extends K, ? extends V>)
.
If the node does not exist, all parent nodes from the root down are created automatically
put
in interface CacheLoader
name
- The fully qualified name of the nodeattributes
- A Map of attributes. Can be null
java.lang.Exception
public void put(java.util.List modifications) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
modifications
- A Listjava.lang.Exception
public java.lang.Object remove(Fqn name, java.lang.Object key) throws java.lang.Exception
CacheLoader
remove
in interface CacheLoader
java.lang.Exception
public void remove(Fqn name) throws java.lang.Exception
CacheLoader
remove
in interface CacheLoader
java.lang.Exception
public void removeData(Fqn name) throws java.lang.Exception
CacheLoader
removeData
in interface CacheLoader
java.lang.Exception
public void prepare(java.lang.Object tx, java.util.List modifications, boolean one_phase) throws java.lang.Exception
CacheLoader
tx
(tx is the key)
prepare
in interface CacheLoader
tx
- 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
java.lang.Exception
public void commit(java.lang.Object tx) throws java.lang.Exception
CacheLoader
tx
and commit that
transaction. Non-transactional CacheLoaders could simply write the data
that was previously saved transiently under the given tx
key, to (for example) a file system (note this only holds if the previous
prepare() did not define one_phase=true
commit
in interface CacheLoader
tx
- transaction to commit
java.lang.Exception
public void rollback(java.lang.Object tx)
CacheLoader
tx
and roll back that
transaction.
rollback
in interface CacheLoader
tx
- transaction to roll backpublic byte[] loadEntireState() throws java.lang.Exception
CacheLoader
CacheLoader.storeEntireState(byte[])
.
loadEntireState
in interface CacheLoader
java.lang.Exception
public void storeEntireState(byte[] state) throws java.lang.Exception
CacheLoader
storeEntireState
in interface CacheLoader
java.lang.Exception
public void create() throws java.lang.Exception
create
in interface org.jboss.system.Service
java.lang.Exception
public void start() throws java.lang.Exception
start
in interface org.jboss.system.Service
java.lang.Exception
public void stop()
stop
in interface org.jboss.system.Service
public 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 |