|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.jboss.cache.loader.FileCacheLoader
Simple file-based CacheLoader implementation. Nodes are directories, attributes of a node is a file in the directory
Field Summary | |
static java.lang.String |
DATA
|
static java.lang.String |
DIR_SUFFIX
|
Constructor Summary | |
FileCacheLoader()
|
Method Summary | |
void |
commit(java.lang.Object tx)
Commit the transaction. |
void |
create()
|
void |
destroy()
|
boolean |
exists(Fqn fqn)
Checks whether the CacheLoader has a node with Fqn |
java.util.Map |
get(Fqn fqn)
Returns all keys and values from the persistent store, given a fully qualified name |
java.lang.Object |
get(Fqn fqn,
java.lang.Object key)
Returns the value for a given key. |
java.util.Set |
getChildrenNames(Fqn fqn)
Returns a list of children names, all names are relative. |
protected java.util.Map |
loadAttributes(Fqn fqn)
|
byte[] |
loadEntireState()
Loads the entire state from the filesystem and returns it as a byte buffer. |
protected void |
loadStateFromFilessystem(Fqn fqn,
java.io.ObjectOutputStream out)
Do a preorder traversal: visit the node first, then the node's children |
void |
prepare(java.lang.Object tx,
java.util.List modifications,
boolean one_phase)
Prepare the modifications. |
void |
put(Fqn fqn,
java.util.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 |
void |
put(Fqn fqn,
java.util.Map attributes,
boolean erase)
|
java.lang.Object |
put(Fqn fqn,
java.lang.Object key,
java.lang.Object value)
Inserts key and value into the attributes hashmap of the given node. |
void |
put(java.util.List modifications)
Inserts all modifications to the backend store. |
void |
remove(Fqn fqn)
Removes the given node. |
java.lang.Object |
remove(Fqn fqn,
java.lang.Object key)
Removes the given key and value from the attributes of the given node. |
void |
removeData(Fqn fqn)
Removes all attributes from a given node, but doesn't delete the node itself |
void |
rollback(java.lang.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(java.util.Properties props)
Sets the configuration. |
void |
start()
|
void |
stop()
|
protected void |
storeAttributes(Fqn fqn,
java.util.Map attrs)
|
void |
storeEntireState(byte[] state)
Store the state given as a byte buffer to the filesystem. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.lang.String DATA
public static final java.lang.String DIR_SUFFIX
Constructor Detail |
public FileCacheLoader()
Method Detail |
public void setConfig(java.util.Properties props)
CacheLoader
Service.create()
and Service.start()
setConfig
in interface CacheLoader
props
- A list of properties, defined in the XML filepublic void setCache(TreeCache c)
CacheLoader
setCache
in interface CacheLoader
c
- The cache on which this loader workspublic 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
public java.util.Set getChildrenNames(Fqn fqn) throws java.lang.Exception
CacheLoader
getChildrenNames
in interface CacheLoader
fqn
- The FQN of the parent
java.lang.Exception
public java.lang.Object get(Fqn fqn, java.lang.Object key) throws java.lang.Exception
CacheLoader
get
in interface CacheLoader
fqn
-
java.lang.Exception
public java.util.Map get(Fqn fqn) throws java.lang.Exception
CacheLoader
get
in interface CacheLoader
fqn
-
public boolean exists(Fqn fqn) throws java.lang.Exception
CacheLoader
exists
in interface CacheLoader
fqn
-
java.lang.Exception
public java.lang.Object put(Fqn fqn, java.lang.Object key, java.lang.Object value) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
java.lang.Exception
public void put(Fqn fqn, java.util.Map attributes) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
fqn
- The fully qualified name of the nodeattributes
- A Map of attributes. Can be null
java.lang.Exception
public void put(Fqn fqn, java.util.Map attributes, boolean erase) throws java.lang.Exception
java.lang.Exception
public void put(java.util.List modifications) throws java.lang.Exception
CacheLoader
put
in interface CacheLoader
modifications
- Listjava.lang.Exception
public java.lang.Object remove(Fqn fqn, java.lang.Object key) throws java.lang.Exception
CacheLoader
remove
in interface CacheLoader
java.lang.Exception
public void remove(Fqn fqn) throws java.lang.Exception
CacheLoader
remove
in interface CacheLoader
java.lang.Exception
public void removeData(Fqn fqn) throws java.lang.Exception
CacheLoader
removeData
in interface CacheLoader
fqn
-
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 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 CacheLoader
tx
-
java.lang.Exception
public void rollback(java.lang.Object tx)
CacheLoader
tx
and roll back that transaction
rollback
in interface CacheLoader
tx
- public byte[] loadEntireState() throws java.lang.Exception
loadEntireState
in interface CacheLoader
java.lang.Exception
public void storeEntireState(byte[] state) throws java.lang.Exception
storeEntireState
in interface CacheLoader
state
-
java.lang.Exception
protected void loadStateFromFilessystem(Fqn fqn, java.io.ObjectOutputStream out) throws java.lang.Exception
fqn
- Start nodeout
-
java.lang.Exception
protected java.util.Map loadAttributes(Fqn fqn) throws java.lang.Exception
java.lang.Exception
protected void storeAttributes(Fqn fqn, java.util.Map attrs) throws java.lang.Exception
java.lang.Exception
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |