Class SimpleTransientStore
- java.lang.Object
-
- org.nuxeo.ecm.core.transientstore.AbstractTransientStore
-
- org.nuxeo.ecm.core.transientstore.SimpleTransientStore
-
- All Implemented Interfaces:
TransientStore
,TransientStoreProvider
public class SimpleTransientStore extends AbstractTransientStore
Default implementation (i.e., not cluster aware) of theTransientStore
. UsesStorageEntry
as a representation of an entry in the store.- Since:
- 7.2
-
-
Field Summary
Fields Modifier and Type Field Description protected com.google.common.cache.Cache<String,Serializable>
l1Cache
protected com.google.common.cache.Cache<String,Serializable>
l2Cache
protected Log
log
protected AtomicLong
storageSize
-
Fields inherited from class org.nuxeo.ecm.core.transientstore.AbstractTransientStore
cacheDir, config
-
-
Constructor Summary
Constructors Constructor Description SimpleTransientStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected long
decrementStorageSize(long size)
boolean
exists(String key)
Returnstrue
if an entry exists with the givenkey
.List<Blob>
getBlobs(String key)
Gets the blobs associated with the entry with the givenkey
.com.google.common.cache.Cache<String,Serializable>
getL1Cache()
com.google.common.cache.Cache<String,Serializable>
getL2Cache()
Serializable
getParameter(String key, String parameter)
Gets the value ofparameter
in the entry with the givenkey
.Map<String,Serializable>
getParameters(String key)
Gets values of the parameters in the entry with the givenkey
.long
getSize(String key)
Returns the size of the blobs associated with the entry with the givenkey
or-1
if entry does not exist.protected StorageEntry
getStorageEntry(String key)
long
getStorageSize()
Returns the size (in bytes) of the disk storage used for blobs.protected long
incrementStorageSize(long size)
void
init(TransientStoreConfig config)
Initializes the store from the givenconfig
.boolean
isCompleted(String key)
Returnstrue
if the entry with the givenkey
is ready.Set<String>
keySet()
Returns the set of keys for all entries.Stream<String>
keyStream()
Returns aStream
of keys for all entries.protected void
persistBlobs(String key, long sizeOfBlobs, List<Map<String,String>> blobInfos)
Updates the total storage size and the storage size of the entry with the givenkey
according tosizeOfBlobs
and stores the blob information in this entry.void
putParameter(String key, String parameter, Serializable value)
Setsparameter
tovalue
in the entry with the givenkey
.void
putParameters(String key, Map<String,Serializable> parameters)
Putsparameters
in the entry with the givenkey
.protected void
putStorageEntry(String key, StorageEntry entry)
Stores the givenentry
with the givenkey
.void
release(String key)
Informs the store that the entry with the givenkey
can be released if TTL or GC parameters require to do some cleanup.protected void
removeAllEntries()
protected void
removeEntry(String key)
void
setCompleted(String key, boolean completed)
Marks the entry with the givenkey
as ready.protected void
setStorageSize(long newSize)
Sets the size of the disk storage in bytes.void
shutdown()
Shuts down the store.-
Methods inherited from class org.nuxeo.ecm.core.transientstore.AbstractTransientStore
doGC, getCacheDir, getCachingDirectory, getCachingDirName, getFilePathSize, getKeyCachingDirName, getSizeOfBlobs, loadBlobs, putBlobs, remove, removeAll, removeBlobs, storeBlobs
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.ecm.core.transientstore.api.TransientStoreProvider
getStorageSizeMB
-
-
-
-
Field Detail
-
log
protected Log log
-
l1Cache
protected com.google.common.cache.Cache<String,Serializable> l1Cache
-
l2Cache
protected com.google.common.cache.Cache<String,Serializable> l2Cache
-
storageSize
protected AtomicLong storageSize
-
-
Method Detail
-
init
public void init(TransientStoreConfig config)
Description copied from interface:TransientStoreProvider
Initializes the store from the givenconfig
.- Specified by:
init
in interfaceTransientStoreProvider
- Overrides:
init
in classAbstractTransientStore
-
shutdown
public void shutdown()
Description copied from interface:TransientStoreProvider
Shuts down the store.- Specified by:
shutdown
in interfaceTransientStoreProvider
- Specified by:
shutdown
in classAbstractTransientStore
-
exists
public boolean exists(String key)
Description copied from interface:TransientStore
Returnstrue
if an entry exists with the givenkey
.- Specified by:
exists
in interfaceTransientStore
- Specified by:
exists
in classAbstractTransientStore
-
keySet
public Set<String> keySet()
Description copied from interface:TransientStoreProvider
Returns the set of keys for all entries.
-
keyStream
public Stream<String> keyStream()
Description copied from interface:TransientStoreProvider
Returns aStream
of keys for all entries.
-
putParameter
public void putParameter(String key, String parameter, Serializable value)
Description copied from interface:TransientStore
Setsparameter
tovalue
in the entry with the givenkey
.If entry does not exist a new entry is created. If
parameter
already exists in the entry it is overwritten.- Specified by:
putParameter
in interfaceTransientStore
- Specified by:
putParameter
in classAbstractTransientStore
-
getParameter
public Serializable getParameter(String key, String parameter)
Description copied from interface:TransientStore
Gets the value ofparameter
in the entry with the givenkey
.Returns
null
if entry or parameter does not exist.- Specified by:
getParameter
in interfaceTransientStore
- Specified by:
getParameter
in classAbstractTransientStore
-
putParameters
public void putParameters(String key, Map<String,Serializable> parameters)
Description copied from interface:TransientStore
Putsparameters
in the entry with the givenkey
. Overwrites any existing parameter in the entry.If entry does not exist a new entry is created.
- Specified by:
putParameters
in interfaceTransientStore
- Specified by:
putParameters
in classAbstractTransientStore
-
getParameters
public Map<String,Serializable> getParameters(String key)
Description copied from interface:TransientStore
Gets values of the parameters in the entry with the givenkey
.Returns
null
if entry does not exist.- Specified by:
getParameters
in interfaceTransientStore
- Specified by:
getParameters
in classAbstractTransientStore
-
getBlobs
public List<Blob> getBlobs(String key)
Description copied from interface:TransientStore
Gets the blobs associated with the entry with the givenkey
.Returns
null
if entry does not exist.- Specified by:
getBlobs
in interfaceTransientStore
- Specified by:
getBlobs
in classAbstractTransientStore
-
getSize
public long getSize(String key)
Description copied from interface:TransientStore
Returns the size of the blobs associated with the entry with the givenkey
or-1
if entry does not exist.- Specified by:
getSize
in interfaceTransientStore
- Specified by:
getSize
in classAbstractTransientStore
-
isCompleted
public boolean isCompleted(String key)
Description copied from interface:TransientStore
Returnstrue
if the entry with the givenkey
is ready.- Specified by:
isCompleted
in interfaceTransientStore
- Specified by:
isCompleted
in classAbstractTransientStore
-
setCompleted
public void setCompleted(String key, boolean completed)
Description copied from interface:TransientStore
Marks the entry with the givenkey
as ready.If entry does not exist a new entry is created.
- Specified by:
setCompleted
in interfaceTransientStore
- Specified by:
setCompleted
in classAbstractTransientStore
-
release
public void release(String key)
Description copied from interface:TransientStore
Informs the store that the entry with the givenkey
can be released if TTL or GC parameters require to do some cleanup.Has no effect if entry does not exist.
- Specified by:
release
in interfaceTransientStore
- Specified by:
release
in classAbstractTransientStore
-
persistBlobs
protected void persistBlobs(String key, long sizeOfBlobs, List<Map<String,String>> blobInfos)
Description copied from class:AbstractTransientStore
Updates the total storage size and the storage size of the entry with the givenkey
according tosizeOfBlobs
and stores the blob information in this entry.- Specified by:
persistBlobs
in classAbstractTransientStore
-
getStorageSize
public long getStorageSize()
Description copied from interface:TransientStoreProvider
Returns the size (in bytes) of the disk storage used for blobs.- Returns:
- the number of bytes used by stored blobs
-
setStorageSize
protected void setStorageSize(long newSize)
Description copied from class:AbstractTransientStore
Sets the size of the disk storage in bytes.- Specified by:
setStorageSize
in classAbstractTransientStore
-
incrementStorageSize
protected long incrementStorageSize(long size)
- Specified by:
incrementStorageSize
in classAbstractTransientStore
-
decrementStorageSize
protected long decrementStorageSize(long size)
- Specified by:
decrementStorageSize
in classAbstractTransientStore
-
removeEntry
protected void removeEntry(String key)
- Specified by:
removeEntry
in classAbstractTransientStore
-
removeAllEntries
protected void removeAllEntries()
- Specified by:
removeAllEntries
in classAbstractTransientStore
-
getL1Cache
public com.google.common.cache.Cache<String,Serializable> getL1Cache()
-
getL2Cache
public com.google.common.cache.Cache<String,Serializable> getL2Cache()
-
getStorageEntry
protected StorageEntry getStorageEntry(String key)
-
putStorageEntry
protected void putStorageEntry(String key, StorageEntry entry)
Stores the givenentry
with the givenkey
.If an entry exists with the given
key
it is overwritten.
-
-