]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

filters: Define TaskFilter base class
authorTomas Babej <tomasbabej@gmail.com>
Sat, 8 Aug 2015 21:55:47 +0000 (23:55 +0200)
committerTomas Babej <tomasbabej@gmail.com>
Sat, 8 Aug 2015 21:55:47 +0000 (23:55 +0200)
tasklib/filters.py

index 211302fc70cb124f3ad525b22195d331ffa19b4c..7b44e9858b93bb46bb14c1308aaed07ba1935497 100644 (file)
@@ -1,7 +1,35 @@
+import abc
 from tasklib.serializing import SerializingObject
 
 
-class TaskWarriorFilter(SerializingObject):
+class TaskFilter(object):
+    """
+    Abstract base class that defines interface of a TaskFilter.
+    """
+
+    @abc.abstractmethod
+    def add_filter(self, arg):
+        """
+        Processes an non-keyword filter.
+        """
+        pass
+
+    @abc.abstractmethod
+    def add_filter_param(self, key, value):
+        """
+        Processes a keyword filter.
+        """
+        pass
+
+    @abc.abstractmethod
+    def clone(self):
+        """
+        Returns a new deep copy of itself.
+        """
+        pass
+
+
+class TaskWarriorFilter(TaskFilter, SerializingObject):
     """
     A set of parameters to filter the task list with.
     """