public class FederatedDocumentStore extends Object implements DocumentStore
DocumentStore
which is used when federation is enabledConstructor and Description |
---|
FederatedDocumentStore(Connectors connectors,
SchematicDb localDb)
Creates a new instance with the given connectors and local db.
|
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(String key)
Determine whether the database contains an entry with the supplied key.
|
String |
createExternalProjection(String projectedNodeKey,
String sourceName,
String externalPath,
String alias)
Creates an external projection from the federated node with the given key, towards the external node from the given path,
from a source.
|
EditableDocument |
edit(String key,
boolean createIfMissing)
Edit the existing document at the given key after attempting to lock it first.
|
EditableDocument |
edit(String key,
boolean createIfMissing,
boolean acquireLock)
Edit the existing document at the given key, and optionally explicitly locking the entry before returning the editor.
|
SchematicEntry |
get(String key)
Get the entry with the supplied key.
|
Document |
getChildReference(String parentKey,
String childKey)
Returns a document representing a single child reference from the supplied parent to the supplied child.
|
Document |
getChildrenBlock(String key)
Returns a document representing a block of children, that has the given key.
|
ExternalBinaryValue |
getExternalBinary(String sourceName,
String id)
Retrieves a binary value which has the given id and which is not stored by ModeShape.
|
String |
getLocalSourceKey()
Returns the value of the local repository source key.
|
LocalDocumentStore |
localStore()
Returns a local store instance which will use the local Infinispan cache to store/retrieve information.
|
boolean |
lockDocuments(Collection<String> keys)
Attempts to lock all of the documents with the given keys.
|
String |
newDocumentKey(String parentKey,
Name documentName,
Name documentPrimaryType)
Generates a new key which will be assigned to a new child document when it is being added to its parent.
|
boolean |
remove(String key)
Remove the existing document at the given key.
|
void |
setLocalSourceKey(String localSourceKey)
Sets the value of the local repository source key.
|
SchematicEntry |
storeDocument(String key,
Document document)
Store the supplied document at the given key.
|
TransactionManager |
transactionManager()
Returns a transaction manager instance which can be used to manage transactions for this document store.
|
protected DocumentTranslator |
translator() |
void |
updateDocument(String key,
Document document,
SessionNode sessionNode)
Updates the content of the document at the given key with the given document.
|
XAResource |
xaResource()
Returns a resource used in distributed transactions
|
public FederatedDocumentStore(Connectors connectors, SchematicDb localDb)
connectors
- a non-null
Connectors
instancelocalDb
- a non-null
SchematicDb
instanceprotected final DocumentTranslator translator()
public LocalDocumentStore localStore()
DocumentStore
localStore
in interface DocumentStore
LocalDocumentStore
instance.public String newDocumentKey(String parentKey, Name documentName, Name documentPrimaryType)
DocumentStore
newDocumentKey
in interface DocumentStore
parentKey
- a non-null
String
, the key of the existing parentdocumentName
- non-null
Name
, the name of the new child document.documentPrimaryType
- non-null
Name
, the name of the primary type of the new
child documentString
which will be assigned as key to the new child, or null
indicating that no preferred key
is to be used. If this is the case, the repository will assign a random key.public SchematicEntry storeDocument(String key, Document document)
DocumentStore
storeDocument
in interface DocumentStore
key
- the key or identifier for the documentdocument
- the document that is to be storedpublic void updateDocument(String key, Document document, SessionNode sessionNode)
DocumentStore
updateDocument
in interface DocumentStore
key
- the key or identifier for the documentdocument
- the content with which the existing document should be updatedsessionNode
- the SessionNode
instance which contains the changes that caused the updatepublic SchematicEntry get(String key)
DocumentStore
get
in interface DocumentStore
key
- the key or identifier for the documentpublic boolean containsKey(String key)
DocumentStore
containsKey
in interface DocumentStore
key
- the key or identifier for the documentpublic boolean remove(String key)
DocumentStore
remove
in interface DocumentStore
key
- the key or identifier for the documentpublic boolean lockDocuments(Collection<String> keys)
DocumentStore
lockDocuments
in interface DocumentStore
keys
- the set of keys identifying the documents that are to be updated via
DocumentStore.updateDocument(String, Document, SessionNode)
or via DocumentStore.edit(String,boolean)
.public EditableDocument edit(String key, boolean createIfMissing)
DocumentStore
edit
in interface DocumentStore
key
- the key or identifier for the documentcreateIfMissing
- true if a new entry should be created and added to the database if an existing entry does not existpublic EditableDocument edit(String key, boolean createIfMissing, boolean acquireLock)
DocumentStore
edit
in interface DocumentStore
key
- the key or identifier for the documentcreateIfMissing
- true if a new entry should be created and added to the database if an existing entry does not exist.
Implementations are free to ignore this flag.acquireLock
- true if the lock for the entry should be obtained before returning, or false if the lock was already
obtained via DocumentStore.lockDocuments(Collection)
within the current transaction.public TransactionManager transactionManager()
DocumentStore
transactionManager
in interface DocumentStore
TransactionManager
instance, never null.public XAResource xaResource()
DocumentStore
xaResource
in interface DocumentStore
instance
or null
public void setLocalSourceKey(String localSourceKey)
DocumentStore
setLocalSourceKey
in interface DocumentStore
localSourceKey
- a non-null
stringpublic String getLocalSourceKey()
DocumentStore
getLocalSourceKey
in interface DocumentStore
non-null
stringpublic String createExternalProjection(String projectedNodeKey, String sourceName, String externalPath, String alias)
DocumentStore
createExternalProjection
in interface DocumentStore
projectedNodeKey
- a non-null
string, the key of the federated node which will contain the projectionsourceName
- a non-null
string, the name of an external source.externalPath
- a non-null
string, representing a path towards a node from the sourcealias
- a non-null
string, representing the alias given to the projection.non-null
string representing the node key of the external node located at externalPath
.public Document getChildrenBlock(String key)
DocumentStore
getChildrenBlock
in interface DocumentStore
key
- a non-null
String the key of the blockDocument
with children and possibly a pointer to the next block, or null
if there isn't a
block with such a key.public Document getChildReference(String parentKey, String childKey)
DocumentStore
getChildReference
in interface DocumentStore
parentKey
- the key for the parentchildKey
- the key for the childpublic ExternalBinaryValue getExternalBinary(String sourceName, String id)
DocumentStore
getExternalBinary
in interface DocumentStore
sourceName
- a non-null
String; the name of an external sourceid
- a non-null
String; the id of an external binary valueExternalBinaryValue
implementation or null
Copyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.