2008-08-15 19:24:24 +04:00
#
# Copyright (C) 2008 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@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.
#
import gobject
import gtk . glade
import traceback
import logging
2009-03-09 08:04:29 +03:00
from virtManager import util
2008-08-15 19:24:24 +04:00
from virtManager . error import vmmErrorDialog
from virtManager . asyncjob import vmmAsyncJob
from virtManager . createmeter import vmmCreateMeter
from virtinst import Storage
2008-09-08 03:08:13 +04:00
DEFAULT_ALLOC = 0
DEFAULT_CAP = 1000
2008-08-15 19:24:24 +04:00
class vmmCreateVolume ( gobject . GObject ) :
__gsignals__ = {
" vol-created " : ( gobject . SIGNAL_RUN_FIRST , gobject . TYPE_NONE , [ ] )
}
def __init__ ( self , config , conn , parent_pool ) :
self . __gobject_init__ ( )
self . window = gtk . glade . XML ( config . get_glade_dir ( ) + \
" /vmm-create-vol.glade " ,
" vmm-create-vol " , domain = " virt-manager " )
self . conn = conn
self . parent_pool = parent_pool
self . config = config
self . topwin = self . window . get_widget ( " vmm-create-vol " )
self . err = vmmErrorDialog ( self . topwin ,
0 , gtk . MESSAGE_ERROR , gtk . BUTTONS_CLOSE ,
_ ( " Unexpected Error " ) ,
_ ( " An unexpected error occurred " ) )
self . topwin . hide ( )
self . vol = None
self . vol_class = Storage . StoragePool . get_volume_for_pool ( parent_pool . get_type ( ) )
self . window . signal_autoconnect ( {
2008-09-06 21:20:35 +04:00
" on_vmm_create_vol_delete_event " : self . close ,
2008-08-15 19:24:24 +04:00
" on_vol_cancel_clicked " : self . close ,
" on_vol_create_clicked " : self . finish ,
} )
format_list = self . window . get_widget ( " vol-format " )
format_model = gtk . ListStore ( str , str )
format_list . set_model ( format_model )
text2 = gtk . CellRendererText ( )
format_list . pack_start ( text2 , False )
format_list . add_attribute ( text2 , ' text ' , 1 )
self . window . get_widget ( " vol-info-view " ) . modify_bg ( gtk . STATE_NORMAL ,
gtk . gdk . color_parse ( " grey " ) )
2009-09-29 22:25:37 +04:00
# XXX: Help docs useless/out of date
self . window . get_widget ( " pool-help " ) . hide ( )
2008-08-15 19:24:24 +04:00
self . reset_state ( )
def show ( self ) :
2009-03-08 22:16:47 +03:00
self . reset_state ( )
2008-08-15 19:24:24 +04:00
self . topwin . show ( )
self . topwin . present ( )
def close ( self , ignore1 = None , ignore2 = None ) :
self . topwin . hide ( )
2009-03-08 22:16:47 +03:00
self . set_modal ( False )
2008-08-15 19:24:24 +04:00
return 1
2009-03-08 22:16:47 +03:00
def set_modal ( self , modal ) :
self . topwin . set_modal ( bool ( modal ) )
2008-08-15 19:24:24 +04:00
def set_parent_pool ( self , pool ) :
self . parent_pool = pool
self . vol_class = Storage . StoragePool . get_volume_for_pool ( self . parent_pool . get_type ( ) )
def reset_state ( self ) :
self . window . get_widget ( " vol-name " ) . set_text ( " " )
self . populate_vol_format ( )
2008-09-06 21:39:21 +04:00
self . populate_vol_suffix ( )
2008-08-15 19:24:24 +04:00
if len ( self . vol_class . formats ) :
self . window . get_widget ( " vol-format " ) . set_sensitive ( True )
self . window . get_widget ( " vol-format " ) . set_active ( 0 )
else :
self . window . get_widget ( " vol-format " ) . set_sensitive ( False )
self . window . get_widget ( " vol-allocation " ) . set_range ( 0 , int ( self . parent_pool . get_available ( ) / 1024 / 1024 ) )
self . window . get_widget ( " vol-allocation " ) . set_value ( DEFAULT_ALLOC )
self . window . get_widget ( " vol-capacity " ) . set_range ( 1 , int ( self . parent_pool . get_available ( ) / 1024 / 1024 ) )
self . window . get_widget ( " vol-capacity " ) . set_value ( DEFAULT_CAP )
self . window . get_widget ( " vol-parent-name " ) . set_markup ( " <b> " + self . parent_pool . get_name ( ) + " ' s</b> " )
self . window . get_widget ( " vol-parent-space " ) . set_text ( self . parent_pool . get_pretty_available ( ) )
def get_config_format ( self ) :
format_combo = self . window . get_widget ( " vol-format " )
model = format_combo . get_model ( )
if format_combo . get_active_iter ( ) != None :
model = format_combo . get_model ( )
return model . get_value ( format_combo . get_active_iter ( ) , 0 )
return None
def populate_vol_format ( self ) :
model = self . window . get_widget ( " vol-format " ) . get_model ( )
model . clear ( )
formats = self . vol_class . formats
for f in formats :
model . append ( [ f , f ] )
2008-09-06 21:39:21 +04:00
def populate_vol_suffix ( self ) :
suffix = " "
if self . vol_class == Storage . FileVolume :
suffix = " .img "
self . window . get_widget ( " vol-name-suffix " ) . set_text ( suffix )
2008-08-15 19:24:24 +04:00
def finish ( self , src ) :
# validate input
try :
if not self . validate ( ) :
return
except Exception , e :
2009-03-08 22:16:47 +03:00
self . show_err ( _ ( " Uncaught error validating input: %s " ) % str ( e ) ,
" " . join ( traceback . format_exc ( ) ) )
2008-08-15 19:24:24 +04:00
return
logging . debug ( " Creating volume with xml: \n %s " %
self . vol . get_xml_config ( ) )
self . topwin . set_sensitive ( False )
self . topwin . window . set_cursor ( gtk . gdk . Cursor ( gtk . gdk . WATCH ) )
progWin = vmmAsyncJob ( self . config , self . _async_vol_create , [ ] ,
title = _ ( " Creating storage volume... " ) ,
text = _ ( " Creating the storage volume may take a "
" while... " ) )
progWin . run ( )
2009-04-03 22:15:15 +04:00
error , details = progWin . get_error ( )
2008-08-15 19:24:24 +04:00
2009-04-03 22:15:15 +04:00
if error is not None :
self . show_err ( error , details )
2008-08-15 19:24:24 +04:00
self . topwin . set_sensitive ( True )
self . topwin . window . set_cursor ( gtk . gdk . Cursor ( gtk . gdk . TOP_LEFT_ARROW ) )
2009-04-03 22:15:15 +04:00
if not error :
self . emit ( " vol-created " )
self . close ( )
2008-08-15 19:24:24 +04:00
def _async_vol_create ( self , asyncjob ) :
2008-09-05 17:27:14 +04:00
newconn = None
2008-08-15 19:24:24 +04:00
try :
2009-03-09 08:04:29 +03:00
newconn = util . dup_conn ( self . config , self . conn )
2008-08-15 19:24:24 +04:00
# Lookup different pool obj
2008-09-05 17:27:14 +04:00
newpool = newconn . storagePoolLookupByName ( self . parent_pool . get_name ( ) )
2008-08-15 19:24:24 +04:00
self . vol . pool = newpool
meter = vmmCreateMeter ( asyncjob )
logging . debug ( " Starting backround vol creation. " )
2008-11-18 22:48:10 +03:00
self . vol . install ( meter = meter )
2008-08-15 19:24:24 +04:00
except Exception , e :
2009-04-03 22:15:15 +04:00
error = _ ( " Error creating vol: %s " ) % str ( e )
details = " " . join ( traceback . format_exc ( ) )
asyncjob . set_error ( error , details )
2008-08-15 19:24:24 +04:00
def validate ( self ) :
name = self . window . get_widget ( " vol-name " ) . get_text ( )
2008-09-06 21:39:21 +04:00
suffix = self . window . get_widget ( " vol-name-suffix " ) . get_text ( )
volname = name + suffix
2009-05-11 18:13:32 +04:00
fmt = self . get_config_format ( )
2008-08-15 19:24:24 +04:00
alloc = self . window . get_widget ( " vol-allocation " ) . get_value ( )
cap = self . window . get_widget ( " vol-capacity " ) . get_value ( )
try :
2008-09-06 21:39:21 +04:00
self . vol = self . vol_class ( name = volname ,
2008-08-15 19:24:24 +04:00
allocation = ( alloc * 1024 * 1024 ) ,
capacity = ( cap * 1024 * 1024 ) ,
pool = self . parent_pool . pool )
2009-05-11 18:13:32 +04:00
if fmt :
self . vol . format = fmt
2008-08-15 19:24:24 +04:00
except ValueError , e :
return self . err . val_err ( _ ( " Volume Parameter Error " ) , str ( e ) )
return True
2009-03-08 22:16:47 +03:00
def show_err ( self , info , details ) :
async = not self . topwin . get_modal ( )
self . err . show_err ( info , details , async = async )
2008-08-15 19:24:24 +04:00
gobject . type_register ( vmmCreateVolume )