-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader.py
300 lines (210 loc) · 8.38 KB
/
loader.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
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# -*- coding: utf-8 -*-
# This file is part of the pymfony package.
#
# (c) Alexandre Quercia <[email protected]>
#
# 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.oop import abstract;
from pymfony.component.config import FileLocatorInterface;
from pymfony.component.config.exception import FileLoaderImportCircularReferenceException;
from pymfony.component.config.exception import FileLoaderLoadException;
"""
"""
@interface
class LoaderResolverInterface(Object):
"""LoaderResolverInterface selects a loader for a given resource.
@author Fabien Potencier <[email protected]>
"""
def resolve(self, resource, resourceType = None):
"""Returns a loader able to load the resource.
@param resource: mixed
@param resourceType: string The resource type
@return: LoaderInterface|false A LoaderInterface instance
"""
pass;
@interface
class LoaderInterface(Object):
"""LoaderInterface is the interface implemented by all loader classes.
@author Fabien Potencier <[email protected]>
"""
def load(self, resource, resourceType = None):
"""Loads a resource.
@param resource: mixed
@param resourceType: string The resource type
"""
pass;
def supports(self, resource, resourceType = None):
"""Returns true if this class supports the given resource.
@param resource: mixed
@param resourceType: string The resource type
@return: Boolean
"""
pass;
def getResolver(self):
"""Gets the loader resolver.
@return: LoaderResolverInterface A LoaderResolverInterface instance
"""
pass;
def setResolver(self, resolver):
"""Sets the loader resolver.
@param resolver: LoaderResolverInterface A LoaderResolverInterface instance
"""
pass;
class LoaderResolver(LoaderResolverInterface):
"""LoaderResolver selects a loader for a given resource.
A resource can be anything (e.g. a full path to a config file or a Closure).
Each loader determines whether it can load a resource and how.
@author Fabien Potencier <[email protected]>
"""
def __init__(self, loaders = None):
"""Constructor.
@param LoaderInterface[] $loaders An array of loaders
"""
if loaders is None:
loaders = list();
self.__loaders = list();
for loader in list(loaders):
self.addLoader(loader);
def resolve(self, resource, resourceType = None):
"""Returns a loader able to load the resource.
@param mixed $resource A resource
@param string $type The resource type
@return LoaderInterface|False A LoaderInterface instance
"""
for loader in self.__loaders:
if loader.supports(resource, resourceType):
return loader;
return False;
def addLoader(self, loader):
"""Add a Loader
@param loader: LoaderInterface A LoaderInterface instance
"""
assert isinstance(loader, LoaderInterface);
self.__loaders.append(loader);
loader.setResolver(self);
def getLoaders(self):
"""Returns the registered loaders.
@return: LoaderInterface[] An array of LoaderInterface instances
"""
return self.__loaders;
@abstract
class Loader(LoaderInterface):
"""Loader is the abstract class used by all built-in loaders.
@author Fabien Potencier <[email protected]>
"""
def __init__(self):
self._resolver = None;
def getResolver(self):
"""Gets the loader resolver.
@return LoaderResolverInterface A LoaderResolverInterface instance
"""
return self._resolver;
def setResolver(self, resolver):
"""Sets the loader resolver.
@param resolver: LoaderResolverInterface A LoaderResolverInterface instance
"""
assert isinstance(resolver, LoaderResolverInterface);
self._resolver = resolver;
def imports(self, resource, resourceType=None):
"""Imports a resource.
@param resource: mixed
@param resourceType: string The resource type
@return: mixed
"""
return self.resolve(resource).load(resource, resourceType);
def resolve(self, resource, resourceType=None):
"""Finds a loader able to load an imported resource.
@param resource: mixed
@param resourceType: string The resource type
@return: LoaderInterface A LoaderInterface instance
@raise FileLoaderLoadException: if no loader is found
"""
if self.supports(resource, resourceType):
return self;
if self._resolver is None:
loader = False;
else:
loader = self._resolver.resolve(resource, resourceType);
if loader is False:
raise FileLoaderLoadException(resource);
return loader;
class DelegatingLoader(Loader):
"""DelegatingLoader delegates loading to other loaders using a loader resolver.
This loader acts as an array of LoaderInterface objects - each having
a chance to load a given resource (handled by the resolver)
@author Fabien Potencier <[email protected]>
"""
def __init__(self, resolver):
"""Constructor.
@param resolver: LoaderResolverInterface A LoaderResolverInterface instance
"""
assert isinstance(resolver, LoaderResolverInterface);
self._resolver = resolver;
def load(self, resource, resourceType=None):
"""Loads a resource.
@param resource: mixed
@param resourceType: string The resource type
@return: mixed
@raise FileLoaderLoadException: if no loader is found.
"""
loader = self._resolver.resolve(resource, resourceType);
if loader is False:
raise FileLoaderLoadException(resource);
return loader.load(resource, resourceType);
def supports(self, resource, resourceType=None):
return False if False is self._resolver.resolve(resource, resourceType) else True;
@abstract
class FileLoader(Loader):
"""FileLoader is the abstract class used by all built-in loaders that
are file based.
@author Fabien Potencier <[email protected]>
"""
_loading = dict();
def __init__(self, locator):
"""Constructor.
@param locator: FileLocatorInterface A FileLocatorInterface instance
"""
assert isinstance(locator, FileLocatorInterface);
self.__currentDir = None;
self._locator = locator;
def setCurrentDir(self, directory):
self.__currentDir = directory;
def getLocator(self):
return self._locator;
def imports(self, resource, resourceType=None,
ignoreErrors=False, sourceResource=None):
"""Imports a resource.
@param resource: mixed
@param resourceType: string The resource type
@param ignoreErrors: Boolean Whether to ignore import errors or not
@param sourceResource: string The original resource
importing the new resource
@return: mixed
@raise FileLoaderLoadException:
@raise FileLoaderImportCircularReferenceException:
"""
try:
loader = self.resolve(resource, resourceType);
if isinstance(loader, FileLoader) and \
not self.__currentDir is None:
resource = self._locator.locate(resource, self.__currentDir);
if resource in self._loading.keys():
raise FileLoaderImportCircularReferenceException(
list(self._loading.keys())
);
self._loading[resource] = True;
ret = loader.load(resource, resourceType);
del self._loading[resource];
return ret;
except FileLoaderImportCircularReferenceException as e:
raise e;
except Exception as e:
if not ignoreErrors:
# prevent embedded imports from nesting multiple exceptions
if isinstance(e, FileLoaderLoadException):
raise e;
raise FileLoaderLoadException(resource, sourceResource, 0, e);