Use a lockfile around things that modify the cachedir.
This commit is contained in:
parent
94235b093e
commit
224463030b
@ -103,49 +103,52 @@ def main():
|
|||||||
# Actually do work.
|
# Actually do work.
|
||||||
mypungi = pypungi.Pungi(config, ksparser)
|
mypungi = pypungi.Pungi(config, ksparser)
|
||||||
|
|
||||||
|
with mypungi.yumlock:
|
||||||
|
if not opts.sourceisos:
|
||||||
|
if opts.do_all or opts.do_gather or opts.do_buildinstall:
|
||||||
|
mypungi._inityum() # initialize the yum object for things that need it
|
||||||
|
if opts.do_all or opts.do_gather:
|
||||||
|
mypungi.gather()
|
||||||
|
if opts.nodownload:
|
||||||
|
for line in mypungi.list_packages():
|
||||||
|
flags_str = ",".join(line["flags"])
|
||||||
|
if flags_str:
|
||||||
|
flags_str = "(%s)" % flags_str
|
||||||
|
sys.stdout.write("RPM%s: %s\n" % (flags_str, line["path"]))
|
||||||
|
sys.stdout.flush()
|
||||||
|
else:
|
||||||
|
mypungi.downloadPackages()
|
||||||
|
mypungi.makeCompsFile()
|
||||||
|
if not opts.nodebuginfo:
|
||||||
|
mypungi.getDebuginfoList()
|
||||||
|
if opts.nodownload:
|
||||||
|
for line in mypungi.list_debuginfo():
|
||||||
|
flags_str = ",".join(line["flags"])
|
||||||
|
if flags_str:
|
||||||
|
flags_str = "(%s)" % flags_str
|
||||||
|
sys.stdout.write("DEBUGINFO%s: %s\n" % (flags_str, line["path"]))
|
||||||
|
sys.stdout.flush()
|
||||||
|
else:
|
||||||
|
mypungi.downloadDebuginfo()
|
||||||
|
if not opts.nosource:
|
||||||
|
if opts.nodownload:
|
||||||
|
for line in mypungi.list_srpms():
|
||||||
|
flags_str = ",".join(line["flags"])
|
||||||
|
if flags_str:
|
||||||
|
flags_str = "(%s)" % flags_str
|
||||||
|
sys.stdout.write("SRPM%s: %s\n" % (flags_str, line["path"]))
|
||||||
|
sys.stdout.flush()
|
||||||
|
else:
|
||||||
|
mypungi.downloadSRPMs()
|
||||||
|
|
||||||
|
print "RPM size: %s MiB" % (mypungi.size_packages() / 1024 ** 2)
|
||||||
|
if not opts.nodebuginfo:
|
||||||
|
print "DEBUGINFO size: %s MiB" % (mypungi.size_debuginfo() / 1024 ** 2)
|
||||||
|
if not opts.nosource:
|
||||||
|
print "SRPM size: %s MiB" % (mypungi.size_srpms() / 1024 ** 2)
|
||||||
|
|
||||||
|
# Furthermore (but without the yumlock...)
|
||||||
if not opts.sourceisos:
|
if not opts.sourceisos:
|
||||||
if opts.do_all or opts.do_gather or opts.do_buildinstall:
|
|
||||||
mypungi._inityum() # initialize the yum object for things that need it
|
|
||||||
if opts.do_all or opts.do_gather:
|
|
||||||
mypungi.gather()
|
|
||||||
if opts.nodownload:
|
|
||||||
for line in mypungi.list_packages():
|
|
||||||
flags_str = ",".join(line["flags"])
|
|
||||||
if flags_str:
|
|
||||||
flags_str = "(%s)" % flags_str
|
|
||||||
sys.stdout.write("RPM%s: %s\n" % (flags_str, line["path"]))
|
|
||||||
sys.stdout.flush()
|
|
||||||
else:
|
|
||||||
mypungi.downloadPackages()
|
|
||||||
mypungi.makeCompsFile()
|
|
||||||
if not opts.nodebuginfo:
|
|
||||||
mypungi.getDebuginfoList()
|
|
||||||
if opts.nodownload:
|
|
||||||
for line in mypungi.list_debuginfo():
|
|
||||||
flags_str = ",".join(line["flags"])
|
|
||||||
if flags_str:
|
|
||||||
flags_str = "(%s)" % flags_str
|
|
||||||
sys.stdout.write("DEBUGINFO%s: %s\n" % (flags_str, line["path"]))
|
|
||||||
sys.stdout.flush()
|
|
||||||
else:
|
|
||||||
mypungi.downloadDebuginfo()
|
|
||||||
if not opts.nosource:
|
|
||||||
if opts.nodownload:
|
|
||||||
for line in mypungi.list_srpms():
|
|
||||||
flags_str = ",".join(line["flags"])
|
|
||||||
if flags_str:
|
|
||||||
flags_str = "(%s)" % flags_str
|
|
||||||
sys.stdout.write("SRPM%s: %s\n" % (flags_str, line["path"]))
|
|
||||||
sys.stdout.flush()
|
|
||||||
else:
|
|
||||||
mypungi.downloadSRPMs()
|
|
||||||
|
|
||||||
print "RPM size: %s MiB" % (mypungi.size_packages() / 1024 ** 2)
|
|
||||||
if not opts.nodebuginfo:
|
|
||||||
print "DEBUGINFO size: %s MiB" % (mypungi.size_debuginfo() / 1024 ** 2)
|
|
||||||
if not opts.nosource:
|
|
||||||
print "SRPM size: %s MiB" % (mypungi.size_srpms() / 1024 ** 2)
|
|
||||||
|
|
||||||
if opts.do_all or opts.do_createrepo:
|
if opts.do_all or opts.do_createrepo:
|
||||||
mypungi.doCreaterepo()
|
mypungi.doCreaterepo()
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ import sys
|
|||||||
import gzip
|
import gzip
|
||||||
import pypungi.util
|
import pypungi.util
|
||||||
import pprint
|
import pprint
|
||||||
|
import lockfile
|
||||||
import logging
|
import logging
|
||||||
import urlgrabber.progress
|
import urlgrabber.progress
|
||||||
import subprocess
|
import subprocess
|
||||||
@ -35,6 +36,40 @@ import arch as arch_module
|
|||||||
import multilib
|
import multilib
|
||||||
|
|
||||||
|
|
||||||
|
class ReentrantYumLock(object):
|
||||||
|
""" A lock that can be acquired multiple times by the same process. """
|
||||||
|
|
||||||
|
def __init__(self, lock, log):
|
||||||
|
self.lock = lock
|
||||||
|
self.log = log
|
||||||
|
self.count = 0
|
||||||
|
|
||||||
|
def __enter__(self):
|
||||||
|
if not self.count:
|
||||||
|
self.log.info("Waiting on %r" % self.lock.lock_file)
|
||||||
|
self.lock.acquire()
|
||||||
|
self.log.info("Got %r" % self.lock.lock_file)
|
||||||
|
self.count = self.count + 1
|
||||||
|
self.log.info("Lock count upped to %i" % self.count)
|
||||||
|
|
||||||
|
def __exit__(self, type, value, tb):
|
||||||
|
self.count = self.count - 1
|
||||||
|
self.log.info("Lock count downed to %i" % self.count)
|
||||||
|
self.log.info("%r %r %r" % (type, value, tb))
|
||||||
|
if not self.count:
|
||||||
|
self.lock.release()
|
||||||
|
self.log.info("Released %r" % self.lock.lock_file)
|
||||||
|
|
||||||
|
|
||||||
|
def yumlocked(method):
|
||||||
|
""" A locking decorator. """
|
||||||
|
def wrapper(self, *args, **kwargs):
|
||||||
|
with self.yumlock:
|
||||||
|
return method(self, *args, **kwargs)
|
||||||
|
# TODO - replace argspec, signature, etc..
|
||||||
|
return wrapper
|
||||||
|
|
||||||
|
|
||||||
def is_debug(po):
|
def is_debug(po):
|
||||||
if "debuginfo" in po.name:
|
if "debuginfo" in po.name:
|
||||||
return True
|
return True
|
||||||
@ -163,10 +198,15 @@ class PungiYum(yum.YumBase):
|
|||||||
class Pungi(pypungi.PungiBase):
|
class Pungi(pypungi.PungiBase):
|
||||||
def __init__(self, config, ksparser):
|
def __init__(self, config, ksparser):
|
||||||
pypungi.PungiBase.__init__(self, config)
|
pypungi.PungiBase.__init__(self, config)
|
||||||
|
|
||||||
# Set our own logging name space
|
# Set our own logging name space
|
||||||
self.logger = logging.getLogger('Pungi')
|
self.logger = logging.getLogger('Pungi')
|
||||||
|
|
||||||
|
# Create a lock object for later use.
|
||||||
|
filename = self.config.get('pungi', 'cachedir') + "/yumlock"
|
||||||
|
lock = lockfile.LockFile(filename)
|
||||||
|
self.yumlock = ReentrantYumLock(lock, self.logger)
|
||||||
|
|
||||||
# Create the stdout/err streams and only send INFO+ stuff there
|
# Create the stdout/err streams and only send INFO+ stuff there
|
||||||
formatter = logging.Formatter('%(name)s:%(levelname)s: %(message)s')
|
formatter = logging.Formatter('%(name)s:%(levelname)s: %(message)s')
|
||||||
console = logging.StreamHandler()
|
console = logging.StreamHandler()
|
||||||
@ -294,6 +334,7 @@ class Pungi(pypungi.PungiBase):
|
|||||||
if os.path.exists(os.path.join(thisrepo.cachedir, 'repomd.xml')):
|
if os.path.exists(os.path.join(thisrepo.cachedir, 'repomd.xml')):
|
||||||
os.remove(os.path.join(thisrepo.cachedir, 'repomd.xml'))
|
os.remove(os.path.join(thisrepo.cachedir, 'repomd.xml'))
|
||||||
|
|
||||||
|
@yumlocked
|
||||||
def _inityum(self):
|
def _inityum(self):
|
||||||
"""Initialize the yum object. Only needed for certain actions."""
|
"""Initialize the yum object. Only needed for certain actions."""
|
||||||
|
|
||||||
@ -1070,6 +1111,7 @@ class Pungi(pypungi.PungiBase):
|
|||||||
|
|
||||||
self.logger.info('Finished downloading packages.')
|
self.logger.info('Finished downloading packages.')
|
||||||
|
|
||||||
|
@yumlocked
|
||||||
def downloadPackages(self):
|
def downloadPackages(self):
|
||||||
"""Download the package objects obtained in getPackageObjects()."""
|
"""Download the package objects obtained in getPackageObjects()."""
|
||||||
|
|
||||||
@ -1118,6 +1160,7 @@ class Pungi(pypungi.PungiBase):
|
|||||||
|
|
||||||
#pypungi.util._doRunCommand(compsfilter, self.logger)
|
#pypungi.util._doRunCommand(compsfilter, self.logger)
|
||||||
|
|
||||||
|
@yumlocked
|
||||||
def downloadSRPMs(self):
|
def downloadSRPMs(self):
|
||||||
"""Cycle through the list of srpms and
|
"""Cycle through the list of srpms and
|
||||||
find the package objects for them, Then download them."""
|
find the package objects for them, Then download them."""
|
||||||
@ -1125,6 +1168,7 @@ class Pungi(pypungi.PungiBase):
|
|||||||
# do the downloads
|
# do the downloads
|
||||||
self._downloadPackageList(self.srpm_po_list, os.path.join('source', 'SRPMS'))
|
self._downloadPackageList(self.srpm_po_list, os.path.join('source', 'SRPMS'))
|
||||||
|
|
||||||
|
@yumlocked
|
||||||
def downloadDebuginfo(self):
|
def downloadDebuginfo(self):
|
||||||
"""Cycle through the list of debuginfo rpms and
|
"""Cycle through the list of debuginfo rpms and
|
||||||
download them."""
|
download them."""
|
||||||
|
Loading…
Reference in New Issue
Block a user