2013-03-17 16:06:52 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright 2011 Red Hat, Inc.
|
|
|
|
# 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
|
|
|
|
# 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.
|
|
|
|
|
2013-04-10 18:48:07 -05:00
|
|
|
from virtinst.VirtualDevice import VirtualDevice
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-13 17:56:09 -05:00
|
|
|
from virtinst.xmlbuilder import XMLProperty
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-04-13 13:34:52 -05:00
|
|
|
|
2013-04-10 18:48:07 -05:00
|
|
|
class VirtualRedirDevice(VirtualDevice):
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-16 08:14:37 -05:00
|
|
|
virtual_device_type = VirtualDevice.VIRTUAL_DEV_REDIRDEV
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
BUS_DEFAULT = "default"
|
|
|
|
BUSES = ["usb"]
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
TYPE_DEFAULT = "default"
|
|
|
|
TYPES = ["tcp", "spicevmc", TYPE_DEFAULT]
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
def parse_friendly_server(self, serverstr):
|
|
|
|
if serverstr.count(":") != 1:
|
|
|
|
raise ValueError(_("Could not determine or unsupported "
|
|
|
|
"format of '%s'") % serverstr)
|
|
|
|
self.host, self.service = serverstr.split(":")
|
2013-03-17 16:06:52 -05:00
|
|
|
|
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
_XML_PROP_ORDER = ["bus", "type"]
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
bus = XMLProperty(xpath="./@bus",
|
|
|
|
default_cb=lambda s: "usb",
|
|
|
|
default_name=BUS_DEFAULT)
|
|
|
|
type = XMLProperty(xpath="./@type",
|
|
|
|
default_cb=lambda s: "spicevmc",
|
|
|
|
default_name=TYPE_DEFAULT)
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-15 11:57:37 -05:00
|
|
|
host = XMLProperty(xpath="./source/@host")
|
|
|
|
service = XMLProperty(xpath="./source/@service", is_int=True)
|
2013-07-24 07:46:55 -05:00
|
|
|
|
|
|
|
|
|
|
|
VirtualRedirDevice.register_type()
|