1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
#
# cmdline.py - non-interactive, very very simple frontend to anaconda
#
# Jeremy Katz <katzj@redhat.com
#
# Copyright 2003 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# general public license.
#
# 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 sys, os
import isys, iutil
import time
import signal
import parted, rpm
from constants import *
from flags import flags
from rhpl.log import log
from rhpl.translate import _, cat, N_
stepToClasses = { "install" : "setupProgressDisplay" }
class WaitWindow:
def pop(self):
pass
def __init__(self, title, text):
print text
class ProgressWindow:
def pop(self):
print ""
def set(self, amount):
if amount == self.total:
print _("Completed"),
def __init__(self, title, text, total):
self.total = total
print text
print _("In progress... "),
class InstallInterface:
def __init__(self):
# signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTSTP, signal.SIG_DFL)
def __del__(self):
pass
def shutdown(self):
pass
def progressWindow(self, title, text, total):
return ProgressWindow(title, text, total)
def messageWindow(self, title, text, type="ok", default = None,
custom_icon = None, custom_buttons = []):
if type == "ok":
print text
else:
print _("Can't have a question in command line mode!")
print title
print text
print type, custom_buttons
# don't exit
while 1:
time.sleep(5)
def exceptionWindow(self, title, text):
print text
def partedExceptionWindow(self, exc):
# if our only option is to cancel, let us handle the exception
# in our code and avoid popping up the exception window here.
if exc.options == parted.EXCEPTION_CANCEL:
return parted.EXCEPTION_UNHANDLED
print _("Parted exceptions can't be handled in command line mode!")
print exc.message
# don't exit
while 1:
time.sleep(5)
def waitWindow(self, title, text):
return WaitWindow(title, text)
def run(self, id, dispatch, configFileData):
self.configFileData = configFileData
id.fsset.registerMessageWindow(self.messageWindow)
id.fsset.registerProgressWindow(self.progressWindow)
id.fsset.registerWaitWindow(self.waitWindow)
parted.exception_set_handler(self.partedExceptionWindow)
(step, args) = dispatch.currentStep()
while step:
if stepToClasses.has_key(step):
s = "nextWin = %s" %(stepToClasses[step],)
exec s
apply(nextWin, args)
else:
print "In interactive step %s, can't continue" %(step,)
while 1:
time.sleep(1)
dispatch.gotoNext()
(step, args) = dispatch.currentStep()
class progressDisplay:
def __init__(self):
pass
def __del__(self):
pass
def completePackage(self, hdr, timer):
self.numComplete = self.numComplete + 1
self.sizeComplete = self.sizeComplete + (hdr[rpm.RPMTAG_SIZE] / 1024)
print _("Done [%d/%d]" %(self.numComplete, self.total))
def setPackageScale(self, amount, total):
pass
def setPackage(self, hdr):
print _("Installing %s-%s-%s... ") %(hdr[rpm.RPMTAG_NAME],
hdr[rpm.RPMTAG_VERSION],
hdr[rpm.RPMTAG_RELEASE]),
def processEvents(self):
pass
def setSizes(self, total, totalSize):
self.total = total
self.totalSize = totalSize
self.numComplete = 0
self.sizeComplete = 0
def setupProgressDisplay(dir, intf, id):
if dir == DISPATCH_BACK:
id.setInstallProgressClass(None)
return DISPATCH_BACK
else:
id.setInstallProgressClass(progressDisplay())
return DISPATCH_FORWARD
|