1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
"""Scheduling Utilities."""
from __future__ import absolute_import, unicode_literals
from itertools import count
from kombu.five import python_2_unicode_compatible
from .imports import symbol_by_name
__all__ = [
'FairCycle', 'priority_cycle', 'round_robin_cycle', 'sorted_cycle',
]
CYCLE_ALIASES = {
'priority': 'kombu.utils.scheduling:priority_cycle',
'round_robin': 'kombu.utils.scheduling:round_robin_cycle',
'sorted': 'kombu.utils.scheduling:sorted_cycle',
}
@python_2_unicode_compatible
class FairCycle(object):
"""Cycle between resources.
Consume from a set of resources, where each resource gets
an equal chance to be consumed from.
Arguments:
fun (Callable): Callback to call.
resources (Sequence[Any]): List of resources.
predicate (type): Exception predicate.
"""
def __init__(self, fun, resources, predicate=Exception):
self.fun = fun
self.resources = resources
self.predicate = predicate
self.pos = 0
def _next(self):
while 1:
try:
resource = self.resources[self.pos]
self.pos += 1
return resource
except IndexError:
self.pos = 0
if not self.resources:
raise self.predicate()
def get(self, callback, **kwargs):
"""Get from next resource."""
succeeded = 0
for tried in count(0): # for infinity
resource = self._next()
try:
return self.fun(resource, callback, **kwargs)
except self.predicate:
if tried >= len(self.resources) - 1:
if not succeeded:
raise
break
else:
succeeded += 1
def close(self):
"""Close cycle."""
pass
def __repr__(self):
"""``repr(cycle)``."""
return '<FairCycle: {self.pos}/{size} {self.resources}>'.format(
self=self, size=len(self.resources))
class round_robin_cycle(object):
"""Iterator that cycles between items in round-robin."""
def __init__(self, it=None):
self.items = it if it is not None else []
def update(self, it):
"""Update items from iterable."""
self.items[:] = it
def consume(self, n):
"""Consume n items."""
return self.items[:n]
def rotate(self, last_used):
"""Move most recently used item to end of list."""
items = self.items
try:
items.append(items.pop(items.index(last_used)))
except ValueError:
pass
return last_used
class priority_cycle(round_robin_cycle):
"""Cycle that repeats items in order."""
def rotate(self, last_used):
"""Unused in this implementation."""
pass
class sorted_cycle(priority_cycle):
"""Cycle in sorted order."""
def consume(self, n):
"""Consume n items."""
return sorted(self.items[:n])
def cycle_by_name(name):
"""Get cycle class by name."""
return symbol_by_name(name, CYCLE_ALIASES)
|