4 Generate Packages/Sources files
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
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.
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.
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
34 print """Usage: dak generate-packages-sources2 [OPTIONS]
35 Generate the Packages/Sources files
37 -a, --archive=ARCHIVE process suites in ARCHIVE
38 -s, --suite=SUITE process this suite
39 Default: All suites not marked 'untouchable'
40 -f, --force Allow processing of untouchable suites
41 CAREFUL: Only to be used at point release time!
42 -h, --help show this help and exit
44 SUITE can be a space seperated list, e.g.
45 --suite=unstable testing
49 #############################################################################
58 WHEN key = 'Source' THEN E'Package\: '
59 WHEN key = 'Files' THEN E'Files\:\n ' || f.md5sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
60 WHEN key = 'Checksums-Sha1' THEN E'Checksums-Sha1\:\n ' || f.sha1sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
61 WHEN key = 'Checksums-Sha256' THEN E'Checksums-Sha256\:\n ' || f.sha256sum || ' ' || f.size || ' ' || SUBSTRING(f.filename FROM E'/([^/]*)\\Z')
63 END || value, E'\n' ORDER BY mk.ordering, mk.key)
66 JOIN metadata_keys mk ON mk.key_id = sm.key_id
71 WHEN src_associations_full.extra_source THEN E'\nExtra-Source-Only\: yes'
75 E'\nDirectory\: pool/' || :component_name || '/' || SUBSTRING(f.filename FROM E'\\A(.*)/[^/]*\\Z')
77 E'\nPriority\: ' || COALESCE(pri.priority, 'extra')
79 E'\nSection\: ' || COALESCE(sec.section, 'misc')
84 JOIN src_associations_full ON src_associations_full.suite = :suite AND s.id = src_associations_full.source
85 JOIN files f ON s.file=f.id
86 JOIN files_archive_map fam
88 AND fam.archive_id = (SELECT archive_id FROM suite WHERE id = :suite)
89 AND fam.component_id = :component
90 LEFT JOIN override o ON o.package = s.source
91 AND o.suite = :overridesuite
92 AND o.component = :component
93 AND o.type = :dsc_type
94 LEFT JOIN section sec ON o.section = sec.id
95 LEFT JOIN priority pri ON o.priority = pri.id
98 (src_associations_full.extra_source OR o.suite IS NOT NULL)
104 def generate_sources(suite_id, component_id):
105 global _sources_query
106 from daklib.filewriter import SourcesFileWriter
107 from daklib.dbconn import Component, DBConn, OverrideType, Suite
108 from daklib.dakmultiprocessing import PROC_STATUS_SUCCESS
110 session = DBConn().session()
111 dsc_type = session.query(OverrideType).filter_by(overridetype='dsc').one().overridetype_id
113 suite = session.query(Suite).get(suite_id)
114 component = session.query(Component).get(component_id)
116 overridesuite_id = suite.get_overridesuite().suite_id
119 'archive': suite.archive.path,
120 'suite': suite.suite_name,
121 'component': component.component_name
123 if suite.indices_compression is not None:
124 writer_args['compression'] = suite.indices_compression
125 writer = SourcesFileWriter(**writer_args)
126 output = writer.open()
128 # run query and write Sources
129 r = session.execute(_sources_query, {"suite": suite_id, "component": component_id, "component_name": component.component_name, "dsc_type": dsc_type, "overridesuite": overridesuite_id})
131 print >>output, stanza
136 message = ["generate sources", suite.suite_name, component.component_name]
138 return (PROC_STATUS_SUCCESS, message)
140 #############################################################################
142 # Here be large dragons.
143 _packages_query = R"""
149 b.package AS package,
150 b.version AS version,
151 b.architecture AS architecture,
152 b.source AS source_id,
154 f.filename AS filename,
157 f.sha1sum AS sha1sum,
158 f.sha256sum AS sha256sum
161 JOIN bin_associations ba ON b.id = ba.bin
162 JOIN files f ON f.id = b.file
163 JOIN files_archive_map fam ON f.id = fam.file_id AND fam.archive_id = :archive_id
164 JOIN source s ON b.source = s.id
166 (b.architecture = :arch_all OR b.architecture = :arch) AND b.type = :type_name
167 AND ba.suite = :suite
168 AND fam.component_id = :component
173 STRING_AGG(key || E'\: ' || value, E'\n' ORDER BY ordering, key)
175 (SELECT key, ordering,
176 CASE WHEN :include_long_description = 'false' AND key = 'Description'
177 THEN SUBSTRING(value FROM E'\\A[^\n]*')
182 JOIN metadata_keys mk ON mk.key_id = bm.key_id
184 bm.bin_id = tmp.binary_id
185 AND key != ALL (:metadata_skip)
188 || COALESCE(E'\n' || (SELECT
189 STRING_AGG(key || E'\: ' || value, E'\n' ORDER BY key)
190 FROM external_overrides eo
192 eo.package = tmp.package
193 AND eo.suite = :overridesuite AND eo.component = :component
195 || E'\nSection\: ' || sec.section
196 || E'\nPriority\: ' || pri.priority
197 || E'\nFilename\: pool/' || :component_name || '/' || tmp.filename
198 || E'\nSize\: ' || tmp.size
199 || E'\nMD5sum\: ' || tmp.md5sum
200 || E'\nSHA1\: ' || tmp.sha1sum
201 || E'\nSHA256\: ' || tmp.sha256sum
205 JOIN override o ON o.package = tmp.package
206 JOIN section sec ON sec.id = o.section
207 JOIN priority pri ON pri.id = o.priority
211 architecture <> :arch_all
213 (architecture = :arch_all AND source_id IN (SELECT source_id FROM tmp WHERE architecture <> :arch_all))
215 (architecture = :arch_all AND source NOT IN (SELECT DISTINCT source FROM tmp WHERE architecture <> :arch_all))
218 o.type = :type_id AND o.suite = :overridesuite AND o.component = :component
220 ORDER BY tmp.source, tmp.package, tmp.version
223 def generate_packages(suite_id, component_id, architecture_id, type_name):
224 global _packages_query
225 from daklib.filewriter import PackagesFileWriter
226 from daklib.dbconn import Architecture, Component, DBConn, OverrideType, Suite
227 from daklib.dakmultiprocessing import PROC_STATUS_SUCCESS
229 session = DBConn().session()
230 arch_all_id = session.query(Architecture).filter_by(arch_string='all').one().arch_id
231 type_id = session.query(OverrideType).filter_by(overridetype=type_name).one().overridetype_id
233 suite = session.query(Suite).get(suite_id)
234 component = session.query(Component).get(component_id)
235 architecture = session.query(Architecture).get(architecture_id)
237 overridesuite_id = suite.get_overridesuite().suite_id
238 include_long_description = suite.include_long_description
240 # We currently filter out the "Tag" line. They are set by external
241 # overrides and NOT by the maintainer. And actually having it set by
242 # maintainer means we output it twice at the moment -> which breaks
244 metadata_skip = ["Section", "Priority", "Tag"]
245 if include_long_description:
246 metadata_skip.append("Description-md5")
249 'archive': suite.archive.path,
250 'suite': suite.suite_name,
251 'component': component.component_name,
252 'architecture': architecture.arch_string,
255 if suite.indices_compression is not None:
256 writer_args['compression'] = suite.indices_compression
257 writer = PackagesFileWriter(**writer_args)
258 output = writer.open()
260 r = session.execute(_packages_query, {"archive_id": suite.archive.archive_id,
261 "suite": suite_id, "component": component_id, 'component_name': component.component_name,
262 "arch": architecture_id, "type_id": type_id, "type_name": type_name, "arch_all": arch_all_id,
263 "overridesuite": overridesuite_id, "metadata_skip": metadata_skip,
264 "include_long_description": 'true' if include_long_description else 'false'})
266 print >>output, stanza
271 message = ["generate-packages", suite.suite_name, component.component_name, architecture.arch_string]
273 return (PROC_STATUS_SUCCESS, message)
275 #############################################################################
277 _translations_query = """
282 COALESCE(os.id, s.id) AS overridesuite_id
283 FROM suite AS s LEFT JOIN suite AS os ON s.overridesuite = os.suite_name)
286 E'Package\: ' || b.package
287 || E'\nDescription-md5\: ' || bm_description_md5.value
288 || E'\nDescription-en\: ' || bm_description.value
291 -- join tables for suite and component
292 JOIN bin_associations ba ON b.id = ba.bin
293 JOIN override_suite os ON os.id = ba.suite
294 JOIN override o ON b.package = o.package AND o.suite = os.overridesuite_id AND o.type = (SELECT id FROM override_type WHERE type = 'deb')
296 -- join tables for Description and Description-md5
297 JOIN binaries_metadata bm_description ON b.id = bm_description.bin_id AND bm_description.key_id = (SELECT key_id FROM metadata_keys WHERE key = 'Description')
298 JOIN binaries_metadata bm_description_md5 ON b.id = bm_description_md5.bin_id AND bm_description_md5.key_id = (SELECT key_id FROM metadata_keys WHERE key = 'Description-md5')
300 -- we want to sort by source name
301 JOIN source s ON b.source = s.id
303 WHERE ba.suite = :suite AND o.component = :component
304 GROUP BY b.package, bm_description_md5.value, bm_description.value
305 ORDER BY MIN(s.source), b.package, bm_description_md5.value
308 def generate_translations(suite_id, component_id):
309 global _translations_query
310 from daklib.filewriter import TranslationFileWriter
311 from daklib.dbconn import DBConn, Suite, Component
312 from daklib.dakmultiprocessing import PROC_STATUS_SUCCESS
314 session = DBConn().session()
315 suite = session.query(Suite).get(suite_id)
316 component = session.query(Component).get(component_id)
319 'archive': suite.archive.path,
320 'suite': suite.suite_name,
321 'component': component.component_name,
324 if suite.i18n_compression is not None:
325 writer_args['compression'] = suite.i18n_compression
326 writer = TranslationFileWriter(**writer_args)
327 output = writer.open()
329 r = session.execute(_translations_query, {"suite": suite_id, "component": component_id})
331 print >>output, stanza
335 message = ["generate-translations", suite.suite_name, component.component_name]
337 return (PROC_STATUS_SUCCESS, message)
339 #############################################################################
342 from daklib.config import Config
343 from daklib import daklog
347 Arguments = [('h',"help","Generate-Packages-Sources::Options::Help"),
348 ('a','archive','Generate-Packages-Sources::Options::Archive','HasArg'),
349 ('s',"suite","Generate-Packages-Sources::Options::Suite"),
350 ('f',"force","Generate-Packages-Sources::Options::Force"),
351 ('o','option','','ArbItem')]
353 suite_names = apt_pkg.parse_commandline(cnf.Cnf, Arguments, sys.argv)
355 Options = cnf.subtree("Generate-Packages-Sources::Options")
359 if Options.has_key("Help"):
362 from daklib.dakmultiprocessing import DakProcessPool, PROC_STATUS_SUCCESS, PROC_STATUS_SIGNALRAISED
363 pool = DakProcessPool()
365 logger = daklog.Logger('generate-packages-sources2')
367 from daklib.dbconn import Component, DBConn, get_suite, Suite, Archive
368 session = DBConn().session()
369 session.execute("SELECT add_missing_description_md5()")
372 if Options.has_key("Suite"):
374 for s in suite_names:
375 suite = get_suite(s.lower(), session)
379 print "I: Cannot find suite %s" % s
380 logger.log(['Cannot find suite %s' % s])
382 query = session.query(Suite).filter(Suite.untouchable == False)
383 if 'Archive' in Options:
384 query = query.join(Suite.archive).filter(Archive.archive_name==Options['Archive'])
387 force = Options.has_key("Force") and Options["Force"]
390 def parse_results(message):
391 # Split out into (code, msg)
393 if code == PROC_STATUS_SUCCESS:
395 elif code == PROC_STATUS_SIGNALRAISED:
396 logger.log(['E: Subprocess recieved signal ', msg])
398 logger.log(['E: ', msg])
400 # Lock tables so that nobody can change things underneath us
401 session.execute("LOCK TABLE src_associations IN SHARE MODE")
402 session.execute("LOCK TABLE bin_associations IN SHARE MODE")
405 component_ids = [ c.component_id for c in s.components ]
406 if s.untouchable and not force:
408 daklib.utils.fubar("Refusing to touch %s (untouchable and not forced)" % s.suite_name)
409 for c in component_ids:
410 pool.apply_async(generate_sources, [s.suite_id, c], callback=parse_results)
411 if not s.include_long_description:
412 pool.apply_async(generate_translations, [s.suite_id, c], callback=parse_results)
413 for a in s.architectures:
416 pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'deb'], callback=parse_results)
417 pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'udeb'], callback=parse_results)
422 # this script doesn't change the database
427 sys.exit(pool.overall_status())
429 if __name__ == '__main__':