qubes-installer-qubes-os/anaconda/pyanaconda/ui/gui/spokes/lib/refresh.py
Marek Marczykowski-Górecki f73b3741f0 Update anaconda to 20.25.16
Apply result of "git diff anaconda-18.37.11-1..anaconda-20.25.16-1" and
resolve conflicts.
2014-04-08 05:50:31 +02:00

101 lines
3.8 KiB
Python

# Disk configuration refresh dialog
#
# Copyright (C) 2013 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU General Public License v.2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY expressed or implied, including the implied warranties 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. Any Red Hat trademarks that are incorporated in the
# source code or documentation are not subject to the GNU General Public
# License and may only be used or replicated with the express permission of
# Red Hat, Inc.
#
# Red Hat Author(s): Chris Lumens <clumens@redhat.com>
#
from gi.repository import GLib
from pyanaconda.threads import threadMgr, AnacondaThread
from pyanaconda.ui.gui import GUIObject
from pyanaconda import constants
from blivet import storageInitialize
__all__ = ["RefreshDialog"]
class RefreshDialog(GUIObject):
builderObjects = ["refreshDialog"]
mainWidgetName = "refreshDialog"
uiFile = "spokes/lib/refresh.glade"
def __init__(self, data, storage):
GUIObject.__init__(self, data)
self.storage = storage
self._notebook = self.builder.get_object("refreshNotebook")
self._cancel_button = self.builder.get_object("refreshCancelButton")
self._ok_button = self.builder.get_object("refreshOKButton")
self._elapsed = 0
self._watcher_id = None
def run(self):
rc = self.window.run()
self.window.destroy()
return rc
def _check_rescan(self, *args):
if threadMgr.get(constants.THREAD_STORAGE):
self._elapsed += 1
# If more than five seconds has elapsed since the rescan started,
# give the user the option to return to the hub.
if self._elapsed >= 5:
self._notebook.set_current_page(2)
return True
# Seems a little silly to have this warning text still displayed
# when everything is done.
box = self.builder.get_object("warningBox")
box.set_visible(False)
self._cancel_button.set_sensitive(False)
self._ok_button.set_sensitive(True)
self._notebook.set_current_page(3)
return False
def return_to_hub_link_clicked(self, label, uri):
# The user clicked on the link that takes them back to the hub. We need
# to kill the _check_rescan watcher and then emit a special response ID
# indicating the user did not press OK.
#
# NOTE: There is no button with response_id=2.
GLib.source_remove(self._watcher_id)
self.window.response(2)
def on_rescan_clicked(self, button):
# Once the rescan button is clicked, the option to cancel expires.
# We also need to display the spinner showing activity.
self._cancel_button.set_sensitive(False)
self._ok_button.set_sensitive(False)
self._notebook.set_current_page(1)
# And now to fire up the storage reinitialization.
protectedNames = map(lambda d: d.name, self.storage.protectedDevices)
threadMgr.add(AnacondaThread(name=constants.THREAD_STORAGE, target=storageInitialize,
args=(self.storage, self.data, protectedNames)))
self._elapsed = 0
# This watches for the rescan to be finished and updates the dialog when
# that happens.
self._watcher_id = GLib.timeout_add_seconds(1, self._check_rescan)