|
1
|
|
|
"""Core YAML mapping functionality.""" |
|
2
|
|
|
|
|
3
|
1 |
|
import os |
|
4
|
1 |
|
import abc |
|
5
|
1 |
|
import functools |
|
6
|
|
|
|
|
7
|
1 |
|
import yaml |
|
|
|
|
|
|
8
|
|
|
|
|
9
|
1 |
|
from . import common, exceptions, settings |
|
10
|
1 |
|
from .bases import Container |
|
11
|
|
|
|
|
12
|
1 |
|
MAPPER = '__mapper__' |
|
13
|
|
|
|
|
14
|
1 |
|
log = common.logger(__name__) |
|
15
|
|
|
|
|
16
|
|
|
|
|
17
|
1 |
|
def get_mapper(obj): |
|
18
|
|
|
"""Get `Mapper` instance attached to an object.""" |
|
19
|
1 |
|
try: |
|
20
|
1 |
|
mapper = getattr(obj, MAPPER) |
|
21
|
1 |
|
except AttributeError: |
|
22
|
1 |
|
if isinstance(obj, (dict, list)): |
|
23
|
1 |
|
return None |
|
24
|
|
|
else: |
|
25
|
1 |
|
msg = "mapped {!r} missing {!r} attribute".format(obj, MAPPER) |
|
26
|
1 |
|
raise AttributeError(msg) from None |
|
27
|
|
|
else: |
|
28
|
1 |
|
return mapper |
|
29
|
|
|
|
|
30
|
|
|
|
|
31
|
1 |
|
def set_mapper(obj, path, attrs, auto=True, root=None): |
|
32
|
|
|
"""Create and attach a `Mapper` instance to an object.""" |
|
33
|
1 |
|
mapper = Mapper(obj, path, attrs, auto=auto, root=root) |
|
34
|
1 |
|
setattr(obj, MAPPER, mapper) |
|
35
|
1 |
|
return mapper |
|
36
|
|
|
|
|
37
|
|
|
|
|
38
|
1 |
|
def file_required(create=False): |
|
39
|
|
|
"""Decorator for methods that require the file to exist. |
|
40
|
|
|
|
|
41
|
|
|
:param create: boolean or the method to decorate |
|
42
|
|
|
|
|
43
|
|
|
""" |
|
44
|
1 |
|
def decorator(method): |
|
45
|
|
|
|
|
46
|
1 |
|
@functools.wraps(method) |
|
47
|
|
|
def wrapped(self, *args, **kwargs): # pylint: disable=W0621 |
|
48
|
1 |
|
if not self.path: |
|
49
|
1 |
|
return None |
|
50
|
1 |
|
if not self.exists and self.auto: |
|
51
|
1 |
|
if create is True and not self.deleted: |
|
52
|
1 |
|
self.create() |
|
53
|
|
|
else: |
|
54
|
1 |
|
msg = "cannot access deleted: {}".format(self.path) |
|
55
|
1 |
|
raise exceptions.FileDeletedError(msg) |
|
56
|
1 |
|
return method(self, *args, **kwargs) |
|
57
|
|
|
|
|
58
|
1 |
|
return wrapped |
|
59
|
|
|
|
|
60
|
1 |
|
if callable(create): |
|
61
|
1 |
|
return decorator(create) |
|
62
|
|
|
else: |
|
63
|
1 |
|
return decorator |
|
64
|
|
|
|
|
65
|
|
|
|
|
66
|
1 |
|
def prevent_recursion(method): |
|
67
|
|
|
"""Decorator to prevent indirect recursive calls.""" |
|
68
|
|
|
|
|
69
|
1 |
|
@functools.wraps(method) |
|
70
|
|
|
def wrapped(self, *args, **kwargs): |
|
71
|
|
|
# pylint: disable=W0212 |
|
72
|
1 |
|
if self._activity: |
|
73
|
1 |
|
return |
|
74
|
1 |
|
self._activity = True |
|
75
|
1 |
|
result = method(self, *args, **kwargs) |
|
76
|
1 |
|
self._activity = False |
|
77
|
1 |
|
return result |
|
78
|
|
|
|
|
79
|
1 |
|
return wrapped |
|
80
|
|
|
|
|
81
|
|
|
|
|
82
|
1 |
|
def prefix(obj): |
|
83
|
|
|
"""Prefix a string with a fake designator if enabled.""" |
|
84
|
1 |
|
fake = "(fake) " if settings.fake else "" |
|
85
|
1 |
|
name = obj if isinstance(obj, str) else "'{}'".format(obj) |
|
86
|
1 |
|
return fake + name |
|
87
|
|
|
|
|
88
|
|
|
|
|
89
|
1 |
|
class BaseHelper(metaclass=abc.ABCMeta): |
|
90
|
|
|
"""Utility class to map attributes to text files. |
|
91
|
|
|
|
|
92
|
|
|
To start mapping attributes to a file: |
|
93
|
|
|
|
|
94
|
|
|
create -> [empty] -> FILE |
|
95
|
|
|
|
|
96
|
|
|
When getting an attribute: |
|
97
|
|
|
|
|
98
|
|
|
FILE -> read -> [text] -> load -> [dict] -> fetch -> ATTRIBUTES |
|
99
|
|
|
|
|
100
|
|
|
When setting an attribute: |
|
101
|
|
|
|
|
102
|
|
|
ATTRIBUTES -> store -> [dict] -> dump -> [text] -> write -> FILE |
|
103
|
|
|
|
|
104
|
|
|
After the mapped file is no longer needed: |
|
105
|
|
|
|
|
106
|
|
|
delete -> [null] -> FILE |
|
107
|
|
|
|
|
108
|
|
|
""" |
|
109
|
|
|
|
|
110
|
1 |
|
def __init__(self, path, auto=True): |
|
111
|
1 |
|
self.path = path |
|
112
|
1 |
|
self.auto = auto |
|
113
|
1 |
|
self.auto_store = False |
|
114
|
1 |
|
self.exists = self.path and os.path.isfile(self.path) |
|
115
|
1 |
|
self.deleted = False |
|
116
|
1 |
|
self._activity = False |
|
117
|
1 |
|
self._timestamp = 0 |
|
118
|
1 |
|
self._fake = "" |
|
119
|
|
|
|
|
120
|
1 |
|
def __str__(self): |
|
121
|
1 |
|
return str(self.path) |
|
122
|
|
|
|
|
123
|
1 |
|
@property |
|
124
|
|
|
def text(self): |
|
125
|
|
|
"""Get file contents.""" |
|
126
|
1 |
|
log.info("getting contents of %s...", prefix(self)) |
|
127
|
1 |
|
if settings.fake: |
|
128
|
1 |
|
text = self._fake |
|
129
|
|
|
else: |
|
130
|
1 |
|
text = self._read() |
|
131
|
1 |
|
log.trace("text read: %r", text) |
|
132
|
1 |
|
return text |
|
133
|
|
|
|
|
134
|
1 |
|
@text.setter |
|
135
|
|
|
def text(self, text): |
|
136
|
|
|
"""Set file contents.""" |
|
137
|
1 |
|
log.info("setting contents of %s...", prefix(self)) |
|
138
|
1 |
|
if settings.fake: |
|
139
|
1 |
|
self._fake = text |
|
140
|
|
|
else: |
|
141
|
1 |
|
self._write(text) |
|
142
|
1 |
|
log.trace("text wrote: %r", text) |
|
143
|
1 |
|
self.modified = True |
|
144
|
|
|
|
|
145
|
1 |
|
@property |
|
146
|
|
|
def modified(self): |
|
147
|
|
|
"""Determine if the file has been modified.""" |
|
148
|
1 |
|
if settings.fake: |
|
149
|
1 |
|
changes = self._timestamp is not None |
|
150
|
1 |
|
return changes |
|
151
|
1 |
|
elif not self.exists: |
|
152
|
1 |
|
return True |
|
153
|
|
|
else: |
|
154
|
1 |
|
was = self._timestamp |
|
155
|
1 |
|
now = common.stamp(self.path) |
|
156
|
1 |
|
return was != now |
|
157
|
|
|
|
|
158
|
1 |
|
@modified.setter |
|
159
|
|
|
def modified(self, changes): |
|
160
|
|
|
"""Mark the file as modified if there are changes.""" |
|
161
|
1 |
|
if changes: |
|
162
|
1 |
|
log.debug("marked %s as modified", prefix(self)) |
|
163
|
1 |
|
self._timestamp = 0 |
|
164
|
|
|
else: |
|
165
|
1 |
|
if settings.fake or self.path is None: |
|
166
|
1 |
|
self._timestamp = None |
|
167
|
|
|
else: |
|
168
|
1 |
|
self._timestamp = common.stamp(self.path) |
|
169
|
1 |
|
log.debug("marked %s as unmodified", prefix(self)) |
|
170
|
|
|
|
|
171
|
1 |
|
def create(self, obj): |
|
172
|
|
|
"""Create a new file for the object.""" |
|
173
|
1 |
|
log.info("creating %s for %r...", prefix(self), obj) |
|
174
|
1 |
|
if self.exists: |
|
175
|
1 |
|
log.warning("already created: %s", self) |
|
176
|
1 |
|
return |
|
177
|
1 |
|
if not settings.fake: |
|
178
|
1 |
|
common.create_dirname(self.path) |
|
179
|
1 |
|
common.touch(self.path) |
|
180
|
1 |
|
self.exists = True |
|
181
|
1 |
|
self.deleted = False |
|
182
|
|
|
|
|
183
|
1 |
|
@file_required |
|
184
|
1 |
|
@prevent_recursion |
|
185
|
|
|
def fetch(self, obj, attrs): |
|
186
|
|
|
"""Update the object's mapped attributes from its file.""" |
|
187
|
1 |
|
log.info("fetching %r from %s...", obj, prefix(self)) |
|
188
|
|
|
|
|
189
|
|
|
# Parse data from file |
|
190
|
1 |
|
text = self._read() |
|
191
|
1 |
|
data = self._load(text, self.path) |
|
192
|
1 |
|
log.trace("loaded: {}".format(data)) |
|
193
|
|
|
|
|
194
|
|
|
# Update all attributes |
|
195
|
1 |
|
attrs2 = attrs.copy() |
|
196
|
1 |
|
for name, data in data.items(): |
|
197
|
1 |
|
attrs2.pop(name, None) |
|
198
|
|
|
|
|
199
|
|
|
# Find a matching converter |
|
200
|
1 |
|
try: |
|
201
|
1 |
|
converter = attrs[name] |
|
202
|
1 |
|
except KeyError: |
|
203
|
|
|
# TODO: determine if runtime import is the best way to avoid |
|
204
|
|
|
# cyclic import |
|
205
|
1 |
|
from .converters import match |
|
206
|
1 |
|
converter = match(name, data) |
|
207
|
1 |
|
attrs[name] = converter |
|
208
|
|
|
|
|
209
|
|
|
# Convert the loaded attribute |
|
210
|
1 |
|
attr = getattr(obj, name, None) |
|
211
|
1 |
|
if all((isinstance(attr, converter), |
|
212
|
|
|
issubclass(converter, Container))): |
|
213
|
1 |
|
attr.update_value(data) |
|
214
|
|
|
else: |
|
215
|
1 |
|
attr = converter.to_value(data) |
|
216
|
1 |
|
setattr(obj, name, attr) |
|
217
|
1 |
|
self._remap(attr) |
|
218
|
1 |
|
log.trace("value fetched: %s = %r", name, attr) |
|
219
|
|
|
|
|
220
|
|
|
# Add missing attributes |
|
221
|
1 |
|
for name, converter in attrs2.items(): |
|
222
|
1 |
|
if not hasattr(obj, name): |
|
223
|
1 |
|
value = converter.to_value(None) |
|
224
|
1 |
|
msg = "fetched default value for missing attribute: %s = %r" |
|
225
|
1 |
|
log.warning(msg, name, value) |
|
226
|
1 |
|
setattr(obj, name, value) |
|
227
|
|
|
|
|
228
|
|
|
# Set meta attributes |
|
229
|
1 |
|
self.modified = False |
|
230
|
|
|
|
|
231
|
1 |
|
@file_required(create=True) |
|
232
|
1 |
|
@prevent_recursion |
|
233
|
|
|
def store(self, obj, attrs): |
|
234
|
|
|
"""Format and save the object's mapped attributes to its file.""" |
|
235
|
1 |
|
log.info("storing %r to %s...", obj, prefix(self)) |
|
236
|
|
|
|
|
237
|
|
|
# Format the data items |
|
238
|
1 |
|
data = {} |
|
239
|
1 |
|
for name, converter in attrs.items(): |
|
240
|
1 |
|
try: |
|
241
|
1 |
|
value = getattr(obj, name) |
|
242
|
1 |
|
except AttributeError: |
|
243
|
1 |
|
value = None |
|
244
|
1 |
|
msg = "storing default data for missing attribute '%s'..." |
|
245
|
1 |
|
log.warning(msg, name) |
|
246
|
|
|
|
|
247
|
1 |
|
data2 = converter.to_data(value) |
|
248
|
|
|
|
|
249
|
1 |
|
log.trace("data to store: %s = %r", name, data2) |
|
250
|
1 |
|
data[name] = data2 |
|
251
|
|
|
|
|
252
|
|
|
# Dump data to file |
|
253
|
1 |
|
text = self._dump(data) |
|
254
|
1 |
|
self._write(text) |
|
255
|
|
|
|
|
256
|
|
|
# Set meta attributes |
|
257
|
1 |
|
self.modified = True |
|
258
|
1 |
|
self.auto_store = self.auto |
|
259
|
|
|
|
|
260
|
1 |
|
def delete(self): |
|
261
|
|
|
"""Delete the object's file from the file system.""" |
|
262
|
1 |
|
if self.exists: |
|
263
|
1 |
|
log.info("deleting %s...", prefix(self)) |
|
264
|
1 |
|
if not settings.fake: |
|
265
|
1 |
|
common.delete(self.path) |
|
266
|
|
|
else: |
|
267
|
1 |
|
log.warning("already deleted: %s", self) |
|
268
|
1 |
|
self.exists = False |
|
269
|
1 |
|
self.deleted = True |
|
270
|
|
|
|
|
271
|
1 |
|
@file_required |
|
272
|
|
|
def _read(self): |
|
273
|
|
|
"""Read text from the object's file. |
|
274
|
|
|
|
|
275
|
|
|
:param path: path to a text file |
|
276
|
|
|
|
|
277
|
|
|
:return: contexts of text file |
|
278
|
|
|
|
|
279
|
|
|
""" |
|
280
|
1 |
|
if settings.fake: |
|
281
|
1 |
|
return self._fake |
|
282
|
1 |
|
elif not self.exists: |
|
283
|
1 |
|
return "" |
|
284
|
|
|
else: |
|
285
|
1 |
|
return common.read_text(self.path) |
|
286
|
|
|
|
|
287
|
1 |
|
@file_required |
|
288
|
|
|
def _write(self, text): |
|
289
|
|
|
"""Write text to the object's file. |
|
290
|
|
|
|
|
291
|
|
|
:param text: text to write to a file |
|
292
|
|
|
:param path: path to the file |
|
293
|
|
|
|
|
294
|
|
|
""" |
|
295
|
1 |
|
if settings.fake: |
|
296
|
1 |
|
self._fake = text |
|
297
|
|
|
else: |
|
298
|
1 |
|
common.write_text(text, self.path) |
|
299
|
|
|
|
|
300
|
1 |
|
@abc.abstractstaticmethod |
|
301
|
|
|
def _load(text, path): # pragma: no cover (abstract method) |
|
302
|
|
|
"""Parsed data from text. |
|
303
|
|
|
|
|
304
|
|
|
:param text: text read from a file |
|
305
|
|
|
:param path: path to the file (for displaying errors) |
|
306
|
|
|
|
|
307
|
|
|
:return: dictionary of parsed data |
|
308
|
|
|
|
|
309
|
|
|
""" |
|
310
|
|
|
raise NotImplementedError |
|
311
|
|
|
|
|
312
|
1 |
|
@abc.abstractstaticmethod |
|
313
|
|
|
def _dump(data): # pragma: no cover (abstract method) |
|
314
|
|
|
"""Dump data to text. |
|
315
|
|
|
|
|
316
|
|
|
:param data: dictionary of data |
|
317
|
|
|
|
|
318
|
|
|
:return: text to write to a file |
|
319
|
|
|
|
|
320
|
|
|
""" |
|
321
|
|
|
raise NotImplementedError |
|
322
|
|
|
|
|
323
|
1 |
|
def _remap(self, obj): |
|
324
|
|
|
"""Restore mapping on nested attributes.""" |
|
325
|
1 |
|
if isinstance(obj, Container): |
|
326
|
1 |
|
set_mapper(obj, None, common.attrs[obj.__class__], root=self) |
|
327
|
1 |
|
if isinstance(obj, dict): |
|
328
|
1 |
|
for obj2 in obj.values(): |
|
329
|
1 |
|
self._remap(obj2) |
|
330
|
|
|
else: |
|
331
|
1 |
|
assert isinstance(obj, list) |
|
332
|
1 |
|
for obj2 in obj: |
|
333
|
1 |
|
self._remap(obj2) |
|
334
|
|
|
|
|
335
|
|
|
|
|
336
|
1 |
|
class Helper(BaseHelper): |
|
337
|
|
|
"""Utility class to map attributes to YAML files.""" |
|
338
|
|
|
|
|
339
|
1 |
|
@staticmethod |
|
340
|
|
|
def _load(text, path): |
|
341
|
|
|
"""Load YAML data from text. |
|
342
|
|
|
|
|
343
|
|
|
:param text: text read from a file |
|
344
|
|
|
:param path: path to the file (for displaying errors) |
|
345
|
|
|
|
|
346
|
|
|
:return: dictionary of YAML data |
|
347
|
|
|
|
|
348
|
|
|
""" |
|
349
|
1 |
|
return common.load_yaml(text, path) |
|
350
|
|
|
|
|
351
|
1 |
|
@staticmethod |
|
352
|
|
|
def _dump(data): |
|
353
|
|
|
"""Dump YAML data to text. |
|
354
|
|
|
|
|
355
|
|
|
:param data: dictionary of YAML data |
|
356
|
|
|
|
|
357
|
|
|
:return: text to write to a file |
|
358
|
|
|
|
|
359
|
|
|
""" |
|
360
|
1 |
|
return yaml.dump(data, default_flow_style=False, allow_unicode=True) |
|
361
|
|
|
|
|
362
|
|
|
|
|
363
|
1 |
|
class Mapper(Helper): |
|
364
|
|
|
"""Maps an object's attribute to YAML files.""" |
|
365
|
|
|
|
|
366
|
1 |
|
def __init__(self, obj, path, attrs, auto=True, root=None): |
|
367
|
1 |
|
super().__init__(path, auto=auto) |
|
368
|
1 |
|
self.obj = obj |
|
369
|
1 |
|
self.attrs = attrs |
|
370
|
1 |
|
self.root = root |
|
371
|
|
|
|
|
372
|
1 |
|
def create(self): # pylint: disable=W0221 |
|
373
|
1 |
|
super().create(self.obj) |
|
374
|
|
|
|
|
375
|
1 |
|
def fetch(self): # pylint: disable=W0221 |
|
376
|
1 |
|
if self.root and self.root.auto and not self._activity: |
|
377
|
1 |
|
self._activity = True |
|
378
|
1 |
|
self.root.fetch() |
|
379
|
1 |
|
self._activity = False |
|
380
|
1 |
|
super().fetch(self.obj, self.attrs) |
|
381
|
|
|
|
|
382
|
1 |
|
def store(self): # pylint: disable=W0221 |
|
383
|
1 |
|
if self.root and self.root.auto and not self._activity: |
|
384
|
1 |
|
self._activity = True |
|
385
|
1 |
|
self.root.store() |
|
386
|
1 |
|
self._activity = False |
|
387
|
|
|
super().store(self.obj, self.attrs) |
|
388
|
|
|
|
This can be caused by one of the following:
1. Missing Dependencies
This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.
2. Missing __init__.py files
This error could also result from missing
__init__.pyfiles in your module folders. Make sure that you place one file in each sub-folder.