-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathexceptions.py
189 lines (132 loc) · 5.17 KB
/
exceptions.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
"""
The class hierarchy for exceptions is::
builtins.Exception
├── builtins.Warning
│ └── VersionMismatch
└── Error
├── AddressError
├── EncoderError
│ ├── EncoderMissingError
│ ├── EncodingError
│ └── DecodingError
├── CommunicationError
│ ├── ProtocolError
│ ├── StatusError
│ ├── ErrorResponse
│ │ └── PartialErrorResponse
│ ├── ConnectionError
│ └── TimeoutError
└── MatcherSpecInvalidError
"""
import typing as ty
import multiaddr.exceptions # type: ignore[import]
class Error(Exception):
"""Base class for all exceptions in this module."""
__slots__ = ()
class AddressError(Error, multiaddr.exceptions.Error): # type: ignore[no-any-unimported, misc]
"""Raised when the provided daemon location Multiaddr does not match any
of the supported patterns."""
__slots__ = ("addr",)
addr: ty.Union[str, bytes]
def __init__(self, addr: ty.Union[str, bytes]) -> None:
self.addr = addr
Error.__init__(self, "Unsupported Multiaddr pattern: {0!r}".format(addr))
class VersionMismatch(Warning):
"""Raised when daemon version is not supported by this client version."""
__slots__ = ("current", "minimum", "maximum")
current: ty.Sequence[int]
minimum: ty.Sequence[int]
maximum: ty.Sequence[int]
def __init__(self, current: ty.Sequence[int], minimum: ty.Sequence[int],
maximum: ty.Sequence[int]) -> None:
self.current = current
self.minimum = minimum
self.maximum = maximum
msg = "Unsupported daemon version '{}' (not in range: {} ≤ … < {})".format(
".".join(map(str, current)), ".".join(map(str, minimum)), ".".join(map(str, maximum))
)
super().__init__(msg)
###############
# encoding.py #
###############
class EncoderError(Error):
"""Base class for all encoding and decoding related errors."""
__slots__ = ("encoder_name",)
encoder_name: str
def __init__(self, message: str, encoder_name: str) -> None:
self.encoder_name = encoder_name
super().__init__(message)
class EncoderMissingError(EncoderError):
"""Raised when a requested encoder class does not actually exist."""
__slots__ = ()
def __init__(self, encoder_name: str) -> None:
super().__init__("Unknown encoder: '{}'".format(encoder_name), encoder_name)
class EncodingError(EncoderError):
"""Raised when encoding a Python object into a byte string has failed
due to some problem with the input data."""
__slots__ = ("original",)
original: Exception
def __init__(self, encoder_name: str, original: Exception) -> None:
self.original = original
super().__init__("Object encoding error: {}".format(original), encoder_name)
class DecodingError(EncoderError):
"""Raised when decoding a byte string to a Python object has failed due to
some problem with the input data."""
__slots__ = ("original",)
original: Exception
def __init__(self, encoder_name: str, original: Exception) -> None:
self.original = original
super().__init__("Object decoding error: {}".format(original), encoder_name)
##################
# filescanner.py #
##################
class MatcherSpecInvalidError(Error, TypeError):
"""
An attempt was made to build a matcher using matcher_from_spec, but an invalid
specification was provided.
"""
def __init__(self, invalid_spec: ty.Any) -> None:
super().__init__(
f"Don't know how to create a Matcher from spec {invalid_spec!r}"
)
###########
# http.py #
###########
class CommunicationError(Error):
"""Base class for all network communication related errors."""
__slots__ = ("original",)
original: ty.Optional[Exception]
def __init__(self, original: ty.Optional[Exception],
_message: ty.Optional[str] = None) -> None:
self.original = original
if _message:
msg = _message
else:
msg = "{}: {}".format(type(original).__name__, str(original))
super().__init__(msg)
class ProtocolError(CommunicationError):
"""Raised when parsing the response from the daemon has failed.
This can most likely occur if the service on the remote end isn't in fact
an IPFS daemon."""
__slots__ = ()
class StatusError(CommunicationError):
"""Raised when the daemon responds with an error to our request."""
__slots__ = ()
class ErrorResponse(StatusError):
"""Raised when the daemon has responded with an error message because the
requested operation could not be carried out."""
__slots__ = ()
def __init__(self, message: str, original: ty.Optional[Exception]) -> None:
super().__init__(original, message)
class PartialErrorResponse(ErrorResponse):
"""Raised when the daemon has responded with an error message after having
already returned some data."""
__slots__ = ()
def __init__(self, message: str, original: ty.Optional[Exception] = None) -> None:
super().__init__(message, original)
class ConnectionError(CommunicationError):
"""Raised when connecting to the service has failed on the socket layer."""
__slots__ = ()
class TimeoutError(CommunicationError):
"""Raised when the daemon didn't respond in time."""
__slots__ = ()