]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/srcformats.py
Use a collections.defaultdict to avoid boilerplate definitions.
[dak.git] / daklib / srcformats.py
index 51df1c60224c66ca16a0e1868bd8c60a8188c612..e454e2bd444e900a8b47ff8b786f65aeba2ad80d 100644 (file)
@@ -1,3 +1,5 @@
+import re
+
 srcformats = []
 
 class SourceFormat(type):
@@ -5,13 +7,48 @@ class SourceFormat(type):
         klass = super(SourceFormat, cls).__new__(cls, name, bases, attrs)
         srcformats.append(klass)
 
+        assert str(klass.name)
+        klass.re_format = re.compile(klass.format)
+
         return klass
 
 class FormatOne(object):
     __metaclass__ = SourceFormat
 
+    name = '1.0'
+    format = r'1.0'
+
+    @classmethod
+    def reject_msgs(cls, has):
+        if not (has['native_tar_gz'] or (has['orig_tar_gz'] and has['debian_diff'])):
+            yield "no .tar.gz or .orig.tar.gz+.diff.gz in 'Files' field."
+        if (has['orig_tar_gz'] != has['orig_tar']) or \
+           (has['native_tar_gz'] != has['native_tar']) or \
+           has['debian_tar'] or has['more_orig_tar']:
+            yield "contains source files not allowed in format %s" % cls.name
+
 class FormatThree(object):
     __metaclass__ = SourceFormat
 
+    name = '3.x (native)'
+    format = r'3\.\d+ \(native\)'
+
+    @classmethod
+    def reject_msgs(cls, has):
+        if not has['native_tar']:
+            yield "lack of required files for format %s" % cls.name
+        if has['orig_tar'] or has['debian_diff'] or has['debian_tar'] or has['more_orig_tar']:
+            yield "contains source files not allowed in format %s" % cls.name
+
 class FormatThreeQuilt(object):
     __metaclass__ = SourceFormat
+
+    name = '3.x (quilt)'
+    format = r'3\.\d+ \(quilt\)'
+
+    @classmethod
+    def reject_msgs(cls, has):
+        if not (has['orig_tar'] and has['debian_tar']):
+            yield "lack of required files for format %s" % cls.name
+        if has['debian_diff'] or has['native_tar']:
+            yield "contains source files not allowed in format %s" % cls.name