This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Atomically persit push actions when we persist the event #568
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,7 @@ | |
|
||
|
||
class EventPushActionsStore(SQLBaseStore): | ||
@defer.inlineCallbacks | ||
def set_push_actions_for_event_and_users(self, event, tuples): | ||
def _set_push_actions_for_event_and_users(self, txn, event, tuples): | ||
""" | ||
:param event: the event set actions for | ||
:param tuples: list of tuples of (user_id, profile_tag, actions) | ||
|
@@ -44,18 +43,12 @@ def set_push_actions_for_event_and_users(self, event, tuples): | |
'highlight': 1 if _action_has_highlight(actions) else 0, | ||
}) | ||
|
||
def f(txn): | ||
for uid, _, __ in tuples: | ||
txn.call_after( | ||
self.get_unread_event_push_actions_by_room_for_user.invalidate_many, | ||
(event.room_id, uid) | ||
) | ||
return self._simple_insert_many_txn(txn, "event_push_actions", values) | ||
|
||
yield self.runInteraction( | ||
"set_actions_for_event_and_users", | ||
f, | ||
) | ||
for uid, _, __ in tuples: | ||
txn.call_after( | ||
self.get_unread_event_push_actions_by_room_for_user.invalidate_many, | ||
(event.room_id, uid) | ||
) | ||
self._simple_insert_many_txn(txn, "event_push_actions", values) | ||
|
||
@cachedInlineCallbacks(num_args=3, lru=True, tree=True) | ||
def get_unread_event_push_actions_by_room_for_user( | ||
|
@@ -107,21 +100,15 @@ def _get_unread_event_push_actions_by_room(txn): | |
) | ||
defer.returnValue(ret) | ||
|
||
@defer.inlineCallbacks | ||
def remove_push_actions_for_event_id(self, room_id, event_id): | ||
def f(txn): | ||
# Sad that we have to blow away the cache for the whole room here | ||
txn.call_after( | ||
self.get_unread_event_push_actions_by_room_for_user.invalidate_many, | ||
(room_id,) | ||
) | ||
txn.execute( | ||
"DELETE FROM event_push_actions WHERE room_id = ? AND event_id = ?", | ||
(room_id, event_id) | ||
) | ||
yield self.runInteraction( | ||
"remove_push_actions_for_event_id", | ||
f | ||
def _remove_push_actions_for_event_id(self, txn, room_id, event_id): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should probably have a |
||
# Sad that we have to blow away the cache for the whole room here | ||
txn.call_after( | ||
self.get_unread_event_push_actions_by_room_for_user.invalidate_many, | ||
(room_id,) | ||
) | ||
txn.execute( | ||
"DELETE FROM event_push_actions WHERE room_id = ? AND event_id = ?", | ||
(room_id, event_id) | ||
) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe this should have a txn suffix