2016-02-12 11:06:49 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2022-05-06 12:41:57 -04:00
|
|
|
import logging
|
|
|
|
from typing import Generic, Hashable, List, Set, TypeVar
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
import attr
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
T = TypeVar("T", bound=Hashable)
|
2021-09-10 12:03:18 -04:00
|
|
|
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
|
|
|
class _Entry(Generic[T]):
|
|
|
|
end_key: int
|
|
|
|
elements: Set[T] = attr.Factory(set)
|
2016-02-12 11:06:49 -05:00
|
|
|
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
class WheelTimer(Generic[T]):
|
2016-02-12 11:06:49 -05:00
|
|
|
"""Stores arbitrary objects that will be returned after their timers have
|
|
|
|
expired.
|
|
|
|
"""
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def __init__(self, bucket_size: int = 5000) -> None:
|
2016-02-12 11:06:49 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2021-09-10 12:03:18 -04:00
|
|
|
bucket_size: Size of buckets in ms. Corresponds roughly to the
|
2016-02-12 11:06:49 -05:00
|
|
|
accuracy of the timer.
|
|
|
|
"""
|
2021-09-10 12:03:18 -04:00
|
|
|
self.bucket_size: int = bucket_size
|
|
|
|
self.entries: List[_Entry[T]] = []
|
|
|
|
self.current_tick: int = 0
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def insert(self, now: int, obj: T, then: int) -> None:
|
2016-02-12 11:06:49 -05:00
|
|
|
"""Inserts object into timer.
|
|
|
|
|
|
|
|
Args:
|
2021-09-10 12:03:18 -04:00
|
|
|
now: Current time in msec
|
|
|
|
obj: Object to be inserted
|
|
|
|
then: When to return the object strictly after.
|
2016-02-12 11:06:49 -05:00
|
|
|
"""
|
|
|
|
then_key = int(then / self.bucket_size) + 1
|
2022-05-06 12:41:57 -04:00
|
|
|
now_key = int(now / self.bucket_size)
|
2016-02-18 11:33:07 -05:00
|
|
|
|
|
|
|
if self.entries:
|
|
|
|
min_key = self.entries[0].end_key
|
|
|
|
max_key = self.entries[-1].end_key
|
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
if min_key < now_key - 10:
|
|
|
|
# If we have ten buckets that are due and still nothing has
|
|
|
|
# called `fetch()` then we likely have a bug that is causing a
|
|
|
|
# memory leak.
|
|
|
|
logger.warning(
|
|
|
|
"Inserting into a wheel timer that hasn't been read from recently. Item: %s",
|
|
|
|
obj,
|
|
|
|
)
|
|
|
|
|
2016-02-18 11:33:07 -05:00
|
|
|
if then_key <= max_key:
|
|
|
|
# The max here is to protect against inserts for times in the past
|
2022-05-06 12:41:57 -04:00
|
|
|
self.entries[max(min_key, then_key) - min_key].elements.add(obj)
|
2016-02-12 11:06:49 -05:00
|
|
|
return
|
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
next_key = now_key + 1
|
2016-02-12 11:06:49 -05:00
|
|
|
if self.entries:
|
|
|
|
last_key = self.entries[-1].end_key
|
|
|
|
else:
|
|
|
|
last_key = next_key
|
|
|
|
|
|
|
|
# Handle the case when `then` is in the past and `entries` is empty.
|
|
|
|
then_key = max(last_key, then_key)
|
|
|
|
|
|
|
|
# Add empty entries between the end of the current list and when we want
|
|
|
|
# to insert. This ensures there are no gaps.
|
2019-06-20 05:32:02 -04:00
|
|
|
self.entries.extend(_Entry(key) for key in range(last_key, then_key + 1))
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
self.entries[-1].elements.add(obj)
|
2016-02-12 11:06:49 -05:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def fetch(self, now: int) -> List[T]:
|
2016-02-12 11:06:49 -05:00
|
|
|
"""Fetch any objects that have timed out
|
|
|
|
|
|
|
|
Args:
|
|
|
|
now (ms): Current time in msec
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list: List of objects that have timed out
|
|
|
|
"""
|
|
|
|
now_key = int(now / self.bucket_size)
|
|
|
|
|
2022-05-06 12:41:57 -04:00
|
|
|
ret: List[T] = []
|
2016-02-12 11:06:49 -05:00
|
|
|
while self.entries and self.entries[0].end_key <= now_key:
|
2022-05-06 12:41:57 -04:00
|
|
|
ret.extend(self.entries.pop(0).elements)
|
2016-02-12 11:06:49 -05:00
|
|
|
|
|
|
|
return ret
|
2016-02-19 04:50:54 -05:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def __len__(self) -> int:
|
2022-05-06 12:41:57 -04:00
|
|
|
return sum(len(entry.elements) for entry in self.entries)
|