Package org.jivesoftware.openfire.pubsub
Interface PubSubPersistenceProvider
-
- All Known Implementing Classes:
CachingPubsubPersistenceProvider,DefaultPubSubPersistenceProvider,InMemoryPubSubPersistenceProvider
public interface PubSubPersistenceProviderDefines an implementation responsible for persisting pubsub-related data to a backend data store.- Author:
- Guus der Kinderen, guus.der.kinderen@gmail.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbulkPublishedItems(List<PublishedItem> addList, List<PublishedItem> delList)Writes large changesets, using batches and transactions when available.voidcreateAffiliation(Node node, NodeAffiliate affiliate)Creates a new affiliation of the user in the node.voidcreateDefaultConfiguration(PubSubService service, DefaultNodeConfiguration config)Creates a new default node configuration for the specified service.voidcreateNode(Node node)Schedules the node to be created in the database.voidcreateSubscription(Node node, NodeSubscription subscription)Adds the new subscription of the user to the node to the database.PublishedItemgetLastPublishedItem(LeafNode node)Fetches the last published item for the specified node.PublishedItemgetPublishedItem(LeafNode node, PublishedItem.UniqueIdentifier itemIdentifier)List<PublishedItem>getPublishedItems(LeafNode node)Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().List<PublishedItem>getPublishedItems(LeafNode node, int maxRows)Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().voidinitialize()DefaultNodeConfigurationloadDefaultConfiguration(PubSubService service, boolean isLeafType)Loads from the database the default node configuration for the specified node type and pubsub service.voidloadNode(PubSubService service, Node.UniqueIdentifier nodeIdentifier)Loads all nodes from the database and adds them to the PubSub service.voidloadNodes(PubSubService service)Loads all nodes from the database and adds them to the PubSub service.PEPServiceloadPEPServiceFromDB(String jid)Loads a PEP service from the database, if it exists.voidloadSubscription(PubSubService service, Node node, String subId)voidpurgeNode(LeafNode leafNode)voidremoveAffiliation(Node node, NodeAffiliate affiliate)Removes the affiliation and subscription state of the user from the DB.voidremoveNode(Node node)Schedules the node to be removed in the database.voidremovePublishedItem(PublishedItem item)Removes the specified published item from the DB.voidremoveSubscription(NodeSubscription subscription)Removes the subscription of the user from the DB.voidsavePublishedItem(PublishedItem item)Creates and stores the published item in the database.voidshutdown()voidupdateAffiliation(Node node, NodeAffiliate affiliate)Updates an affiliation of the user in the node.voidupdateDefaultConfiguration(PubSubService service, DefaultNodeConfiguration config)Updates the default node configuration for the specified service.voidupdateNode(Node node)Schedules the node to be updated in the database.voidupdateSubscription(Node node, NodeSubscription subscription)Updates the subscription of the user to the node to the database.
-
-
-
Method Detail
-
initialize
void initialize()
-
shutdown
void shutdown()
-
createNode
void createNode(Node node)
Schedules the node to be created in the database.- Parameters:
node- The newly created node.
-
updateNode
void updateNode(Node node)
Schedules the node to be updated in the database.- Parameters:
node- The updated node.
-
removeNode
void removeNode(Node node)
Schedules the node to be removed in the database.- Parameters:
node- The node that is being deleted.
-
loadNodes
void loadNodes(PubSubService service)
Loads all nodes from the database and adds them to the PubSub service.- Parameters:
service- the pubsub service that is hosting the nodes.
-
loadNode
void loadNode(PubSubService service, Node.UniqueIdentifier nodeIdentifier)
Loads all nodes from the database and adds them to the PubSub service.- Parameters:
service- the pubsub service that is hosting the nodes.nodeIdentifier- the identifier of the node to load.
-
loadSubscription
void loadSubscription(PubSubService service, Node node, String subId)
-
createAffiliation
void createAffiliation(Node node, NodeAffiliate affiliate)
Creates a new affiliation of the user in the node.- Parameters:
node- The node where the affiliation of the user was updated.affiliate- The new affiliation of the user in the node.
-
updateAffiliation
void updateAffiliation(Node node, NodeAffiliate affiliate)
Updates an affiliation of the user in the node.- Parameters:
node- The node where the affiliation of the user was updated.affiliate- The new affiliation of the user in the node.
-
removeAffiliation
void removeAffiliation(Node node, NodeAffiliate affiliate)
Removes the affiliation and subscription state of the user from the DB.- Parameters:
node- The node where the affiliation of the user was updated.affiliate- The existing affiliation and subsription state of the user in the node.
-
createSubscription
void createSubscription(Node node, NodeSubscription subscription)
Adds the new subscription of the user to the node to the database.- Parameters:
node- The node where the user has subscribed to.subscription- The new subscription of the user to the node.
-
updateSubscription
void updateSubscription(Node node, NodeSubscription subscription)
Updates the subscription of the user to the node to the database.- Parameters:
node- The node where the user has subscribed to.subscription- The new subscription of the user to the node.
-
removeSubscription
void removeSubscription(NodeSubscription subscription)
Removes the subscription of the user from the DB.- Parameters:
subscription- The existing subscription of the user to the node.
-
savePublishedItem
void savePublishedItem(PublishedItem item)
Creates and stores the published item in the database. Note that the item will be cached temporarily before being flushed asynchronously to the database. The write cache can be tuned using the following two properties:"xmpp.pubsub.flush.max" - maximum items in the cache (-1 to disable cache) "xmpp.pubsub.flush.timer" - number of seconds between cache flushes
- Parameters:
item- The published item to save.
-
removePublishedItem
void removePublishedItem(PublishedItem item)
Removes the specified published item from the DB.- Parameters:
item- The published item to delete.
-
loadDefaultConfiguration
DefaultNodeConfiguration loadDefaultConfiguration(PubSubService service, boolean isLeafType)
Loads from the database the default node configuration for the specified node type and pubsub service.- Parameters:
service- the default node configuration used by this pubsub service.isLeafType- true if loading default configuration for leaf nodes.- Returns:
- the loaded default node configuration for the specified node type and service or null if none was found.
-
createDefaultConfiguration
void createDefaultConfiguration(PubSubService service, DefaultNodeConfiguration config)
Creates a new default node configuration for the specified service.- Parameters:
service- the default node configuration used by this pubsub service.config- the default node configuration to create in the database.
-
updateDefaultConfiguration
void updateDefaultConfiguration(PubSubService service, DefaultNodeConfiguration config)
Updates the default node configuration for the specified service.- Parameters:
service- the default node configuration used by this pubsub service.config- the default node configuration to update in the database.
-
getPublishedItems
List<PublishedItem> getPublishedItems(LeafNode node)
Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().- Parameters:
node- the leaf node to load its published items.
-
getPublishedItems
List<PublishedItem> getPublishedItems(LeafNode node, int maxRows)
Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().- Parameters:
node- the leaf node to load its published items.
-
getLastPublishedItem
PublishedItem getLastPublishedItem(LeafNode node)
Fetches the last published item for the specified node.- Parameters:
node- the leaf node to load its last published items.
-
getPublishedItem
PublishedItem getPublishedItem(LeafNode node, PublishedItem.UniqueIdentifier itemIdentifier)
-
purgeNode
void purgeNode(LeafNode leafNode)
-
loadPEPServiceFromDB
PEPService loadPEPServiceFromDB(String jid)
Loads a PEP service from the database, if it exists.- Parameters:
jid- the JID of the owner of the PEP service.- Returns:
- the loaded PEP service, or null if not found.
-
bulkPublishedItems
void bulkPublishedItems(List<PublishedItem> addList, List<PublishedItem> delList)
Writes large changesets, using batches and transactions when available. The 'delete' list takes precedence over the 'add' list: when an item exists on both lists, it is removed (and not re-added) from storage To prevent duplicates to exist, this method will attempt to remove all items to-be-added, before re-adding them.- Parameters:
addList- A list of items to be added.delList- A list of items to be removed.
-
-