Package org.jivesoftware.openfire.pubsub
Interface PubSubPersistenceProvider
- All Known Implementing Classes:
CachingPubsubPersistenceProvider,DefaultPubSubPersistenceProvider,InMemoryPubSubPersistenceProvider
public interface PubSubPersistenceProvider
Defines an implementation responsible for persisting pubsub-related data
to a backend data store.
- Author:
- Guus der Kinderen, guus.der.kinderen@gmail.com
-
Method Summary
Modifier and TypeMethodDescriptionvoidbulkPublishedItems(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.UniqueIdentifier serviceIdentifier, 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.findDirectlySubscribedNodes(org.xmpp.packet.JID address) Returns identifiers for all pubsub nodes to which the provided address is a direct subscriber.default PublishedItemgetLastPublishedItem(LeafNode node) Fetches the last published item (by creation date) for the specified node.getPublishedItem(LeafNode node, PublishedItem.UniqueIdentifier itemIdentifier) Fetches a published item (by ID) for a node.getPublishedItems(LeafNode node) Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().getPublishedItems(LeafNode node, int maxRows) Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems().voidStarts the provider.loadDefaultConfiguration(PubSubService.UniqueIdentifier serviceIdentifier, 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.loadPEPServiceFromDB(org.xmpp.packet.JID jid) Loads a PEP service from the database, if it exists.voidloadSubscription(Node node, String subId) Loads a subscription from the database, storing it in the provided node.voidDeletes all published items of a node.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.voidRemoves the specified published item from the DB.voidremoveSubscription(NodeSubscription subscription) Removes the subscription of the user from the DB.voidCreates and stores the published item in the database.voidshutdown()Stops the provider.voidupdateAffiliation(Node node, NodeAffiliate affiliate) Updates an affiliation of the user in the node.voidupdateDefaultConfiguration(PubSubService.UniqueIdentifier serviceIdentifier, 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 Details
-
initialize
void initialize()Starts the provider. This method is invoked before the provider is used to interact with the backend datastore. -
shutdown
void shutdown()Stops the provider. This method is invoked when the system is to be shut down. The provider should not be used after this method is invoked. -
createNode
Schedules the node to be created in the database.- Parameters:
node- The newly created node.
-
updateNode
Schedules the node to be updated in the database.- Parameters:
node- The updated node.
-
removeNode
Schedules the node to be removed in the database.- Parameters:
node- The node that is being deleted.
-
loadNodes
Loads all nodes from the database and adds them to the PubSub service.- Parameters:
service- the pubsub service that is hosting the nodes.
-
loadNode
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
Loads a subscription from the database, storing it in the provided node.- Parameters:
node- The node for which a subscription is to be loaded from the database.subId- The identifier of the subscription that is to be loaded from the database.
-
findDirectlySubscribedNodes
@Nonnull Set<Node.UniqueIdentifier> findDirectlySubscribedNodes(@Nonnull org.xmpp.packet.JID address) Returns identifiers for all pubsub nodes to which the provided address is a direct subscriber. Note that the results do not include nodes to which the provided address is a subscriber through inheritance! The result can include root nodes, (other) collection nodes as well as leaf nodes. When a node is subscribed to using a full JID, that node will be returned only if the address used as an argument in this method matches that full JID. If the node was subscribed to using a bare JID, it will be returned when the provided argument's bare JID representation matches the JID used for the subscription.- Parameters:
address- The address (bare of full JID) for which to return nodes.- Returns:
- A collection of node identifiers, possibly empty.
-
createAffiliation
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
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
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
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
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
Removes the subscription of the user from the DB.- Parameters:
subscription- The existing subscription of the user to the node.
-
savePublishedItem
Creates and stores the published item in the database. When an item with the same ID was previously saved, this item will be replaced by the new item.- Parameters:
item- The published item to save.
-
removePublishedItem
Removes the specified published item from the DB.- Parameters:
item- The published item to delete.
-
loadDefaultConfiguration
DefaultNodeConfiguration loadDefaultConfiguration(PubSubService.UniqueIdentifier serviceIdentifier, boolean isLeafType) Loads from the database the default node configuration for the specified node type and pubsub service.- Parameters:
serviceIdentifier- Identifier of the serviceisLeafType- 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.UniqueIdentifier serviceIdentifier, DefaultNodeConfiguration config) Creates a new default node configuration for the specified service.- Parameters:
serviceIdentifier- Identifier of the serviceconfig- the default node configuration to create in the database.
-
updateDefaultConfiguration
void updateDefaultConfiguration(PubSubService.UniqueIdentifier serviceIdentifier, DefaultNodeConfiguration config) Updates the default node configuration for the specified service.- Parameters:
serviceIdentifier- Identifier of the serviceconfig- the default node configuration to update in the database.
-
getPublishedItems
Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems(). Results are ordered by creation date.- Parameters:
node- the leaf node to load its published items.
-
getPublishedItems
Fetches all the results for the specified node, limited byLeafNode.getMaxPublishedItems(). Results are ordered by creation date.- Parameters:
node- the leaf node to load its published items.
-
getLastPublishedItem
Fetches the last published item (by creation date) for the specified node.- Parameters:
node- the leaf node to load its last published items.
-
getPublishedItem
Fetches a published item (by ID) for a node.- Parameters:
node- The node for which to get a published item.itemIdentifier- The unique identifier of the item to fetch.- Returns:
- The item, or null if no item was found.
-
purgeNode
Deletes all published items of a node.- Parameters:
leafNode- the node for which to delete all published items.
-
loadPEPServiceFromDB
Loads a PEP service from the database, if it exists. Note that the returned service is not yet initialized!- Parameters:
jid- the JID of the owner of the PEP service.- Returns:
- the loaded PEP service, or null if not found.
-
bulkPublishedItems
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.
-