2013-03-18 05:06:52 +08:00
|
|
|
#
|
|
|
|
# Base class for all VM devices
|
|
|
|
#
|
|
|
|
# Copyright 2008 Red Hat, Inc.
|
|
|
|
# Cole Robinson <crobinso@redhat.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301 USA.
|
|
|
|
|
|
|
|
import copy
|
2013-07-13 03:16:29 +08:00
|
|
|
import os
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
import libxml2
|
|
|
|
|
2013-04-11 07:48:07 +08:00
|
|
|
from virtinst import util
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-15 21:49:46 +08:00
|
|
|
# pylint: disable=W0212
|
|
|
|
# This whole file is calling around into non-public functions that we
|
|
|
|
# don't want regular API users to touch
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-13 03:16:29 +08:00
|
|
|
_trackprops = bool("VIRTINST_TEST_TRACKPROPS" in os.environ)
|
|
|
|
_allprops = []
|
|
|
|
_seenprops = []
|
|
|
|
|
|
|
|
|
2013-07-10 20:05:08 +08:00
|
|
|
class _DocCleanupWrapper(object):
|
|
|
|
def __init__(self, doc):
|
|
|
|
self._doc = doc
|
|
|
|
def __del__(self):
|
|
|
|
self._doc.freeDoc()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-12 04:48:39 +08:00
|
|
|
|
2013-07-14 08:47:19 +08:00
|
|
|
class _CtxCleanupWrapper(object):
|
|
|
|
def __init__(self, ctx):
|
|
|
|
self._ctx = ctx
|
|
|
|
def __del__(self):
|
|
|
|
self._ctx.xpathFreeContext()
|
|
|
|
self._ctx = None
|
|
|
|
def __getattr__(self, attrname):
|
|
|
|
return getattr(self._ctx, attrname)
|
|
|
|
|
|
|
|
|
2013-04-12 04:48:39 +08:00
|
|
|
def _tuplify_lists(*args):
|
|
|
|
"""
|
|
|
|
Similar to zip(), but use None if lists aren't long enough, and
|
|
|
|
don't skip any None list entry
|
|
|
|
"""
|
|
|
|
args = [util.listify(l) for l in args]
|
|
|
|
maxlen = max([len(l) for l in args])
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
for idx in range(maxlen):
|
|
|
|
tup = tuple()
|
|
|
|
for l in args:
|
|
|
|
tup += (idx >= len(l) and (None,) or (l[idx],))
|
|
|
|
ret.append(tup)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _sanitize_libxml_xml(xml):
|
|
|
|
# Strip starting <?...> line
|
|
|
|
if xml.startswith("<?"):
|
|
|
|
ignore, xml = xml.split("\n", 1)
|
|
|
|
if not xml.endswith("\n") and xml.count("\n"):
|
|
|
|
xml += "\n"
|
|
|
|
return xml
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _get_xpath_node(ctx, xpath, is_multi=False):
|
|
|
|
node = ctx.xpathEval(xpath)
|
|
|
|
if not is_multi:
|
|
|
|
return (node and node[0] or None)
|
|
|
|
return node
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _build_xpath_node(ctx, xpath, addnode=None):
|
|
|
|
"""
|
|
|
|
Build all nodes required to set an xpath. If we have XML <foo/>, and want
|
|
|
|
to set xpath /foo/bar/baz@booyeah, we create node 'bar' and 'baz'
|
|
|
|
returning the last node created.
|
|
|
|
"""
|
|
|
|
parentpath = ""
|
|
|
|
parentnode = None
|
|
|
|
|
|
|
|
def prevSibling(node):
|
|
|
|
parent = node.get_parent()
|
|
|
|
if not parent:
|
|
|
|
return None
|
|
|
|
|
|
|
|
prev = None
|
|
|
|
for child in parent.children:
|
|
|
|
if child == node:
|
|
|
|
return prev
|
|
|
|
prev = child
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def make_node(parentnode, newnode):
|
|
|
|
# Add the needed parent node, try to preserve whitespace by
|
|
|
|
# looking for a starting TEXT node, and copying it
|
|
|
|
def node_is_text(n):
|
|
|
|
return bool(n and n.type == "text" and not n.content.count("<"))
|
|
|
|
|
|
|
|
sib = parentnode.get_last()
|
|
|
|
if not node_is_text(sib):
|
|
|
|
# This case is when we add a child element to a node for the
|
|
|
|
# first time, like:
|
|
|
|
#
|
|
|
|
# <features/>
|
|
|
|
# to
|
|
|
|
# <features>
|
|
|
|
# <acpi/>
|
|
|
|
# </features>
|
|
|
|
prevsib = prevSibling(parentnode)
|
|
|
|
if node_is_text(prevsib):
|
|
|
|
sib = libxml2.newText(prevsib.content)
|
|
|
|
else:
|
2013-07-15 21:49:46 +08:00
|
|
|
sib = libxml2.newText("\n")
|
2013-03-18 05:06:52 +08:00
|
|
|
parentnode.addChild(sib)
|
|
|
|
|
2013-07-15 21:49:46 +08:00
|
|
|
# This case is adding a child element to an already properly
|
2013-03-18 05:06:52 +08:00
|
|
|
# spaced element. Example:
|
|
|
|
# <features>
|
2013-07-15 21:49:46 +08:00
|
|
|
# <acpi/>
|
2013-03-18 05:06:52 +08:00
|
|
|
# </features>
|
|
|
|
# to
|
|
|
|
# <features>
|
2013-07-15 21:49:46 +08:00
|
|
|
# <acpi/>
|
|
|
|
# <apic/>
|
2013-03-18 05:06:52 +08:00
|
|
|
# </features>
|
|
|
|
sib = parentnode.get_last()
|
|
|
|
content = sib.content
|
|
|
|
sib = sib.addNextSibling(libxml2.newText(" "))
|
|
|
|
txt = libxml2.newText(content)
|
|
|
|
|
|
|
|
sib.addNextSibling(newnode)
|
|
|
|
newnode.addNextSibling(txt)
|
|
|
|
return newnode
|
|
|
|
|
|
|
|
nodelist = xpath.split("/")
|
|
|
|
for idx in range(len(nodelist)):
|
|
|
|
nodename = nodelist[idx]
|
|
|
|
if not nodename:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# If xpath is a node property, set it and move on
|
|
|
|
if nodename.startswith("@"):
|
|
|
|
nodename = nodename.strip("@")
|
|
|
|
parentnode = parentnode.setProp(nodename, "")
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not parentpath:
|
|
|
|
parentpath = nodename
|
|
|
|
else:
|
|
|
|
parentpath += "/%s" % nodename
|
|
|
|
|
|
|
|
# Node found, nothing to create for now
|
|
|
|
node = _get_xpath_node(ctx, parentpath)
|
|
|
|
if node:
|
|
|
|
parentnode = node
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not parentnode:
|
|
|
|
raise RuntimeError("Could not find XML root node")
|
|
|
|
|
|
|
|
# Remove conditional xpath elements for node creation
|
|
|
|
if nodename.count("["):
|
|
|
|
nodename = nodename[:nodename.index("[")]
|
|
|
|
|
|
|
|
newnode = libxml2.newNode(nodename)
|
|
|
|
parentnode = make_node(parentnode, newnode)
|
|
|
|
|
|
|
|
if addnode:
|
|
|
|
parentnode = make_node(parentnode, addnode)
|
|
|
|
|
|
|
|
return parentnode
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _remove_xpath_node(ctx, xpath, dofree=True):
|
|
|
|
"""
|
|
|
|
Remove an XML node tree if it has no content
|
|
|
|
"""
|
|
|
|
curxpath = xpath
|
|
|
|
|
|
|
|
while curxpath:
|
|
|
|
is_orig = (curxpath == xpath)
|
|
|
|
node = _get_xpath_node(ctx, curxpath)
|
|
|
|
if curxpath.count("/"):
|
|
|
|
curxpath, ignore = curxpath.rsplit("/", 1)
|
|
|
|
else:
|
|
|
|
curxpath = None
|
|
|
|
|
|
|
|
if not node:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if node.type not in ["attribute", "element"]:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if node.type == "element" and (node.children or node.properties):
|
|
|
|
# Only do a deep unlink if it was the original requested path
|
|
|
|
if not is_orig:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Look for preceding whitespace and remove it
|
|
|
|
white = node.get_prev()
|
|
|
|
if white and white.type == "text" and not white.content.count("<"):
|
|
|
|
white.unlinkNode()
|
|
|
|
white.freeNode()
|
|
|
|
|
|
|
|
node.unlinkNode()
|
|
|
|
if dofree:
|
|
|
|
node.freeNode()
|
|
|
|
|
|
|
|
|
2013-07-14 06:56:09 +08:00
|
|
|
class XMLProperty(property):
|
2013-07-14 10:13:13 +08:00
|
|
|
def __init__(self, fget=None, fset=None, doc=None, xpath=None, name=None,
|
|
|
|
get_converter=None, set_converter=None,
|
2013-07-14 05:54:46 +08:00
|
|
|
xml_get_xpath=None, xml_set_xpath=None,
|
2013-07-14 09:49:32 +08:00
|
|
|
is_bool=False, is_tri=False, is_int=False, is_multi=False,
|
2013-07-15 22:57:16 +08:00
|
|
|
clear_first=None, default_cb=None, default_name=None):
|
2013-07-14 05:54:46 +08:00
|
|
|
"""
|
|
|
|
Set a XMLBuilder class property that represents a value in the
|
|
|
|
<domain> XML. For example
|
|
|
|
|
2013-07-14 06:56:09 +08:00
|
|
|
name = XMLProperty(get_name, set_name, xpath="/domain/name")
|
2013-07-14 05:54:46 +08:00
|
|
|
|
|
|
|
When building XML from scratch (virt-install), name is a regular
|
|
|
|
class property. When parsing and editting existing guest XML, we
|
|
|
|
use the xpath value to map the name property to the underlying XML
|
|
|
|
definition.
|
|
|
|
|
|
|
|
@param fget: typical getter function for the property
|
|
|
|
@param fset: typical setter function for the property
|
|
|
|
@param doc: option doc string for the property
|
|
|
|
@param xpath: xpath string which maps to the associated property
|
|
|
|
in a typical XML document
|
2013-07-14 10:13:13 +08:00
|
|
|
@param name: Just a string to print for debugging, only needed
|
|
|
|
if xpath isn't specified.
|
2013-07-14 05:54:46 +08:00
|
|
|
@param get_converter:
|
|
|
|
@param set_converter: optional function for converting the property
|
|
|
|
value from the virtinst API to the guest XML. For example,
|
2013-07-14 11:07:01 +08:00
|
|
|
the Guest.memory API was once in MB, but the libvirt domain
|
|
|
|
memory API is in KB. So, if xpath is specified, on a 'get'
|
|
|
|
operation we convert the XML value with int(val) / 1024.
|
2013-07-14 05:54:46 +08:00
|
|
|
@param xml_get_xpath:
|
|
|
|
@param xml_set_xpath: Not all props map cleanly to a static xpath.
|
|
|
|
This allows passing functions which generate an xpath for getting
|
|
|
|
or setting.
|
|
|
|
@param is_bool: Whether this is a boolean property in the XML
|
2013-07-14 09:04:27 +08:00
|
|
|
@param is_tri: Boolean XML property, but return None if there's
|
|
|
|
no value set.
|
2013-07-14 05:54:46 +08:00
|
|
|
@param is_multi: Whether data is coming multiple or a single node
|
2013-07-14 09:49:32 +08:00
|
|
|
@param is_int: Whethere this is an integer property in the XML
|
2013-07-14 05:54:46 +08:00
|
|
|
@param clear_first: List of xpaths to unset before any 'set' operation.
|
|
|
|
For those weird interdependent XML props like disk source type and
|
|
|
|
path attribute.
|
2013-07-15 05:02:42 +08:00
|
|
|
@param default_cb: If building XML from scratch, and this property
|
|
|
|
is never explicitly altered, this function is called for setting
|
|
|
|
a default value in the XML, and for any 'get' call before the
|
|
|
|
first explicit 'set'.
|
2013-07-15 22:57:16 +08:00
|
|
|
@param default_name: If the user does a set and passes in this
|
|
|
|
value, instead use the value of default_cb()
|
2013-07-14 05:54:46 +08:00
|
|
|
"""
|
|
|
|
|
2013-07-13 03:16:29 +08:00
|
|
|
self._xpath = xpath
|
2013-07-14 10:13:13 +08:00
|
|
|
self._name = name or xpath
|
|
|
|
if not self._name:
|
|
|
|
raise RuntimeError("XMLProperty: name or xpath must be passed.")
|
2013-07-13 03:16:29 +08:00
|
|
|
|
2013-07-14 09:04:27 +08:00
|
|
|
self._is_tri = is_tri
|
|
|
|
self._is_bool = is_bool or is_tri
|
2013-07-14 09:49:32 +08:00
|
|
|
self._is_int = is_int
|
2013-07-14 05:54:46 +08:00
|
|
|
self._is_multi = is_multi
|
|
|
|
|
|
|
|
self._xpath_for_getter_cb = xml_get_xpath
|
|
|
|
self._xpath_for_setter_cb = xml_set_xpath
|
|
|
|
|
|
|
|
self._convert_value_for_getter_cb = get_converter
|
|
|
|
self._convert_value_for_setter_cb = set_converter
|
|
|
|
self._setter_clear_these_first = clear_first or []
|
2013-07-15 05:02:42 +08:00
|
|
|
self._default_cb = default_cb
|
2013-07-15 22:57:16 +08:00
|
|
|
self._default_name = default_name
|
2013-07-15 05:02:42 +08:00
|
|
|
|
|
|
|
if sum([int(bool(i)) for i in [
|
|
|
|
self._is_bool, self._is_int,
|
|
|
|
(self._convert_value_for_getter_cb or
|
|
|
|
self._convert_value_for_setter_cb)]]) > 1:
|
|
|
|
raise RuntimeError("Conflict property converter options.")
|
2013-07-14 05:54:46 +08:00
|
|
|
|
2013-07-15 22:57:16 +08:00
|
|
|
if self._default_name and not self._default_cb:
|
|
|
|
raise RuntimeError("default_name requires default_cb.")
|
|
|
|
|
2013-07-14 21:31:14 +08:00
|
|
|
self._fget = fget
|
|
|
|
self._fset = fset
|
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
if self._is_new_style_prop():
|
|
|
|
if _trackprops:
|
|
|
|
_allprops.append(self)
|
|
|
|
else:
|
|
|
|
if self._default_cb:
|
|
|
|
raise RuntimeError("Can't set default_cb for old style XML "
|
|
|
|
"prop.")
|
2013-07-14 05:54:46 +08:00
|
|
|
|
2013-07-16 21:14:37 +08:00
|
|
|
property.__init__(self, fget=self.new_getter, fset=self.new_setter)
|
|
|
|
self.__doc__ = doc
|
2013-07-14 05:54:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
##################
|
|
|
|
# Public-ish API #
|
|
|
|
##################
|
|
|
|
|
2013-07-13 03:16:29 +08:00
|
|
|
def __repr__(self):
|
2013-07-14 10:13:13 +08:00
|
|
|
return "<XMLProperty %s %s>" % (str(self._name), id(self))
|
2013-07-13 03:16:29 +08:00
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
def has_default_value(self):
|
|
|
|
return bool(self._default_cb)
|
|
|
|
|
2013-07-13 03:16:29 +08:00
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
####################
|
|
|
|
# Internal helpers #
|
|
|
|
####################
|
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
def _is_new_style_prop(self):
|
|
|
|
"""
|
|
|
|
True if this is a prop without an explicitly passed in fget/fset
|
|
|
|
pair.
|
|
|
|
"""
|
|
|
|
return not bool(self._fget)
|
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
def _findpropname(self, xmlbuilder):
|
|
|
|
"""
|
|
|
|
Map the raw property() instance to the param name it's exposed
|
|
|
|
as in the XMLBuilder class. This is just for debug purposes.
|
|
|
|
"""
|
2013-07-16 21:14:37 +08:00
|
|
|
for key, val in xmlbuilder.all_xml_props().items():
|
2013-07-14 05:54:46 +08:00
|
|
|
if val is self:
|
2013-07-12 22:49:15 +08:00
|
|
|
return key
|
|
|
|
raise RuntimeError("Didn't find expected property")
|
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
def _xpath_for_getter(self, xmlbuilder):
|
2013-07-14 10:13:13 +08:00
|
|
|
ret = self._xpath
|
2013-07-14 05:54:46 +08:00
|
|
|
if self._xpath_for_getter_cb:
|
2013-07-14 10:13:13 +08:00
|
|
|
ret = self._xpath_for_getter_cb(xmlbuilder)
|
|
|
|
if ret is None:
|
|
|
|
raise RuntimeError("%s: didn't generate any setter xpath." % self)
|
2013-07-15 21:49:46 +08:00
|
|
|
return self._xpath_fix_relative(xmlbuilder, ret)
|
2013-07-14 05:54:46 +08:00
|
|
|
def _xpath_for_setter(self, xmlbuilder):
|
2013-07-14 10:13:13 +08:00
|
|
|
ret = self._xpath
|
2013-07-14 05:54:46 +08:00
|
|
|
if self._xpath_for_setter_cb:
|
2013-07-14 10:13:13 +08:00
|
|
|
ret = self._xpath_for_setter_cb(xmlbuilder)
|
|
|
|
if ret is None:
|
|
|
|
raise RuntimeError("%s: didn't generate any setter xpath." % self)
|
2013-07-15 21:49:46 +08:00
|
|
|
return self._xpath_fix_relative(xmlbuilder, ret)
|
|
|
|
def _xpath_fix_relative(self, xmlbuilder, xpath):
|
|
|
|
if not getattr(xmlbuilder, "_xml_fixup_relative_xpath"):
|
|
|
|
return xpath
|
|
|
|
root = "./%s" % getattr(xmlbuilder, "_XML_ROOT_NAME")
|
|
|
|
if not xpath.startswith(root):
|
|
|
|
raise RuntimeError("%s: xpath did not start with root=%s" %
|
|
|
|
(str(self), root))
|
|
|
|
return "." + xpath[len(root):]
|
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
|
2013-07-14 06:04:49 +08:00
|
|
|
def _xpath_list_for_setter(self, xpath, setval, nodelist):
|
|
|
|
if not self._is_multi:
|
|
|
|
return [xpath]
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
list_length = max(len(nodelist), len(setval), 1)
|
|
|
|
|
|
|
|
# This might not generally work, but as of this writing there's
|
|
|
|
# only one user of is_multi and it works for that. It's probably
|
|
|
|
# generalizable though.
|
|
|
|
for i in range(list_length):
|
|
|
|
idxstr = "[%d]/" % (i + 1)
|
|
|
|
splitpath = xpath.rsplit("/", 1)
|
|
|
|
ret.append("%s%s%s" % (splitpath[0], idxstr, splitpath[1]))
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
def _convert_value_for_setter(self, xmlbuilder):
|
|
|
|
# Convert from API value to XML value
|
2013-07-15 05:02:42 +08:00
|
|
|
val = self._orig_fget(xmlbuilder)
|
2013-07-14 05:54:46 +08:00
|
|
|
if self._convert_value_for_setter_cb:
|
|
|
|
val = self._convert_value_for_setter_cb(xmlbuilder, val)
|
2013-07-15 22:57:16 +08:00
|
|
|
elif self._default_name and val == self._default_name:
|
|
|
|
val = self._default_cb(xmlbuilder)
|
2013-07-14 05:54:46 +08:00
|
|
|
return val
|
|
|
|
|
|
|
|
def _build_node_list(self, xmlbuilder, xpath):
|
|
|
|
"""
|
|
|
|
Build list of nodes that the passed xpaths reference
|
|
|
|
"""
|
|
|
|
root_ctx = getattr(xmlbuilder, "_xml_ctx")
|
|
|
|
nodes = _get_xpath_node(root_ctx, xpath, self._is_multi)
|
|
|
|
return util.listify(nodes)
|
|
|
|
|
|
|
|
def _build_clear_list(self, xmlbuilder, setternodes):
|
|
|
|
"""
|
|
|
|
Build a list of nodes that we should erase first before performing
|
|
|
|
a set operation. But we don't want to unset a node that we are
|
|
|
|
just going to 'set' on top of afterwards, so skip those ones.
|
|
|
|
"""
|
|
|
|
root_ctx = getattr(xmlbuilder, "_xml_ctx")
|
|
|
|
clear_nodes = []
|
|
|
|
|
|
|
|
for cpath in self._setter_clear_these_first:
|
|
|
|
cnode = _get_xpath_node(root_ctx, cpath, False)
|
|
|
|
if not cnode:
|
|
|
|
continue
|
|
|
|
if any([(n and n.nodePath() == cnode.nodePath())
|
|
|
|
for n in setternodes]):
|
|
|
|
continue
|
|
|
|
clear_nodes.append(cnode)
|
|
|
|
return clear_nodes
|
|
|
|
|
|
|
|
|
2013-07-15 04:05:59 +08:00
|
|
|
def _convert_get_value(self, xmlbuilder, val, initial=False):
|
|
|
|
if self._fget and initial:
|
|
|
|
# If user passed in an fget impl, we expect them to put things
|
|
|
|
# in the form they want.
|
|
|
|
return val
|
|
|
|
|
2013-07-14 09:04:27 +08:00
|
|
|
if self._is_bool:
|
2013-07-15 04:05:59 +08:00
|
|
|
if initial and self._is_tri and val is None:
|
2013-07-14 09:04:27 +08:00
|
|
|
return None
|
|
|
|
return bool(val)
|
2013-07-15 04:05:59 +08:00
|
|
|
elif self._is_int and val is not None:
|
2013-07-16 09:52:18 +08:00
|
|
|
intkwargs = {}
|
2013-07-15 21:49:46 +08:00
|
|
|
if "0x" in str(val):
|
2013-07-16 09:52:18 +08:00
|
|
|
intkwargs["base"] = 16
|
|
|
|
return int(val, **intkwargs)
|
2013-07-15 04:05:59 +08:00
|
|
|
elif self._convert_value_for_getter_cb:
|
|
|
|
return self._convert_value_for_getter_cb(xmlbuilder, val)
|
|
|
|
elif self._is_multi and val is None:
|
|
|
|
return []
|
2013-07-14 09:04:27 +08:00
|
|
|
return val
|
|
|
|
|
2013-07-14 21:31:14 +08:00
|
|
|
def _orig_fget(self, xmlbuilder):
|
|
|
|
# Returns (is unset, fget value)
|
|
|
|
if self._fget:
|
|
|
|
# For the passed in fget callback, we have any way to
|
|
|
|
# tell if the value is unset or not.
|
2013-07-15 05:02:42 +08:00
|
|
|
return self._fget(xmlbuilder)
|
2013-07-14 21:31:14 +08:00
|
|
|
|
|
|
|
# The flip side to default_orig_fset, fetch the value from
|
|
|
|
# XMLBuilder._propstore
|
|
|
|
propstore = getattr(xmlbuilder, "_propstore")
|
|
|
|
propname = self._findpropname(xmlbuilder)
|
|
|
|
unset = (propname not in propstore)
|
2013-07-15 05:02:42 +08:00
|
|
|
if unset and self._default_cb:
|
2013-07-15 22:57:16 +08:00
|
|
|
if self._default_name:
|
|
|
|
return self._default_name
|
2013-07-15 05:02:42 +08:00
|
|
|
return self._default_cb(xmlbuilder)
|
|
|
|
return propstore.get(propname, None)
|
2013-07-14 21:31:14 +08:00
|
|
|
|
|
|
|
def _orig_fset(self, xmlbuilder, val):
|
|
|
|
"""
|
|
|
|
If no fset specified, this stores the value in XMLBuilder._propstore
|
|
|
|
dict as propname->value. This saves us from having to explicitly
|
|
|
|
track every variable.
|
|
|
|
"""
|
|
|
|
if self._fset:
|
|
|
|
return self._fset(xmlbuilder, val)
|
|
|
|
|
|
|
|
propstore = getattr(xmlbuilder, "_propstore")
|
|
|
|
proporder = getattr(xmlbuilder, "_proporder")
|
|
|
|
|
|
|
|
if _trackprops and self not in _seenprops:
|
|
|
|
_seenprops.append(self)
|
|
|
|
propname = self._findpropname(xmlbuilder)
|
|
|
|
propstore[propname] = val
|
|
|
|
|
|
|
|
if propname in proporder:
|
|
|
|
proporder.remove(propname)
|
|
|
|
proporder.append(propname)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# The actual getter/setter impls #
|
|
|
|
##################################
|
|
|
|
|
2013-07-14 21:07:42 +08:00
|
|
|
def new_getter(self, xmlbuilder):
|
2013-07-15 05:02:42 +08:00
|
|
|
fgetval = self._orig_fget(xmlbuilder)
|
2013-07-14 05:54:46 +08:00
|
|
|
|
|
|
|
root_node = getattr(xmlbuilder, "_xml_node")
|
|
|
|
if root_node is None:
|
2013-07-15 04:05:59 +08:00
|
|
|
return self._convert_get_value(xmlbuilder, fgetval, initial=True)
|
2013-07-14 05:54:46 +08:00
|
|
|
|
|
|
|
xpath = self._xpath_for_getter(xmlbuilder)
|
|
|
|
nodelist = self._build_node_list(xmlbuilder, xpath)
|
|
|
|
|
2013-07-15 04:05:59 +08:00
|
|
|
if not nodelist:
|
|
|
|
return self._convert_get_value(xmlbuilder, None)
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
for node in nodelist:
|
|
|
|
content = node.content
|
|
|
|
if self._is_bool:
|
|
|
|
content = True
|
|
|
|
val = self._convert_get_value(xmlbuilder, content)
|
|
|
|
if not self._is_multi:
|
|
|
|
return val
|
|
|
|
# If user is querying multiple nodes, return a list of results
|
|
|
|
ret.append(val)
|
|
|
|
return ret
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
def new_setter(self, xmlbuilder, val, call_fset=True):
|
|
|
|
if call_fset:
|
2013-07-14 21:07:42 +08:00
|
|
|
self._orig_fset(xmlbuilder, val)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
root_node = getattr(xmlbuilder, "_xml_node")
|
|
|
|
if root_node is None:
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-14 05:54:46 +08:00
|
|
|
xpath = self._xpath_for_setter(xmlbuilder)
|
|
|
|
setval = self._convert_value_for_setter(xmlbuilder)
|
|
|
|
nodelist = self._build_node_list(xmlbuilder, xpath)
|
|
|
|
clearlist = self._build_clear_list(xmlbuilder, nodelist)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-13 22:09:00 +08:00
|
|
|
node_map = []
|
2013-07-14 05:54:46 +08:00
|
|
|
if clearlist:
|
|
|
|
node_map += _tuplify_lists(clearlist, None, "")
|
2013-07-14 06:04:49 +08:00
|
|
|
node_map += _tuplify_lists(nodelist, setval,
|
|
|
|
self._xpath_list_for_setter(xpath, setval, nodelist))
|
|
|
|
|
2013-07-12 22:49:15 +08:00
|
|
|
for node, val, use_xpath in node_map:
|
2013-03-18 05:06:52 +08:00
|
|
|
if node:
|
2013-07-12 22:49:15 +08:00
|
|
|
use_xpath = node.nodePath()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-15 04:01:38 +08:00
|
|
|
if val is None or val is False:
|
2013-07-14 05:54:46 +08:00
|
|
|
_remove_xpath_node(root_node, use_xpath)
|
2013-07-15 04:01:38 +08:00
|
|
|
continue
|
|
|
|
|
|
|
|
if not node:
|
|
|
|
node = _build_xpath_node(root_node, use_xpath)
|
|
|
|
|
|
|
|
if val is True:
|
|
|
|
# Boolean property, creating the node is enough
|
|
|
|
continue
|
|
|
|
node.setContent(util.xml_escape(str(val)))
|
|
|
|
|
2013-07-15 05:54:01 +08:00
|
|
|
def _prop_is_unset(self, xmlbuilder):
|
|
|
|
propstore = getattr(xmlbuilder, "_propstore")
|
|
|
|
propname = self._findpropname(xmlbuilder)
|
|
|
|
return (propname not in propstore)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-15 05:54:01 +08:00
|
|
|
def refresh_xml(self, xmlbuilder, force_call_fset=False):
|
2013-07-15 05:02:42 +08:00
|
|
|
call_fset = True
|
|
|
|
if not self._is_new_style_prop():
|
|
|
|
call_fset = False
|
|
|
|
elif getattr(xmlbuilder, "_is_parse")():
|
|
|
|
call_fset = False
|
2013-07-15 05:54:01 +08:00
|
|
|
elif self._prop_is_unset(xmlbuilder) and self._default_cb:
|
|
|
|
call_fset = False
|
|
|
|
|
|
|
|
if force_call_fset:
|
|
|
|
call_fset = True
|
2013-07-15 05:02:42 +08:00
|
|
|
self.fset(xmlbuilder, self.fget(xmlbuilder), call_fset=call_fset)
|
|
|
|
|
|
|
|
def set_default(self, xmlbuilder):
|
2013-07-15 05:54:01 +08:00
|
|
|
if not self._prop_is_unset(xmlbuilder) or not self._default_cb:
|
2013-07-15 05:02:42 +08:00
|
|
|
return
|
2013-07-17 00:30:43 +08:00
|
|
|
if self._default_cb(xmlbuilder) is None:
|
|
|
|
return
|
2013-07-15 05:54:01 +08:00
|
|
|
self.refresh_xml(xmlbuilder, force_call_fset=True)
|
2013-07-14 21:07:42 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-07-14 06:56:09 +08:00
|
|
|
class XMLBuilder(object):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
Base for all classes which build or parse domain XML
|
|
|
|
"""
|
2013-07-12 22:49:15 +08:00
|
|
|
@staticmethod
|
|
|
|
def indent(xmlstr, level):
|
|
|
|
xml = ""
|
|
|
|
if not xmlstr:
|
|
|
|
return xml
|
2013-07-15 21:49:46 +08:00
|
|
|
if not level:
|
|
|
|
return xmlstr
|
|
|
|
return "\n".join((" " * level + l) for l in xmlstr.splitlines())
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-17 00:48:52 +08:00
|
|
|
# Order that we should apply values to the XML. Keeps XML generation
|
|
|
|
# consistent with what the test suite expects.
|
2013-07-15 21:49:46 +08:00
|
|
|
_XML_PROP_ORDER = []
|
|
|
|
|
|
|
|
# Root element name of this function, used to populate a default
|
|
|
|
# _get_xml_config
|
|
|
|
_XML_ROOT_NAME = None
|
|
|
|
|
|
|
|
# Integer indentation level for generated XML.
|
|
|
|
_XML_INDENT = None
|
|
|
|
|
|
|
|
# If XML xpaths are relative to a different element, like
|
|
|
|
# device addresses.
|
|
|
|
_XML_XPATH_RELATIVE = False
|
|
|
|
|
|
|
|
# List of property names that point to a manually tracked
|
|
|
|
# XMLBuilder that alters our device xml, like self.address for
|
|
|
|
# VirtualDevice
|
|
|
|
_XML_SUB_ELEMENTS = []
|
2013-07-15 03:06:40 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
_dumpxml_xpath = "."
|
2013-07-07 02:12:13 +08:00
|
|
|
def __init__(self, conn, parsexml=None, parsexmlnode=None):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
Initialize state
|
|
|
|
|
|
|
|
@param conn: libvirt connection to validate device against
|
2013-07-05 20:59:58 +08:00
|
|
|
@type conn: VirtualConnection
|
2013-03-18 05:06:52 +08:00
|
|
|
@param parsexml: Optional XML string to parse
|
|
|
|
@type parsexml: C{str}
|
|
|
|
@param parsexmlnode: Option xpathNode to use
|
|
|
|
"""
|
2013-07-06 08:14:57 +08:00
|
|
|
self._conn = conn
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
self._xml_node = None
|
|
|
|
self._xml_ctx = None
|
2013-07-10 20:05:08 +08:00
|
|
|
self._xml_root_doc = None
|
2013-07-15 21:49:46 +08:00
|
|
|
self._xml_fixup_relative_xpath = False
|
2013-07-12 22:49:15 +08:00
|
|
|
self._propstore = {}
|
|
|
|
self._proporder = []
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
if parsexml or parsexmlnode:
|
|
|
|
self._parsexml(parsexml, parsexmlnode)
|
|
|
|
|
|
|
|
|
2013-07-15 06:31:33 +08:00
|
|
|
##############
|
|
|
|
# Public API #
|
|
|
|
##############
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def copy(self):
|
2013-07-14 09:04:27 +08:00
|
|
|
ret = copy.copy(self)
|
|
|
|
ret._propstore = ret._propstore.copy()
|
|
|
|
ret._proporder = ret._proporder[:]
|
|
|
|
return ret
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-06 08:14:57 +08:00
|
|
|
def _get_conn(self):
|
2013-03-18 05:06:52 +08:00
|
|
|
return self._conn
|
2013-07-06 08:14:57 +08:00
|
|
|
conn = property(_get_conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
def set_xml_node(self, node):
|
|
|
|
self._parsexml(None, node)
|
|
|
|
|
|
|
|
def get_xml_node_path(self):
|
|
|
|
if self._xml_node:
|
|
|
|
return self._xml_node.nodePath()
|
|
|
|
return None
|
|
|
|
|
2013-07-15 06:31:33 +08:00
|
|
|
def get_xml_config(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Construct and return object xml
|
|
|
|
|
|
|
|
@return: object xml representation as a string
|
|
|
|
@rtype: str
|
|
|
|
"""
|
|
|
|
if self._xml_ctx:
|
2013-07-17 00:30:43 +08:00
|
|
|
dumpxml_path = self._dumpxml_xpath
|
|
|
|
if self._xml_fixup_relative_xpath:
|
|
|
|
dumpxml_path = "."
|
|
|
|
|
|
|
|
node = _get_xpath_node(self._xml_ctx, dumpxml_path)
|
2013-07-15 06:31:33 +08:00
|
|
|
if not node:
|
|
|
|
ret = ""
|
|
|
|
else:
|
|
|
|
ret = _sanitize_libxml_xml(node.serialize())
|
|
|
|
else:
|
2013-07-15 21:49:46 +08:00
|
|
|
try:
|
|
|
|
self._xml_fixup_relative_xpath = self._XML_XPATH_RELATIVE
|
|
|
|
xmlstub = self._make_xml_stub(fail=False)
|
|
|
|
ret = self._get_xml_config(*args, **kwargs)
|
|
|
|
ret = self._add_parse_bits(ret)
|
|
|
|
|
|
|
|
for propname in self._XML_SUB_ELEMENTS:
|
|
|
|
ret = getattr(self, propname)._add_parse_bits(ret)
|
|
|
|
|
|
|
|
if ret == xmlstub:
|
|
|
|
ret = ""
|
|
|
|
finally:
|
|
|
|
self._xml_fixup_relative_xpath = False
|
2013-07-15 06:31:33 +08:00
|
|
|
|
|
|
|
return self._cleanup_xml(ret)
|
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Internal helper API #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
def _is_parse(self):
|
|
|
|
return bool(self._xml_node or self._xml_ctx)
|
|
|
|
|
|
|
|
def _refresh_xml_prop(self, propname):
|
|
|
|
"""
|
|
|
|
Refresh the XML for the passed class propname. Used to adjust
|
|
|
|
the XML when an interdependent property changes.
|
|
|
|
"""
|
2013-07-16 21:14:37 +08:00
|
|
|
self.all_xml_props()[propname].refresh_xml(self)
|
2013-07-15 06:31:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
# Child overrides #
|
|
|
|
###################
|
|
|
|
|
|
|
|
def set_defaults(self):
|
|
|
|
pass
|
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
def validate(self):
|
|
|
|
pass
|
|
|
|
|
2013-07-15 06:31:33 +08:00
|
|
|
def _get_xml_config(self):
|
|
|
|
"""
|
|
|
|
Internal XML building function. Must be overwritten by subclass
|
|
|
|
"""
|
2013-07-15 21:49:46 +08:00
|
|
|
return self._make_xml_stub(fail=True)
|
2013-07-15 06:31:33 +08:00
|
|
|
|
|
|
|
def _cleanup_xml(self, xml):
|
|
|
|
"""
|
|
|
|
Hook for classes to touch up the XML after generation.
|
|
|
|
"""
|
|
|
|
return xml
|
|
|
|
|
|
|
|
|
|
|
|
########################
|
|
|
|
# Internal XML parsers #
|
|
|
|
########################
|
|
|
|
|
2013-07-15 21:49:46 +08:00
|
|
|
def _make_xml_stub(self, fail=True):
|
|
|
|
if self._XML_ROOT_NAME is None:
|
|
|
|
if not fail:
|
|
|
|
return None
|
|
|
|
raise RuntimeError("Must specify _XML_ROOT_NAME.")
|
|
|
|
if self._XML_INDENT is None:
|
|
|
|
if not fail:
|
|
|
|
return None
|
|
|
|
raise RuntimeError("Must specify _XML_INDENT.")
|
|
|
|
if self._XML_ROOT_NAME == "":
|
|
|
|
return ""
|
|
|
|
|
|
|
|
return self.indent("<%s/>" % (self._XML_ROOT_NAME), self._XML_INDENT)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _add_child_node(self, parent_xpath, newnode):
|
|
|
|
ret = _build_xpath_node(self._xml_ctx, parent_xpath, newnode)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def _remove_child_xpath(self, xpath):
|
|
|
|
_remove_xpath_node(self._xml_ctx, xpath, dofree=False)
|
|
|
|
self._set_xml_context()
|
|
|
|
|
|
|
|
def _set_xml_context(self):
|
|
|
|
doc = self._xml_node.doc
|
2013-07-14 08:47:19 +08:00
|
|
|
ctx = _CtxCleanupWrapper(doc.xpathNewContext())
|
2013-03-18 05:06:52 +08:00
|
|
|
ctx.setContextNode(self._xml_node)
|
|
|
|
self._xml_ctx = ctx
|
|
|
|
|
|
|
|
def _parsexml(self, xml, node):
|
|
|
|
if xml:
|
2013-07-10 20:05:08 +08:00
|
|
|
doc = libxml2.parseDoc(xml)
|
|
|
|
self._xml_root_doc = _DocCleanupWrapper(doc)
|
|
|
|
self._xml_node = doc.children
|
|
|
|
self._xml_node.virtinst_root_doc = self._xml_root_doc
|
2013-03-18 05:06:52 +08:00
|
|
|
else:
|
|
|
|
self._xml_node = node
|
|
|
|
|
|
|
|
self._set_xml_context()
|
|
|
|
|
2013-07-16 21:14:37 +08:00
|
|
|
def all_xml_props(self):
|
2013-07-16 00:18:23 +08:00
|
|
|
ret = {}
|
|
|
|
for c in reversed(type.mro(self.__class__)[:-1]):
|
|
|
|
for key, val in c.__dict__.items():
|
|
|
|
if val.__class__ is XMLProperty:
|
|
|
|
ret[key] = val
|
|
|
|
return ret
|
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
def _do_add_parse_bits(self, xml):
|
|
|
|
# Find all properties that have default callbacks
|
2013-07-16 21:14:37 +08:00
|
|
|
xmlprops = self.all_xml_props()
|
2013-07-16 00:18:23 +08:00
|
|
|
defaultprops = [v for v in xmlprops.values() if v.has_default_value()]
|
2013-07-15 05:02:42 +08:00
|
|
|
for prop in defaultprops:
|
|
|
|
prop.set_default(self)
|
|
|
|
|
|
|
|
# Default props alter our _propstore. But at this point _propstore
|
|
|
|
# is empty, there's nothing for us to do, so exit early
|
|
|
|
if not self._propstore:
|
2013-07-12 22:49:15 +08:00
|
|
|
return xml
|
|
|
|
|
2013-07-15 21:49:46 +08:00
|
|
|
# Unindent XML
|
|
|
|
indent = 0
|
|
|
|
for c in xml:
|
|
|
|
if c != " ":
|
|
|
|
break
|
|
|
|
indent += 1
|
|
|
|
xml = "\n".join([l[indent:] for l in xml.splitlines()])
|
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
# Parse the XML into our internal state
|
|
|
|
self._parsexml(xml, None)
|
|
|
|
|
|
|
|
# Set up preferred XML ordering
|
|
|
|
do_order = self._proporder[:]
|
2013-07-15 21:49:46 +08:00
|
|
|
for key in reversed(self._XML_PROP_ORDER):
|
2013-07-15 05:02:42 +08:00
|
|
|
if key in do_order:
|
|
|
|
do_order.remove(key)
|
|
|
|
do_order.insert(0, key)
|
|
|
|
|
|
|
|
# Alter the XML
|
|
|
|
for key in do_order:
|
|
|
|
setattr(self, key, self._propstore[key])
|
2013-07-15 21:49:46 +08:00
|
|
|
return self.indent(self.get_xml_config().strip("\n"), indent)
|
2013-07-15 03:06:40 +08:00
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
def _add_parse_bits(self, xml):
|
|
|
|
"""
|
|
|
|
Callback that adds the implicitly tracked XML properties to
|
|
|
|
the manually generated xml. This should only exist until all
|
|
|
|
classes are converted to all parsing all the time
|
|
|
|
"""
|
|
|
|
if self._is_parse():
|
|
|
|
return xml
|
2013-07-15 03:06:40 +08:00
|
|
|
|
2013-07-15 05:02:42 +08:00
|
|
|
origproporder = self._proporder[:]
|
|
|
|
origpropstore = self._propstore.copy()
|
2013-07-12 22:49:15 +08:00
|
|
|
try:
|
2013-07-15 05:02:42 +08:00
|
|
|
return self._do_add_parse_bits(xml)
|
2013-07-12 22:49:15 +08:00
|
|
|
finally:
|
|
|
|
self._xml_root_doc = None
|
|
|
|
self._xml_node = None
|
|
|
|
self._xml_ctx = None
|
2013-07-15 05:02:42 +08:00
|
|
|
self._proporder = origproporder
|
|
|
|
self._propstore = origpropstore
|