virt-manager/src/virtManager/asyncjob.py

85 lines
2.9 KiB
Python
Raw Normal View History

#
# Copyright (C) 2006 Red Hat, Inc.
# Copyright (C) 2006 Hugh O. Brock <hbrock@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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import threading
import gtk
import gtk.gdk
import gtk.glade
import gobject
# Displays a progress bar while executing the "callback" method.
class vmmAsyncJob(gobject.GObject):
# This thin wrapper only exists so we can put debugging
# code in the run() method every now & then
class asyncJobWorker(threading.Thread):
def __init__(self, callback, args):
threading.Thread.__init__(self, target=callback, args=args)
def run(self):
threading.Thread.run(self)
def __init__(self, config, callback, args=None, title="Progress"):
self.__gobject_init__()
self.config = config
self.pbar_glade = gtk.glade.XML(self.config.get_glade_file(), "vmm-progress", domain="virt-manager")
self.pbar_win = self.pbar_glade.get_widget("vmm-progress")
self.pbar = self.pbar_glade.get_widget("pbar")
self.pbar_win.set_title(title)
self.pbar_win.hide()
args.insert(0, self)
self.bg_thread = vmmAsyncJob.asyncJobWorker(callback, args)
self.is_pulsing = False
def run(self):
self.timer = gobject.timeout_add (100, self.exit_if_necessary)
self.pbar_win.present()
self.pbar_win.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
self.bg_thread.start()
gtk.main()
gobject.source_remove(self.timer)
self.timer = 0
self.pbar_win.destroy()
def pulse_pbar(self, text=_("Working...")):
self.is_pulsing = True
self.pbar.set_text(text)
def set_pbar_fraction(self, frac, text):
# callback for progress meter when file size is known
self.is_pulsing=False
self.pbar.set_text(text)
self.pbar.set_fraction(frac)
def set_pbar_done(self, text):
#callback for progress meter when progress is done
self.is_pulsing=False
self.pbar.set_text(text)
self.pbar.set_fraction(1)
def exit_if_necessary(self):
if(self.bg_thread.isAlive()):
if(self.is_pulsing):
self.pbar.pulse()
return True
else:
gtk.main_quit()
return False