2011-01-18 09:24:57 +00:00
|
|
|
#
|
|
|
|
# cmdline.py - non-interactive, very very simple frontend to anaconda
|
|
|
|
#
|
|
|
|
# Copyright (C) 2003, 2004, 2005, 2006, 2007 Red Hat, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Author(s): Jeremy Katz <katzj@redhat.com
|
|
|
|
#
|
|
|
|
|
|
|
|
import time
|
|
|
|
import signal
|
|
|
|
import parted
|
|
|
|
from constants import *
|
|
|
|
from flags import flags
|
|
|
|
from iutil import strip_markup
|
|
|
|
from installinterfacebase import InstallInterfaceBase
|
|
|
|
|
|
|
|
import gettext
|
|
|
|
_ = lambda x: gettext.ldgettext("anaconda", x)
|
|
|
|
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger("anaconda")
|
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
|
|
|
|
def setupProgressDisplay(anaconda):
|
|
|
|
if anaconda.dir == DISPATCH_BACK:
|
|
|
|
anaconda.intf.setInstallProgressClass(None)
|
|
|
|
return DISPATCH_BACK
|
|
|
|
else:
|
|
|
|
anaconda.intf.setInstallProgressClass(progressDisplay())
|
|
|
|
|
|
|
|
return DISPATCH_FORWARD
|
|
|
|
|
|
|
|
stepToClasses = { "install" : setupProgressDisplay }
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
class WaitWindow:
|
|
|
|
def pop(self):
|
|
|
|
pass
|
|
|
|
def refresh(self):
|
|
|
|
pass
|
|
|
|
def __init__(self, title, text):
|
|
|
|
print(text)
|
|
|
|
|
|
|
|
class ProgressWindow:
|
|
|
|
def pop(self):
|
|
|
|
print("")
|
|
|
|
|
|
|
|
def pulse(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def set(self, amount):
|
|
|
|
if amount == self.total:
|
|
|
|
print(_("Completed"))
|
|
|
|
|
|
|
|
def refresh(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __init__(self, title, text, total, updpct = 0.05, pulse = False):
|
|
|
|
self.total = total
|
|
|
|
print(text)
|
|
|
|
print(_("In progress"))
|
|
|
|
|
|
|
|
class InstallInterface(InstallInterfaceBase):
|
|
|
|
def __init__(self):
|
|
|
|
InstallInterfaceBase.__init__(self)
|
|
|
|
# signal.signal(signal.SIGINT, signal.SIG_IGN)
|
|
|
|
signal.signal(signal.SIGTSTP, signal.SIG_DFL)
|
|
|
|
self.instProgress = None
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
pass
|
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
def reinitializeWindow(self, title, path, size, description):
|
|
|
|
errtxt = _("(%s)\nCommand line mode requires all choices to be specified in a "
|
|
|
|
"kickstart configuration file." % (title,))
|
|
|
|
raise RuntimeError(errtxt)
|
|
|
|
|
2011-01-18 09:24:57 +00:00
|
|
|
def shutdown(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def suspend(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def resume(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def progressWindow(self, title, text, total, updpct = 0.05, pulse = False):
|
|
|
|
return ProgressWindow(title, text, total, updpct, pulse)
|
|
|
|
|
|
|
|
def kickstartErrorWindow(self, text):
|
2013-01-23 17:28:19 +00:00
|
|
|
errtxt = _("The following error was found while parsing the "
|
|
|
|
"kickstart configuration file:\n\n%s") % (text,)
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def messageWindow(self, title, text, type="ok", default = None,
|
|
|
|
custom_icon = None, custom_buttons = []):
|
|
|
|
if type == "ok":
|
|
|
|
print(text)
|
|
|
|
else:
|
2013-01-23 17:28:19 +00:00
|
|
|
errtxt = _("(%s)\n%s" % (title, text))
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def detailedMessageWindow(self, title, text, longText=None, type="ok",
|
|
|
|
default=None, custom_buttons=None,
|
2013-01-23 17:28:19 +00:00
|
|
|
custom_icon=None, expanded=False):
|
2011-01-18 09:24:57 +00:00
|
|
|
if longText:
|
|
|
|
text += "\n\n%s" % longText
|
|
|
|
|
|
|
|
self.messageWindow(title, text, type=type, default=default,
|
|
|
|
custom_buttons=custom_buttons, custom_icon=custom_icon)
|
|
|
|
|
|
|
|
def passphraseEntryWindow(self, device):
|
2013-01-23 17:28:19 +00:00
|
|
|
errtxt = _("Can't have a question in command line mode!")
|
|
|
|
errtxt += "\n(passphraseEntryWindow: '%s')" % (device,)
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def getLUKSPassphrase(self, passphrase = "", isglobal = False):
|
2013-01-23 17:28:19 +00:00
|
|
|
errtxt = _("Can't have a question in command line mode!")
|
|
|
|
errtxt += "\n(getLUKSPassphrase)"
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def enableNetwork(self):
|
2013-01-23 17:28:19 +00:00
|
|
|
errtxt = "(enableNetwork)\n"
|
|
|
|
errtxt += _("Can't have a question in command line mode!")
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
2013-01-23 17:28:19 +00:00
|
|
|
def questionInitializeDASD(self, c, devs):
|
|
|
|
errtxt = "(questionInitializeDASD)\n"
|
|
|
|
errtxt += _("Can't have a question in command line mode!")
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def mainExceptionWindow(self, shortText, longTextFile):
|
|
|
|
print(shortText)
|
|
|
|
|
|
|
|
def waitWindow(self, title, text):
|
|
|
|
return WaitWindow(title, text)
|
|
|
|
|
|
|
|
def beep(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self, anaconda):
|
2013-01-23 17:28:19 +00:00
|
|
|
self.anaconda = anaconda
|
|
|
|
|
|
|
|
def display_step(self, step):
|
|
|
|
if stepToClasses.has_key(step):
|
|
|
|
stepToClasses[step](self.anaconda)
|
|
|
|
else:
|
|
|
|
errtxt = _("In interactive step can't continue. (%s)" %(step,))
|
|
|
|
raise RuntimeError(errtxt)
|
2011-01-18 09:24:57 +00:00
|
|
|
|
|
|
|
def setInstallProgressClass(self, c):
|
|
|
|
self.instProgress = c
|
|
|
|
|
|
|
|
class progressDisplay:
|
|
|
|
def __init__(self):
|
|
|
|
self.pct = 0
|
|
|
|
self.display = ""
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def processEvents(self):
|
|
|
|
pass
|
|
|
|
def setShowPercentage(self, val):
|
|
|
|
pass
|
|
|
|
def get_fraction(self):
|
|
|
|
return self.pct
|
|
|
|
def set_fraction(self, pct):
|
|
|
|
self.pct = pct
|
|
|
|
def set_text(self, txt):
|
2013-01-23 17:28:19 +00:00
|
|
|
print(txt)
|
2011-01-18 09:24:57 +00:00
|
|
|
def set_label(self, txt):
|
|
|
|
stripped = strip_markup(txt)
|
|
|
|
if stripped != self.display:
|
|
|
|
self.display = stripped
|
|
|
|
print(self.display)
|
|
|
|
|
|
|
|
def setupProgressDisplay(anaconda):
|
|
|
|
if anaconda.dir == DISPATCH_BACK:
|
|
|
|
anaconda.intf.setInstallProgressClass(None)
|
|
|
|
return DISPATCH_BACK
|
|
|
|
else:
|
|
|
|
anaconda.intf.setInstallProgressClass(progressDisplay())
|
2013-01-23 17:28:19 +00:00
|
|
|
|
2011-01-18 09:24:57 +00:00
|
|
|
return DISPATCH_FORWARD
|