-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexception.py
More file actions
276 lines (187 loc) · 7.55 KB
/
exception.py
File metadata and controls
276 lines (187 loc) · 7.55 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# -*- coding: utf-8 -*-
# This file is part of the pymfony package.
#
# (c) Alexandre Quercia <alquerci@email.com>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
from __future__ import absolute_import;
from pymfony.component.system import Object;
from pymfony.component.system.oop import interface;
from pymfony.component.system.exception import BadMethodCallException;
from pymfony.component.system.exception import InvalidArgumentException;
from pymfony.component.system.exception import LogicException;
from pymfony.component.system.exception import OutOfBoundsException;
from pymfony.component.system.exception import RuntimeException;
"""
"""
@interface
class ExceptionInterface(Object):
pass;
class RuntimeException(RuntimeException, ExceptionInterface):
pass;
class LogicException(LogicException, ExceptionInterface):
pass;
class OutOfBoundsException(OutOfBoundsException, ExceptionInterface):
pass;
class BadMethodCallException(BadMethodCallException, ExceptionInterface):
pass;
class InvalidArgumentException(InvalidArgumentException, ExceptionInterface):
pass;
class ServiceNotFoundException(InvalidArgumentException):
def __init__(self, identifier, sourceId=None):
InvalidArgumentException.__init__(self);
self.__id = identifier;
self.__sourceId = sourceId;
self.updateRepr();
def updateRepr(self):
if self.__sourceId is None:
self._message = (
'You have requested a non-existent parameter "{0}".'
"".format(self.__id)
);
else:
self._message = (
'The service "{1}" has a dependency '
'on a non-existent service "{0}".'
"".format(self.__id, self.__sourceId)
);
def getKey(self):
return self.__key;
def setSourceId(self, key):
self.__sourceId = key;
def getSourceId(self):
return self.__sourceId;
class ParameterNotFoundException(InvalidArgumentException):
def __init__(self, key, sourceId=None, sourceKey=None):
InvalidArgumentException.__init__(self);
self.__key = key;
self.__sourceKey = sourceKey;
self.__sourceId = sourceId;
self.updateRepr();
def updateRepr(self):
if not self.__sourceId is None:
self._message = (
'The service "{1}" has a dependency '
'on a non-existent parameter "{0}".'
"".format(self.__key, self.__sourceId)
);
elif not self.__sourceKey is None:
self._message = (
'The parameter "{1}" has a dependency '
'on a non-existent parameter "{0}".'
"".format(self.__key, self.__sourceKey)
);
else:
self._message = (
'You have requested a non-existent parameter "{0}".'
"".format(self.__key)
);
def getKey(self):
return self.__key;
def setSourceKey(self, key):
self.__sourceKey = key;
self.updateRepr();
def getSourceKey(self):
return self.__sourceKey;
def setSourceId(self, key):
self.__sourceId = key;
self.updateRepr();
def getSourceId(self):
return self.__sourceId;
class ParameterCircularReferenceException(RuntimeException):
def __init__(self, parameters):
RuntimeException.__init__(self, 'Circular reference detected for parameter "{0}" ("{1}" > "{2}").'.format(parameters[0], '" > "'.join(parameters), parameters[0]));
self.__parameters = parameters;
def getParameters(self):
return self.__parameters;
class ServiceCircularReferenceException(RuntimeException):
"""This exception is thrown when a circular reference is detected.
@author: Johannes M. Schmitt <schmittjoh@gmail.com>
"""
def __init__(self, serviceId, path):
assert isinstance(path, list);
RuntimeException.__init__(self,
'Circular reference detected for service "{0}", path: "{1}".'
''.format(serviceId, ' -> '.join(path)
));
self.__serviceId = None;
self.__path = None;
self.__serviceId = serviceId;
self.__path = path;
def getServiceId(self):
return self.__serviceId;
def getPath(self):
return self.__path;
class ScopeWideningInjectionException(RuntimeException):
"""Thrown when a scope widening injection is detected.
@author: Johannes M. Schmitt <schmittjoh@gmail.com>
"""
def __init__(self, sourceServiceId, sourceScope, destServiceId, destScope):
RuntimeException.__init__(self,
'Scope Widening Injection detected: The definition "{0}" references '
'the service "{1}" which belongs to a narrower scope. Generally, it '
'is safer to either move "{2}" to scope "{3}" or alternatively rely '
'on the provider pattern by injecting the container itself, and '
'requesting the service "{4}" each time it is needed. In rare, '
'special cases however that might not be necessary, then you can '
'set the reference to strict=False to get rid of this error.'
''.format(
sourceServiceId,
destServiceId,
sourceServiceId,
destScope,
destServiceId
));
self.__sourceServiceId = None;
self.__sourceScope = None;
self.__destServiceId = None;
self.__destScope = None;
self.__sourceServiceId = sourceServiceId;
self.__sourceScope = sourceScope;
self.__destServiceId = destServiceId;
self.__destScope = destScope;
def getSourceServiceId(self):
return self.__sourceServiceId;
def getSourceScope(self):
return self.__sourceScope;
def getDestServiceId(self):
return self.__destServiceId;
def getDestScope(self):
return self.__destScope;
class ScopeCrossingInjectionException(RuntimeException):
"""This exception is thrown when the a scope crossing injection is detected.
@author: Johannes M. Schmitt <schmittjoh@gmail.com>
"""
def __init__(self, sourceServiceId, sourceScope, destServiceId, destScope):
RuntimeException.__init__(self,
'Scope Crossing Injection detected: The definition "{0}" references '
'the service "{1}" which belongs to another scope hierarchy. '
'This service might not be available consistently. Generally, it '
'is safer to either move the definition "{2}" to scope "{3}", or '
'declare "{4}" as a child scope of "{5}". If you can be sure that '
'the other scope is always active, you can set the reference to '
'strict=False to get rid of this error.'.format(
sourceServiceId,
destServiceId,
sourceServiceId,
destScope,
sourceScope,
destScope
));
self.__sourceServiceId = None;
self.__sourceScope = None;
self.__destServiceId = None;
self.__destScope = None;
self.__sourceServiceId = sourceServiceId;
self.__sourceScope = sourceScope;
self.__destServiceId = destServiceId;
self.__destScope = destScope;
def getSourceServiceId(self):
return self.__sourceServiceId;
def getSourceScope(self):
return self.__sourceScope;
def getDestServiceId(self):
return self.__destServiceId;
def getDestScope(self):
return self.__destScope;