]> git.decadent.org.uk Git - dak.git/blob - dak/generate_packages_sources2.py
Merge remote-tracking branch 'ansgar/p-s-from-db' into merge
[dak.git] / dak / generate_packages_sources2.py
1 #!/usr/bin/python
2
3 """
4 Generate Packages/Sources files
5
6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2011  Ansgar Burchardt <ansgar@debian.org>
8 @copyright: Based on daklib/lists.py and dak/generate_filelist.py:
9             2009-2011  Torsten Werner <twerner@debian.org>
10 @copyright: Based on dak/generate_packages_sources.py:
11             2000, 2001, 2002, 2006  James Troup <james@nocrew.org>
12             2009  Mark Hymers <mhy@debian.org>
13             2010  Joerg Jaspert <joerg@debian.org>
14 @license: GNU General Public License version 2 or later
15 """
16
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26
27 # You should have received a copy of the GNU General Public License
28 # along with this program; if not, write to the Free Software
29 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
30
31 from daklib.dbconn import *
32 from daklib.config import Config
33 from daklib import utils, daklog
34 from daklib.dakmultiprocessing import Pool
35 from daklib.filewriter import PackagesFileWriter, SourcesFileWriter
36
37 import apt_pkg, os, stat, sys
38
39 def usage():
40     print """Usage: dak generate-packages-sources2 [OPTIONS]
41 Generate the Packages/Sources files
42
43   -s, --suite=SUITE            process this suite
44                                Default: All suites not marked 'untouchable'
45   -f, --force                  Allow processing of untouchable suites
46                                CAREFUL: Only to be used at point release time!
47   -h, --help                   show this help and exit
48
49 SUITE can be a space seperated list, e.g.
50    --suite=unstable testing
51 """
52     sys.exit()
53
54 #############################################################################
55
56 # Here be dragons.
57 _sources_query = R"""
58 SELECT
59
60   (SELECT
61      STRING_AGG(
62        CASE
63          WHEN key = 'Source' THEN 'Package\: '
64          WHEN key = 'Files' THEN E'Files\:\n ' || f.md5sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
65          WHEN key = 'Checksums-Sha1' THEN E'Checksums-Sha1\:\n ' || f.sha1sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
66          WHEN key = 'Checksums-Sha256' THEN E'Checksums-Sha256\:\n ' || f.sha256sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
67          ELSE key || '\: '
68        END || value, E'\n' ORDER BY mk.ordering, mk.key)
69    FROM
70      source_metadata sm
71      JOIN metadata_keys mk ON mk.key_id = sm.key_id
72    WHERE s.id=sm.src_id
73   )
74   ||
75   E'\nDirectory\: pool/' || SUBSTRING(f.filename FROM E'\\A(.*)/[^/]*\\Z')
76   ||
77   E'\nPriority\: ' || pri.priority
78   ||
79   E'\nSection\: ' || sec.section
80
81 FROM
82
83 source s
84 JOIN src_associations sa ON s.id = sa.source
85 JOIN files f ON s.file=f.id
86 JOIN override o ON o.package = s.source
87 JOIN section sec ON o.section = sec.id
88 JOIN priority pri ON o.priority = pri.id
89
90 WHERE
91   sa.suite = :suite
92   AND o.suite = :suite AND o.component = :component AND o.type = :dsc_type
93
94 ORDER BY
95 s.source, s.version
96 """
97
98 def generate_sources(suite_id, component_id):
99     global _sources_query
100
101     session = DBConn().session()
102     dsc_type = session.query(OverrideType).filter_by(overridetype='dsc').one().overridetype_id
103
104     suite = session.query(Suite).get(suite_id)
105     component = session.query(Component).get(component_id)
106
107     writer = SourcesFileWriter(suite=suite.suite_name, component=component.component_name)
108     output = writer.open()
109
110     # run query and write Sources
111     r = session.execute(_sources_query, {"suite": suite_id, "component": component_id, "dsc_type": dsc_type})
112     for (stanza,) in r:
113         print >>output, stanza
114         print >>output, ""
115
116     writer.close()
117
118     message = ["generate sources", suite.suite_name, component.component_name]
119     session.rollback()
120     return message
121
122 #############################################################################
123
124 # Here be large dragons.
125 _packages_query = R"""
126 WITH
127
128   tmp AS (
129     SELECT
130       b.id AS binary_id,
131       b.package AS package,
132       b.version AS version,
133       b.architecture AS architecture,
134       b.source AS source_id,
135       s.source AS source,
136       f.filename AS filename,
137       f.size AS size,
138       f.md5sum AS md5sum,
139       f.sha1sum AS sha1sum,
140       f.sha256sum AS sha256sum
141     FROM
142       binaries b
143       JOIN bin_associations ba ON b.id = ba.bin
144       JOIN files f ON f.id = b.file
145       JOIN location l ON l.id = f.location
146       JOIN source s ON b.source = s.id
147     WHERE
148       (b.architecture = :arch_all OR b.architecture = :arch) AND b.type = :type_name
149       AND ba.suite = :suite
150       AND l.component = :component
151   )
152
153 SELECT
154   (SELECT
155      STRING_AGG(key || '\: ' || value, E'\n' ORDER BY mk.ordering, mk.key)
156    FROM
157      binaries_metadata bm
158      JOIN metadata_keys mk ON mk.key_id = bm.key_id
159    WHERE
160      bm.bin_id = tmp.binary_id
161      AND key != 'Section' AND key != 'Priority'
162   )
163   || COALESCE(E'\n' || (SELECT
164      STRING_AGG(key || '\: ' || value, E'\n' ORDER BY key)
165    FROM external_overrides eo
166    WHERE eo.package = tmp.package
167   ), '')
168   || E'\nSection\: ' || sec.section
169   || E'\nPriority\: ' || pri.priority
170   || E'\nFilename\: pool/' || tmp.filename
171   || E'\nSize\: ' || tmp.size
172   || E'\nMD5sum\: ' || tmp.md5sum
173   || E'\nSHA1\: ' || tmp.sha1sum
174   || E'\nSHA256\: ' || tmp.sha256sum
175
176 FROM
177   tmp
178   JOIN override o ON o.package = tmp.package
179   JOIN section sec ON sec.id = o.section
180   JOIN priority pri ON pri.id = o.priority
181
182 WHERE
183   (
184       architecture <> :arch_all
185     OR
186       (architecture = :arch_all AND source_id IN (SELECT source_id FROM tmp WHERE architecture <> :arch_all))
187     OR
188       (architecture = :arch_all AND source NOT IN (SELECT DISTINCT source FROM tmp WHERE architecture <> :arch_all))
189   )
190   AND
191     o.type = :type_id AND o.suite = :suite AND o.component = :component
192
193 ORDER BY tmp.package, tmp.version
194 """
195
196 def generate_packages(suite_id, component_id, architecture_id, type_name):
197     global _packages_query
198
199     session = DBConn().session()
200     arch_all_id = session.query(Architecture).filter_by(arch_string='all').one().arch_id
201     type_id = session.query(OverrideType).filter_by(overridetype=type_name).one().overridetype_id
202
203     suite = session.query(Suite).get(suite_id)
204     component = session.query(Component).get(component_id)
205     architecture = session.query(Architecture).get(architecture_id)
206
207     writer = PackagesFileWriter(suite=suite.suite_name, component=component.component_name,
208             architecture=architecture.arch_string, debtype=type_name)
209     output = writer.open()
210
211     r = session.execute(_packages_query, {"suite": suite_id, "component": component_id,
212         "arch": architecture_id, "type_id": type_id, "type_name": type_name, "arch_all": arch_all_id})
213     for (stanza,) in r:
214         print >>output, stanza
215         print >>output, ""
216
217     writer.close()
218
219     message = ["generate-packages", suite.suite_name, component.component_name, architecture.arch_string]
220     session.rollback()
221     return message
222
223 #############################################################################
224
225 def main():
226     cnf = Config()
227
228     Arguments = [('h',"help","Generate-Packages-Sources::Options::Help"),
229                  ('s',"suite","Generate-Packages-Sources::Options::Suite"),
230                  ('f',"force","Generate-Packages-Sources::Options::Force")]
231
232     suite_names = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
233     try:
234         Options = cnf.SubTree("Generate-Packages-Sources::Options")
235     except KeyError:
236         Options = {}
237
238     if Options.has_key("Help"):
239         usage()
240
241     logger = daklog.Logger(cnf, 'generate-packages-sources2')
242
243     session = DBConn().session()
244
245     if Options.has_key("Suite"):
246         suites = []
247         for s in suite_names:
248             suite = get_suite(s.lower(), session)
249             if suite:
250                 suites.append(suite)
251             else:
252                 print "I: Cannot find suite %s" % s
253                 logger.log(['Cannot find suite %s' % s])
254     else:
255         suites = session.query(Suite).filter(Suite.untouchable == False).all()
256
257     force = Options.has_key("Force") and Options["Force"]
258
259     component_ids = [ c.component_id for c in session.query(Component).all() ]
260
261     def log(details):
262         logger.log(details)
263
264     pool = Pool()
265     for s in suites:
266         if s.untouchable and not force:
267             utils.fubar("Refusing to touch %s (untouchable and not forced)" % s.suite_name)
268         for c in component_ids:
269             pool.apply_async(generate_sources, [s.suite_id, c], callback=log)
270             for a in s.architectures:
271                 pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'deb'], callback=log)
272                 pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'udeb'], callback=log)
273
274     pool.close()
275     pool.join()
276     # this script doesn't change the database
277     session.close()
278
279 if __name__ == '__main__':
280     main()