Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3348 from intelfx/fix-sortedcontainers
Browse files Browse the repository at this point in the history
federation/send_queue.py: fix usage of sortedcontainers.SortedDict
  • Loading branch information
hawkowl authored Jun 6, 2018
2 parents 304bb22 + c88d50a commit d8db6d9
Showing 1 changed file with 22 additions and 27 deletions.
49 changes: 22 additions & 27 deletions synapse/federation/send_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _clear_queue(self):
now = self.clock.time_msec()

keys = self.pos_time.keys()
time = keys.bisect_left(now - FIVE_MINUTES_AGO)
time = self.pos_time.bisect_left(now - FIVE_MINUTES_AGO)
if not keys[:time]:
return

Expand All @@ -113,7 +113,7 @@ def _clear_queue_before_pos(self, position_to_delete):
with Measure(self.clock, "send_queue._clear"):
# Delete things out of presence maps
keys = self.presence_changed.keys()
i = keys.bisect_left(position_to_delete)
i = self.presence_changed.bisect_left(position_to_delete)
for key in keys[:i]:
del self.presence_changed[key]

Expand All @@ -131,7 +131,7 @@ def _clear_queue_before_pos(self, position_to_delete):

# Delete things out of keyed edus
keys = self.keyed_edu_changed.keys()
i = keys.bisect_left(position_to_delete)
i = self.keyed_edu_changed.bisect_left(position_to_delete)
for key in keys[:i]:
del self.keyed_edu_changed[key]

Expand All @@ -145,19 +145,19 @@ def _clear_queue_before_pos(self, position_to_delete):

# Delete things out of edu map
keys = self.edus.keys()
i = keys.bisect_left(position_to_delete)
i = self.edus.bisect_left(position_to_delete)
for key in keys[:i]:
del self.edus[key]

# Delete things out of failure map
keys = self.failures.keys()
i = keys.bisect_left(position_to_delete)
i = self.failures.bisect_left(position_to_delete)
for key in keys[:i]:
del self.failures[key]

# Delete things out of device map
keys = self.device_messages.keys()
i = keys.bisect_left(position_to_delete)
i = self.device_messages.bisect_left(position_to_delete)
for key in keys[:i]:
del self.device_messages[key]

Expand Down Expand Up @@ -250,13 +250,12 @@ def get_replication_rows(self, from_token, to_token, limit, federation_ack=None)
self._clear_queue_before_pos(federation_ack)

# Fetch changed presence
keys = self.presence_changed.keys()
i = keys.bisect_right(from_token)
j = keys.bisect_right(to_token) + 1
i = self.presence_changed.bisect_right(from_token)
j = self.presence_changed.bisect_right(to_token) + 1
dest_user_ids = [
(pos, user_id)
for pos in keys[i:j]
for user_id in self.presence_changed[pos]
for pos, user_id_list in self.presence_changed.items()[i:j]
for user_id in user_id_list
]

for (key, user_id) in dest_user_ids:
Expand All @@ -265,13 +264,12 @@ def get_replication_rows(self, from_token, to_token, limit, federation_ack=None)
)))

# Fetch changes keyed edus
keys = self.keyed_edu_changed.keys()
i = keys.bisect_right(from_token)
j = keys.bisect_right(to_token) + 1
i = self.keyed_edu_changed.bisect_right(from_token)
j = self.keyed_edu_changed.bisect_right(to_token) + 1
# We purposefully clobber based on the key here, python dict comprehensions
# always use the last value, so this will correctly point to the last
# stream position.
keyed_edus = {self.keyed_edu_changed[k]: k for k in keys[i:j]}
keyed_edus = {v: k for k, v in self.keyed_edu_changed.items()[i:j]}

for ((destination, edu_key), pos) in iteritems(keyed_edus):
rows.append((pos, KeyedEduRow(
Expand All @@ -280,19 +278,17 @@ def get_replication_rows(self, from_token, to_token, limit, federation_ack=None)
)))

# Fetch changed edus
keys = self.edus.keys()
i = keys.bisect_right(from_token)
j = keys.bisect_right(to_token) + 1
edus = ((k, self.edus[k]) for k in keys[i:j])
i = self.edus.bisect_right(from_token)
j = self.edus.bisect_right(to_token) + 1
edus = self.edus.items()[i:j]

for (pos, edu) in edus:
rows.append((pos, EduRow(edu)))

# Fetch changed failures
keys = self.failures.keys()
i = keys.bisect_right(from_token)
j = keys.bisect_right(to_token) + 1
failures = ((k, self.failures[k]) for k in keys[i:j])
i = self.failures.bisect_right(from_token)
j = self.failures.bisect_right(to_token) + 1
failures = self.failures.items()[i:j]

for (pos, (destination, failure)) in failures:
rows.append((pos, FailureRow(
Expand All @@ -301,10 +297,9 @@ def get_replication_rows(self, from_token, to_token, limit, federation_ack=None)
)))

# Fetch changed device messages
keys = self.device_messages.keys()
i = keys.bisect_right(from_token)
j = keys.bisect_right(to_token) + 1
device_messages = {self.device_messages[k]: k for k in keys[i:j]}
i = self.device_messages.bisect_right(from_token)
j = self.device_messages.bisect_right(to_token) + 1
device_messages = {v: k for k, v in self.device_messages.items()[i:j]}

for (destination, pos) in iteritems(device_messages):
rows.append((pos, DeviceRow(
Expand Down

0 comments on commit d8db6d9

Please sign in to comment.