|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (C) 2011 Niels Thykier <niels@thykier.net>
|
|
|
|
# Copyright (C) 2013 Adam D. Barratt <adam@adam-barratt.org.uk>
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
import readline
|
|
|
|
import bisect
|
|
|
|
|
|
|
|
|
|
|
|
class Completer(object):
|
|
|
|
"""Completer class
|
|
|
|
|
|
|
|
This class provides a readline completer for the britney hint-tester
|
|
|
|
command-line interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, britney):
|
|
|
|
"""Constructor
|
|
|
|
|
|
|
|
Creates a completer for a given britney.
|
|
|
|
"""
|
|
|
|
self.matches = []
|
|
|
|
self.cmds = ['easy', 'hint', 'force-hint', 'force', 'remove',
|
|
|
|
'force', 'age-days', 'urgent', 'block-all',
|
|
|
|
'block', 'block-udeb', 'unblock', 'unblock-udeb',
|
|
|
|
'approve', 'exit', 'quit']
|
|
|
|
self.britney = britney
|
|
|
|
# generate a completion list from excuses.
|
|
|
|
# - it might contain too many items, but meh
|
|
|
|
complete = []
|
|
|
|
tpu = []
|
|
|
|
for e in britney.excuses.values():
|
|
|
|
pkg = e.name
|
|
|
|
suite = 'unstable'
|
|
|
|
if pkg[0] == '-':
|
|
|
|
suite = 'testing'
|
|
|
|
pkg = pkg[1:]
|
|
|
|
if "_" in pkg:
|
|
|
|
(pkg, suite) = pkg.split("_")
|
|
|
|
if "/" in pkg:
|
|
|
|
pkg = pkg.split("/")[0]
|
|
|
|
name = "%s/%s" % (e.name, britney.sources[suite][pkg].version)
|
|
|
|
complete.append(name)
|
|
|
|
if suite == 'tpu':
|
|
|
|
tpu.append(name)
|
|
|
|
self.packages = sorted(complete)
|
|
|
|
self.tpu_packages = sorted(tpu)
|
|
|
|
testing = britney.sources['testing']
|
|
|
|
self.testing_packages = sorted("%s/%s" % (pkg, testing[pkg].version) for pkg in testing)
|
|
|
|
|
|
|
|
def completer(self, text, state):
|
|
|
|
"""readline completer (see the readline API)"""
|
|
|
|
|
|
|
|
origline = readline.get_line_buffer()
|
|
|
|
words = origline.split()
|
|
|
|
|
|
|
|
if state < 1:
|
|
|
|
self.matches = []
|
|
|
|
if len(words) < 1 or words[0] == text:
|
|
|
|
# complete a command
|
|
|
|
self.matches = [x for x in self.cmds if x.startswith(text)]
|
|
|
|
else:
|
|
|
|
# complete pkg/[arch/]version
|
|
|
|
if words[0] == 'remove':
|
|
|
|
packages = self.testing_packages
|
|
|
|
elif words[0] == 'approve':
|
|
|
|
packages = self.tpu_packages
|
|
|
|
else:
|
|
|
|
packages = self.packages
|
|
|
|
start = bisect.bisect_left(packages, text)
|
|
|
|
while start < len(packages):
|
|
|
|
if not packages[start].startswith(text):
|
|
|
|
break
|
|
|
|
self.matches.append(packages[start])
|
|
|
|
start += 1
|
|
|
|
|
|
|
|
if len(self.matches) > state:
|
|
|
|
return self.matches[state]
|
|
|
|
return None
|