Browse Source

celery.task.PositionalQueue moved to celery.datastructures

Ask Solem 16 years ago
parent
commit
c229ebff72
2 changed files with 32 additions and 27 deletions
  1. 31 0
      celery/datastructures.py
  2. 1 27
      celery/task.py

+ 31 - 0
celery/datastructures.py

@@ -0,0 +1,31 @@
+from UserList import UserList
+
+
+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)
+
+        

+ 1 - 27
celery/task.py

@@ -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):