]> git.decadent.org.uk Git - dak.git/blobdiff - tea
* templates/lisa.bxa_notification: Fix some grammatical errors. Encourage contact...
[dak.git] / tea
diff --git a/tea b/tea
index bf163f18935c589699357c8b1d446bc299b49299..1d4c62df85d56023959e368fd694287821b28f4f 100755 (executable)
--- a/tea
+++ b/tea
@@ -2,7 +2,7 @@
 
 # Sanity check the database
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: tea,v 1.12 2001-09-27 01:23:41 troup Exp $
+# $Id: tea,v 1.16 2002-02-12 23:14:58 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -25,9 +25,9 @@
 
 ################################################################################
 
-import pg, sys, os, string, stat
+import pg, sys, os, string, stat, time
 import utils, db_access
-import apt_pkg;
+import apt_pkg, apt_inst;
 
 ################################################################################
 
@@ -36,8 +36,13 @@ projectB = None;
 db_files = {};
 waste = 0.0;
 excluded = {};
+current_file = None;
+future_files = {};
+current_time = time.time();
 
-def process_dir (arg, dirname, filenames):
+################################################################################
+
+def process_dir (unused, dirname, filenames):
     global waste, db_files, excluded;
 
     if string.find(dirname, '/disks-') != -1 or string.find(dirname, 'upgrade-') != -1:
@@ -51,6 +56,7 @@ def process_dir (arg, dirname, filenames):
         if os.path.isfile(filename) and not os.path.islink(filename) and not db_files.has_key(filename) and not excluded.has_key(filename):
             waste = waste + os.stat(filename)[stat.ST_SIZE];
             print filename
+
 ################################################################################
 
 def check_files():
@@ -61,14 +67,14 @@ def check_files():
     q = projectB.query("SELECT l.path, f.filename FROM files f, location l WHERE f.location = l.id")
     ql = q.getresult();
 
-    db_files = {};
+    db_files.clear();
     for i in ql:
        filename = os.path.abspath(i[0] + i[1]);
         db_files[filename] = "";
         if os.access(filename, os.R_OK) == 0:
             utils.warn("'%s' doesn't exist." % (filename));
 
-    file = utils.open_file(Cnf["Dir::OverrideDir"]+'override.unreferenced','r');
+    file = utils.open_file(Cnf["Dir::OverrideDir"]+'override.unreferenced');
     for filename in file.readlines():
         filename = filename[:-1];
         excluded[filename] = "";
@@ -90,7 +96,7 @@ def check_dscs():
             continue;
         component = string.lower(component);
         list_filename = '%s%s_%s_source.list' % (Cnf["Dir::ListsDir"], suite, component);
-        list_file = utils.open_file(list_filename, 'r');
+        list_file = utils.open_file(list_filename);
         for line in list_file.readlines():
             file = line[:-1];
             try:
@@ -168,7 +174,7 @@ def check_md5sums():
         db_md5sum = i[2];
         db_size = int(i[3]);
         try:
-            file = utils.open_file(filename, 'r');
+            file = utils.open_file(filename);
         except:
             utils.warn("can't open '%s'." % (filename));
             continue;
@@ -181,28 +187,59 @@ def check_md5sums():
 
     print "Done."
 
+################################################################################
+#
+# Check all files for timestamps in the future; common from hardware
+# (e.g. alpha) which have far-future dates as their default dates.
+
+
+
+def Ent(Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
+    global future_files;
+
+    if MTime > current_time:
+        future_files[current_file] = MTime;
+        print "%s: %s '%s','%s',%u,%u,%u,%u,%u,%u,%u" % (current_file, Kind,Name,Link,Mode,UID,GID,Size, MTime, Major, Minor);
+
+def check_timestamps():
+    global current_file;
+
+    q = projectB.query("SELECT l.path, f.filename FROM files f, location l WHERE f.location = l.id AND f.filename ~ '.deb$'")
+    ql = q.getresult();
+    db_files.clear();
+    count = 0;
+    for i in ql:
+       filename = os.path.abspath(i[0] + i[1]);
+        if os.access(filename, os.R_OK):
+            file = utils.open_file(filename);
+            current_file = filename;
+            sys.stderr.write("Processing %s.\n" % (filename));
+            apt_inst.debExtract(file,Ent,"control.tar.gz");
+            file.seek(0);
+            apt_inst.debExtract(file,Ent,"data.tar.gz");
+            count = count + 1;
+    print "Checked %d files (out of %d)." % (count, len(db_files.keys()));
+
 ################################################################################
 
 def main ():
     global Cnf, projectB, db_files, waste, excluded;
 
-    apt_pkg.init();
-
-    Cnf = apt_pkg.newConfiguration();
-    apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
+    Cnf = utils.get_conf()
 
     apt_pkg.ParseCommandLine(Cnf,[],sys.argv);
     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
     db_access.init(Cnf, projectB);
 
     #check_md5sums();
-    check_source_in_one_dir();
+    #check_source_in_one_dir();
     #check_override();
     #check_dscs();
     #check_files();
+    check_timestamps();
 
 #######################################################################################
 
 if __name__ == '__main__':
-    main()
+    main();