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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# (c) Copyright 2011-2014 Hewlett-Packard Development Company, L.P.
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Author: Amarnath Chitumalla
#
__version__ = '1.0'
__title__ = 'HPLIP upgrade latest version'
__mod__ = 'hp-upgrade'
__doc__ = "HPLIP installer to upgrade to latest version."
# Std Lib
import getopt, os, sys, re, time
# Local
from base.g import *
from base import utils, tui, module
from installer.core_install import *
USAGE = [(__doc__, "", "name", True),
("Usage: %s [OPTIONS]" % __mod__, "", "summary", True),
utils.USAGE_SPACE,
utils.USAGE_MODE,
("Run in interactive mode:", "-i or --interactive (Default)", "option", False),
("Run in graphical UI mode:", "-u or --gui (future use)", "option", False),
utils.USAGE_SPACE,
utils.USAGE_OPTIONS,
utils.USAGE_HELP,
utils.USAGE_LOGGING1, utils.USAGE_LOGGING2, utils.USAGE_LOGGING3,
("Check for update and notify:","--notify","option",False),
("Check only available version:","--check","option",False),
("Non-interactive mode:","-n(Without asking permissions)(future use)","option",False),
("Download Path to install from local system:","-p<path>","option", False),
("Download HPLIP package location:","-d<path> (default location /tmp/)","option", False),
("Override existing HPLIP installation even if latest vesrion is installed:","-o","option",False),
("Take options from the file instead of command line:","-f<file> (future use)","option",False)
]
def usage(typ='text'):
if typ == 'text':
utils.log_title(__title__, __version__)
utils.format_text(USAGE, typ, __title__, __mod__, __version__)
sys.exit(0)
def clean_exit(code=0, waitTerminal=True):
change_spinner_state(True)
mod.unlockInstance()
if CHECKING_ONLY is False and NOTIFY is False and waitTerminal is True:
uInput = raw_input("\npress enter to quit.")
sys.exit(code)
def parse_HPLIP_version(hplip_version_file, pat):
ver = "0.0.0"
if not os.path.exists(hplip_version_file):
return ver
try:
fp= file(hplip_version_file, 'r')
except IOError:
log.error("Failed to get hplip version since %s file is not found."%hplip_version_file)
return ver
# pat = re.compile(r"""HPLIP (.*) Public Release""")
data = fp.read()
for line in data.splitlines():
if pat.search(line):
ver = pat.search(line).group(1)
break
log.debug("Latest HPLIP version = %s." % ver)
return ver
log.set_module(__mod__)
mode = INTERACTIVE_MODE
auto = False
HPLIP_PATH=None
TEMP_PATH="/tmp/"
FORCE_INSTALL=False
CHECKING_ONLY=False
NOTIFY=False
HPLIP_SOURCEFORGE_SITE = "http://feed2js.org/feed2js.php?src=http%3A%2F%2Fsourceforge.net%2Fexport%2Frss2_projnews.php%3Fgroup_id%3D149981"
HPLIP_WEB_SITE ="http://hplipopensource.com/hplip-web/index.html"
try:
mod = module.Module(__mod__, __title__, __version__, __doc__, USAGE,
(INTERACTIVE_MODE, GUI_MODE),
(UI_TOOLKIT_QT3, UI_TOOLKIT_QT4), True, True)
opts, device_uri, printer_name, mode, ui_toolkit, loc = \
mod.parseStdOpts('hl:gniup:d:of:', ['notify','check','help', 'help-rest', 'help-man', 'help-desc', 'interactive', 'gui', 'lang=','logging=', 'debug'],
handle_device_printer=False)
mod.lockInstance()
except getopt.GetoptError, e:
log.error(e.msg)
usage()
# sys.exit(1)
if os.getenv("HPLIP_DEBUG"):
log.set_level('debug')
for o, a in opts:
if o in ('-h', '--help'):
usage()
elif o == '--help-rest':
usage('rest')
elif o == '--help-man':
usage('man')
elif o in ('-q', '--lang'):
language = a.lower()
elif o == '--help-desc':
print __doc__,
clean_exit(0,False)
elif o in ('-l', '--logging'):
log_level = a.lower().strip()
if not log.set_level(log_level):
usage()
elif o in ('-g', '--debug'):
log.set_level('debug')
elif o == '-n':
mode = NON_INTERACTIVE_MODE
log.info("NON_INTERACTIVE mode is not yet supported.")
usage()
clean_exit(0,False)
elif o == '-p':
HPLIP_PATH=a
elif o == '-d':
TEMP_PATH=a
elif o == '-o':
FORCE_INSTALL = True
elif o in ('-u', '--gui'):
log.info("GUI is not yet supported.")
usage()
clean_exit(0, False)
elif o == '--check':
CHECKING_ONLY = True
elif o == '--notify':
NOTIFY = True
elif o == '-f':
log.info("Option from file is not yet supported")
usage()
clean_exit(0, False)
if not NOTIFY and not CHECKING_ONLY:
mod.quiet= False
mod.showTitle()
log_file = os.path.normpath('/var/log/hp/hp-upgrade.log')
if os.path.exists(log_file):
os.remove(log_file)
log.set_logfile(log_file)
log.set_where(log.LOG_TO_CONSOLE_AND_FILE)
log.debug("Upgrade log saved in: %s" % log.bold(log_file))
log.debug("")
try:
change_spinner_state(False)
core = CoreInstall(MODE_CHECK)
# core.init()
if not core.check_network_connection():
log.error("Either Internet is not working or Wget is not installed.")
clean_exit(0)
installed_version=sys_conf.get("hplip","version","0.0.0")
log.debug("HPLIP previous installed version =%s." %installed_version)
HPLIP_latest_ver="0.0.0"
# get HPLIP version info from sourceforge
pat = re.compile(r"""HPLIP (.*) Public Release""")
sts, HPLIP_Ver_file = utils.download_from_network(HPLIP_SOURCEFORGE_SITE)
if sts is True:
HPLIP_latest_ver = parse_HPLIP_version(HPLIP_Ver_file, pat)
# get HPLIP version info from hplip site
if HPLIP_latest_ver == "0.0.0": ## if failed to connect the sourceforge site, then check HPLIP site.
pat = re.compile(r"""The current version of the HPLIP solution is version (.*)\. \(.*""")
sts, HPLIP_Ver_file = utils.download_from_network(HPLIP_WEB_SITE)
if sts is True:
HPLIP_latest_ver = parse_HPLIP_version(HPLIP_Ver_file, pat)
if HPLIP_latest_ver == "0.0.0":
log.error("Failed to get latest version of HPLIP.")
clean_exit(0)
if CHECKING_ONLY is True:
user_conf.set('upgrade','latest_available_version',HPLIP_latest_ver)
log.debug("Available HPLIP version =%s."%HPLIP_latest_ver)
elif NOTIFY is True:
user_conf.set('upgrade','latest_available_version',HPLIP_latest_ver)
if not utils.Is_HPLIP_older_version(installed_version, HPLIP_latest_ver):
log.debug("Latest version of HPLIP is already installed.")
else:
msg = "Latest version of HPLIP-%s is available."%HPLIP_latest_ver
if core.is_auto_installer_support():
distro_type= 1
else:
distro_type= 2
if ui_toolkit == 'qt3':
if not utils.canEnterGUIMode():
log.error("%s requires GUI support. Is Qt3 Installed?.. Exiting." % __mod__)
clean_exit(1)
try:
from qt import *
from ui.upgradeform import UpgradeForm
except ImportError:
log.error("Unable to load Qt3 support. Is it installed? ")
clean_exit(1)
# create the main application object
app = QApplication(sys.argv)
QObject.connect(app, SIGNAL("lastWindowClosed()"), app, SLOT("quit()"))
dialog = UpgradeForm(None, "",0,0,distro_type, msg)
dialog.show()
log.debug("Starting GUI loop...")
app.exec_loop()
else: #qt4
if not utils.canEnterGUIMode4():
log.error("%s requires GUI support . Is Qt4 installed?.. Exiting." % __mod__)
clean_exit(1)
try:
from PyQt4.QtGui import QApplication, QMessageBox
from ui4.upgradedialog import UpgradeDialog
except ImportError:
log.error("Unable to load Qt4 support. Is it installed?")
clean_exit(1)
app = QApplication(sys.argv)
dialog = UpgradeDialog(None, distro_type, msg)
dialog.show()
log.debug("Starting GUI loop...")
app.exec_()
else:
if FORCE_INSTALL is False:
if utils.Is_HPLIP_older_version(installed_version, HPLIP_latest_ver):
ok,choice = tui.enter_choice("\nPress 'y' to continue to upgrade HPLIP-%s (y=yes*, n=no):"%HPLIP_latest_ver, ['y','n'],'y')
if not ok or choice == 'n':
clean_exit(0, False)
else:
log.info("Latest version of HPLIP is already installed.")
clean_exit(0,False)
# check distro information.
if not core.is_auto_installer_support():
log.info("Please install HPLIP manually as mentioned in 'http://hplipopensource.com/hplip-web/install/manual/index.html' site")
clean_exit(0)
# check systray is running?
status,output = utils.Is_Process_Running('hp-systray')
if status is True:
ok,choice = tui.enter_choice("\nSome HPLIP applications are running. Press 'y' to close applications or press 'n' to quit upgrade(y=yes*, n=no):",['y','n'],'y')
if not ok or choice =='n':
log.info("Manually close HPLIP applications and run hp-upgrade again.")
clean_exit(0, False)
try:
# dBus
#import dbus
from dbus import SystemBus, lowlevel
except ImportError:
log.error("Unable to load DBus.")
pass
else:
try:
args = ['', '', EVENT_SYSTEMTRAY_EXIT, prop.username, 0, '', '']
msg = lowlevel.SignalMessage('/', 'com.hplip.StatusService', 'Event')
msg.append(signature='ssisiss', *args)
log.debug("Sending close message to hp-systray ...")
SystemBus().send_message(msg)
time.sleep(0.5)
except:
log.error("Failed to send DBus message to hp-systray/hp-toolbox.")
pass
toolbox_status,output = utils.Is_Process_Running('hp-toolbox')
# systray_status,output = utils.Is_Process_Running('hp-systray')
if toolbox_status is True:
log.error("Failed to close either HP-Toolbox/HP-Systray. Manually close and run hp-upgrade again.")
clean_exit(0)
if HPLIP_PATH is not None:
if os.path.exists(HPLIP_PATH):
download_file = HPLIP_PATH
else:
log.error("%s file is not present. Downloading from Net..." %HPLIP_PATH)
HPLIP_PATH = None
if HPLIP_PATH is None:
url="http://sourceforge.net/projects/hplip/files/hplip/%s/hplip-%s.run/download" %(HPLIP_latest_ver, HPLIP_latest_ver)
download_file = None
if TEMP_PATH:
download_file = "%s/hplip-%s.run" %(TEMP_PATH,HPLIP_latest_ver)
log.info("Downloading hplip-%s.run file..... Please wait. "%HPLIP_latest_ver )
sts,download_file = utils.download_from_network(url, download_file, True)
if not os.path.exists(download_file):
log.error("Failed to download %s file."%download_file)
clean_exit()
# Installing hplip run.
cmd = "sh %s" %(download_file)
log.debug("Upgrading %s and cmd =%s " %(download_file, cmd))
os.system(cmd)
change_spinner_state(True)
mod.unlockInstance()
# log.info("HPLIP upgrade is completed")
except KeyboardInterrupt:
change_spinner_state(True)
mod.unlockInstance()
log.error("User exit")
|