python-click/src/click/exceptions.py

288 lines
9 KiB
Python
Raw Normal View History

2021-10-10 03:31:57 +02:00
import os
import typing as t
from gettext import gettext as _
from gettext import ngettext
2020-07-21 08:23:42 +02:00
from ._compat import get_text_stderr
2014-10-16 20:40:34 +02:00
from .utils import echo
2021-10-10 03:31:57 +02:00
if t.TYPE_CHECKING:
from .core import Context
from .core import Parameter
2014-10-16 20:40:34 +02:00
2021-10-10 03:31:57 +02:00
def _join_param_hints(
param_hint: t.Optional[t.Union[t.Sequence[str], str]]
) -> t.Optional[str]:
if param_hint is not None and not isinstance(param_hint, str):
2020-07-21 08:23:42 +02:00
return " / ".join(repr(x) for x in param_hint)
2021-10-10 03:31:57 +02:00
2018-09-06 20:55:10 +02:00
return param_hint
2014-10-16 20:40:34 +02:00
class ClickException(Exception):
"""An exception that Click can handle and show to the user."""
2021-10-10 03:31:57 +02:00
#: The exit code for this exception.
2014-10-16 20:40:34 +02:00
exit_code = 1
2021-10-10 03:31:57 +02:00
def __init__(self, message: str) -> None:
super().__init__(message)
2014-10-16 20:40:34 +02:00
self.message = message
2021-10-10 03:31:57 +02:00
def format_message(self) -> str:
2014-10-16 20:40:34 +02:00
return self.message
2021-10-10 03:31:57 +02:00
def __str__(self) -> str:
2018-09-06 20:55:10 +02:00
return self.message
2021-10-10 03:31:57 +02:00
def show(self, file: t.Optional[t.IO] = None) -> None:
2014-10-16 20:40:34 +02:00
if file is None:
file = get_text_stderr()
2021-10-10 03:31:57 +02:00
echo(_("Error: {message}").format(message=self.format_message()), file=file)
2014-10-16 20:40:34 +02:00
class UsageError(ClickException):
"""An internal exception that signals a usage error. This typically
aborts any further handling.
:param message: the error message to display.
:param ctx: optionally the context that caused this error. Click will
fill in the context automatically in some situations.
"""
2020-07-21 08:23:42 +02:00
2014-10-16 20:40:34 +02:00
exit_code = 2
2021-10-10 03:31:57 +02:00
def __init__(self, message: str, ctx: t.Optional["Context"] = None) -> None:
super().__init__(message)
2014-10-16 20:40:34 +02:00
self.ctx = ctx
2020-07-21 08:23:42 +02:00
self.cmd = self.ctx.command if self.ctx else None
2014-10-16 20:40:34 +02:00
2021-10-10 03:31:57 +02:00
def show(self, file: t.Optional[t.IO] = None) -> None:
2014-10-16 20:40:34 +02:00
if file is None:
file = get_text_stderr()
2015-07-16 14:26:14 +02:00
color = None
2020-07-21 08:23:42 +02:00
hint = ""
2021-10-10 03:31:57 +02:00
if (
self.ctx is not None
and self.ctx.command.get_help_option(self.ctx) is not None
):
hint = _("Try '{command} {option}' for help.").format(
command=self.ctx.command_path, option=self.ctx.help_option_names[0]
2020-07-21 08:23:42 +02:00
)
2021-10-10 03:31:57 +02:00
hint = f"{hint}\n"
2014-10-16 20:40:34 +02:00
if self.ctx is not None:
2015-07-16 14:26:14 +02:00
color = self.ctx.color
2021-10-10 03:31:57 +02:00
echo(f"{self.ctx.get_usage()}\n{hint}", file=file, color=color)
echo(
_("Error: {message}").format(message=self.format_message()),
file=file,
color=color,
)
2014-10-16 20:40:34 +02:00
class BadParameter(UsageError):
"""An exception that formats out a standardized error message for a
bad parameter. This is useful when thrown from a callback or type as
Click will attach contextual information to it (for instance, which
parameter it is).
.. versionadded:: 2.0
:param param: the parameter object that caused this error. This can
be left out, and Click will attach this info itself
if possible.
:param param_hint: a string that shows up as parameter name. This
can be used as alternative to `param` in cases
where custom validation should happen. If it is
a string it's used as such, if it's a list then
each item is quoted and separated.
"""
2021-10-10 03:31:57 +02:00
def __init__(
self,
message: str,
ctx: t.Optional["Context"] = None,
param: t.Optional["Parameter"] = None,
param_hint: t.Optional[str] = None,
) -> None:
super().__init__(message, ctx)
2014-10-16 20:40:34 +02:00
self.param = param
self.param_hint = param_hint
2021-10-10 03:31:57 +02:00
def format_message(self) -> str:
2014-10-16 20:40:34 +02:00
if self.param_hint is not None:
param_hint = self.param_hint
elif self.param is not None:
2021-10-10 03:31:57 +02:00
param_hint = self.param.get_error_hint(self.ctx) # type: ignore
2014-10-16 20:40:34 +02:00
else:
2021-10-10 03:31:57 +02:00
return _("Invalid value: {message}").format(message=self.message)
2018-09-06 20:55:10 +02:00
2021-10-10 03:31:57 +02:00
return _("Invalid value for {param_hint}: {message}").format(
param_hint=_join_param_hints(param_hint), message=self.message
)
2014-10-16 20:40:34 +02:00
2015-07-16 14:26:14 +02:00
class MissingParameter(BadParameter):
"""Raised if click required an option or argument but it was not
provided when invoking the script.
.. versionadded:: 4.0
:param param_type: a string that indicates the type of the parameter.
The default is to inherit the parameter type from
the given `param`. Valid values are ``'parameter'``,
``'option'`` or ``'argument'``.
"""
2020-07-21 08:23:42 +02:00
def __init__(
2021-10-10 03:31:57 +02:00
self,
message: t.Optional[str] = None,
ctx: t.Optional["Context"] = None,
param: t.Optional["Parameter"] = None,
param_hint: t.Optional[str] = None,
param_type: t.Optional[str] = None,
) -> None:
super().__init__(message or "", ctx, param, param_hint)
2015-07-16 14:26:14 +02:00
self.param_type = param_type
2021-10-10 03:31:57 +02:00
def format_message(self) -> str:
2015-07-16 14:26:14 +02:00
if self.param_hint is not None:
2021-10-10 03:31:57 +02:00
param_hint: t.Optional[str] = self.param_hint
2015-07-16 14:26:14 +02:00
elif self.param is not None:
2021-10-10 03:31:57 +02:00
param_hint = self.param.get_error_hint(self.ctx) # type: ignore
2015-07-16 14:26:14 +02:00
else:
param_hint = None
2021-10-10 03:31:57 +02:00
2018-09-06 20:55:10 +02:00
param_hint = _join_param_hints(param_hint)
2021-10-10 03:31:57 +02:00
param_hint = f" {param_hint}" if param_hint else ""
2015-07-16 14:26:14 +02:00
param_type = self.param_type
if param_type is None and self.param is not None:
param_type = self.param.param_type_name
msg = self.message
2015-12-04 16:51:02 +01:00
if self.param is not None:
msg_extra = self.param.type.get_missing_message(self.param)
if msg_extra:
if msg:
2021-10-10 03:31:57 +02:00
msg += f". {msg_extra}"
2015-12-04 16:51:02 +01:00
else:
msg = msg_extra
2015-07-16 14:26:14 +02:00
2021-10-10 03:31:57 +02:00
msg = f" {msg}" if msg else ""
2015-07-16 14:26:14 +02:00
2021-10-10 03:31:57 +02:00
# Translate param_type for known types.
if param_type == "argument":
missing = _("Missing argument")
elif param_type == "option":
missing = _("Missing option")
elif param_type == "parameter":
missing = _("Missing parameter")
2020-07-21 08:23:42 +02:00
else:
2021-10-10 03:31:57 +02:00
missing = _("Missing {param_type}").format(param_type=param_type)
2020-07-21 08:23:42 +02:00
2021-10-10 03:31:57 +02:00
return f"{missing}{param_hint}.{msg}"
2020-07-21 08:23:42 +02:00
2021-10-10 03:31:57 +02:00
def __str__(self) -> str:
if not self.message:
param_name = self.param.name if self.param else None
return _("Missing parameter: {param_name}").format(param_name=param_name)
else:
return self.message
2020-07-21 08:23:42 +02:00
2015-07-16 14:26:14 +02:00
class NoSuchOption(UsageError):
"""Raised if click attempted to handle an option that does not
exist.
.. versionadded:: 4.0
"""
2021-10-10 03:31:57 +02:00
def __init__(
self,
option_name: str,
message: t.Optional[str] = None,
possibilities: t.Optional[t.Sequence[str]] = None,
ctx: t.Optional["Context"] = None,
) -> None:
2015-07-16 14:26:14 +02:00
if message is None:
2021-10-10 03:31:57 +02:00
message = _("No such option: {name}").format(name=option_name)
super().__init__(message, ctx)
2015-07-16 14:26:14 +02:00
self.option_name = option_name
self.possibilities = possibilities
2021-10-10 03:31:57 +02:00
def format_message(self) -> str:
if not self.possibilities:
return self.message
possibility_str = ", ".join(sorted(self.possibilities))
suggest = ngettext(
"Did you mean {possibility}?",
"(Possible options: {possibilities})",
len(self.possibilities),
).format(possibility=possibility_str, possibilities=possibility_str)
return f"{self.message} {suggest}"
2015-07-16 14:26:14 +02:00
class BadOptionUsage(UsageError):
"""Raised if an option is generally supplied but the use of the option
was incorrect. This is for instance raised if the number of arguments
for an option is not correct.
.. versionadded:: 4.0
2018-09-06 20:55:10 +02:00
:param option_name: the name of the option being used incorrectly.
2015-07-16 14:26:14 +02:00
"""
2021-10-10 03:31:57 +02:00
def __init__(
self, option_name: str, message: str, ctx: t.Optional["Context"] = None
) -> None:
super().__init__(message, ctx)
2018-09-06 20:55:10 +02:00
self.option_name = option_name
2015-12-04 16:51:02 +01:00
class BadArgumentUsage(UsageError):
"""Raised if an argument is generally supplied but the use of the argument
was incorrect. This is for instance raised if the number of values
for an argument is not correct.
.. versionadded:: 6.0
"""
2015-07-16 14:26:14 +02:00
2014-10-16 20:40:34 +02:00
class FileError(ClickException):
"""Raised if a file cannot be opened."""
2021-10-10 03:31:57 +02:00
def __init__(self, filename: str, hint: t.Optional[str] = None) -> None:
2014-10-16 20:40:34 +02:00
if hint is None:
2021-10-10 03:31:57 +02:00
hint = _("unknown error")
super().__init__(hint)
self.ui_filename = os.fsdecode(filename)
2014-10-16 20:40:34 +02:00
self.filename = filename
2021-10-10 03:31:57 +02:00
def format_message(self) -> str:
return _("Could not open file {filename!r}: {message}").format(
filename=self.ui_filename, message=self.message
)
2014-10-16 20:40:34 +02:00
class Abort(RuntimeError):
"""An internal signalling exception that signals Click to abort."""
2018-09-06 20:55:10 +02:00
class Exit(RuntimeError):
"""An exception that indicates that the application should exit with some
status code.
:param code: the status code to exit with.
"""
2020-07-21 08:23:42 +02:00
__slots__ = ("exit_code",)
2021-10-10 03:31:57 +02:00
def __init__(self, code: int = 0) -> None:
2018-09-06 20:55:10 +02:00
self.exit_code = code