2013-03-17 17:06:52 -04:00
#
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>
2015-03-23 15:56:55 -04:00
# Marc-Andre Lureau <marcandre.lureau@redhat.com>
2013-03-17 17:06:52 -04:00
#
# 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.
2014-09-12 15:59:22 -04:00
from . device import VirtualDevice
from . 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 VirtualRedirDevice ( VirtualDevice ) :
2013-03-17 17:06:52 -04:00
2013-07-16 09:14:37 -04:00
virtual_device_type = VirtualDevice . VIRTUAL_DEV_REDIRDEV
2013-03-17 17:06:52 -04:00
2013-07-15 12:57:37 -04:00
BUS_DEFAULT = " default "
BUSES = [ " usb " ]
2013-03-17 17:06:52 -04:00
2013-07-15 12:57:37 -04:00
TYPE_DEFAULT = " default "
TYPES = [ " tcp " , " spicevmc " , TYPE_DEFAULT ]
2013-03-17 17:06:52 -04:00
2014-09-20 10:23:19 -04:00
@staticmethod
def pretty_type ( typ ) :
if typ == " tcp " :
return " TCP "
if typ == " spicevmc " :
return " SpiceVMC "
return typ and typ . capitalize ( )
2013-07-15 12:57:37 -04: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 17:06:52 -04:00
2013-07-15 12:57:37 -04:00
_XML_PROP_ORDER = [ " bus " , " type " ]
2013-03-17 17:06:52 -04:00
2013-09-19 13:27:30 -04:00
bus = XMLProperty ( " ./@bus " ,
2013-07-15 12:57:37 -04:00
default_cb = lambda s : " usb " ,
default_name = BUS_DEFAULT )
2013-09-19 13:27:30 -04:00
type = XMLProperty ( " ./@type " ,
2013-07-15 12:57:37 -04:00
default_cb = lambda s : " spicevmc " ,
default_name = TYPE_DEFAULT )
2013-03-17 17:06:52 -04:00
2013-09-19 13:27:30 -04:00
host = XMLProperty ( " ./source/@host " )
service = XMLProperty ( " ./source/@service " , is_int = True )
2013-07-24 08:46:55 -04:00
VirtualRedirDevice . register_type ( )