blob: 63694123d732a497e8b76d19ab9b8fbb49002719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
"""Module to deal with errors."""
from __future__ import annotations
from typing import TYPE_CHECKING, Any
from ansible_compat.constants import ANSIBLE_MISSING_RC, INVALID_PREREQUISITES_RC
if TYPE_CHECKING:
from subprocess import CompletedProcess
class AnsibleCompatError(RuntimeError):
"""Generic error originating from ansible_compat library."""
code = 1 # generic error
def __init__(
self,
message: str | None = None,
proc: CompletedProcess[Any] | None = None,
) -> None:
"""Construct generic library exception."""
super().__init__(message)
self.proc = proc
class AnsibleCommandError(RuntimeError):
"""Exception running an Ansible command."""
def __init__(self, proc: CompletedProcess[Any]) -> None:
"""Construct an exception given a completed process."""
message = (
f"Got {proc.returncode} exit code while running: {' '.join(proc.args)}"
)
super().__init__(message)
self.proc = proc
class MissingAnsibleError(AnsibleCompatError):
"""Reports a missing or broken Ansible installation."""
code = ANSIBLE_MISSING_RC
def __init__(
self,
message: str | None = "Unable to find a working copy of ansible executable.",
proc: CompletedProcess[Any] | None = None,
) -> None:
"""."""
super().__init__(message)
self.proc = proc
class InvalidPrerequisiteError(AnsibleCompatError):
"""Reports a missing requirement."""
code = INVALID_PREREQUISITES_RC
|