2014-01-10 03:37:54 -06:00
|
|
|
#
|
|
|
|
# Copyright 2013 Fujitsu Limited.
|
|
|
|
# Chen Hanxiao <chenhanxiao at cn.fujitsu.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.
|
|
|
|
|
2014-09-12 14:59:22 -05:00
|
|
|
from .device import VirtualDevice
|
|
|
|
from .xmlbuilder import XMLProperty
|
2014-01-10 03:37:54 -06:00
|
|
|
|
|
|
|
|
|
|
|
class VirtualPanicDevice(VirtualDevice):
|
|
|
|
|
|
|
|
virtual_device_type = VirtualDevice.VIRTUAL_DEV_PANIC
|
2017-09-04 11:40:34 -05:00
|
|
|
|
|
|
|
MODEL_DEFAULT = "default"
|
|
|
|
MODEL_ISA = "isa"
|
2017-09-05 02:38:39 -05:00
|
|
|
MODEL_PSERIES = "pseries"
|
|
|
|
MODEL_HYPERV = "hyperv"
|
|
|
|
MODEL_S390 = "s390"
|
|
|
|
MODELS = [MODEL_ISA, MODEL_PSERIES, MODEL_HYPERV, MODEL_S390]
|
2017-09-04 11:40:34 -05:00
|
|
|
|
|
|
|
ISA_ADDRESS_TYPE = "isa"
|
2014-01-10 03:37:54 -06:00
|
|
|
|
|
|
|
@staticmethod
|
2017-09-04 11:40:34 -05:00
|
|
|
def get_pretty_model(panic_model):
|
|
|
|
if panic_model == VirtualPanicDevice.MODEL_ISA:
|
2014-01-10 03:37:54 -06:00
|
|
|
return _("ISA")
|
2017-09-05 02:38:39 -05:00
|
|
|
elif panic_model == VirtualPanicDevice.MODEL_PSERIES:
|
|
|
|
return _("pSeries")
|
|
|
|
elif panic_model == VirtualPanicDevice.MODEL_HYPERV:
|
|
|
|
return _("Hyper-V")
|
|
|
|
elif panic_model == VirtualPanicDevice.MODEL_S390:
|
|
|
|
return _("s390")
|
2017-09-04 11:40:34 -05:00
|
|
|
return panic_model
|
2014-01-10 03:37:54 -06:00
|
|
|
|
2017-09-05 02:38:39 -05:00
|
|
|
@staticmethod
|
|
|
|
def get_models(os):
|
|
|
|
if os.is_x86():
|
2017-10-27 02:42:54 -05:00
|
|
|
return [VirtualPanicDevice.MODEL_ISA,
|
|
|
|
VirtualPanicDevice.MODEL_HYPERV]
|
2017-09-05 02:38:39 -05:00
|
|
|
elif os.is_pseries():
|
|
|
|
return [VirtualPanicDevice.MODEL_PSERIES]
|
|
|
|
elif os.is_s390x():
|
|
|
|
return [VirtualPanicDevice.MODEL_S390]
|
2017-10-27 02:42:54 -05:00
|
|
|
return []
|
2017-09-05 02:38:39 -05:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_default_model(os):
|
|
|
|
models = VirtualPanicDevice.get_models(os)
|
|
|
|
if models:
|
|
|
|
return models[0]
|
|
|
|
return None
|
|
|
|
|
2017-09-04 11:40:34 -05:00
|
|
|
def _get_default_address_type(self):
|
|
|
|
if self.iobase:
|
|
|
|
return VirtualPanicDevice.ISA_ADDRESS_TYPE
|
|
|
|
return None
|
2014-01-10 03:37:54 -06:00
|
|
|
|
2017-09-04 11:40:34 -05:00
|
|
|
model = XMLProperty("./@model",
|
|
|
|
default_cb=lambda s: VirtualPanicDevice.MODEL_ISA,
|
|
|
|
default_name=MODEL_DEFAULT)
|
2014-01-10 03:37:54 -06:00
|
|
|
type = XMLProperty("./address/@type",
|
2017-09-04 11:40:34 -05:00
|
|
|
default_cb=_get_default_address_type)
|
2017-09-04 11:44:56 -05:00
|
|
|
iobase = XMLProperty("./address/@iobase")
|
2014-01-10 03:37:54 -06:00
|
|
|
|
|
|
|
VirtualPanicDevice.register_type()
|