|
@@ -7,7 +7,7 @@ from celery.models import TaskMeta
|
|
|
from django.core.cache import cache
|
|
|
from datetime import timedelta
|
|
|
from celery.backends import default_backend
|
|
|
-from UserList import UserList
|
|
|
+from celery.datastructures import PositionQueue
|
|
|
import time
|
|
|
import uuid
|
|
|
import pickle
|
|
@@ -209,32 +209,6 @@ class Task(object):
|
|
|
return delay_task(cls.name, *args, **kwargs)
|
|
|
|
|
|
|
|
|
-class PositionQueue(UserList):
|
|
|
- """A positional queue with filled/unfilled slots."""
|
|
|
-
|
|
|
- class UnfilledPosition(object):
|
|
|
- """Describes an unfilled slot."""
|
|
|
- def __init__(self, position):
|
|
|
- self.position = position
|
|
|
-
|
|
|
- def __init__(self, length):
|
|
|
- """Initialize a position queue with ``length`` slots."""
|
|
|
- self.length = length
|
|
|
- self.data = map(self.UnfilledPosition, xrange(length))
|
|
|
-
|
|
|
- def is_full(self):
|
|
|
- """Returns ``True`` if all the positions has been filled."""
|
|
|
- return len(self) >= self.length
|
|
|
-
|
|
|
- def __len__(self):
|
|
|
- """len(self) -> number of positions filled with real values."""
|
|
|
- return len(self.filled)
|
|
|
-
|
|
|
- @property
|
|
|
- def filled(self):
|
|
|
- """Returns the filled slots as a list."""
|
|
|
- return filter(lambda v: not isinstance(v, self.UnfilledPosition),
|
|
|
- self)
|
|
|
|
|
|
|
|
|
class TaskSet(object):
|