|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--anthill.storage.impl.LRUKeyStorage
Implementation of an LRU based key storage. This is a wrapper class for storing resources based on using a key to access the resources.
| Field Summary | |
protected Factory |
factory
Factory used to instantiate objects |
protected HashList |
list
HashList use to implement the LRU policy of the LRU key storage. |
protected String |
name
Name used to identify this component in the factory |
static String |
PAR_STORAGENAME
The identifier of the configuration parameter |
protected GenericStorage |
storage
A generic storage. |
| Fields inherited from interface anthill.storage.Storage |
DOC_STORAGE, PHR_STORAGE, URL_STORAGE |
| Constructor Summary | |
LRUKeyStorage()
|
|
LRUKeyStorage(Factory factory,
String name)
|
|
| Method Summary | |
void |
addResource(Object key,
Resource resource)
Adds a resource to the storage and associates it to the specified key. |
void |
clear()
Restore the object to its initial state |
boolean |
containsResource(Object key)
Returns true if the resource associated to key is contained in
the storage, false otherwise. |
long |
getCapacity()
Returns the initial capacity of this generic storage. |
long |
getRemainingCapacity()
Returns the remaining capacity of this generic storage. |
Resource |
getResource(Object key)
Returns the resource associated with the specified key. |
Iterator |
iterator()
Returns the complete set of resources stored in this storage object using an iterator. |
void |
removeResource(Object key)
Removes the resource associated with the specified key from the storage. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final String PAR_STORAGENAME
protected Factory factory
protected String name
protected GenericStorage storage
protected HashList list
| Constructor Detail |
public LRUKeyStorage()
public LRUKeyStorage(Factory factory,
String name)
factory - the factory to be used to read configuration arguments
and to create other configurable objectsname - the name that is associated to this instance in the
configuration file| Method Detail |
public void clear()
clear in interface Clearablepublic boolean containsResource(Object key)
key is contained in
the storage, false otherwise.
containsResource in interface GenericStoragekey - the key to be searched
key is contained in
the storagepublic Resource getResource(Object key)
getResource in interface GenericStoragekey - whose associated resource to retreive.
public void addResource(Object key,
Resource resource)
throws CapacityException
CapacityException is thrown
containing information about the remaining capacity. Method
size() may be invoked on the resource
to determine the amount of space required by the resource.
In order to be stored on persistent storage, resource must
implement the Serializable interface.
addResource in interface GenericStoragekey - the key identifying the resourceresource - the resource to be added
CapacityException - raised if the given resource object
exceeds the total available capacity for this storage.public void removeResource(Object key)
removeResource in interface GenericStoragekey - the identifier of the resource to be removedpublic Iterator iterator()
iterator in interface GenericStoragepublic long getCapacity()
getCapacity in interface GenericStoragepublic long getRemainingCapacity()
getRemainingCapacity in interface GenericStorage
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||