]> git.decadent.org.uk Git - dak.git/blob - dak/queue_report.py
Ignore more python-apt warnings.
[dak.git] / dak / queue_report.py
1 #!/usr/bin/env python
2
3 """ Produces a report on NEW and BYHAND packages """
4 # Copyright (C) 2001, 2002, 2003, 2005, 2006  James Troup <james@nocrew.org>
5
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.
10
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.
15
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
19
20 ################################################################################
21
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....
29 # <o-o> grr s/the/to/
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?
34
35 ################################################################################
36
37 import warnings
38 warnings.filterwarnings('ignore', \
39     "apt_pkg\.ParseTagFile\(\) is deprecated\. Please see apt_pkg\.TagFile\(\) for the replacement\.", \
40     DeprecationWarning)
41 warnings.filterwarnings('ignore', \
42     "Attribute '.*' of the 'apt_pkg\.TagFile' object is deprecated, use '.*' instead\.", \
43     DeprecationWarning)
44
45 ################################################################################
46
47 from copy import copy
48 import glob, os, stat, sys, time
49 import apt_pkg
50 try:
51     import rrdtool
52 except ImportError:
53     pass
54
55 from daklib import utils
56 from daklib.queue import Upload
57 from daklib.dbconn import DBConn, has_new_comment, DBChange, DBSource, get_uid_from_fingerprint
58 from daklib.textutils import fix_maintainer
59 from daklib.dak_exceptions import *
60
61 Cnf = None
62 direction = []
63 row_number = 0
64
65 ################################################################################
66
67 def usage(exit_code=0):
68     print """Usage: dak queue-report
69 Prints a report of packages in queue directories (usually new and byhand).
70
71   -h, --help                show this help and exit.
72   -8, --822                 writes 822 formated output to the location set in dak.conf
73   -n, --new                 produce html-output
74   -s, --sort=key            sort output according to key, see below.
75   -a, --age=key             if using sort by age, how should time be treated?
76                             If not given a default of hours will be used.
77   -r, --rrd=key             Directory where rrd files to be updated are stored
78   -d, --directories=key     A comma seperated list of queues to be scanned
79
80      Sorting Keys: ao=age,   oldest first.   an=age,   newest first.
81                    na=name,  ascending       nd=name,  descending
82                    nf=notes, first           nl=notes, last
83
84      Age Keys: m=minutes, h=hours, d=days, w=weeks, o=months, y=years
85
86 """
87     sys.exit(exit_code)
88
89 ################################################################################
90
91 def plural(x):
92     if x > 1:
93         return "s"
94     else:
95         return ""
96
97 ################################################################################
98
99 def time_pp(x):
100     if x < 60:
101         unit="second"
102     elif x < 3600:
103         x /= 60
104         unit="minute"
105     elif x < 86400:
106         x /= 3600
107         unit="hour"
108     elif x < 604800:
109         x /= 86400
110         unit="day"
111     elif x < 2419200:
112         x /= 604800
113         unit="week"
114     elif x < 29030400:
115         x /= 2419200
116         unit="month"
117     else:
118         x /= 29030400
119         unit="year"
120     x = int(x)
121     return "%s %s%s" % (x, unit, plural(x))
122
123 ################################################################################
124
125 def sg_compare (a, b):
126     a = a[1]
127     b = b[1]
128     """Sort by have note, time of oldest upload."""
129     # Sort by have note
130     a_note_state = a["note_state"]
131     b_note_state = b["note_state"]
132     if a_note_state < b_note_state:
133         return -1
134     elif a_note_state > b_note_state:
135         return 1
136
137     # Sort by time of oldest upload
138     return cmp(a["oldest"], b["oldest"])
139
140 ############################################################
141
142 def sortfunc(a,b):
143     for sorting in direction:
144         (sortkey, way, time) = sorting
145         ret = 0
146         if time == "m":
147             x=int(a[sortkey]/60)
148             y=int(b[sortkey]/60)
149         elif time == "h":
150             x=int(a[sortkey]/3600)
151             y=int(b[sortkey]/3600)
152         elif time == "d":
153             x=int(a[sortkey]/86400)
154             y=int(b[sortkey]/86400)
155         elif time == "w":
156             x=int(a[sortkey]/604800)
157             y=int(b[sortkey]/604800)
158         elif time == "o":
159             x=int(a[sortkey]/2419200)
160             y=int(b[sortkey]/2419200)
161         elif time == "y":
162             x=int(a[sortkey]/29030400)
163             y=int(b[sortkey]/29030400)
164         else:
165             x=a[sortkey]
166             y=b[sortkey]
167         if x < y:
168             ret = -1
169         elif x > y:
170             ret = 1
171         if ret != 0:
172             if way < 0:
173                 ret = ret*-1
174             return ret
175     return 0
176
177 ############################################################
178
179 def header():
180     print """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
181 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
182 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
183   <head>
184     <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8" />
185     <link type="text/css" rel="stylesheet" href="style.css" />
186     <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
187     <title>
188       Debian NEW and BYHAND Packages
189     </title>
190     <script type="text/javascript">
191     function togglePkg() {
192         var children = document.getElementsByTagName("*");
193         for (var i = 0; i < children.length; i++) {
194             if(!children[i].hasAttribute("class"))
195                 continue;
196             c = children[i].getAttribute("class").split(" ");
197             for(var j = 0; j < c.length; j++) {
198                 if(c[j] == "binNEW") {
199                     if (children[i].style.display == '')
200                         children[i].style.display = 'none';
201                     else children[i].style.display = '';
202                 }
203             }
204         }
205     }
206     </script>
207   </head>
208   <body id="NEW">
209     <div id="logo">
210       <a href="http://www.debian.org/">
211         <img src="http://www.debian.org/logos/openlogo-nd-50.png"
212         alt="debian logo" /></a>
213       <a href="http://www.debian.org/">
214         <img src="http://www.debian.org/Pics/debian.png"
215         alt="Debian Project" /></a>
216     </div>
217     <div id="titleblock">
218
219       <img src="http://www.debian.org/Pics/red-upperleft.png"
220       id="red-upperleft" alt="corner image"/>
221       <img src="http://www.debian.org/Pics/red-lowerleft.png"
222       id="red-lowerleft" alt="corner image"/>
223       <img src="http://www.debian.org/Pics/red-upperright.png"
224       id="red-upperright" alt="corner image"/>
225       <img src="http://www.debian.org/Pics/red-lowerright.png"
226       id="red-lowerright" alt="corner image"/>
227       <span class="title">
228         Debian NEW and BYHAND Packages
229       </span>
230     </div>
231     """
232
233 def footer():
234     print "<p class=\"timestamp\">Timestamp: %s (UTC)</p>" % (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
235     print "<p class=\"timestamp\">There are <a href=\"/stat.html\">graphs about the queues</a> available.</p>"
236
237     print """
238     <div class="footer">
239     <p>Hint: Age is the youngest upload of the package, if there is more than
240     one version.<br />
241     You may want to look at <a href="http://ftp-master.debian.org/REJECT-FAQ.html">the REJECT-FAQ</a>
242       for possible reasons why one of the above packages may get rejected.</p>
243       <p>
244       <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10"
245         alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
246       <a href="http://jigsaw.w3.org/css-validator/">
247         <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss"
248         alt="Valid CSS!" />
249       </a>
250       </p>
251     </div> </body> </html>
252     """
253
254 def table_header(type, source_count, total_count):
255     print "<h1 class='binNEW'>Summary for: %s</h1>" % (type)
256     print "<h1 class='binNEW' style='display: none'>Summary for: binary-%s only</h1>" % (type)
257     print """
258     <table class="NEW">
259       <p class="togglepkg" onclick="togglePkg()">Click to toggle all/binary-NEW packages</p>
260       <caption class="binNEW">
261     """
262     print "Package count in <strong>%s</strong>: <em>%s</em>&nbsp;|&nbsp; Total Package count: <em>%s</em>" % (type, source_count, total_count)
263     print """
264       </caption>
265       <thead>
266         <tr>
267           <th>Package</th>
268           <th>Version</th>
269           <th>Arch</th>
270           <th>Distribution</th>
271           <th>Age</th>
272           <th>Upload info</th>
273           <th>Closes</th>
274         </tr>
275       </thead>
276       <tbody>
277     """
278
279 def table_footer(type):
280     print "</tbody></table>"
281
282
283 def table_row(source, version, arch, last_mod, maint, distribution, closes, fingerprint, sponsor, changedby):
284
285     global row_number
286
287     trclass = "sid"
288     session = DBConn().session()
289     for dist in distribution:
290         if dist == "experimental":
291             trclass = "exp"
292
293     if not len(session.query(DBSource).filter_by(source = source).all()):
294         trclass += " binNEW"
295     session.commit()
296
297     if row_number % 2 != 0:
298         print "<tr class=\"%s even\">" % (trclass)
299     else:
300         print "<tr class=\"%s odd\">" % (trclass)
301
302     print "<td class=\"package\">%s</td>" % (source)
303     print "<td class=\"version\">"
304     for vers in version.split():
305         print "<a href=\"new/%s_%s.html\">%s</a><br/>" % (source, utils.html_escape(vers), utils.html_escape(vers))
306     print "</td>"
307     print "<td class=\"arch\">%s</td>" % (arch)
308     print "<td class=\"distribution\">"
309     for dist in distribution:
310         print "%s<br/>" % (dist)
311     print "</td>"
312     print "<td class=\"age\">%s</td>" % (last_mod)
313     (name, mail) = maint.split(":", 1)
314
315     print "<td class=\"upload-data\">"
316     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))
317     (name, mail) = changedby.split(":", 1)
318     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))
319
320     if sponsor:
321         try:
322             (login, domain) = sponsor.split("@", 1)
323             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))
324         except Exception, e:
325             pass
326
327     print "<span class=\"signature\">Fingerprint: %s</span>" % (fingerprint)
328     print "</td>"
329
330     print "<td class=\"closes\">"
331     for close in closes:
332         print "<a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s\">#%s</a><br/>" % (utils.html_escape(close), utils.html_escape(close))
333     print "</td></tr>"
334     row_number+=1
335
336 ############################################################
337
338 def update_graph_database(rrd_dir, type, n_source, n_binary):
339     if not rrd_dir:
340         return
341
342     rrd_file = os.path.join(rrd_dir, type.lower()+'.rrd')
343     update = [rrd_file, "N:%s:%s" % (n_source, n_binary)]
344
345     try:
346         rrdtool.update(*update)
347     except rrdtool.error:
348         create = [rrd_file]+"""
349 --step
350 300
351 --start
352 0
353 DS:ds0:GAUGE:7200:0:1000
354 DS:ds1:GAUGE:7200:0:1000
355 RRA:AVERAGE:0.5:1:599
356 RRA:AVERAGE:0.5:6:700
357 RRA:AVERAGE:0.5:24:775
358 RRA:AVERAGE:0.5:288:795
359 RRA:MAX:0.5:1:600
360 RRA:MAX:0.5:6:700
361 RRA:MAX:0.5:24:775
362 RRA:MAX:0.5:288:795
363 """.strip().split("\n")
364         try:
365             rc = rrdtool.create(*create)
366             ru = rrdtool.update(*update)
367         except rrdtool.error, e:
368             print('warning: queue_report: rrdtool error, skipping %s.rrd: %s' % (type, e))
369     except NameError:
370         pass
371
372 ############################################################
373
374 def process_changes_files(changes_files, type, log, rrd_dir):
375     msg = ""
376     cache = {}
377     # Read in all the .changes files
378     for filename in changes_files:
379         try:
380             u = Upload()
381             u.load_changes(filename)
382             cache[filename] = copy(u.pkg.changes)
383             cache[filename]["filename"] = filename
384         except Exception, e:
385             print "WARNING: Exception %s" % e
386             continue
387     # Divide the .changes into per-source groups
388     per_source = {}
389     for filename in cache.keys():
390         source = cache[filename]["source"]
391         if not per_source.has_key(source):
392             per_source[source] = {}
393             per_source[source]["list"] = []
394         per_source[source]["list"].append(cache[filename])
395     # Determine oldest time and have note status for each source group
396     for source in per_source.keys():
397         source_list = per_source[source]["list"]
398         first = source_list[0]
399         oldest = os.stat(first["filename"])[stat.ST_MTIME]
400         have_note = 0
401         for d in per_source[source]["list"]:
402             mtime = os.stat(d["filename"])[stat.ST_MTIME]
403             if Cnf.has_key("Queue-Report::Options::New"):
404                 if mtime > oldest:
405                     oldest = mtime
406             else:
407                 if mtime < oldest:
408                     oldest = mtime
409             have_note += has_new_comment(d["source"], d["version"])
410         per_source[source]["oldest"] = oldest
411         if not have_note:
412             per_source[source]["note_state"] = 0; # none
413         elif have_note < len(source_list):
414             per_source[source]["note_state"] = 1; # some
415         else:
416             per_source[source]["note_state"] = 2; # all
417     per_source_items = per_source.items()
418     per_source_items.sort(sg_compare)
419
420     update_graph_database(rrd_dir, type, len(per_source_items), len(changes_files))
421
422     entries = []
423     max_source_len = 0
424     max_version_len = 0
425     max_arch_len = 0
426     for i in per_source_items:
427         maintainer = {}
428         maint=""
429         distribution=""
430         closes=""
431         fingerprint=""
432         changeby = {}
433         changedby=""
434         sponsor=""
435         filename=i[1]["list"][0]["filename"]
436         last_modified = time.time()-i[1]["oldest"]
437         source = i[1]["list"][0]["source"]
438         if len(source) > max_source_len:
439             max_source_len = len(source)
440         binary_list = i[1]["list"][0]["binary"].keys()
441         binary = ', '.join(binary_list)
442         arches = {}
443         versions = {}
444         for j in i[1]["list"]:
445             changesbase = os.path.basename(j["filename"])
446             try:
447                 session = DBConn().session()
448                 dbc = session.query(DBChange).filter_by(changesname=changesbase).one()
449                 session.close()
450             except Exception, e:
451                 print "Can't find changes file in NEW for %s (%s)" % (changesbase, e)
452                 dbc = None
453
454             if Cnf.has_key("Queue-Report::Options::New") or Cnf.has_key("Queue-Report::Options::822"):
455                 try:
456                     (maintainer["maintainer822"], maintainer["maintainer2047"],
457                     maintainer["maintainername"], maintainer["maintaineremail"]) = \
458                     fix_maintainer (j["maintainer"])
459                 except ParseMaintError, msg:
460                     print "Problems while parsing maintainer address\n"
461                     maintainer["maintainername"] = "Unknown"
462                     maintainer["maintaineremail"] = "Unknown"
463                 maint="%s:%s" % (maintainer["maintainername"], maintainer["maintaineremail"])
464                 # ...likewise for the Changed-By: field if it exists.
465                 try:
466                     (changeby["changedby822"], changeby["changedby2047"],
467                      changeby["changedbyname"], changeby["changedbyemail"]) = \
468                      fix_maintainer (j["changed-by"])
469                 except ParseMaintError, msg:
470                     (changeby["changedby822"], changeby["changedby2047"],
471                      changeby["changedbyname"], changeby["changedbyemail"]) = \
472                      ("", "", "", "")
473                 changedby="%s:%s" % (changeby["changedbyname"], changeby["changedbyemail"])
474
475                 distribution=j["distribution"].keys()
476                 closes=j["closes"].keys()
477                 if dbc:
478                     fingerprint = dbc.fingerprint
479                     sponsor_name = get_uid_from_fingerprint(fingerprint).name
480                     sponsor_email = get_uid_from_fingerprint(fingerprint).uid + "@debian.org"
481                     if sponsor_name != maintainer["maintainername"] and sponsor_name != changeby["changedbyname"] and \
482                     sponsor_email != maintainer["maintaineremail"] and sponsor_name != changeby["changedbyemail"]:
483                         sponsor = sponsor_email
484
485             for arch in j["architecture"].keys():
486                 arches[arch] = ""
487             version = j["version"]
488             versions[version] = ""
489         arches_list = arches.keys()
490         arches_list.sort(utils.arch_compare_sw)
491         arch_list = " ".join(arches_list)
492         version_list = " ".join(versions.keys())
493         if len(version_list) > max_version_len:
494             max_version_len = len(version_list)
495         if len(arch_list) > max_arch_len:
496             max_arch_len = len(arch_list)
497         if i[1]["note_state"]:
498             note = " | [N]"
499         else:
500             note = ""
501         entries.append([source, binary, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, filename])
502
503     # direction entry consists of "Which field, which direction, time-consider" where
504     # time-consider says how we should treat last_modified. Thats all.
505
506     # Look for the options for sort and then do the sort.
507     age = "h"
508     if Cnf.has_key("Queue-Report::Options::Age"):
509         age =  Cnf["Queue-Report::Options::Age"]
510     if Cnf.has_key("Queue-Report::Options::New"):
511     # If we produce html we always have oldest first.
512         direction.append([5,-1,"ao"])
513     else:
514         if Cnf.has_key("Queue-Report::Options::Sort"):
515             for i in Cnf["Queue-Report::Options::Sort"].split(","):
516                 if i == "ao":
517                     # Age, oldest first.
518                     direction.append([5,-1,age])
519                 elif i == "an":
520                     # Age, newest first.
521                     direction.append([5,1,age])
522                 elif i == "na":
523                     # Name, Ascending.
524                     direction.append([0,1,0])
525                 elif i == "nd":
526                     # Name, Descending.
527                     direction.append([0,-1,0])
528                 elif i == "nl":
529                     # Notes last.
530                     direction.append([4,1,0])
531                 elif i == "nf":
532                     # Notes first.
533                     direction.append([4,-1,0])
534     entries.sort(lambda x, y: sortfunc(x, y))
535     # Yes, in theory you can add several sort options at the commandline with. But my mind is to small
536     # at the moment to come up with a real good sorting function that considers all the sidesteps you
537     # have with it. (If you combine options it will simply take the last one at the moment).
538     # Will be enhanced in the future.
539
540     if Cnf.has_key("Queue-Report::Options::822"):
541         # print stuff out in 822 format
542         for entry in entries:
543             (source, binary, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, changes_file) = entry
544
545             # We'll always have Source, Version, Arch, Mantainer, and Dist
546             # For the rest, check to see if we have them, then print them out
547             log.write("Source: " + source + "\n")
548             log.write("Binary: " + binary + "\n")
549             log.write("Version: " + version_list + "\n")
550             log.write("Architectures: ")
551             log.write( (", ".join(arch_list.split(" "))) + "\n")
552             log.write("Age: " + time_pp(last_modified) + "\n")
553             log.write("Last-Modified: " + str(int(time.time()) - int(last_modified)) + "\n")
554             log.write("Queue: " + type + "\n")
555
556             (name, mail) = maint.split(":", 1)
557             log.write("Maintainer: " + name + " <"+mail+">" + "\n")
558             if changedby:
559                (name, mail) = changedby.split(":", 1)
560                log.write("Changed-By: " + name + " <"+mail+">" + "\n")
561             if sponsor:
562                log.write("Sponsored-By: " + sponsor + "\n")
563             log.write("Distribution:")
564             for dist in distribution:
565                log.write(" " + dist)
566             log.write("\n")
567             log.write("Fingerprint: " + fingerprint + "\n")
568             if closes:
569                 bug_string = ""
570                 for bugs in closes:
571                     bug_string += "#"+bugs+", "
572                 log.write("Closes: " + bug_string[:-2] + "\n")
573             log.write("Changes-File: " + os.path.basename(changes_file) + "\n")
574             log.write("\n")
575
576     if Cnf.has_key("Queue-Report::Options::New"):
577         direction.append([5,1,"ao"])
578         entries.sort(lambda x, y: sortfunc(x, y))
579     # Output for a html file. First table header. then table_footer.
580     # Any line between them is then a <tr> printed from subroutine table_row.
581         if len(entries) > 0:
582             total_count = len(changes_files)
583             source_count = len(per_source_items)
584             table_header(type.upper(), source_count, total_count)
585             for entry in entries:
586                 (source, binary, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, undef) = entry
587                 table_row(source, version_list, arch_list, time_pp(last_modified), maint, distribution, closes, fingerprint, sponsor, changedby)
588             table_footer(type.upper())
589     elif not Cnf.has_key("Queue-Report::Options::822"):
590     # The "normal" output without any formatting.
591         format="%%-%ds | %%-%ds | %%-%ds%%s | %%s old\n" % (max_source_len, max_version_len, max_arch_len)
592
593         msg = ""
594         for entry in entries:
595             (source, binary, version_list, arch_list, note, last_modified, undef, undef, undef, undef, undef, undef, undef) = entry
596             msg += format % (source, version_list, arch_list, note, time_pp(last_modified))
597
598         if msg:
599             total_count = len(changes_files)
600             source_count = len(per_source_items)
601             print type.upper()
602             print "-"*len(type)
603             print
604             print msg
605             print "%s %s source package%s / %s %s package%s in total." % (source_count, type, plural(source_count), total_count, type, plural(total_count))
606             print
607
608
609 ################################################################################
610
611 def main():
612     global Cnf
613
614     Cnf = utils.get_conf()
615     Arguments = [('h',"help","Queue-Report::Options::Help"),
616                  ('n',"new","Queue-Report::Options::New"),
617                  ('8','822',"Queue-Report::Options::822"),
618                  ('s',"sort","Queue-Report::Options::Sort", "HasArg"),
619                  ('a',"age","Queue-Report::Options::Age", "HasArg"),
620                  ('r',"rrd","Queue-Report::Options::Rrd", "HasArg"),
621                  ('d',"directories","Queue-Report::Options::Directories", "HasArg")]
622     for i in [ "help" ]:
623         if not Cnf.has_key("Queue-Report::Options::%s" % (i)):
624             Cnf["Queue-Report::Options::%s" % (i)] = ""
625
626     apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
627
628     Options = Cnf.SubTree("Queue-Report::Options")
629     if Options["Help"]:
630         usage()
631
632     if Cnf.has_key("Queue-Report::Options::New"):
633         header()
634
635     # Initialize db so we can get the NEW comments
636     dbconn = DBConn()
637
638     directories = [ ]
639
640     if Cnf.has_key("Queue-Report::Options::Directories"):
641         for i in Cnf["Queue-Report::Options::Directories"].split(","):
642             directories.append(i)
643     elif Cnf.has_key("Queue-Report::Directories"):
644         directories = Cnf.ValueList("Queue-Report::Directories")
645     else:
646         directories = [ "byhand", "new" ]
647
648     if Cnf.has_key("Queue-Report::Options::Rrd"):
649         rrd_dir = Cnf["Queue-Report::Options::Rrd"]
650     elif Cnf.has_key("Dir::Rrd"):
651         rrd_dir = Cnf["Dir::Rrd"]
652     else:
653         rrd_dir = None
654
655     f = None
656     if Cnf.has_key("Queue-Report::Options::822"):
657         # Open the report file
658         f = open(Cnf["Queue-Report::ReportLocations::822Location"], "w")
659
660     for directory in directories:
661         changes_files = glob.glob("%s/*.changes" % (Cnf["Dir::Queue::%s" % (directory)]))
662         process_changes_files(changes_files, directory, f, rrd_dir)
663
664     if Cnf.has_key("Queue-Report::Options::822"):
665         f.close()
666
667     if Cnf.has_key("Queue-Report::Options::New"):
668         footer()
669
670 ################################################################################
671
672 if __name__ == '__main__':
673     main()