90 lines
3.6 KiB
Python
90 lines
3.6 KiB
Python
#
|
|
# Copyright (C) 2016 Red Hat, Inc.
|
|
# Copyright (C) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Charles Arnold <carnold suse 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.
|
|
"""
|
|
Classes for building and installing with libvirt <sysinfo> XML
|
|
"""
|
|
import datetime
|
|
|
|
from .xmlbuilder import XMLBuilder, XMLProperty
|
|
from . import util
|
|
|
|
|
|
class SYSInfo(XMLBuilder):
|
|
"""
|
|
Top level class for <sysinfo type='smbios'> object XML
|
|
"""
|
|
|
|
_XML_ROOT_NAME = "sysinfo"
|
|
_XML_PROP_ORDER = ["type",
|
|
"bios_vendor", "bios_version", "bios_date", "bios_release",
|
|
"system_manufacturer", "system_product", "system_version",
|
|
"system_serial", "system_uuid", "system_sku", "system_family",
|
|
"baseBoard_manufacturer", "baseBoard_product", "baseBoard_version",
|
|
"baseBoard_serial", "baseBoard_asset", "baseBoard_location"]
|
|
|
|
type = XMLProperty("./@type")
|
|
|
|
def _validate_date(self, val):
|
|
# If supplied, date must be in either mm/dd/yy or mm/dd/yyyy format
|
|
try:
|
|
datetime.datetime.strptime(val, '%m/%d/%Y')
|
|
except ValueError:
|
|
try:
|
|
datetime.datetime.strptime(val, '%m/%d/%y')
|
|
except ValueError:
|
|
raise RuntimeError(_("SMBios date string '%s' is invalid.")
|
|
% val)
|
|
return val
|
|
|
|
bios_date = XMLProperty("./bios/entry[@name='date']",
|
|
validate_cb=_validate_date)
|
|
bios_vendor = XMLProperty("./bios/entry[@name='vendor']")
|
|
bios_version = XMLProperty("./bios/entry[@name='version']")
|
|
bios_release = XMLProperty("./bios/entry[@name='release']")
|
|
|
|
|
|
def _validate_uuid(self, val):
|
|
try:
|
|
util.validate_uuid(val)
|
|
except ValueError:
|
|
raise ValueError(_("Invalid uuid for SMBios: %s") % val)
|
|
|
|
if util.vm_uuid_collision(self.conn, val):
|
|
raise ValueError(_("UUID '%s' is in use by another guest.") %
|
|
val)
|
|
return val
|
|
system_uuid = XMLProperty("./system/entry[@name='uuid']",
|
|
validate_cb=_validate_uuid)
|
|
|
|
system_manufacturer = XMLProperty("./system/entry[@name='manufacturer']")
|
|
system_product = XMLProperty("./system/entry[@name='product']")
|
|
system_version = XMLProperty("./system/entry[@name='version']")
|
|
system_serial = XMLProperty("./system/entry[@name='serial']")
|
|
system_sku = XMLProperty("./system/entry[@name='sku']")
|
|
system_family = XMLProperty("./system/entry[@name='family']")
|
|
|
|
baseBoard_manufacturer = XMLProperty(
|
|
"./baseBoard/entry[@name='manufacturer']")
|
|
baseBoard_product = XMLProperty("./baseBoard/entry[@name='product']")
|
|
baseBoard_version = XMLProperty("./baseBoard/entry[@name='version']")
|
|
baseBoard_serial = XMLProperty("./baseBoard/entry[@name='serial']")
|
|
baseBoard_asset = XMLProperty("./baseBoard/entry[@name='asset']")
|
|
baseBoard_location = XMLProperty("./baseBoard/entry[@name='location']")
|