from daklib import utils
import apt_pkg, os, stat, sys
-from daklib.lists import getSources, getBinaries
+from daklib.lists import getSources, getBinaries, getArchAll
def listPath(suite, component, architecture = None, type = None,
incremental_mode = False):
session.close()
file.close()
+def writeAllList(args):
+ (suite, component, architecture, type, incremental_mode) = args
+ (file, timestamp) = listPath(suite, component, architecture, type,
+ incremental_mode)
+ session = DBConn().session()
+ for _, filename in getArchAll(suite, component, architecture, type,
+ session, timestamp):
+ file.write(filename + '\n')
+ session.close()
+ file.close()
+
def writeBinaryList(args):
(suite, component, architecture, type, incremental_mode) = args
(file, timestamp) = listPath(suite, component, architecture, type,
elif architecture.arch_string == 'source':
threadpool.queueTask(writeSourceList,
(suite, component, Options['Incremental']))
- elif architecture.arch_string != 'all':
+ elif architecture.arch_string == 'all':
+ threadpool.queueTask(writeAllList,
+ (suite, component, architecture, 'deb',
+ Options['Incremental']))
+ threadpool.queueTask(writeAllList,
+ (suite, component, architecture, 'udeb',
+ Options['Incremental']))
+ else: # arch any
threadpool.queueTask(writeBinaryList,
(suite, component, architecture, 'deb',
Options['Incremental']))
'component': component.component_id }
return fetch(query, args, session)
+def getArchAll(suite, component, architecture, type, session, timestamp = None):
+ '''
+ Calculates all binaries in suite and component of architecture 'all' (and
+ only 'all') and type 'deb' or 'udeb' optionally limited to binaries newer
+ than timestamp. Returns a generator that yields a tuple of binary id and
+ full pathname to the u(deb) file. See function writeAllList() in
+ dak/generate_filelist.py for an example that uses this function.
+ '''
+ query = suite.binaries.filter_by(architecture = architecture, type = type)
+ if timestamp is not None:
+ extra_cond = 'extract(epoch from bin_associations.created) > %d' % timestamp
+ query = query.filter(extra_cond)
+ for binary in query:
+ yield (binary.binary_id, binary.poolfile.fullpath)
+
def getBinaries(suite, component, architecture, type, session, timestamp = None):
'''
Calculates the binaries in suite and component of architecture and