[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 |
---|
[2541] | 6 | import subprocess |
---|
[778] | 7 | |
---|
[1934] | 8 | class InvirtConfigError(AttributeError): |
---|
| 9 | pass |
---|
| 10 | |
---|
[2592] | 11 | class struct(dict): |
---|
[778] | 12 | 'A simple namespace object.' |
---|
[2920] | 13 | def __init__(self, d = {}, __prefix = None, __default=None, **kwargs): |
---|
[2592] | 14 | super(struct, self).__init__(d) |
---|
[1934] | 15 | self.__prefix = __prefix |
---|
[2920] | 16 | self.__default = __default |
---|
[2592] | 17 | self.update(kwargs) |
---|
[1934] | 18 | def __getattr__(self, key): |
---|
[2592] | 19 | try: |
---|
| 20 | return self[key] |
---|
| 21 | except KeyError: |
---|
[2920] | 22 | if self.__default is None: |
---|
| 23 | # XX ideally these would point a frame higher on the stack. |
---|
| 24 | prefix = self.__prefix |
---|
| 25 | if prefix is not None: |
---|
| 26 | raise InvirtConfigError('missing configuration variable ' |
---|
| 27 | '%s%s' % (prefix, key)) |
---|
| 28 | else: |
---|
| 29 | raise AttributeError("anonymous struct has no member '%s'" |
---|
| 30 | % (key,)) |
---|
[2592] | 31 | else: |
---|
[2920] | 32 | return struct({}, '', self.__default) |
---|
[778] | 33 | |
---|
[2920] | 34 | def dicts2struct(x, prefix = None, default = None): |
---|
[778] | 35 | """ |
---|
| 36 | Given a tree of lists/dicts, perform a deep traversal to transform all the |
---|
| 37 | dicts to structs. |
---|
| 38 | """ |
---|
[1934] | 39 | if prefix is not None: |
---|
| 40 | def newprefix(k): return prefix + str(k) + '.' |
---|
| 41 | else: |
---|
| 42 | def newprefix(k): return prefix |
---|
[778] | 43 | if type(x) == dict: |
---|
[2920] | 44 | return struct(((k, dicts2struct(v, newprefix(k), default)) |
---|
[1934] | 45 | for k,v in x.iteritems()), |
---|
[2920] | 46 | prefix, |
---|
| 47 | default) |
---|
[778] | 48 | elif type(x) == list: |
---|
[2920] | 49 | return [dicts2struct(v, newprefix(i), default) |
---|
| 50 | for i, v in enumerate(x)] |
---|
[1935] | 51 | elif x is None: |
---|
[2920] | 52 | return struct({}, prefix, default) |
---|
[778] | 53 | else: |
---|
| 54 | return x |
---|
| 55 | |
---|
[1197] | 56 | @clib.contextmanager |
---|
| 57 | def lock_file(path, exclusive = True): |
---|
| 58 | with clib.closing(file(path, 'w')) as f: |
---|
| 59 | if exclusive: |
---|
| 60 | locktype = LOCK_EX |
---|
| 61 | else: |
---|
| 62 | locktype = LOCK_SH |
---|
| 63 | flock(f, locktype) |
---|
| 64 | try: |
---|
| 65 | yield |
---|
| 66 | finally: |
---|
| 67 | flock(f, LOCK_UN) |
---|
[778] | 68 | |
---|
[2541] | 69 | def captureOutput(popen_args, stdin_str=None, *args, **kwargs): |
---|
| 70 | """Capture stdout from a command. |
---|
| 71 | |
---|
| 72 | This method will proxy the arguments to subprocess.Popen. It |
---|
| 73 | returns the output from the command if the call succeeded and |
---|
| 74 | raises an exception if the process returns a non-0 value. |
---|
| 75 | |
---|
| 76 | This is intended to be a variant on the subprocess.check_call |
---|
| 77 | function that also allows you access to the output from the |
---|
| 78 | command. |
---|
| 79 | """ |
---|
| 80 | if 'stdin' not in kwargs: |
---|
| 81 | kwargs['stdin'] = subprocess.PIPE |
---|
| 82 | if 'stdout' not in kwargs: |
---|
| 83 | kwargs['stdout'] = subprocess.PIPE |
---|
| 84 | if 'stderr' not in kwargs: |
---|
| 85 | kwargs['stderr'] = subprocess.STDOUT |
---|
| 86 | p = subprocess.Popen(popen_args, *args, **kwargs) |
---|
| 87 | out, _ = p.communicate(stdin_str) |
---|
| 88 | if p.returncode: |
---|
| 89 | raise subprocess.CalledProcessError(p.returncode, popen_args, out) |
---|
| 90 | return out |
---|
| 91 | |
---|
[781] | 92 | # |
---|
[1612] | 93 | # Exceptions. |
---|
| 94 | # |
---|
| 95 | |
---|
| 96 | class InvalidInput(Exception): |
---|
| 97 | """Exception for user-provided input is invalid but maybe in good faith. |
---|
| 98 | |
---|
| 99 | This would include setting memory to negative (which might be a |
---|
| 100 | typo) but not setting an invalid boot CD (which requires bypassing |
---|
| 101 | the select box). |
---|
| 102 | """ |
---|
| 103 | def __init__(self, err_field, err_value, expl=None): |
---|
[1623] | 104 | Exception.__init__(self, expl) |
---|
[1612] | 105 | self.err_field = err_field |
---|
| 106 | self.err_value = err_value |
---|
| 107 | |
---|
| 108 | class CodeError(Exception): |
---|
| 109 | """Exception for internal errors or bad faith input.""" |
---|
[2097] | 110 | pass |
---|
[1612] | 111 | |
---|
| 112 | # |
---|
[781] | 113 | # Tests. |
---|
| 114 | # |
---|
| 115 | |
---|
[778] | 116 | class common_tests(unittest.TestCase): |
---|
| 117 | def test_dicts2structs(self): |
---|
| 118 | dicts = { |
---|
| 119 | 'atom': 0, |
---|
| 120 | 'dict': { 'atom': 'atom', 'list': [1,2,3] }, |
---|
| 121 | 'list': [ 'atom', {'key': 'value'} ] |
---|
| 122 | } |
---|
[1934] | 123 | structs = dicts2struct(dicts, '') |
---|
[778] | 124 | self.assertEqual(structs.atom, dicts['atom']) |
---|
| 125 | self.assertEqual(structs.dict.atom, dicts['dict']['atom']) |
---|
| 126 | self.assertEqual(structs.dict.list, dicts['dict']['list']) |
---|
| 127 | self.assertEqual(structs.list[0], dicts['list'][0]) |
---|
| 128 | self.assertEqual(structs.list[1].key, dicts['list'][1]['key']) |
---|
[2551] | 129 | self.assertEqual(set(structs), set(['atom', 'dict', 'list'])) |
---|
[778] | 130 | |
---|
| 131 | if __name__ == '__main__': |
---|
| 132 | unittest.main() |
---|