mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-13 23:38:20 +00:00
Move some of the hint parsing into hints.py
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
5083311ec2
commit
9b9d44db3a
34
britney.py
34
britney.py
@ -198,7 +198,7 @@ from urllib.parse import quote
|
||||
from installability.builder import InstallabilityTesterBuilder
|
||||
from excuse import Excuse
|
||||
from migrationitem import MigrationItem
|
||||
from hints import HintCollection
|
||||
from hints import HintParser
|
||||
from britney_util import (old_libraries_format, undo_changes,
|
||||
compute_reverse_tree,
|
||||
read_nuninst, write_nuninst, write_heidi,
|
||||
@ -948,12 +948,13 @@ class Britney(object):
|
||||
The method returns a dictionary where the key is the command, and
|
||||
the value is the list of affected packages.
|
||||
"""
|
||||
hints = HintCollection()
|
||||
hint_parser = HintParser(self)
|
||||
|
||||
for who in self.HINTS.keys():
|
||||
if who == 'command-line':
|
||||
lines = self.options.hints and self.options.hints.split(';') or ()
|
||||
filename = '<cmd-line>'
|
||||
hint_parser.parse_hints(who, self.HINTS[who], filename, lines)
|
||||
else:
|
||||
filename = os.path.join(basedir, "Hints", who)
|
||||
if not os.path.isfile(filename):
|
||||
@ -961,32 +962,9 @@ class Britney(object):
|
||||
continue
|
||||
self.log("Loading hints list from %s" % filename)
|
||||
with open(filename, encoding='utf-8') as f:
|
||||
lines = f.readlines()
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
if line == "": continue
|
||||
l = line.split()
|
||||
if l[0] == 'finished':
|
||||
break
|
||||
if l[0] == 'remark':
|
||||
# Ignore "no-op" hint, the sole purpose of which is to be
|
||||
# found by hint grep (and show up in "d"'s
|
||||
# output).
|
||||
continue
|
||||
elif l[0] not in self.HINTS[who]:
|
||||
continue
|
||||
elif len(l) == 1:
|
||||
# All current hints require at least one argument
|
||||
self.log("Malformed hint found in %s: '%s'" % (filename, line), type="W")
|
||||
elif l[0] in ["approve", "block", "block-all", "block-udeb", "unblock", "unblock-udeb", "force", "urgent", "remove"]:
|
||||
if l[0] == 'approve': l[0] = 'unblock'
|
||||
for package in l[1:]:
|
||||
hints.add_hint('%s %s' % (l[0], package), who)
|
||||
elif l[0] in ["age-days"]:
|
||||
for package in l[2:]:
|
||||
hints.add_hint('%s %s %s' % (l[0], l[1], package), who)
|
||||
else:
|
||||
hints.add_hint(l, who)
|
||||
hint_parser.parse_hints(who, self.HINTS[who], filename, f)
|
||||
|
||||
hints = hint_parser.hints
|
||||
|
||||
for x in ["block", "block-all", "block-udeb", "unblock", "unblock-udeb", "force", "urgent", "remove", "age-days"]:
|
||||
z = {}
|
||||
|
105
hints.py
105
hints.py
@ -16,6 +16,11 @@ from __future__ import print_function
|
||||
|
||||
from migrationitem import MigrationItem
|
||||
|
||||
|
||||
class MalformedHintException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class HintCollection(object):
|
||||
def __init__(self):
|
||||
self._hints = []
|
||||
@ -35,10 +40,8 @@ class HintCollection(object):
|
||||
]
|
||||
|
||||
def add_hint(self, hint, user):
|
||||
try:
|
||||
self._hints.append(Hint(hint, user))
|
||||
except AssertionError:
|
||||
print("Ignoring broken hint %r from %s" % (hint, user))
|
||||
self._hints.append(Hint(hint, user))
|
||||
|
||||
|
||||
class Hint(object):
|
||||
NO_VERSION = [ 'block', 'block-all', 'block-udeb' ]
|
||||
@ -48,7 +51,7 @@ class Hint(object):
|
||||
self._user = user
|
||||
self._active = True
|
||||
self._days = None
|
||||
if isinstance(hint, list):
|
||||
if isinstance(hint, list) or isinstance(hint, tuple):
|
||||
self._type = hint[0]
|
||||
self._packages = hint[1:]
|
||||
else:
|
||||
@ -71,9 +74,11 @@ class Hint(object):
|
||||
def check(self):
|
||||
for package in self.packages:
|
||||
if self.type in self.__class__.NO_VERSION:
|
||||
assert package.version is None, package
|
||||
if package.version is not None:
|
||||
raise MalformedHintException("\"%s\" needs unversioned packages, got \"%s\"" % (self.type, package))
|
||||
else:
|
||||
assert package.version is not None, package
|
||||
if package.version is None:
|
||||
raise MalformedHintException("\"%s\" needs versioned packages, got \"%s\"" % (self.type, package))
|
||||
|
||||
def set_active(self, active):
|
||||
self._active = active
|
||||
@ -125,3 +130,89 @@ class Hint(object):
|
||||
else:
|
||||
return None
|
||||
|
||||
|
||||
def age_day_hint(hints, who, hint_name, new_age, *args):
|
||||
for package in args:
|
||||
hints.add_hint('%s %s %s' % (hint_name, new_age, package), who)
|
||||
|
||||
|
||||
def split_into_one_hint_per_package(hints, who, hint_name, *args):
|
||||
for package in args:
|
||||
hints.add_hint('%s %s' % (hint_name, package), who)
|
||||
|
||||
|
||||
def single_hint_taking_list_of_packages(hints, who, *args):
|
||||
hints.add_hint(args, who)
|
||||
|
||||
|
||||
class HintParser(object):
|
||||
|
||||
def __init__(self, britney):
|
||||
self._britney = britney
|
||||
self.hints = HintCollection()
|
||||
self._hint_table = {
|
||||
'remark': (0, lambda *x: None),
|
||||
|
||||
# Migration grouping hints
|
||||
'easy': (2, single_hint_taking_list_of_packages), # Easy needs at least 2 to make sense
|
||||
'force-hint': (1, single_hint_taking_list_of_packages),
|
||||
'hint': (1, single_hint_taking_list_of_packages),
|
||||
|
||||
# Age / urgent
|
||||
'urgent': (1, split_into_one_hint_per_package),
|
||||
'age-days': (2, age_day_hint),
|
||||
|
||||
# Block / freeze related hints
|
||||
'block': (1, split_into_one_hint_per_package),
|
||||
'block-all': (1, split_into_one_hint_per_package),
|
||||
'block-udeb': (1, split_into_one_hint_per_package),
|
||||
'unblock': (1, split_into_one_hint_per_package),
|
||||
'unblock-udeb': (1, split_into_one_hint_per_package),
|
||||
|
||||
# Other
|
||||
'remove': (1, split_into_one_hint_per_package),
|
||||
'force': (1, split_into_one_hint_per_package),
|
||||
}
|
||||
self._aliases = {
|
||||
'approve': 'unblock',
|
||||
}
|
||||
|
||||
def parse_hints(self, who, permitted_hints, filename, lines):
|
||||
hint_table = self._hint_table
|
||||
line_no = 0
|
||||
hints = self.hints
|
||||
aliases = self._aliases
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
line_no += 1
|
||||
if line == "" or line.startswith('#'):
|
||||
continue
|
||||
l = line.split()
|
||||
hint_name = l[0]
|
||||
if hint_name in aliases:
|
||||
hint_name = aliases[hint_name]
|
||||
l[0] = hint_name
|
||||
if hint_name == 'finished':
|
||||
break
|
||||
if hint_name not in hint_table:
|
||||
self.log("Unknown hint found in %s (line %d): '%s'" % (filename, line_no, line), type="W")
|
||||
continue
|
||||
if hint_name not in permitted_hints:
|
||||
reason = 'The hint is not a part of the permitted hints for ' + who
|
||||
self.log("Ignoring \"%s\" hint from %s found in %s (line %d): %s" % (
|
||||
hint_name, who, filename, line_no, reason), type="I")
|
||||
continue
|
||||
min_args, hint_parser_impl = hint_table[hint_name]
|
||||
if len(l) - 1 < min_args:
|
||||
self.log("Malformed hint found in %s (line %d): Needs at least %d argument(s), got %d" % (
|
||||
filename, line_no, min_args, len(l) - 1), type="W")
|
||||
continue
|
||||
try:
|
||||
hint_parser_impl(hints, who, *l)
|
||||
except MalformedHintException as e:
|
||||
self.log("Malformed hint found in %s (line %d): \"%s\"" % (
|
||||
filename, line_no, e.args[0]), type="W")
|
||||
continue
|
||||
|
||||
def log(self, msg, type="I"):
|
||||
self._britney.log(msg, type=type)
|
||||
|
Loading…
x
Reference in New Issue
Block a user