]> git.decadent.org.uk Git - dak.git/blob - dak/import_archive.py
ad69419f904372e0f4821b6d48ff07d05b916b07
[dak.git] / dak / import_archive.py
1 #!/usr/bin/env python
2
3 # Populate the DB
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 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 # 04:36|<aj> elmo: you're making me waste 5 seconds per architecture!!!!!! YOU BASTARD!!!!!
23
24 ###############################################################################
25
26 # This code is a horrible mess for two reasons:
27
28 #   (o) For Debian's usage, it's doing something like 160k INSERTs,
29 #   even on auric, that makes the program unusable unless we get
30 #   involed in sorts of silly optimization games (local dicts to avoid
31 #   redundant SELECTS, using COPY FROM rather than INSERTS etc.)
32
33 #   (o) It's very site specific, because I don't expect to use this
34 #   script again in a hurry, and I don't want to spend any more time
35 #   on it than absolutely necessary.
36
37 ###############################################################################
38
39 import commands, os, pg, re, sys, time
40 import apt_pkg
41 import daklib.database
42 import daklib.utils
43
44 ###############################################################################
45
46 re_arch_from_filename = re.compile(r"binary-[^/]+")
47
48 ###############################################################################
49
50 Cnf = None
51 projectB = None
52 files_id_cache = {}
53 source_cache = {}
54 arch_all_cache = {}
55 binary_cache = {}
56 location_path_cache = {}
57 #
58 files_id_serial = 0
59 source_id_serial = 0
60 src_associations_id_serial = 0
61 dsc_files_id_serial = 0
62 files_query_cache = None
63 source_query_cache = None
64 src_associations_query_cache = None
65 dsc_files_query_cache = None
66 orig_tar_gz_cache = {}
67 #
68 binaries_id_serial = 0
69 binaries_query_cache = None
70 bin_associations_id_serial = 0
71 bin_associations_query_cache = None
72 #
73 source_cache_for_binaries = {}
74 reject_message = ""
75
76 ################################################################################
77
78 def usage(exit_code=0):
79     print """Usage: dak import-archive
80 Initializes a projectB database from an existing archive
81
82   -a, --action              actually perform the initalization
83   -h, --help                show this help and exit."""
84     sys.exit(exit_code)
85
86 ###############################################################################
87
88 def reject (str, prefix="Rejected: "):
89     global reject_message
90     if str:
91         reject_message += prefix + str + "\n"
92
93 ###############################################################################
94
95 def check_signature (filename):
96     if not daklib.utils.re_taint_free.match(os.path.basename(filename)):
97         reject("!!WARNING!! tainted filename: '%s'." % (filename))
98         return None
99
100     status_read, status_write = os.pipe()
101     cmd = "gpgv --status-fd %s --keyring %s --keyring %s %s" \
102           % (status_write, Cnf["Dinstall::PGPKeyring"], Cnf["Dinstall::GPGKeyring"], filename)
103     (output, status, exit_status) = daklib.utils.gpgv_get_status_output(cmd, status_read, status_write)
104
105     # Process the status-fd output
106     keywords = {}
107     bad = internal_error = ""
108     for line in status.split('\n'):
109         line = line.strip()
110         if line == "":
111             continue
112         split = line.split()
113         if len(split) < 2:
114             internal_error += "gpgv status line is malformed (< 2 atoms) ['%s'].\n" % (line)
115             continue
116         (gnupg, keyword) = split[:2]
117         if gnupg != "[GNUPG:]":
118             internal_error += "gpgv status line is malformed (incorrect prefix '%s').\n" % (gnupg)
119             continue
120         args = split[2:]
121         if keywords.has_key(keyword) and keyword != "NODATA" and keyword != "SIGEXPIRED":
122             internal_error += "found duplicate status token ('%s').\n" % (keyword)
123             continue
124         else:
125             keywords[keyword] = args
126
127     # If we failed to parse the status-fd output, let's just whine and bail now
128     if internal_error:
129         reject("internal error while performing signature check on %s." % (filename))
130         reject(internal_error, "")
131         reject("Please report the above errors to the Archive maintainers by replying to this mail.", "")
132         return None
133
134     # Now check for obviously bad things in the processed output
135     if keywords.has_key("SIGEXPIRED"):
136         daklib.utils.warn("%s: signing key has expired." % (filename))
137     if keywords.has_key("KEYREVOKED"):
138         reject("key used to sign %s has been revoked." % (filename))
139         bad = 1
140     if keywords.has_key("BADSIG"):
141         reject("bad signature on %s." % (filename))
142         bad = 1
143     if keywords.has_key("ERRSIG") and not keywords.has_key("NO_PUBKEY"):
144         reject("failed to check signature on %s." % (filename))
145         bad = 1
146     if keywords.has_key("NO_PUBKEY"):
147         args = keywords["NO_PUBKEY"]
148         if len(args) < 1:
149             reject("internal error while checking signature on %s." % (filename))
150             bad = 1
151         else:
152             fingerprint = args[0]
153     if keywords.has_key("BADARMOR"):
154         reject("ascii armour of signature was corrupt in %s." % (filename))
155         bad = 1
156     if keywords.has_key("NODATA"):
157         daklib.utils.warn("no signature found for %s." % (filename))
158         return "NOSIG"
159         #reject("no signature found in %s." % (filename))
160         #bad = 1
161
162     if bad:
163         return None
164
165     # Next check gpgv exited with a zero return code
166     if exit_status and not keywords.has_key("NO_PUBKEY"):
167         reject("gpgv failed while checking %s." % (filename))
168         if status.strip():
169             reject(daklib.utils.prefix_multi_line_string(status, " [GPG status-fd output:] "), "")
170         else:
171             reject(daklib.utils.prefix_multi_line_string(output, " [GPG output:] "), "")
172         return None
173
174     # Sanity check the good stuff we expect
175     if not keywords.has_key("VALIDSIG"):
176         if not keywords.has_key("NO_PUBKEY"):
177             reject("signature on %s does not appear to be valid [No VALIDSIG]." % (filename))
178             bad = 1
179     else:
180         args = keywords["VALIDSIG"]
181         if len(args) < 1:
182             reject("internal error while checking signature on %s." % (filename))
183             bad = 1
184         else:
185             fingerprint = args[0]
186     if not keywords.has_key("GOODSIG") and not keywords.has_key("NO_PUBKEY"):
187         reject("signature on %s does not appear to be valid [No GOODSIG]." % (filename))
188         bad = 1
189     if not keywords.has_key("SIG_ID") and not keywords.has_key("NO_PUBKEY"):
190         reject("signature on %s does not appear to be valid [No SIG_ID]." % (filename))
191         bad = 1
192
193     # Finally ensure there's not something we don't recognise
194     known_keywords = daklib.utils.Dict(VALIDSIG="",SIG_ID="",GOODSIG="",BADSIG="",ERRSIG="",
195                                 SIGEXPIRED="",KEYREVOKED="",NO_PUBKEY="",BADARMOR="",
196                                 NODATA="")
197
198     for keyword in keywords.keys():
199         if not known_keywords.has_key(keyword):
200             reject("found unknown status token '%s' from gpgv with args '%r' in %s." % (keyword, keywords[keyword], filename))
201             bad = 1
202
203     if bad:
204         return None
205     else:
206         return fingerprint
207
208 ################################################################################
209
210 # Prepares a filename or directory (s) to be file.filename by stripping any part of the location (sub) from it.
211 def poolify (s, sub):
212     for i in xrange(len(sub)):
213         if sub[i:] == s[0:len(sub)-i]:
214             return s[len(sub)-i:]
215     return s
216
217 def update_archives ():
218     projectB.query("DELETE FROM archive")
219     for archive in Cnf.SubTree("Archive").List():
220         SubSec = Cnf.SubTree("Archive::%s" % (archive))
221         projectB.query("INSERT INTO archive (name, origin_server, description) VALUES ('%s', '%s', '%s')"
222                        % (archive, SubSec["OriginServer"], SubSec["Description"]))
223
224 def update_components ():
225     projectB.query("DELETE FROM component")
226     for component in Cnf.SubTree("Component").List():
227         SubSec = Cnf.SubTree("Component::%s" % (component))
228         projectB.query("INSERT INTO component (name, description, meets_dfsg) VALUES ('%s', '%s', '%s')" %
229                        (component, SubSec["Description"], SubSec["MeetsDFSG"]))
230
231 def update_locations ():
232     projectB.query("DELETE FROM location")
233     for location in Cnf.SubTree("Location").List():
234         SubSec = Cnf.SubTree("Location::%s" % (location))
235         archive_id = daklib.database.get_archive_id(SubSec["archive"])
236         type = SubSec.Find("type")
237         if type == "legacy-mixed":
238             projectB.query("INSERT INTO location (path, archive, type) VALUES ('%s', %d, '%s')" % (location, archive_id, SubSec["type"]))
239         else:
240             for component in Cnf.SubTree("Component").List():
241                 component_id = daklib.database.get_component_id(component)
242                 projectB.query("INSERT INTO location (path, component, archive, type) VALUES ('%s', %d, %d, '%s')" %
243                                (location, component_id, archive_id, SubSec["type"]))
244
245 def update_architectures ():
246     projectB.query("DELETE FROM architecture")
247     for arch in Cnf.SubTree("Architectures").List():
248         projectB.query("INSERT INTO architecture (arch_string, description) VALUES ('%s', '%s')" % (arch, Cnf["Architectures::%s" % (arch)]))
249
250 def update_suites ():
251     projectB.query("DELETE FROM suite")
252     for suite in Cnf.SubTree("Suite").List():
253         SubSec = Cnf.SubTree("Suite::%s" %(suite))
254         projectB.query("INSERT INTO suite (suite_name) VALUES ('%s')" % suite.lower())
255         for i in ("Version", "Origin", "Description"):
256             if SubSec.has_key(i):
257                 projectB.query("UPDATE suite SET %s = '%s' WHERE suite_name = '%s'" % (i.lower(), SubSec[i], suite.lower()))
258         for architecture in Cnf.ValueList("Suite::%s::Architectures" % (suite)):
259             architecture_id = daklib.database.get_architecture_id (architecture)
260             projectB.query("INSERT INTO suite_architectures (suite, architecture) VALUES (currval('suite_id_seq'), %d)" % (architecture_id))
261
262 def update_override_type():
263     projectB.query("DELETE FROM override_type")
264     for type in Cnf.ValueList("OverrideType"):
265         projectB.query("INSERT INTO override_type (type) VALUES ('%s')" % (type))
266
267 def update_priority():
268     projectB.query("DELETE FROM priority")
269     for priority in Cnf.SubTree("Priority").List():
270         projectB.query("INSERT INTO priority (priority, level) VALUES ('%s', %s)" % (priority, Cnf["Priority::%s" % (priority)]))
271
272 def update_section():
273     projectB.query("DELETE FROM section")
274     for component in Cnf.SubTree("Component").List():
275         if Cnf["Control-Overrides::ComponentPosition"] == "prefix":
276             suffix = ""
277             if component != 'main':
278                 prefix = component + '/'
279             else:
280                 prefix = ""
281         else:
282             prefix = ""
283             component = component.replace("non-US/", "")
284             if component != 'main':
285                 suffix = '/' + component
286             else:
287                 suffix = ""
288         for section in Cnf.ValueList("Section"):
289             projectB.query("INSERT INTO section (section) VALUES ('%s%s%s')" % (prefix, section, suffix))
290
291 def get_location_path(directory):
292     global location_path_cache
293
294     if location_path_cache.has_key(directory):
295         return location_path_cache[directory]
296
297     q = projectB.query("SELECT DISTINCT path FROM location WHERE path ~ '%s'" % (directory))
298     try:
299         path = q.getresult()[0][0]
300     except:
301         daklib.utils.fubar("[import-archive] get_location_path(): Couldn't get path for %s" % (directory))
302     location_path_cache[directory] = path
303     return path
304
305 ################################################################################
306
307 def get_or_set_files_id (filename, size, md5sum, location_id):
308     global files_id_cache, files_id_serial, files_query_cache
309
310     cache_key = "~".join((filename, size, md5sum, repr(location_id)))
311     if not files_id_cache.has_key(cache_key):
312         files_id_serial += 1
313         files_query_cache.write("%d\t%s\t%s\t%s\t%d\t\\N\n" % (files_id_serial, filename, size, md5sum, location_id))
314         files_id_cache[cache_key] = files_id_serial
315
316     return files_id_cache[cache_key]
317
318 ###############################################################################
319
320 def process_sources (filename, suite, component, archive):
321     global source_cache, source_query_cache, src_associations_query_cache, dsc_files_query_cache, source_id_serial, src_associations_id_serial, dsc_files_id_serial, source_cache_for_binaries, orig_tar_gz_cache, reject_message
322
323     suite = suite.lower()
324     suite_id = daklib.database.get_suite_id(suite)
325     try:
326         file = daklib.utils.open_file (filename)
327     except daklib.utils.cant_open_exc:
328         daklib.utils.warn("can't open '%s'" % (filename))
329         return
330     Scanner = apt_pkg.ParseTagFile(file)
331     while Scanner.Step() != 0:
332         package = Scanner.Section["package"]
333         version = Scanner.Section["version"]
334         directory = Scanner.Section["directory"]
335         dsc_file = os.path.join(Cnf["Dir::Root"], directory, "%s_%s.dsc" % (package, daklib.utils.re_no_epoch.sub('', version)))
336         # Sometimes the Directory path is a lie; check in the pool
337         if not os.path.exists(dsc_file):
338             if directory.split('/')[0] == "dists":
339                 directory = Cnf["Dir::PoolRoot"] + daklib.utils.poolify(package, component)
340                 dsc_file = os.path.join(Cnf["Dir::Root"], directory, "%s_%s.dsc" % (package, daklib.utils.re_no_epoch.sub('', version)))
341         if not os.path.exists(dsc_file):
342             daklib.utils.fubar("%s not found." % (dsc_file))
343         install_date = time.strftime("%Y-%m-%d", time.localtime(os.path.getmtime(dsc_file)))
344         fingerprint = check_signature(dsc_file)
345         fingerprint_id = daklib.database.get_or_set_fingerprint_id(fingerprint)
346         if reject_message:
347             daklib.utils.fubar("%s: %s" % (dsc_file, reject_message))
348         maintainer = Scanner.Section["maintainer"]
349         maintainer = maintainer.replace("'", "\\'")
350         maintainer_id = daklib.database.get_or_set_maintainer_id(maintainer)
351         location = get_location_path(directory.split('/')[0])
352         location_id = daklib.database.get_location_id (location, component, archive)
353         if not directory.endswith("/"):
354             directory += '/'
355         directory = poolify (directory, location)
356         if directory != "" and not directory.endswith("/"):
357             directory += '/'
358         no_epoch_version = daklib.utils.re_no_epoch.sub('', version)
359         # Add all files referenced by the .dsc to the files table
360         ids = []
361         for line in Scanner.Section["files"].split('\n'):
362             id = None
363             (md5sum, size, filename) = line.strip().split()
364             # Don't duplicate .orig.tar.gz's
365             if filename.endswith(".orig.tar.gz"):
366                 cache_key = "%s~%s~%s" % (filename, size, md5sum)
367                 if orig_tar_gz_cache.has_key(cache_key):
368                     id = orig_tar_gz_cache[cache_key]
369                 else:
370                     id = get_or_set_files_id (directory + filename, size, md5sum, location_id)
371                     orig_tar_gz_cache[cache_key] = id
372             else:
373                 id = get_or_set_files_id (directory + filename, size, md5sum, location_id)
374             ids.append(id)
375             # If this is the .dsc itself; save the ID for later.
376             if filename.endswith(".dsc"):
377                 files_id = id
378         filename = directory + package + '_' + no_epoch_version + '.dsc'
379         cache_key = "%s~%s" % (package, version)
380         if not source_cache.has_key(cache_key):
381             nasty_key = "%s~%s" % (package, version)
382             source_id_serial += 1
383             if not source_cache_for_binaries.has_key(nasty_key):
384                 source_cache_for_binaries[nasty_key] = source_id_serial
385             tmp_source_id = source_id_serial
386             source_cache[cache_key] = source_id_serial
387             source_query_cache.write("%d\t%s\t%s\t%d\t%d\t%s\t%s\n" % (source_id_serial, package, version, maintainer_id, files_id, install_date, fingerprint_id))
388             for id in ids:
389                 dsc_files_id_serial += 1
390                 dsc_files_query_cache.write("%d\t%d\t%d\n" % (dsc_files_id_serial, tmp_source_id,id))
391         else:
392             tmp_source_id = source_cache[cache_key]
393
394         src_associations_id_serial += 1
395         src_associations_query_cache.write("%d\t%d\t%d\n" % (src_associations_id_serial, suite_id, tmp_source_id))
396
397     file.close()
398
399 ###############################################################################
400
401 def process_packages (filename, suite, component, archive):
402     global arch_all_cache, binary_cache, binaries_id_serial, binaries_query_cache, bin_associations_id_serial, bin_associations_query_cache, reject_message
403
404     count_total = 0
405     count_bad = 0
406     suite = suite.lower()
407     suite_id = daklib.database.get_suite_id(suite)
408     try:
409         file = daklib.utils.open_file (filename)
410     except daklib.utils.cant_open_exc:
411         daklib.utils.warn("can't open '%s'" % (filename))
412         return
413     Scanner = apt_pkg.ParseTagFile(file)
414     while Scanner.Step() != 0:
415         package = Scanner.Section["package"]
416         version = Scanner.Section["version"]
417         maintainer = Scanner.Section["maintainer"]
418         maintainer = maintainer.replace("'", "\\'")
419         maintainer_id = daklib.database.get_or_set_maintainer_id(maintainer)
420         architecture = Scanner.Section["architecture"]
421         architecture_id = daklib.database.get_architecture_id (architecture)
422         fingerprint = "NOSIG"
423         fingerprint_id = daklib.database.get_or_set_fingerprint_id(fingerprint)
424         if not Scanner.Section.has_key("source"):
425             source = package
426         else:
427             source = Scanner.Section["source"]
428         source_version = ""
429         if source.find("(") != -1:
430             m = daklib.utils.re_extract_src_version.match(source)
431             source = m.group(1)
432             source_version = m.group(2)
433         if not source_version:
434             source_version = version
435         filename = Scanner.Section["filename"]
436         location = get_location_path(filename.split('/')[0])
437         location_id = daklib.database.get_location_id (location, component, archive)
438         filename = poolify (filename, location)
439         if architecture == "all":
440             filename = re_arch_from_filename.sub("binary-all", filename)
441         cache_key = "%s~%s" % (source, source_version)
442         source_id = source_cache_for_binaries.get(cache_key, None)
443         size = Scanner.Section["size"]
444         md5sum = Scanner.Section["md5sum"]
445         files_id = get_or_set_files_id (filename, size, md5sum, location_id)
446         type = "deb"; # FIXME
447         cache_key = "%s~%s~%s~%d~%d~%d~%d" % (package, version, repr(source_id), architecture_id, location_id, files_id, suite_id)
448         if not arch_all_cache.has_key(cache_key):
449             arch_all_cache[cache_key] = 1
450             cache_key = "%s~%s~%s~%d" % (package, version, repr(source_id), architecture_id)
451             if not binary_cache.has_key(cache_key):
452                 if not source_id:
453                     source_id = "\N"
454                     count_bad += 1
455                 else:
456                     source_id = repr(source_id)
457                 binaries_id_serial += 1
458                 binaries_query_cache.write("%d\t%s\t%s\t%d\t%s\t%d\t%d\t%s\t%s\n" % (binaries_id_serial, package, version, maintainer_id, source_id, architecture_id, files_id, type, fingerprint_id))
459                 binary_cache[cache_key] = binaries_id_serial
460                 tmp_binaries_id = binaries_id_serial
461             else:
462                 tmp_binaries_id = binary_cache[cache_key]
463
464             bin_associations_id_serial += 1
465             bin_associations_query_cache.write("%d\t%d\t%d\n" % (bin_associations_id_serial, suite_id, tmp_binaries_id))
466             count_total += 1
467
468     file.close()
469     if count_bad != 0:
470         print "%d binary packages processed; %d with no source match which is %.2f%%" % (count_total, count_bad, (float(count_bad)/count_total)*100)
471     else:
472         print "%d binary packages processed; 0 with no source match which is 0%%" % (count_total)
473
474 ###############################################################################
475
476 def do_sources(sources, suite, component, server):
477     temp_filename = daklib.utils.temp_filename()
478     (result, output) = commands.getstatusoutput("gunzip -c %s > %s" % (sources, temp_filename))
479     if (result != 0):
480         daklib.utils.fubar("Gunzip invocation failed!\n%s" % (output), result)
481     print 'Processing '+sources+'...'
482     process_sources (temp_filename, suite, component, server)
483     os.unlink(temp_filename)
484
485 ###############################################################################
486
487 def do_da_do_da ():
488     global Cnf, projectB, query_cache, files_query_cache, source_query_cache, src_associations_query_cache, dsc_files_query_cache, bin_associations_query_cache, binaries_query_cache
489
490     Cnf = daklib.utils.get_conf()
491     Arguments = [('a', "action", "Import-Archive::Options::Action"),
492                  ('h', "help", "Import-Archive::Options::Help")]
493     for i in [ "action", "help" ]:
494         if not Cnf.has_key("Import-Archive::Options::%s" % (i)):
495             Cnf["Import-Archive::Options::%s" % (i)] = ""
496
497     apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
498
499     Options = Cnf.SubTree("Import-Archive::Options")
500     if Options["Help"]:
501         usage()
502
503     if not Options["Action"]:
504         daklib.utils.warn("""no -a/--action given; not doing anything.
505 Please read the documentation before running this script.
506 """)
507         usage(1)
508
509     print "Re-Creating DB..."
510     (result, output) = commands.getstatusoutput("psql -f init_pool.sql template1")
511     if (result != 0):
512         daklib.utils.fubar("psql invocation failed!\n", result)
513     print output
514
515     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
516
517     daklib.database.init (Cnf, projectB)
518
519     print "Adding static tables from conf file..."
520     projectB.query("BEGIN WORK")
521     update_architectures()
522     update_components()
523     update_archives()
524     update_locations()
525     update_suites()
526     update_override_type()
527     update_priority()
528     update_section()
529     projectB.query("COMMIT WORK")
530
531     files_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"files","w")
532     source_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"source","w")
533     src_associations_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"src_associations","w")
534     dsc_files_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"dsc_files","w")
535     binaries_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"binaries","w")
536     bin_associations_query_cache = daklib.utils.open_file(Cnf["Import-Archive::ExportDir"]+"bin_associations","w")
537
538     projectB.query("BEGIN WORK")
539     # Process Sources files to popoulate `source' and friends
540     for location in Cnf.SubTree("Location").List():
541         SubSec = Cnf.SubTree("Location::%s" % (location))
542         server = SubSec["Archive"]
543         type = Cnf.Find("Location::%s::Type" % (location))
544         if type == "legacy-mixed":
545             sources = location + 'Sources.gz'
546             suite = Cnf.Find("Location::%s::Suite" % (location))
547             do_sources(sources, suite, "",  server)
548         elif type == "legacy" or type == "pool":
549             for suite in Cnf.ValueList("Location::%s::Suites" % (location)):
550                 for component in Cnf.SubTree("Component").List():
551                     sources = Cnf["Dir::Root"] + "dists/" + Cnf["Suite::%s::CodeName" % (suite)] + '/' + component + '/source/' + 'Sources.gz'
552                     do_sources(sources, suite, component, server)
553         else:
554             daklib.utils.fubar("Unknown location type ('%s')." % (type))
555
556     # Process Packages files to populate `binaries' and friends
557
558     for location in Cnf.SubTree("Location").List():
559         SubSec = Cnf.SubTree("Location::%s" % (location))
560         server = SubSec["Archive"]
561         type = Cnf.Find("Location::%s::Type" % (location))
562         if type == "legacy-mixed":
563             packages = location + 'Packages'
564             suite = Cnf.Find("Location::%s::Suite" % (location))
565             print 'Processing '+location+'...'
566             process_packages (packages, suite, "", server)
567         elif type == "legacy" or type == "pool":
568             for suite in Cnf.ValueList("Location::%s::Suites" % (location)):
569                 for component in Cnf.SubTree("Component").List():
570                     architectures = filter(daklib.utils.real_arch,
571                                            Cnf.ValueList("Suite::%s::Architectures" % (suite)))
572                     for architecture in architectures:
573                         packages = Cnf["Dir::Root"] + "dists/" + Cnf["Suite::%s::CodeName" % (suite)] + '/' + component + '/binary-' + architecture + '/Packages'
574                         print 'Processing '+packages+'...'
575                         process_packages (packages, suite, component, server)
576
577     files_query_cache.close()
578     source_query_cache.close()
579     src_associations_query_cache.close()
580     dsc_files_query_cache.close()
581     binaries_query_cache.close()
582     bin_associations_query_cache.close()
583     print "Writing data to `files' table..."
584     projectB.query("COPY files FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"files"))
585     print "Writing data to `source' table..."
586     projectB.query("COPY source FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"source"))
587     print "Writing data to `src_associations' table..."
588     projectB.query("COPY src_associations FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"src_associations"))
589     print "Writing data to `dsc_files' table..."
590     projectB.query("COPY dsc_files FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"dsc_files"))
591     print "Writing data to `binaries' table..."
592     projectB.query("COPY binaries FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"binaries"))
593     print "Writing data to `bin_associations' table..."
594     projectB.query("COPY bin_associations FROM '%s'" % (Cnf["Import-Archive::ExportDir"]+"bin_associations"))
595     print "Committing..."
596     projectB.query("COMMIT WORK")
597
598     # Add the constraints and otherwise generally clean up the database.
599     # See add_constraints.sql for more details...
600
601     print "Running add_constraints.sql..."
602     (result, output) = commands.getstatusoutput("psql %s < add_constraints.sql" % (Cnf["DB::Name"]))
603     print output
604     if (result != 0):
605         daklib.utils.fubar("psql invocation failed!\n%s" % (output), result)
606
607     return
608
609 ################################################################################
610
611 def main():
612     daklib.utils.try_with_debug(do_da_do_da)
613
614 ################################################################################
615
616 if __name__ == '__main__':
617     main()