2 from fcntl import flock, LOCK_EX, LOCK_SH, LOCK_UN
3 import contextlib as clib
7 class InvirtConfigError(AttributeError):
11 'A simple namespace object.'
12 def __init__(self, d = {}, __prefix = None, __default=None, **kwargs):
13 super(struct, self).__init__(d)
14 self.__prefix = __prefix
15 self.__default = __default
17 def __getattr__(self, key):
21 if self.__default is None:
22 # XX ideally these would point a frame higher on the stack.
23 prefix = self.__prefix
24 if prefix is not None:
25 raise InvirtConfigError('missing configuration variable '
26 '%s%s' % (prefix, key))
28 raise AttributeError("anonymous struct has no member '%s'"
31 return struct({}, '', self.__default)
33 def dicts2struct(x, prefix = None, default = None):
35 Given a tree of lists/dicts, perform a deep traversal to transform all the
38 if prefix is not None:
39 def newprefix(k): return prefix + str(k) + '.'
41 def newprefix(k): return prefix
43 return struct(((k, dicts2struct(v, newprefix(k), default))
44 for k,v in x.iteritems()),
48 return [dicts2struct(v, newprefix(i), default)
49 for i, v in enumerate(x)]
51 return struct({}, prefix, default)
56 def lock_file(path, exclusive = True):
57 with clib.closing(file(path, 'w')) as f:
68 def captureOutput(popen_args, stdin_str=None, *args, **kwargs):
69 """Capture stdout from a command.
71 This method will proxy the arguments to subprocess.Popen. It
72 returns the output from the command if the call succeeded and
73 raises an exception if the process returns a non-0 value.
75 This is intended to be a variant on the subprocess.check_call
76 function that also allows you access to the output from the
79 if 'stdin' not in kwargs:
80 kwargs['stdin'] = subprocess.PIPE
81 if 'stdout' not in kwargs:
82 kwargs['stdout'] = subprocess.PIPE
83 if 'stderr' not in kwargs:
84 kwargs['stderr'] = subprocess.PIPE
85 p = subprocess.Popen(popen_args, *args, **kwargs)
86 out, err = p.communicate(stdin_str)
88 raise subprocess.CalledProcessError(p.returncode, '%s, stdout: %s, stderr: %s' %
89 (popen_args, out, err))
96 class InvalidInput(Exception):
97 """Exception for user-provided input is invalid but maybe in good faith.
99 This would include setting memory to negative (which might be a
100 typo) but not setting an invalid boot CD (which requires bypassing
103 def __init__(self, err_field, err_value, expl=None):
104 Exception.__init__(self, expl)
105 self.err_field = err_field
106 self.err_value = err_value
108 class CodeError(Exception):
109 """Exception for internal errors or bad faith input."""
116 class common_tests(unittest.TestCase):
117 def test_dicts2structs(self):
120 'dict': { 'atom': 'atom', 'list': [1,2,3] },
121 'list': [ 'atom', {'key': 'value'} ]
123 structs = dicts2struct(dicts, '')
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'])
129 self.assertEqual(set(structs), set(['atom', 'dict', 'list']))
131 if __name__ == '__main__':