79 lines
1.9 KiB
Python
79 lines
1.9 KiB
Python
#
|
|
# Copyright 2006, 2013 Red Hat, Inc.
|
|
#
|
|
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
#
|
|
|
|
import os
|
|
|
|
|
|
class DevError(RuntimeError):
|
|
def __init__(self, msg):
|
|
RuntimeError.__init__(self, "programming error: %s" % msg)
|
|
|
|
|
|
def listify(l):
|
|
if l is None:
|
|
return []
|
|
elif not isinstance(l, list):
|
|
return [l]
|
|
else:
|
|
return l
|
|
|
|
|
|
def xml_escape(xml):
|
|
"""
|
|
Replaces chars ' " < > & with xml safe counterparts
|
|
"""
|
|
if xml:
|
|
xml = xml.replace("&", "&")
|
|
xml = xml.replace("'", "'")
|
|
xml = xml.replace("\"", """)
|
|
xml = xml.replace("<", "<")
|
|
xml = xml.replace(">", ">")
|
|
return xml
|
|
|
|
|
|
def get_prop_path(obj, prop_path):
|
|
"""Return value of attribute identified by `prop_path`
|
|
|
|
Look up the attribute of `obj` identified by `prop_path`
|
|
(separated by "."). If any component along the path is missing an
|
|
`AttributeError` is raised.
|
|
|
|
"""
|
|
parent = obj
|
|
pieces = prop_path.split(".")
|
|
for piece in pieces[:-1]:
|
|
parent = getattr(parent, piece)
|
|
|
|
return getattr(parent, pieces[-1])
|
|
|
|
|
|
def set_prop_path(obj, prop_path, value):
|
|
"""Set value of attribute identified by `prop_path`
|
|
|
|
Set the attribute of `obj` identified by `prop_path` (separated by
|
|
".") to `value`. If any component along the path is missing an
|
|
`AttributeError` is raised.
|
|
"""
|
|
parent = obj
|
|
pieces = prop_path.split(".")
|
|
for piece in pieces[:-1]:
|
|
parent = getattr(parent, piece)
|
|
|
|
return setattr(parent, pieces[-1], value)
|
|
|
|
|
|
def in_testsuite():
|
|
return "VIRTINST_TEST_SUITE" in os.environ
|
|
|
|
|
|
def diff(origstr, newstr, fromfile="Original", tofile="New"):
|
|
import difflib
|
|
dlist = difflib.unified_diff(
|
|
origstr.splitlines(1), newstr.splitlines(1),
|
|
fromfile=fromfile, tofile=tofile)
|
|
return "".join(dlist)
|