Optimize out "nvirtual" member of undo items

Signed-off-by: Niels Thykier <niels@thykier.net>
ubuntu/rebased
Niels Thykier 6 years ago
parent 5642a90449
commit 59ae7e3d68
No known key found for this signature in database
GPG Key ID: A65B78DBE67C7AAC

@ -227,7 +227,7 @@ class MigrationManager(object):
affected by the change (as (name, arch)-tuples) and the
dictionary undo which can be used to rollback the changes.
"""
undo = {'binaries': {}, 'sources': {}, 'virtual': {}, 'nvirtual': []}
undo = {'binaries': {}, 'sources': {}, 'virtual': {}}
affected_direct = set()
updated_binaries = set()
@ -338,11 +338,9 @@ class MigrationManager(object):
# register new provided packages
for provided_pkg, prov_version, _ in new_pkg_data.provides:
key = (provided_pkg, parch)
if provided_pkg not in provides_t_a:
undo['nvirtual'].append(key)
provides_t_a[provided_pkg] = set()
elif key not in undo['virtual']:
undo['virtual'][key] = provides_t_a[provided_pkg].copy()
if key not in undo['virtual']:
restore_as = provides_t_a[provided_pkg].copy() if provided_pkg in provides_t_a else None
undo['virtual'][key] = restore_as
provides_t_a[provided_pkg].add((binary, prov_version))
if not equivalent_replacement:
# all the reverse dependencies are affected by the change

@ -100,11 +100,12 @@ class MigrationTransactionState(object):
# STEP 4
# undo all changes to virtual packages
for (undo, updated_binaries) in lundo:
for provided_pkg, arch in undo['nvirtual']:
del provides_t[arch][provided_pkg]
for p in undo['virtual']:
for (undo, _) in lundo:
for p, value in undo['virtual'].items():
provided_pkg, arch = p
if value is None:
del provides_t[arch][provided_pkg]
else:
provides_t[arch][provided_pkg] = undo['virtual'][p]
@property

Loading…
Cancel
Save