3 """ Produces a report on NEW and BYHAND packages """
4 # Copyright (C) 2001, 2002, 2003, 2005, 2006 James Troup <james@nocrew.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 ################################################################################
22 # <o-o> XP runs GCC, XFREE86, SSH etc etc,.,, I feel almost like linux....
23 # <o-o> I am very confident that I can replicate any Linux application on XP
24 # <willy> o-o: *boggle*
25 # <o-o> building from source.
26 # <o-o> Viiru: I already run GIMP under XP
27 # <willy> o-o: why do you capitalise the names of all pieces of software?
28 # <o-o> willy: because I want the EMPHASIZE them....
30 # <willy> o-o: it makes you look like ZIPPY the PINHEAD
31 # <o-o> willy: no idea what you are talking about.
32 # <willy> o-o: do some research
33 # <o-o> willy: for what reason?
35 ################################################################################
37 import copy, glob, os, stat, sys, time
40 from daklib import queue
41 from daklib import utils
42 from daklib.dak_exceptions import *
49 ################################################################################
51 def usage(exit_code=0):
52 print """Usage: dak queue-report
53 Prints a report of packages in queue directories (usually new and byhand).
55 -h, --help show this help and exit.
56 -8, --822 writes 822 formated output to the location set in dak.conf
57 -n, --new produce html-output
58 -s, --sort=key sort output according to key, see below.
59 -a, --age=key if using sort by age, how should time be treated?
60 If not given a default of hours will be used.
61 -d, --directories=key A comma seperated list of queues to be scanned
63 Sorting Keys: ao=age, oldest first. an=age, newest first.
64 na=name, ascending nd=name, descending
65 nf=notes, first nl=notes, last
67 Age Keys: m=minutes, h=hours, d=days, w=weeks, o=months, y=years
72 ################################################################################
80 ################################################################################
104 return "%s %s%s" % (x, unit, plural(x))
106 ################################################################################
108 def sg_compare (a, b):
111 """Sort by have note, time of oldest upload."""
113 a_note_state = a["note_state"]
114 b_note_state = b["note_state"]
115 if a_note_state < b_note_state:
117 elif a_note_state > b_note_state:
120 # Sort by time of oldest upload
121 return cmp(a["oldest"], b["oldest"])
123 ############################################################
126 for sorting in direction:
127 (sortkey, way, time) = sorting
133 x=int(a[sortkey]/3600)
134 y=int(b[sortkey]/3600)
136 x=int(a[sortkey]/86400)
137 y=int(b[sortkey]/86400)
139 x=int(a[sortkey]/604800)
140 y=int(b[sortkey]/604800)
142 x=int(a[sortkey]/2419200)
143 y=int(b[sortkey]/2419200)
145 x=int(a[sortkey]/29030400)
146 y=int(b[sortkey]/29030400)
160 ############################################################
163 print """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
164 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
165 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
167 <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8" />
168 <link type="text/css" rel="stylesheet" href="style.css" />
169 <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
171 Debian NEW and BYHAND Packages
176 <a href="http://www.debian.org/">
177 <img src="http://www.debian.org/logos/openlogo-nd-50.png"
178 alt="debian logo" /></a>
179 <a href="http://www.debian.org/">
180 <img src="http://www.debian.org/Pics/debian.png"
181 alt="Debian Project" /></a>
183 <div id="titleblock">
185 <img src="http://www.debian.org/Pics/red-upperleft.png"
186 id="red-upperleft" alt="corner image"/>
187 <img src="http://www.debian.org/Pics/red-lowerleft.png"
188 id="red-lowerleft" alt="corner image"/>
189 <img src="http://www.debian.org/Pics/red-upperright.png"
190 id="red-upperright" alt="corner image"/>
191 <img src="http://www.debian.org/Pics/red-lowerright.png"
192 id="red-lowerright" alt="corner image"/>
194 Debian NEW and BYHAND Packages
200 print "<p class=\"timestamp\">Timestamp: %s (UTC)</p>" % (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
204 <p>Hint: Age is the youngest upload of the package, if there is more than
206 You may want to look at <a href="http://ftp-master.debian.org/REJECT-FAQ.html">the REJECT-FAQ</a>
207 for possible reasons why one of the above packages may get rejected.</p>
209 <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10"
210 alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
211 <a href="http://jigsaw.w3.org/css-validator/">
212 <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss"
216 </div> </body> </html>
219 def table_header(type, source_count, total_count):
220 print "<h1>Summary for: %s</h1>" % (type)
225 print "Package count in <strong>%s</strong>: <em>%s</em> | Total Package count: <em>%s</em>" % (type, source_count, total_count)
233 <th>Distribution</th>
242 def table_footer(type):
243 print "</tbody></table>"
246 def table_row(source, version, arch, last_mod, maint, distribution, closes, fingerprint, sponsor, changedby):
251 for dist in distribution:
252 if dist == "experimental":
255 if row_number % 2 != 0:
256 print "<tr class=\"%s even\">" % (trclass)
258 print "<tr class=\"%s odd\">" % (trclass)
260 print "<td class=\"package\">%s</td>" % (source)
261 print "<td class=\"version\">"
262 for vers in version.split():
263 print "<a href=\"/new/%s_%s.html\">%s</a><br/>" % (source, utils.html_escape(vers), utils.html_escape(vers))
265 print "<td class=\"arch\">%s</td>" % (arch)
266 print "<td class=\"distribution\">"
267 for dist in distribution:
268 print "%s<br/>" % (dist)
270 print "<td class=\"age\">%s</td>" % (last_mod)
271 (name, mail) = maint.split(":", 1)
273 print "<td class=\"upload-data\">"
274 print "<span class=\"maintainer\">Maintainer: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
275 (name, mail) = changedby.split(":", 1)
276 print "<span class=\"changed-by\">Changed-By: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a></span><br/>" % (utils.html_escape(mail), utils.html_escape(name))
279 (login, domain) = sponsor.split("@", 1)
280 print "<span class=\"sponsor\">Sponsor: <a href=\"http://qa.debian.org/developer.php?login=%s\">%s</a></span>@debian.org<br/>" % (utils.html_escape(login), utils.html_escape(login))
284 print "<span class=\"signature\">Fingerprint: %s</span>" % (fingerprint)
287 print "<td class=\"closes\">"
289 print "<a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s\">#%s</a><br/>" % (utils.html_escape(close), utils.html_escape(close))
293 ############################################################
295 def process_changes_files(changes_files, type, log):
298 # Read in all the .changes files
299 for filename in changes_files:
301 Upload.pkg.changes_file = filename
304 cache[filename] = copy.copy(Upload.pkg.changes)
305 cache[filename]["filename"] = filename
308 # Divide the .changes into per-source groups
310 for filename in cache.keys():
311 source = cache[filename]["source"]
312 if not per_source.has_key(source):
313 per_source[source] = {}
314 per_source[source]["list"] = []
315 per_source[source]["list"].append(cache[filename])
316 # Determine oldest time and have note status for each source group
317 for source in per_source.keys():
318 source_list = per_source[source]["list"]
319 first = source_list[0]
320 oldest = os.stat(first["filename"])[stat.ST_MTIME]
322 for d in per_source[source]["list"]:
323 mtime = os.stat(d["filename"])[stat.ST_MTIME]
324 if Cnf.has_key("Queue-Report::Options::New"):
330 have_note += (d.has_key("process-new note"))
331 per_source[source]["oldest"] = oldest
333 per_source[source]["note_state"] = 0; # none
334 elif have_note < len(source_list):
335 per_source[source]["note_state"] = 1; # some
337 per_source[source]["note_state"] = 2; # all
338 per_source_items = per_source.items()
339 per_source_items.sort(sg_compare)
345 for i in per_source_items:
354 filename=i[1]["list"][0]["filename"]
355 last_modified = time.time()-i[1]["oldest"]
356 source = i[1]["list"][0]["source"]
357 if len(source) > max_source_len:
358 max_source_len = len(source)
361 for j in i[1]["list"]:
362 if Cnf.has_key("Queue-Report::Options::New") or Cnf.has_key("Queue-Report::Options::822"):
364 (maintainer["maintainer822"], maintainer["maintainer2047"],
365 maintainer["maintainername"], maintainer["maintaineremail"]) = \
366 utils.fix_maintainer (j["maintainer"])
367 except ParseMaintError, msg:
368 print "Problems while parsing maintainer address\n"
369 maintainer["maintainername"] = "Unknown"
370 maintainer["maintaineremail"] = "Unknown"
371 maint="%s:%s" % (maintainer["maintainername"], maintainer["maintaineremail"])
372 # ...likewise for the Changed-By: field if it exists.
374 (changeby["changedby822"], changeby["changedby2047"],
375 changeby["changedbyname"], changeby["changedbyemail"]) = \
376 utils.fix_maintainer (j["changed-by"])
377 except ParseMaintError, msg:
378 (changeby["changedby822"], changeby["changedby2047"],
379 changeby["changedbyname"], changeby["changedbyemail"]) = \
381 changedby="%s:%s" % (changeby["changedbyname"], changeby["changedbyemail"])
383 distribution=j["distribution"].keys()
384 closes=j["closes"].keys()
385 fingerprint=j["fingerprint"]
386 if j.has_key("sponsoremail"):
387 sponsor=j["sponsoremail"]
388 for arch in j["architecture"].keys():
390 version = j["version"]
391 versions[version] = ""
392 arches_list = arches.keys()
393 arches_list.sort(utils.arch_compare_sw)
394 arch_list = " ".join(arches_list)
395 version_list = " ".join(versions.keys())
396 if len(version_list) > max_version_len:
397 max_version_len = len(version_list)
398 if len(arch_list) > max_arch_len:
399 max_arch_len = len(arch_list)
400 if i[1]["note_state"]:
404 entries.append([source, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, filename])
406 # direction entry consists of "Which field, which direction, time-consider" where
407 # time-consider says how we should treat last_modified. Thats all.
409 # Look for the options for sort and then do the sort.
411 if Cnf.has_key("Queue-Report::Options::Age"):
412 age = Cnf["Queue-Report::Options::Age"]
413 if Cnf.has_key("Queue-Report::Options::New"):
414 # If we produce html we always have oldest first.
415 direction.append([4,-1,"ao"])
417 if Cnf.has_key("Queue-Report::Options::Sort"):
418 for i in Cnf["Queue-Report::Options::Sort"].split(","):
421 direction.append([4,-1,age])
424 direction.append([4,1,age])
427 direction.append([0,1,0])
430 direction.append([0,-1,0])
433 direction.append([3,1,0])
436 direction.append([3,-1,0])
437 entries.sort(lambda x, y: sortfunc(x, y))
438 # Yes, in theory you can add several sort options at the commandline with. But my mind is to small
439 # at the moment to come up with a real good sorting function that considers all the sidesteps you
440 # have with it. (If you combine options it will simply take the last one at the moment).
441 # Will be enhanced in the future.
443 if Cnf.has_key("Queue-Report::Options::822"):
444 # print stuff out in 822 format
445 for entry in entries:
446 (source, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, changes_file) = entry
448 # We'll always have Source, Version, Arch, Mantainer, and Dist
449 # For the rest, check to see if we have them, then print them out
450 log.write("Source: " + source + "\n")
451 log.write("Version: " + version_list + "\n")
452 log.write("Architectures: ")
453 log.write( (", ".join(arch_list.split(" "))) + "\n")
454 log.write("Age: " + time_pp(last_modified) + "\n")
455 log.write("Last-Modified: " + str(int(time.time()) - int(last_modified)) + "\n")
456 log.write("Queue: " + type + "\n")
458 (name, mail) = maint.split(":", 1)
459 log.write("Maintainer: " + name + " <"+mail+">" + "\n")
461 (name, mail) = changedby.split(":", 1)
462 log.write("Changed-By: " + name + " <"+mail+">" + "\n")
464 log.write("Sponsored-By: " + sponsor + "\n")
465 log.write("Distribution:")
466 for dist in distribution:
467 log.write(" " + dist)
469 log.write("Fingerprint: " + fingerprint + "\n")
473 bug_string += "#"+bugs+", "
474 log.write("Closes: " + bug_string[:-2] + "\n")
475 log.write("Changes-File: " + os.path.basename(changes_file) + "\n")
478 if Cnf.has_key("Queue-Report::Options::New"):
479 direction.append([4,1,"ao"])
480 entries.sort(lambda x, y: sortfunc(x, y))
481 # Output for a html file. First table header. then table_footer.
482 # Any line between them is then a <tr> printed from subroutine table_row.
484 total_count = len(changes_files)
485 source_count = len(per_source_items)
486 table_header(type.upper(), source_count, total_count)
487 for entry in entries:
488 (source, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, undef) = entry
489 table_row(source, version_list, arch_list, time_pp(last_modified), maint, distribution, closes, fingerprint, sponsor, changedby)
490 table_footer(type.upper())
491 elif not Cnf.has_key("Queue-Report::Options::822"):
492 # The "normal" output without any formatting.
493 format="%%-%ds | %%-%ds | %%-%ds%%s | %%s old\n" % (max_source_len, max_version_len, max_arch_len)
496 for entry in entries:
497 (source, version_list, arch_list, note, last_modified, undef, undef, undef, undef, undef, undef, undef) = entry
498 msg += format % (source, version_list, arch_list, note, time_pp(last_modified))
501 total_count = len(changes_files)
502 source_count = len(per_source_items)
507 print "%s %s source package%s / %s %s package%s in total." % (source_count, type, plural(source_count), total_count, type, plural(total_count))
511 ################################################################################
516 Cnf = utils.get_conf()
517 Arguments = [('h',"help","Queue-Report::Options::Help"),
518 ('n',"new","Queue-Report::Options::New"),
519 ('8','822',"Queue-Report::Options::822"),
520 ('s',"sort","Queue-Report::Options::Sort", "HasArg"),
521 ('a',"age","Queue-Report::Options::Age", "HasArg"),
522 ('d',"directories","Queue-Report::Options::Directories", "HasArg")]
524 if not Cnf.has_key("Queue-Report::Options::%s" % (i)):
525 Cnf["Queue-Report::Options::%s" % (i)] = ""
527 apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
529 Options = Cnf.SubTree("Queue-Report::Options")
533 Upload = queue.Upload(Cnf)
535 if Cnf.has_key("Queue-Report::Options::New"):
540 if Cnf.has_key("Queue-Report::Options::Directories"):
541 for i in Cnf["Queue-Report::Options::Directories"].split(","):
542 directories.append(i)
543 elif Cnf.has_key("Queue-Report::Directories"):
544 directories = Cnf.ValueList("Queue-Report::Directories")
546 directories = [ "byhand", "new" ]
549 if Cnf.has_key("Queue-Report::Options::822"):
550 # Open the report file
551 f = open(Cnf["Queue-Report::ReportLocations::822Location"], "w")
553 for directory in directories:
554 changes_files = glob.glob("%s/*.changes" % (Cnf["Dir::Queue::%s" % (directory)]))
555 process_changes_files(changes_files, directory, f)
557 if Cnf.has_key("Queue-Report::Options::822"):
560 if Cnf.has_key("Queue-Report::Options::New"):
563 ################################################################################
565 if __name__ == '__main__':