public class MemRepository extends DBSRepositoryBase
Repository
.
Internally, the repository is a map from id to document object.
A document object is a JSON-like document stored as a Map recursively containing the data, see DBSDocument
for the description of the document.
Modifier and Type | Class and Description |
---|---|
protected static class |
MemRepository.MemBlobFinder |
DBSRepositoryBase.BlobFinder, DBSRepositoryBase.DBSSessionInvoker, DBSRepositoryBase.IdType, DBSRepositoryBase.TransactionContext
Modifier and Type | Field and Description |
---|---|
protected List<List<String>> |
binaryPaths |
protected static String |
NOSCROLL_ID |
protected Map<String,State> |
states
The content of the repository, a map of document id -> object.
|
blobManager, changeTokenEnabled, cm, DEBUG_UUIDS, fulltextConfiguration, idType, lockManager, repositoryName, selfRegisteredLockManager, transactionContexts, TYPE_ROOT
Constructor and Description |
---|
MemRepository(javax.resource.spi.ConnectionManager cm,
MemRepositoryDescriptor descriptor) |
Modifier and Type | Method and Description |
---|---|
static Serializable |
applyDiff(Serializable value,
State.ListDiff listDiff)
Applies a
State.ListDiff onto an array or List , and returns the resulting value. |
static void |
applyDiff(State state,
State.StateDiff stateDiff)
Applies a
State.StateDiff in-place onto a base State . |
protected static void |
applyDiff(State state,
String key,
Serializable value)
Applies a key/value diff in-place onto a base
State . |
void |
clearLockManagerCaches()
Clears any cache held by the lock manager.
|
void |
closeLockManager()
Closes the lock manager and releases resources.
|
void |
createState(State state)
Creates a document.
|
void |
deleteStates(Set<String> ids)
Deletes a set of document.
|
String |
generateNewId()
Generates a new id for a document.
|
List<DBSRepositoryBase.IdType> |
getAllowedIdTypes()
Gets the allowed id types for this DBS repository.
|
Stream<State> |
getDescendants(String rootId,
Set<String> keys)
Returns a stream of descendants from a given root document, in no particular order.
|
Stream<State> |
getDescendants(String rootId,
Set<String> keys,
int limit)
Returns a stream of descendants from a given root document, in no particular order.
|
Lock |
getLock(String id)
Gets the lock on a document.
|
protected static boolean |
hasAncestor(State state,
String id) |
boolean |
hasChild(String parentId,
String name,
Set<String> ignored)
Checks if a document has a child with the given name
|
protected void |
initBlobsPaths() |
protected void |
initRepository() |
void |
markReferencedBinaries()
Marks the binaries in use by passing them to the binary manager(s)'s GC mark() method.
|
protected void |
markReferencedBinaries(State state,
List<String> path,
int start,
DocumentBlobManager blobManager) |
protected void |
markReferencedBinary(Object value,
DocumentBlobManager blobManager) |
PartialList<Map<String,Serializable>> |
queryAndFetch(DBSExpressionEvaluator evaluator,
OrderByClause orderByClause,
boolean distinctDocuments,
int limit,
int offset,
int countUpTo)
Queries the repository for documents matching a NXQL query, and returns a projection of the documents.
|
List<State> |
queryKeyValue(String key,
Object value,
Set<String> ignored)
Queries the repository for documents having key = value.
|
List<State> |
queryKeyValue(String key1,
Object value1,
String key2,
Object value2,
Set<String> ignored)
Queries the repository for documents having key1 = value1 and key2 = value2.
|
boolean |
queryKeyValuePresence(String key,
String value,
Set<String> ignored)
Queries the repository to check if there are documents having key = value.
|
State |
readChildState(String parentId,
String name,
Set<String> ignored)
Reads the state of a child document.
|
State |
readPartialState(String id,
Collection<String> keys)
Reads the partial state of a document.
|
State |
readState(String id)
Reads the state of a document.
|
List<State> |
readStates(List<String> ids)
Reads the states of several documents.
|
Lock |
removeLock(String id,
String owner)
Removes the lock from a document.
|
ScrollResult<String> |
scroll(DBSExpressionEvaluator evaluator,
int batchSize,
int keepAliveSeconds)
Executes the given query and returns the first batch of results containing id of documents, next batch must be
requested within the
keepAliveSeconds delay. |
ScrollResult<String> |
scroll(String scrollId)
Get the next batch of results containing id of documents, the
scrollId is part of the previous
ScrollResult response. |
Lock |
setLock(String id,
Lock lock)
Sets a lock on a document.
|
void |
shutdown() |
void |
updateState(String id,
State.StateDiff diff,
DBSTransactionState.ChangeTokenUpdater changeTokenUpdater)
Updates a document.
|
getActiveSessionsCount, getBlobManager, getFulltextConfiguration, getLockManager, getLockManagerName, getName, getRootId, getSession, getSession, initLockManager, initRoot, isChangeTokenEnabled, isFulltextDisabled, newSession
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
begin, commit, createStates, rollback
canLockBeRemoved
protected static final String NOSCROLL_ID
protected Map<String,State> states
protected List<List<String>> binaryPaths
public MemRepository(javax.resource.spi.ConnectionManager cm, MemRepositoryDescriptor descriptor)
public List<DBSRepositoryBase.IdType> getAllowedIdTypes()
DBSRepositoryBase
getAllowedIdTypes
in class DBSRepositoryBase
public void shutdown()
shutdown
in interface Repository
shutdown
in class DBSRepositoryBase
protected void initRepository()
public String generateNewId()
DBSRepository
public State readState(String id)
DBSRepository
id
- the document idnull
if not foundpublic State readPartialState(String id, Collection<String> keys)
DBSRepository
id
- the document idkeys
- the keys to readnull
if not foundpublic List<State> readStates(List<String> ids)
DBSRepository
The returned states may be in a different order than the ids.
ids
- the document idsnull
if not foundpublic void createState(State state)
DBSRepository
state
- the document statepublic void updateState(String id, State.StateDiff diff, DBSTransactionState.ChangeTokenUpdater changeTokenUpdater)
DBSRepository
id
- the document iddiff
- the diff to applychangeTokenUpdater
- how to get and update the change token (may be null
)public void deleteStates(Set<String> ids)
DBSRepository
ids
- the document idspublic State readChildState(String parentId, String name, Set<String> ignored)
DBSRepository
parentId
- the parent document idname
- the name of the childignored
- a set of document ids that should not be considerednull
if not foundpublic boolean hasChild(String parentId, String name, Set<String> ignored)
DBSRepository
parentId
- the parent document idname
- the name of the childignored
- a set of document ids that should not be consideredtrue
if the child exists, false
if notpublic List<State> queryKeyValue(String key, Object value, Set<String> ignored)
DBSRepository
key
- the keyvalue
- the valueignored
- a set of document ids that should not be consideredpublic List<State> queryKeyValue(String key1, Object value1, String key2, Object value2, Set<String> ignored)
DBSRepository
key1
- the first keyvalue1
- the first valuekey2
- the second keyvalue2
- the second valueignored
- a set of document ids that should not be consideredpublic Stream<State> getDescendants(String rootId, Set<String> keys)
DBSRepository
THE STREAM MUST BE CLOSED WHEN DONE to release resources.
rootId
- the root document idkeys
- what to collect about the descendants in addition to their idsState
s; THE STREAM MUST BE CLOSED WHEN DONEpublic Stream<State> getDescendants(String rootId, Set<String> keys, int limit)
DBSRepository
THE STREAM MUST BE CLOSED WHEN DONE to release resources.
rootId
- the root document idkeys
- what to collect about the descendants in addition to their idslimit
- the maximum number of descendants to returnState
s; THE STREAM MUST BE CLOSED WHEN DONEprotected static boolean hasAncestor(State state, String id)
public boolean queryKeyValuePresence(String key, String value, Set<String> ignored)
DBSRepository
key
- the keyvalue
- the valueignored
- a set of document ids that should not be consideredtrue
if the query matches at least one document, false
if the query matches nothingpublic PartialList<Map<String,Serializable>> queryAndFetch(DBSExpressionEvaluator evaluator, OrderByClause orderByClause, boolean distinctDocuments, int limit, int offset, int countUpTo)
DBSRepository
evaluator
- the map-based evaluator for the queryorderByClause
- an ORDER BY clausedistinctDocuments
- true
if the projection should return a maximum of one row per documentlimit
- the limit on the number of documents to returnoffset
- the offset in the list of documents to returncountUpTo
- if -1
, count the total size without offset/limit.0
, don't count the total size, set it to -1
.n
, count the total number if there are less than n documents otherwise set the total size
to -2
.public ScrollResult<String> scroll(DBSExpressionEvaluator evaluator, int batchSize, int keepAliveSeconds)
DBSRepository
keepAliveSeconds
delay.public ScrollResult<String> scroll(String scrollId)
DBSRepository
scrollId
is part of the previous
ScrollResult
response.public static void applyDiff(State state, State.StateDiff stateDiff)
protected static void applyDiff(State state, String key, Serializable value)
State
.
Uses thread-safe datastructures.
public static Serializable applyDiff(Serializable value, State.ListDiff listDiff)
State.ListDiff
onto an array or List
, and returns the resulting value.
Uses thread-safe datastructures.
public Lock getLock(String id)
LockManager
If the document does not exist, null
is returned.
id
- the document idnull
when there is no lockpublic Lock setLock(String id, Lock lock)
LockManager
If the document is already locked, returns its existing lock status (there is no re-locking, LockManager.removeLock(java.lang.String, java.lang.String)
must be called first).
id
- the document idlock
- the lock to setnull
if locking succeeded, or the existing lock if locking failedpublic Lock removeLock(String id, String owner)
LockManager
The previous lock is returned.
If owner
is null
then the lock is unconditionally removed.
If owner
is not null
, it must match the existing lock owner for the lock to be removed. If it
doesn't match, the returned lock will return true
for Lock.getFailed()
.
id
- the document idnull
), with a failed flag if locking failedpublic void closeLockManager()
LockManager
public void clearLockManagerCaches()
LockManager
protected void initBlobsPaths()
initBlobsPaths
in class DBSRepositoryBase
public void markReferencedBinaries()
Repository
protected void markReferencedBinaries(State state, List<String> path, int start, DocumentBlobManager blobManager)
protected void markReferencedBinary(Object value, DocumentBlobManager blobManager)
Copyright © 2018 Nuxeo. All rights reserved.