[1197] | 1 | from __future__ import with_statement |
---|
| 2 | |
---|
[778] | 3 | import unittest |
---|
[795] | 4 | from fcntl import flock, LOCK_EX, LOCK_SH, LOCK_UN |
---|
[1197] | 5 | import contextlib as clib |
---|
[778] | 6 | |
---|
[1934] | 7 | class InvirtConfigError(AttributeError): |
---|
| 8 | pass |
---|
| 9 | |
---|
[778] | 10 | class struct(object): |
---|
| 11 | 'A simple namespace object.' |
---|
[1934] | 12 | def __init__(self, d = {}, __prefix = None, **kwargs): |
---|
| 13 | 'd is the dictionary or the items-iterable to update my __dict__ with.' |
---|
[778] | 14 | self.__dict__.update(d) |
---|
[781] | 15 | self.__dict__.update(kwargs) |
---|
[1934] | 16 | self.__prefix = __prefix |
---|
| 17 | def __getattr__(self, key): |
---|
| 18 | # XX ideally these would point a frame higher on the stack. |
---|
| 19 | prefix = self.__prefix |
---|
| 20 | if prefix is not None: |
---|
| 21 | raise InvirtConfigError('missing configuration variable %s%s' |
---|
| 22 | % (prefix, key)) |
---|
| 23 | else: |
---|
| 24 | raise AttributeError("anonymous struct has no member '%s'" |
---|
| 25 | % (key,)) |
---|
[778] | 26 | |
---|
[1934] | 27 | def dicts2struct(x, prefix = None): |
---|
[778] | 28 | """ |
---|
| 29 | Given a tree of lists/dicts, perform a deep traversal to transform all the |
---|
| 30 | dicts to structs. |
---|
| 31 | """ |
---|
[1934] | 32 | if prefix is not None: |
---|
| 33 | def newprefix(k): return prefix + str(k) + '.' |
---|
| 34 | else: |
---|
| 35 | def newprefix(k): return prefix |
---|
[778] | 36 | if type(x) == dict: |
---|
[1934] | 37 | return struct(((k, dicts2struct(v, newprefix(k))) |
---|
| 38 | for k,v in x.iteritems()), |
---|
| 39 | prefix) |
---|
[778] | 40 | elif type(x) == list: |
---|
[1934] | 41 | return [dicts2struct(v, newprefix(i)) for i, v in enumerate(x)] |
---|
[1935] | 42 | elif x is None: |
---|
| 43 | return struct({}, prefix) |
---|
[778] | 44 | else: |
---|
| 45 | return x |
---|
| 46 | |
---|
[1197] | 47 | @clib.contextmanager |
---|
| 48 | def lock_file(path, exclusive = True): |
---|
| 49 | with clib.closing(file(path, 'w')) as f: |
---|
| 50 | if exclusive: |
---|
| 51 | locktype = LOCK_EX |
---|
| 52 | else: |
---|
| 53 | locktype = LOCK_SH |
---|
| 54 | flock(f, locktype) |
---|
| 55 | try: |
---|
| 56 | yield |
---|
| 57 | finally: |
---|
| 58 | flock(f, LOCK_UN) |
---|
[778] | 59 | |
---|
[781] | 60 | # |
---|
[1612] | 61 | # Exceptions. |
---|
| 62 | # |
---|
| 63 | |
---|
| 64 | class InvalidInput(Exception): |
---|
| 65 | """Exception for user-provided input is invalid but maybe in good faith. |
---|
| 66 | |
---|
| 67 | This would include setting memory to negative (which might be a |
---|
| 68 | typo) but not setting an invalid boot CD (which requires bypassing |
---|
| 69 | the select box). |
---|
| 70 | """ |
---|
| 71 | def __init__(self, err_field, err_value, expl=None): |
---|
[1623] | 72 | Exception.__init__(self, expl) |
---|
[1612] | 73 | self.err_field = err_field |
---|
| 74 | self.err_value = err_value |
---|
| 75 | |
---|
| 76 | class CodeError(Exception): |
---|
| 77 | """Exception for internal errors or bad faith input.""" |
---|
[2097] | 78 | pass |
---|
[1612] | 79 | |
---|
| 80 | # |
---|
[781] | 81 | # Tests. |
---|
| 82 | # |
---|
| 83 | |
---|
[778] | 84 | class common_tests(unittest.TestCase): |
---|
| 85 | def test_dicts2structs(self): |
---|
| 86 | dicts = { |
---|
| 87 | 'atom': 0, |
---|
| 88 | 'dict': { 'atom': 'atom', 'list': [1,2,3] }, |
---|
| 89 | 'list': [ 'atom', {'key': 'value'} ] |
---|
| 90 | } |
---|
[1934] | 91 | structs = dicts2struct(dicts, '') |
---|
[778] | 92 | self.assertEqual(structs.atom, dicts['atom']) |
---|
| 93 | self.assertEqual(structs.dict.atom, dicts['dict']['atom']) |
---|
| 94 | self.assertEqual(structs.dict.list, dicts['dict']['list']) |
---|
| 95 | self.assertEqual(structs.list[0], dicts['list'][0]) |
---|
| 96 | self.assertEqual(structs.list[1].key, dicts['list'][1]['key']) |
---|
| 97 | |
---|
| 98 | if __name__ == '__main__': |
---|
| 99 | unittest.main() |
---|