Benjamin Drung d7362d9ed8 Use Python f-strings
```
flynt -ll 99 -tc -tj -a pbuilder-dist pm-helper running-autopkgtests ubuntu-build ubuntutools
```
2024-11-02 17:49:20 +01:00

200 lines
7.1 KiB
Python

#
# question.py - Helper class for asking questions
#
# Copyright (C) 2010, Benjamin Drung <bdrung@ubuntu.com>,
# 2011, Stefano Rivera <stefanor@ubuntu.com>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import os
import re
import subprocess
import sys
import tempfile
class Question:
def __init__(self, options, show_help=True):
assert len(options) >= 2
self.options = [s.lower() for s in options]
self.show_help = show_help
def get_options(self):
if len(self.options) == 2:
options = f"{self.options[0]} or {self.options[1]}"
else:
options = f"{', '.join(self.options[:-1])}, or {self.options[-1]}"
return options
def ask(self, question, default=None):
if default is None:
default = self.options[0]
assert default in self.options
separator = " ["
for option in self.options:
if option == default:
question += separator + option[0].upper()
else:
question += separator + option[0]
separator = "|"
if self.show_help:
question += "|?"
question += "]? "
selected = None
while selected not in self.options:
try:
selected = input(question).strip().lower()
except (EOFError, KeyboardInterrupt):
print("\nAborting as requested.")
sys.exit(1)
if selected == "":
selected = default
else:
for option in self.options:
# Example: User typed "y" instead of "yes".
if selected == option[0]:
selected = option
if selected not in self.options:
print(f"Please answer the question with {self.get_options()}.")
return selected
class YesNoQuestion(Question):
def __init__(self):
Question.__init__(self, ["yes", "no"], False)
def input_number(question, min_number, max_number, default=None):
if default:
question += f" [{default}]? "
else:
question += "? "
selected = None
while not selected or selected < min_number or selected > max_number:
try:
selected = input(question).strip()
except (EOFError, KeyboardInterrupt):
print("\nAborting as requested.")
sys.exit(1)
if default and selected == "":
selected = default
else:
try:
selected = int(selected)
if selected < min_number or selected > max_number:
print(f"Please input a number between {min_number} and {max_number}.")
except ValueError:
print("Please input a number.")
assert isinstance(selected, int)
return selected
def confirmation_prompt(message=None, action=None):
"""Display message, or a stock message including action, and wait for the
user to press Enter
"""
if message is None:
if action is None:
action = "continue"
message = f"Press [Enter] to {action}. Press [Ctrl-C] to abort now."
try:
input(message)
except (EOFError, KeyboardInterrupt):
print("\nAborting as requested.")
sys.exit(1)
class EditFile:
def __init__(self, filename, description, placeholders=None):
self.filename = filename
self.description = description
if placeholders is None:
placeholders = (re.compile(r"^>>>.*<<<$", re.UNICODE),)
self.placeholders = placeholders
def edit(self, optional=False):
if optional:
print(f"\n\nCurrently the {self.description} looks like:")
with open(self.filename, "r", encoding="utf-8") as f:
print(f.read())
if YesNoQuestion().ask("Edit", "no") == "no":
return
done = False
while not done:
old_mtime = os.stat(self.filename).st_mtime
subprocess.check_call(["sensible-editor", self.filename])
modified = old_mtime != os.stat(self.filename).st_mtime
placeholders_present = False
if self.placeholders:
with open(self.filename, "r", encoding="utf-8") as f:
for line in f:
for placeholder in self.placeholders:
if placeholder.search(line.strip()):
placeholders_present = True
if placeholders_present:
print(
f"Placeholders still present in the {self.description}. "
f"Please replace them with useful information."
)
confirmation_prompt(action="edit again")
elif not modified:
print(f"The {self.description} was not modified")
if YesNoQuestion().ask("Edit again", "yes") == "no":
done = True
elif self.check_edit():
done = True
def check_edit(self): # pylint: disable=no-self-use
"""Override this to implement extra checks on the edited report.
Should return False if another round of editing is needed,
and should prompt the user to confirm that, if necessary.
"""
return True
class EditBugReport(EditFile):
split_re = re.compile(r"^Summary.*?:\s+(.*?)\s+Description:\s+(.*)$", re.DOTALL | re.UNICODE)
def __init__(self, subject, body, placeholders=None):
prefix = f"{os.path.basename(sys.argv[0])}_"
tmpfile = tempfile.NamedTemporaryFile(prefix=prefix, suffix=".txt", delete=False)
tmpfile.write((f"Summary (one line):\n{subject}\n\nDescription:\n{body}").encode("utf-8"))
tmpfile.close()
super().__init__(tmpfile.name, "bug report", placeholders)
def check_edit(self):
with open(self.filename, "r", encoding="utf-8") as f:
report = f.read()
if self.split_re.match(report) is None:
print(
f"The {self.description} doesn't start with 'Summary:' and 'Description:' blocks"
)
confirmation_prompt("edit again")
return False
return True
def get_report(self):
with open(self.filename, "r", encoding="utf-8") as f:
report = f.read()
match = self.split_re.match(report)
title = match.group(1).replace("\n", " ")
report = (title, match.group(2))
os.unlink(self.filename)
return report