2013-03-17 17:06:52 -04:00
|
|
|
# coding=utf-8
|
|
|
|
|
#
|
2013-10-27 21:59:46 +01:00
|
|
|
# Copyright 2011, 2013 Red Hat, Inc.
|
2013-03-17 17:06:52 -04:00
|
|
|
# Cole Robinson <crobinso@redhat.com>
|
|
|
|
|
# Marc-André Lureau <marcandre.lureau@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
|
2013-10-27 21:59:47 +01:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
2013-03-17 17:06:52 -04:00
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
2013-08-08 20:47:17 -04:00
|
|
|
from virtinst import VirtualDevice
|
2013-07-13 18:56:09 -04:00
|
|
|
from virtinst.xmlbuilder import XMLProperty
|
2013-03-17 17:06:52 -04:00
|
|
|
|
2013-04-13 14:34:52 -04:00
|
|
|
|
2013-04-10 19:48:07 -04:00
|
|
|
class VirtualSmartCardDevice(VirtualDevice):
|
2013-03-17 17:06:52 -04:00
|
|
|
|
2013-07-16 09:14:37 -04:00
|
|
|
virtual_device_type = VirtualDevice.VIRTUAL_DEV_SMARTCARD
|
2013-03-17 17:06:52 -04:00
|
|
|
|
|
|
|
|
# Default models list
|
2013-07-15 12:36:57 -04:00
|
|
|
MODE_DEFAULT = "default"
|
|
|
|
|
MODES = ["passthrough", "host-certificates", "host"]
|
2013-03-17 17:06:52 -04:00
|
|
|
|
2013-07-15 12:36:57 -04:00
|
|
|
TYPE_DEFAULT = "default"
|
|
|
|
|
TYPES = ["tcp", "spicevmc", "default"]
|
2013-03-17 17:06:52 -04:00
|
|
|
|
|
|
|
|
|
2013-07-15 12:36:57 -04:00
|
|
|
_XML_PROP_ORDER = ["mode", "type"]
|
2013-03-17 17:06:52 -04:00
|
|
|
|
2013-09-19 13:27:30 -04:00
|
|
|
mode = XMLProperty("./@mode",
|
2013-07-15 12:36:57 -04:00
|
|
|
default_cb=lambda s: "passthrough",
|
|
|
|
|
default_name=MODE_DEFAULT)
|
2013-03-17 17:06:52 -04:00
|
|
|
|
2013-07-15 12:36:57 -04:00
|
|
|
def _default_type(self):
|
|
|
|
|
if self.mode == self.MODE_DEFAULT or self.mode == "passthrough":
|
2013-03-17 17:06:52 -04:00
|
|
|
return "spicevmc"
|
2013-07-15 12:36:57 -04:00
|
|
|
return "tcp"
|
2013-09-19 13:27:30 -04:00
|
|
|
type = XMLProperty("./@type",
|
2013-07-15 12:36:57 -04:00
|
|
|
default_cb=_default_type,
|
|
|
|
|
default_name=TYPE_DEFAULT)
|
2013-07-24 08:46:55 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
VirtualSmartCardDevice.register_type()
|